@zeedhi/zd-user-info-common 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/types/index.d.ts +2 -0
- package/types/interfaces.d.ts +27 -0
- package/types/user-info.d.ts +134 -0
- package/coverage/clover.xml +0 -67
- package/coverage/coverage-final.json +0 -3
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -131
- package/coverage/lcov-report/index.ts.html +0 -91
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov-report/user-info.ts.html +0 -793
- package/coverage/lcov.info +0 -101
- package/jest.config.js +0 -10
- package/tests/unit/user-info.spec.ts +0 -145
- package/tsconfig.eslint.json +0 -10
- package/types/tests/unit/user-info.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/zd-user-info-common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Implementation of UserInfo componente using Zeedhi Next",
|
|
5
5
|
"main": "dist/user-info-common.umd.js",
|
|
6
6
|
"module": "dist/user-info-common.esm.js",
|
|
7
|
-
"typings": "types/
|
|
7
|
+
"typings": "types/index.d.ts",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"@zeedhi/common": "*",
|
|
24
24
|
"@zeedhi/core": "*"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "70fee0b337f7a8c00aa3dc5a6cde77e57023992a"
|
|
27
27
|
}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { IComponentRender } from '@zeedhi/common';
|
|
2
|
+
import { IDictionary } from '@zeedhi/core';
|
|
3
|
+
export interface IUserInfo extends IComponentRender {
|
|
4
|
+
activator?: IComponentRender;
|
|
5
|
+
avatarProps?: IDictionary;
|
|
6
|
+
bottomSlot?: IComponentRender[];
|
|
7
|
+
centerSlot?: IComponentRender[];
|
|
8
|
+
closeOnClick?: boolean;
|
|
9
|
+
closeOnContentClick?: boolean;
|
|
10
|
+
fixed?: boolean;
|
|
11
|
+
headerSlot?: IComponentRender[];
|
|
12
|
+
height?: number | string;
|
|
13
|
+
imageProps?: IDictionary;
|
|
14
|
+
offsetX?: boolean;
|
|
15
|
+
offsetY?: boolean;
|
|
16
|
+
openOnClick?: boolean;
|
|
17
|
+
openOnHover?: boolean;
|
|
18
|
+
maxHeight?: number | string;
|
|
19
|
+
maxWidth?: number | string;
|
|
20
|
+
minHeight?: number | string;
|
|
21
|
+
minWidth?: number | string;
|
|
22
|
+
showProfileChange?: boolean;
|
|
23
|
+
topSlot?: IComponentRender[];
|
|
24
|
+
user?: string;
|
|
25
|
+
userImage?: string;
|
|
26
|
+
value?: boolean;
|
|
27
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { ComponentRender, IComponentRender } from '@zeedhi/common';
|
|
2
|
+
import { IDictionary } from '@zeedhi/core';
|
|
3
|
+
import { IUserInfo } from './interfaces';
|
|
4
|
+
export declare class UserInfo extends ComponentRender implements IUserInfo {
|
|
5
|
+
/**
|
|
6
|
+
* Dropdown activator
|
|
7
|
+
*/
|
|
8
|
+
activator: IComponentRender;
|
|
9
|
+
/**
|
|
10
|
+
* Props to be passed to the ZdAvatar component
|
|
11
|
+
*/
|
|
12
|
+
avatarProps: IDictionary;
|
|
13
|
+
/**
|
|
14
|
+
* Components to be rendered on the bottom slot
|
|
15
|
+
*/
|
|
16
|
+
bottomSlot: IComponentRender[];
|
|
17
|
+
/**
|
|
18
|
+
* Components to be rendered on the center slot
|
|
19
|
+
*/
|
|
20
|
+
centerSlot: IComponentRender[];
|
|
21
|
+
/**
|
|
22
|
+
* Show the profile change option
|
|
23
|
+
*/
|
|
24
|
+
showProfileChange: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Components to be rendered on the top slot
|
|
27
|
+
*/
|
|
28
|
+
topSlot: IComponentRender[];
|
|
29
|
+
/**
|
|
30
|
+
* User name
|
|
31
|
+
*/
|
|
32
|
+
user: string;
|
|
33
|
+
/**
|
|
34
|
+
* User image
|
|
35
|
+
*/
|
|
36
|
+
userImage: string;
|
|
37
|
+
/**
|
|
38
|
+
* Designates if menu should close on outside-activator click.
|
|
39
|
+
*/
|
|
40
|
+
closeOnClick: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Designates if menu should close when its content is clicked.
|
|
43
|
+
*/
|
|
44
|
+
closeOnContentClick: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Applies position fixed to the dropdown.
|
|
47
|
+
*/
|
|
48
|
+
fixed: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Components to be rendered on the menu header
|
|
51
|
+
*/
|
|
52
|
+
headerSlot?: IComponentRender[];
|
|
53
|
+
/**
|
|
54
|
+
* Props to be passed to the ZdImage component (rendered inside the avatar)
|
|
55
|
+
*/
|
|
56
|
+
imageProps?: IDictionary;
|
|
57
|
+
/**
|
|
58
|
+
* Offset the menu on the x-axis.
|
|
59
|
+
*/
|
|
60
|
+
offsetX: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Offset the menu on the x-axis.
|
|
63
|
+
*/
|
|
64
|
+
offsetY: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Designates whether menu should open on activator click.
|
|
67
|
+
*/
|
|
68
|
+
openOnClick: boolean;
|
|
69
|
+
/**
|
|
70
|
+
* Designates whether menu should open on activator hover.
|
|
71
|
+
*/
|
|
72
|
+
openOnHover: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Controls whether the component is visible or hidden.
|
|
75
|
+
*/
|
|
76
|
+
value: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Sets the height for the dropdown.
|
|
79
|
+
*/
|
|
80
|
+
height?: number | string;
|
|
81
|
+
/**
|
|
82
|
+
* Sets the maximum height for the dropdown.
|
|
83
|
+
*/
|
|
84
|
+
maxHeight?: number | string;
|
|
85
|
+
/**
|
|
86
|
+
* Sets the maximum width for the dropdown.
|
|
87
|
+
*/
|
|
88
|
+
maxWidth?: number | string;
|
|
89
|
+
/**
|
|
90
|
+
* Sets the minimum height for the dropdown.
|
|
91
|
+
*/
|
|
92
|
+
minHeight?: number | string;
|
|
93
|
+
/**
|
|
94
|
+
* Sets the minimum width for the dropdown.
|
|
95
|
+
*/
|
|
96
|
+
minWidth?: number | string;
|
|
97
|
+
constructor(props: IUserInfo);
|
|
98
|
+
protected getActivator(): {
|
|
99
|
+
name: string;
|
|
100
|
+
component: string;
|
|
101
|
+
bottom: boolean;
|
|
102
|
+
label: string;
|
|
103
|
+
children: {
|
|
104
|
+
name: string;
|
|
105
|
+
component: string;
|
|
106
|
+
avatarSlot: ({
|
|
107
|
+
name: string;
|
|
108
|
+
component: string;
|
|
109
|
+
src: string;
|
|
110
|
+
} | {
|
|
111
|
+
name: string;
|
|
112
|
+
component: string;
|
|
113
|
+
src: string;
|
|
114
|
+
})[];
|
|
115
|
+
}[];
|
|
116
|
+
};
|
|
117
|
+
protected getCenterSlot(): {
|
|
118
|
+
name: string;
|
|
119
|
+
component: string;
|
|
120
|
+
dense: boolean;
|
|
121
|
+
items: {
|
|
122
|
+
name: string;
|
|
123
|
+
component: string;
|
|
124
|
+
title: string;
|
|
125
|
+
prependIcon: string;
|
|
126
|
+
cssClass: string;
|
|
127
|
+
events: {
|
|
128
|
+
click: ({ event, element }: any) => void;
|
|
129
|
+
};
|
|
130
|
+
}[];
|
|
131
|
+
}[];
|
|
132
|
+
onLogoutClick(event: Event, element: HTMLElement): void;
|
|
133
|
+
onProfileChange(event: Event, element: HTMLElement): void;
|
|
134
|
+
}
|
package/coverage/clover.xml
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="1646421538554" clover="3.2.0">
|
|
3
|
-
<project timestamp="1646421538554" name="All files">
|
|
4
|
-
<metrics statements="55" coveredstatements="55" conditionals="14" coveredconditionals="14" methods="7" coveredmethods="7" elements="76" coveredelements="76" complexity="0" loc="55" ncloc="55" packages="1" files="2" classes="2"/>
|
|
5
|
-
<file name="index.ts" path="/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/index.ts">
|
|
6
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
7
|
-
<line num="1" count="1" type="stmt"/>
|
|
8
|
-
<line num="2" count="1" type="stmt"/>
|
|
9
|
-
</file>
|
|
10
|
-
<file name="user-info.ts" path="/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/user-info.ts">
|
|
11
|
-
<metrics statements="53" coveredstatements="53" conditionals="14" coveredconditionals="14" methods="7" coveredmethods="7"/>
|
|
12
|
-
<line num="1" count="1" type="stmt"/>
|
|
13
|
-
<line num="2" count="1" type="stmt"/>
|
|
14
|
-
<line num="5" count="1" type="stmt"/>
|
|
15
|
-
<line num="14" count="4" type="stmt"/>
|
|
16
|
-
<line num="19" count="4" type="stmt"/>
|
|
17
|
-
<line num="24" count="4" type="stmt"/>
|
|
18
|
-
<line num="29" count="4" type="stmt"/>
|
|
19
|
-
<line num="34" count="4" type="stmt"/>
|
|
20
|
-
<line num="39" count="4" type="stmt"/>
|
|
21
|
-
<line num="44" count="4" type="stmt"/>
|
|
22
|
-
<line num="49" count="4" type="stmt"/>
|
|
23
|
-
<line num="54" count="4" type="stmt"/>
|
|
24
|
-
<line num="59" count="4" type="stmt"/>
|
|
25
|
-
<line num="64" count="4" type="stmt"/>
|
|
26
|
-
<line num="69" count="4" type="stmt"/>
|
|
27
|
-
<line num="74" count="4" type="stmt"/>
|
|
28
|
-
<line num="79" count="4" type="stmt"/>
|
|
29
|
-
<line num="84" count="4" type="stmt"/>
|
|
30
|
-
<line num="89" count="4" type="stmt"/>
|
|
31
|
-
<line num="94" count="4" type="stmt"/>
|
|
32
|
-
<line num="99" count="4" type="stmt"/>
|
|
33
|
-
<line num="122" count="4" type="stmt"/>
|
|
34
|
-
<line num="123" count="4" type="stmt"/>
|
|
35
|
-
<line num="124" count="4" type="stmt"/>
|
|
36
|
-
<line num="125" count="4" type="stmt"/>
|
|
37
|
-
<line num="127" count="4" type="stmt"/>
|
|
38
|
-
<line num="128" count="4" type="stmt"/>
|
|
39
|
-
<line num="129" count="4" type="stmt"/>
|
|
40
|
-
<line num="130" count="4" type="stmt"/>
|
|
41
|
-
<line num="131" count="4" type="stmt"/>
|
|
42
|
-
<line num="132" count="4" type="stmt"/>
|
|
43
|
-
<line num="133" count="4" type="stmt"/>
|
|
44
|
-
<line num="134" count="4" type="stmt"/>
|
|
45
|
-
<line num="135" count="4" type="stmt"/>
|
|
46
|
-
<line num="136" count="4" type="stmt"/>
|
|
47
|
-
<line num="137" count="4" type="stmt"/>
|
|
48
|
-
<line num="138" count="4" type="stmt"/>
|
|
49
|
-
<line num="139" count="4" type="stmt"/>
|
|
50
|
-
<line num="141" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
51
|
-
<line num="142" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
52
|
-
<line num="143" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
53
|
-
<line num="144" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
54
|
-
<line num="145" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
55
|
-
<line num="146" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
56
|
-
<line num="147" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
57
|
-
<line num="149" count="4" type="stmt"/>
|
|
58
|
-
<line num="153" count="3" type="stmt"/>
|
|
59
|
-
<line num="177" count="3" type="stmt"/>
|
|
60
|
-
<line num="190" count="1" type="stmt"/>
|
|
61
|
-
<line num="200" count="1" type="stmt"/>
|
|
62
|
-
<line num="209" count="1" type="stmt"/>
|
|
63
|
-
<line num="213" count="1" type="stmt"/>
|
|
64
|
-
<line num="217" count="1" type="stmt"/>
|
|
65
|
-
</file>
|
|
66
|
-
</project>
|
|
67
|
-
</coverage>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
{"/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/index.ts": {"path":"/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/index.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":28}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":29}}},"fnMap":{},"branchMap":{},"s":{"0":1,"1":1},"f":{},"b":{}}
|
|
2
|
-
,"/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/user-info.ts": {"path":"/Users/zedmartins/workfolder/zeedhi/userinfo/packages/common/src/user-info.ts","statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":67}},"1":{"start":{"line":2,"column":0},"end":{"line":2,"column":53}},"2":{"start":{"line":122,"column":4},"end":{"line":122,"column":17}},"3":{"start":{"line":14,"column":9},"end":{"line":14,"column":39}},"4":{"start":{"line":19,"column":9},"end":{"line":19,"column":45}},"5":{"start":{"line":24,"column":9},"end":{"line":24,"column":45}},"6":{"start":{"line":29,"column":9},"end":{"line":29,"column":43}},"7":{"start":{"line":34,"column":9},"end":{"line":34,"column":42}},"8":{"start":{"line":39,"column":9},"end":{"line":39,"column":27}},"9":{"start":{"line":44,"column":9},"end":{"line":44,"column":32}},"10":{"start":{"line":49,"column":9},"end":{"line":49,"column":38}},"11":{"start":{"line":54,"column":9},"end":{"line":54,"column":45}},"12":{"start":{"line":59,"column":9},"end":{"line":59,"column":32}},"13":{"start":{"line":64,"column":9},"end":{"line":64,"column":46}},"14":{"start":{"line":69,"column":9},"end":{"line":69,"column":39}},"15":{"start":{"line":74,"column":9},"end":{"line":74,"column":34}},"16":{"start":{"line":79,"column":9},"end":{"line":79,"column":33}},"17":{"start":{"line":84,"column":9},"end":{"line":84,"column":37}},"18":{"start":{"line":89,"column":9},"end":{"line":89,"column":38}},"19":{"start":{"line":94,"column":9},"end":{"line":94,"column":32}},"20":{"start":{"line":99,"column":9},"end":{"line":99,"column":43}},"21":{"start":{"line":123,"column":4},"end":{"line":123,"column":117}},"22":{"start":{"line":124,"column":4},"end":{"line":124,"column":65}},"23":{"start":{"line":125,"column":4},"end":{"line":125,"column":85}},"24":{"start":{"line":127,"column":4},"end":{"line":127,"column":97}},"25":{"start":{"line":128,"column":4},"end":{"line":128,"column":125}},"26":{"start":{"line":129,"column":4},"end":{"line":129,"column":69}},"27":{"start":{"line":130,"column":4},"end":{"line":130,"column":77}},"28":{"start":{"line":131,"column":4},"end":{"line":131,"column":77}},"29":{"start":{"line":132,"column":4},"end":{"line":132,"column":93}},"30":{"start":{"line":133,"column":4},"end":{"line":133,"column":93}},"31":{"start":{"line":134,"column":4},"end":{"line":134,"column":69}},"32":{"start":{"line":135,"column":4},"end":{"line":135,"column":73}},"33":{"start":{"line":136,"column":4},"end":{"line":136,"column":85}},"34":{"start":{"line":137,"column":4},"end":{"line":137,"column":85}},"35":{"start":{"line":138,"column":4},"end":{"line":138,"column":81}},"36":{"start":{"line":139,"column":4},"end":{"line":139,"column":81}},"37":{"start":{"line":141,"column":4},"end":{"line":141,"column":61}},"38":{"start":{"line":142,"column":4},"end":{"line":142,"column":58}},"39":{"start":{"line":143,"column":4},"end":{"line":143,"column":60}},"40":{"start":{"line":144,"column":4},"end":{"line":144,"column":58}},"41":{"start":{"line":145,"column":4},"end":{"line":145,"column":63}},"42":{"start":{"line":146,"column":4},"end":{"line":146,"column":49}},"43":{"start":{"line":147,"column":4},"end":{"line":147,"column":58}},"44":{"start":{"line":149,"column":4},"end":{"line":149,"column":27}},"45":{"start":{"line":153,"column":4},"end":{"line":173,"column":6}},"46":{"start":{"line":177,"column":4},"end":{"line":205,"column":6}},"47":{"start":{"line":190,"column":50},"end":{"line":190,"column":86}},"48":{"start":{"line":200,"column":50},"end":{"line":200,"column":84}},"49":{"start":{"line":209,"column":4},"end":{"line":209,"column":73}},"50":{"start":{"line":213,"column":4},"end":{"line":213,"column":75}},"51":{"start":{"line":5,"column":0},"end":{"line":5,"column":13}},"52":{"start":{"line":217,"column":0},"end":{"line":236,"column":3}}},"fnMap":{"0":{"name":"(anonymous_0)","decl":{"start":{"line":121,"column":2},"end":{"line":121,"column":14}},"loc":{"start":{"line":121,"column":30},"end":{"line":150,"column":3}}},"1":{"name":"(anonymous_1)","decl":{"start":{"line":152,"column":12},"end":{"line":152,"column":24}},"loc":{"start":{"line":152,"column":24},"end":{"line":174,"column":3}}},"2":{"name":"(anonymous_2)","decl":{"start":{"line":176,"column":12},"end":{"line":176,"column":25}},"loc":{"start":{"line":176,"column":25},"end":{"line":206,"column":3}}},"3":{"name":"(anonymous_3)","decl":{"start":{"line":190,"column":21},"end":{"line":190,"column":22}},"loc":{"start":{"line":190,"column":50},"end":{"line":190,"column":86}}},"4":{"name":"(anonymous_4)","decl":{"start":{"line":200,"column":21},"end":{"line":200,"column":22}},"loc":{"start":{"line":200,"column":50},"end":{"line":200,"column":84}}},"5":{"name":"(anonymous_5)","decl":{"start":{"line":208,"column":9},"end":{"line":208,"column":22}},"loc":{"start":{"line":208,"column":57},"end":{"line":210,"column":3}}},"6":{"name":"(anonymous_6)","decl":{"start":{"line":212,"column":9},"end":{"line":212,"column":24}},"loc":{"start":{"line":212,"column":59},"end":{"line":214,"column":3}}}},"branchMap":{"0":{"loc":{"start":{"line":141,"column":23},"end":{"line":141,"column":60}},"type":"binary-expr","locations":[{"start":{"line":141,"column":23},"end":{"line":141,"column":40}},{"start":{"line":141,"column":44},"end":{"line":141,"column":60}}]},"1":{"loc":{"start":{"line":142,"column":22},"end":{"line":142,"column":57}},"type":"binary-expr","locations":[{"start":{"line":142,"column":22},"end":{"line":142,"column":38}},{"start":{"line":142,"column":42},"end":{"line":142,"column":57}}]},"2":{"loc":{"start":{"line":143,"column":21},"end":{"line":143,"column":59}},"type":"binary-expr","locations":[{"start":{"line":143,"column":21},"end":{"line":143,"column":36}},{"start":{"line":143,"column":40},"end":{"line":143,"column":59}}]},"3":{"loc":{"start":{"line":144,"column":22},"end":{"line":144,"column":57}},"type":"binary-expr","locations":[{"start":{"line":144,"column":22},"end":{"line":144,"column":38}},{"start":{"line":144,"column":42},"end":{"line":144,"column":57}}]},"4":{"loc":{"start":{"line":145,"column":22},"end":{"line":145,"column":62}},"type":"binary-expr","locations":[{"start":{"line":145,"column":22},"end":{"line":145,"column":38}},{"start":{"line":145,"column":42},"end":{"line":145,"column":62}}]},"5":{"loc":{"start":{"line":146,"column":19},"end":{"line":146,"column":48}},"type":"binary-expr","locations":[{"start":{"line":146,"column":19},"end":{"line":146,"column":32}},{"start":{"line":146,"column":36},"end":{"line":146,"column":48}}]},"6":{"loc":{"start":{"line":147,"column":22},"end":{"line":147,"column":57}},"type":"binary-expr","locations":[{"start":{"line":147,"column":22},"end":{"line":147,"column":38}},{"start":{"line":147,"column":42},"end":{"line":147,"column":57}}]}},"s":{"0":1,"1":1,"2":4,"3":4,"4":4,"5":4,"6":4,"7":4,"8":4,"9":4,"10":4,"11":4,"12":4,"13":4,"14":4,"15":4,"16":4,"17":4,"18":4,"19":4,"20":4,"21":4,"22":4,"23":4,"24":4,"25":4,"26":4,"27":4,"28":4,"29":4,"30":4,"31":4,"32":4,"33":4,"34":4,"35":4,"36":4,"37":4,"38":4,"39":4,"40":4,"41":4,"42":4,"43":4,"44":4,"45":3,"46":3,"47":1,"48":1,"49":1,"50":1,"51":1,"52":1},"f":{"0":4,"1":3,"2":3,"3":1,"4":1,"5":1,"6":1},"b":{"0":[4,3],"1":[4,3],"2":[4,3],"3":[4,3],"4":[4,3],"5":[4,3],"6":[4,4]}}
|
|
3
|
-
}
|
|
@@ -1,224 +0,0 @@
|
|
|
1
|
-
body, html {
|
|
2
|
-
margin:0; padding: 0;
|
|
3
|
-
height: 100%;
|
|
4
|
-
}
|
|
5
|
-
body {
|
|
6
|
-
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
|
-
font-size: 14px;
|
|
8
|
-
color:#333;
|
|
9
|
-
}
|
|
10
|
-
.small { font-size: 12px; }
|
|
11
|
-
*, *:after, *:before {
|
|
12
|
-
-webkit-box-sizing:border-box;
|
|
13
|
-
-moz-box-sizing:border-box;
|
|
14
|
-
box-sizing:border-box;
|
|
15
|
-
}
|
|
16
|
-
h1 { font-size: 20px; margin: 0;}
|
|
17
|
-
h2 { font-size: 14px; }
|
|
18
|
-
pre {
|
|
19
|
-
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
|
-
margin: 0;
|
|
21
|
-
padding: 0;
|
|
22
|
-
-moz-tab-size: 2;
|
|
23
|
-
-o-tab-size: 2;
|
|
24
|
-
tab-size: 2;
|
|
25
|
-
}
|
|
26
|
-
a { color:#0074D9; text-decoration:none; }
|
|
27
|
-
a:hover { text-decoration:underline; }
|
|
28
|
-
.strong { font-weight: bold; }
|
|
29
|
-
.space-top1 { padding: 10px 0 0 0; }
|
|
30
|
-
.pad2y { padding: 20px 0; }
|
|
31
|
-
.pad1y { padding: 10px 0; }
|
|
32
|
-
.pad2x { padding: 0 20px; }
|
|
33
|
-
.pad2 { padding: 20px; }
|
|
34
|
-
.pad1 { padding: 10px; }
|
|
35
|
-
.space-left2 { padding-left:55px; }
|
|
36
|
-
.space-right2 { padding-right:20px; }
|
|
37
|
-
.center { text-align:center; }
|
|
38
|
-
.clearfix { display:block; }
|
|
39
|
-
.clearfix:after {
|
|
40
|
-
content:'';
|
|
41
|
-
display:block;
|
|
42
|
-
height:0;
|
|
43
|
-
clear:both;
|
|
44
|
-
visibility:hidden;
|
|
45
|
-
}
|
|
46
|
-
.fl { float: left; }
|
|
47
|
-
@media only screen and (max-width:640px) {
|
|
48
|
-
.col3 { width:100%; max-width:100%; }
|
|
49
|
-
.hide-mobile { display:none!important; }
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.quiet {
|
|
53
|
-
color: #7f7f7f;
|
|
54
|
-
color: rgba(0,0,0,0.5);
|
|
55
|
-
}
|
|
56
|
-
.quiet a { opacity: 0.7; }
|
|
57
|
-
|
|
58
|
-
.fraction {
|
|
59
|
-
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
60
|
-
font-size: 10px;
|
|
61
|
-
color: #555;
|
|
62
|
-
background: #E8E8E8;
|
|
63
|
-
padding: 4px 5px;
|
|
64
|
-
border-radius: 3px;
|
|
65
|
-
vertical-align: middle;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
div.path a:link, div.path a:visited { color: #333; }
|
|
69
|
-
table.coverage {
|
|
70
|
-
border-collapse: collapse;
|
|
71
|
-
margin: 10px 0 0 0;
|
|
72
|
-
padding: 0;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
table.coverage td {
|
|
76
|
-
margin: 0;
|
|
77
|
-
padding: 0;
|
|
78
|
-
vertical-align: top;
|
|
79
|
-
}
|
|
80
|
-
table.coverage td.line-count {
|
|
81
|
-
text-align: right;
|
|
82
|
-
padding: 0 5px 0 20px;
|
|
83
|
-
}
|
|
84
|
-
table.coverage td.line-coverage {
|
|
85
|
-
text-align: right;
|
|
86
|
-
padding-right: 10px;
|
|
87
|
-
min-width:20px;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
table.coverage td span.cline-any {
|
|
91
|
-
display: inline-block;
|
|
92
|
-
padding: 0 5px;
|
|
93
|
-
width: 100%;
|
|
94
|
-
}
|
|
95
|
-
.missing-if-branch {
|
|
96
|
-
display: inline-block;
|
|
97
|
-
margin-right: 5px;
|
|
98
|
-
border-radius: 3px;
|
|
99
|
-
position: relative;
|
|
100
|
-
padding: 0 4px;
|
|
101
|
-
background: #333;
|
|
102
|
-
color: yellow;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.skip-if-branch {
|
|
106
|
-
display: none;
|
|
107
|
-
margin-right: 10px;
|
|
108
|
-
position: relative;
|
|
109
|
-
padding: 0 4px;
|
|
110
|
-
background: #ccc;
|
|
111
|
-
color: white;
|
|
112
|
-
}
|
|
113
|
-
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
|
-
color: inherit !important;
|
|
115
|
-
}
|
|
116
|
-
.coverage-summary {
|
|
117
|
-
border-collapse: collapse;
|
|
118
|
-
width: 100%;
|
|
119
|
-
}
|
|
120
|
-
.coverage-summary tr { border-bottom: 1px solid #bbb; }
|
|
121
|
-
.keyline-all { border: 1px solid #ddd; }
|
|
122
|
-
.coverage-summary td, .coverage-summary th { padding: 10px; }
|
|
123
|
-
.coverage-summary tbody { border: 1px solid #bbb; }
|
|
124
|
-
.coverage-summary td { border-right: 1px solid #bbb; }
|
|
125
|
-
.coverage-summary td:last-child { border-right: none; }
|
|
126
|
-
.coverage-summary th {
|
|
127
|
-
text-align: left;
|
|
128
|
-
font-weight: normal;
|
|
129
|
-
white-space: nowrap;
|
|
130
|
-
}
|
|
131
|
-
.coverage-summary th.file { border-right: none !important; }
|
|
132
|
-
.coverage-summary th.pct { }
|
|
133
|
-
.coverage-summary th.pic,
|
|
134
|
-
.coverage-summary th.abs,
|
|
135
|
-
.coverage-summary td.pct,
|
|
136
|
-
.coverage-summary td.abs { text-align: right; }
|
|
137
|
-
.coverage-summary td.file { white-space: nowrap; }
|
|
138
|
-
.coverage-summary td.pic { min-width: 120px !important; }
|
|
139
|
-
.coverage-summary tfoot td { }
|
|
140
|
-
|
|
141
|
-
.coverage-summary .sorter {
|
|
142
|
-
height: 10px;
|
|
143
|
-
width: 7px;
|
|
144
|
-
display: inline-block;
|
|
145
|
-
margin-left: 0.5em;
|
|
146
|
-
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
|
-
}
|
|
148
|
-
.coverage-summary .sorted .sorter {
|
|
149
|
-
background-position: 0 -20px;
|
|
150
|
-
}
|
|
151
|
-
.coverage-summary .sorted-desc .sorter {
|
|
152
|
-
background-position: 0 -10px;
|
|
153
|
-
}
|
|
154
|
-
.status-line { height: 10px; }
|
|
155
|
-
/* yellow */
|
|
156
|
-
.cbranch-no { background: yellow !important; color: #111; }
|
|
157
|
-
/* dark red */
|
|
158
|
-
.red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
|
|
159
|
-
.low .chart { border:1px solid #C21F39 }
|
|
160
|
-
.highlighted,
|
|
161
|
-
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
-
background: #C21F39 !important;
|
|
163
|
-
}
|
|
164
|
-
/* medium red */
|
|
165
|
-
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
|
|
166
|
-
/* light red */
|
|
167
|
-
.low, .cline-no { background:#FCE1E5 }
|
|
168
|
-
/* light green */
|
|
169
|
-
.high, .cline-yes { background:rgb(230,245,208) }
|
|
170
|
-
/* medium green */
|
|
171
|
-
.cstat-yes { background:rgb(161,215,106) }
|
|
172
|
-
/* dark green */
|
|
173
|
-
.status-line.high, .high .cover-fill { background:rgb(77,146,33) }
|
|
174
|
-
.high .chart { border:1px solid rgb(77,146,33) }
|
|
175
|
-
/* dark yellow (gold) */
|
|
176
|
-
.status-line.medium, .medium .cover-fill { background: #f9cd0b; }
|
|
177
|
-
.medium .chart { border:1px solid #f9cd0b; }
|
|
178
|
-
/* light yellow */
|
|
179
|
-
.medium { background: #fff4c2; }
|
|
180
|
-
|
|
181
|
-
.cstat-skip { background: #ddd; color: #111; }
|
|
182
|
-
.fstat-skip { background: #ddd; color: #111 !important; }
|
|
183
|
-
.cbranch-skip { background: #ddd !important; color: #111; }
|
|
184
|
-
|
|
185
|
-
span.cline-neutral { background: #eaeaea; }
|
|
186
|
-
|
|
187
|
-
.coverage-summary td.empty {
|
|
188
|
-
opacity: .5;
|
|
189
|
-
padding-top: 4px;
|
|
190
|
-
padding-bottom: 4px;
|
|
191
|
-
line-height: 1;
|
|
192
|
-
color: #888;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.cover-fill, .cover-empty {
|
|
196
|
-
display:inline-block;
|
|
197
|
-
height: 12px;
|
|
198
|
-
}
|
|
199
|
-
.chart {
|
|
200
|
-
line-height: 0;
|
|
201
|
-
}
|
|
202
|
-
.cover-empty {
|
|
203
|
-
background: white;
|
|
204
|
-
}
|
|
205
|
-
.cover-full {
|
|
206
|
-
border-right: none !important;
|
|
207
|
-
}
|
|
208
|
-
pre.prettyprint {
|
|
209
|
-
border: none !important;
|
|
210
|
-
padding: 0 !important;
|
|
211
|
-
margin: 0 !important;
|
|
212
|
-
}
|
|
213
|
-
.com { color: #999 !important; }
|
|
214
|
-
.ignore-none { color: #999; font-weight: normal; }
|
|
215
|
-
|
|
216
|
-
.wrapper {
|
|
217
|
-
min-height: 100%;
|
|
218
|
-
height: auto !important;
|
|
219
|
-
height: 100%;
|
|
220
|
-
margin: 0 auto -48px;
|
|
221
|
-
}
|
|
222
|
-
.footer, .push {
|
|
223
|
-
height: 48px;
|
|
224
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
var jumpToCode = (function init() {
|
|
3
|
-
// Classes of code we would like to highlight in the file view
|
|
4
|
-
var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
|
|
5
|
-
|
|
6
|
-
// Elements to highlight in the file listing view
|
|
7
|
-
var fileListingElements = ['td.pct.low'];
|
|
8
|
-
|
|
9
|
-
// We don't want to select elements that are direct descendants of another match
|
|
10
|
-
var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
|
|
11
|
-
|
|
12
|
-
// Selecter that finds elements on the page to which we can jump
|
|
13
|
-
var selector =
|
|
14
|
-
fileListingElements.join(', ') +
|
|
15
|
-
', ' +
|
|
16
|
-
notSelector +
|
|
17
|
-
missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
|
|
18
|
-
|
|
19
|
-
// The NodeList of matching elements
|
|
20
|
-
var missingCoverageElements = document.querySelectorAll(selector);
|
|
21
|
-
|
|
22
|
-
var currentIndex;
|
|
23
|
-
|
|
24
|
-
function toggleClass(index) {
|
|
25
|
-
missingCoverageElements
|
|
26
|
-
.item(currentIndex)
|
|
27
|
-
.classList.remove('highlighted');
|
|
28
|
-
missingCoverageElements.item(index).classList.add('highlighted');
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
function makeCurrent(index) {
|
|
32
|
-
toggleClass(index);
|
|
33
|
-
currentIndex = index;
|
|
34
|
-
missingCoverageElements.item(index).scrollIntoView({
|
|
35
|
-
behavior: 'smooth',
|
|
36
|
-
block: 'center',
|
|
37
|
-
inline: 'center'
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function goToPrevious() {
|
|
42
|
-
var nextIndex = 0;
|
|
43
|
-
if (typeof currentIndex !== 'number' || currentIndex === 0) {
|
|
44
|
-
nextIndex = missingCoverageElements.length - 1;
|
|
45
|
-
} else if (missingCoverageElements.length > 1) {
|
|
46
|
-
nextIndex = currentIndex - 1;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
makeCurrent(nextIndex);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
function goToNext() {
|
|
53
|
-
var nextIndex = 0;
|
|
54
|
-
|
|
55
|
-
if (
|
|
56
|
-
typeof currentIndex === 'number' &&
|
|
57
|
-
currentIndex < missingCoverageElements.length - 1
|
|
58
|
-
) {
|
|
59
|
-
nextIndex = currentIndex + 1;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
makeCurrent(nextIndex);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
return function jump(event) {
|
|
66
|
-
if (
|
|
67
|
-
document.getElementById('fileSearch') === document.activeElement &&
|
|
68
|
-
document.activeElement != null
|
|
69
|
-
) {
|
|
70
|
-
// if we're currently focused on the search input, we don't want to navigate
|
|
71
|
-
return;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
switch (event.which) {
|
|
75
|
-
case 78: // n
|
|
76
|
-
case 74: // j
|
|
77
|
-
goToNext();
|
|
78
|
-
break;
|
|
79
|
-
case 66: // b
|
|
80
|
-
case 75: // k
|
|
81
|
-
case 80: // p
|
|
82
|
-
goToPrevious();
|
|
83
|
-
break;
|
|
84
|
-
}
|
|
85
|
-
};
|
|
86
|
-
})();
|
|
87
|
-
window.addEventListener('keydown', jumpToCode);
|
|
Binary file
|