@@ -56,11 +56,15 @@ class CategoryRenderer {
56
56
57
57
// Append audit details to header section so the entire audit is within a <details>.
58
58
const header = /** @type {!HTMLDetailsElement } */ ( this . _dom . find ( '.lh-score__header' , tmpl ) ) ;
59
- header . open = audit . score < 100 ; // expand failed audits
60
59
if ( audit . result . details ) {
61
60
header . appendChild ( this . _detailsRenderer . render ( audit . result . details ) ) ;
62
61
}
63
62
63
+ const scoreEl = this . _dom . find ( '.lh-score' , tmpl ) ;
64
+ if ( audit . result . informative ) {
65
+ scoreEl . classList . add ( 'lh-score--informative' ) ;
66
+ }
67
+
64
68
return this . _populateScore ( tmpl , audit . score , scoringMode , title , description ) ;
65
69
}
66
70
@@ -93,6 +97,11 @@ class CategoryRenderer {
93
97
_renderCategoryScore ( category ) {
94
98
const tmpl = this . _dom . cloneTemplate ( '#tmpl-lh-category-score' , this . _templateContext ) ;
95
99
const score = Math . round ( category . score ) ;
100
+
101
+ const gaugeContainerEl = this . _dom . find ( '.lh-score__gauge' , tmpl ) ;
102
+ const gaugeEl = this . renderScoreGauge ( category ) ;
103
+ gaugeContainerEl . appendChild ( gaugeEl ) ;
104
+
96
105
return this . _populateScore ( tmpl , score , 'numeric' , category . name , category . description ) ;
97
106
}
98
107
@@ -142,11 +151,25 @@ class CategoryRenderer {
142
151
return tmpl ;
143
152
}
144
153
154
+ /**
155
+ * @param {!ReportRenderer.CategoryJSON } category
156
+ * @param {!Object<string, !ReportRenderer.GroupJSON> } groups
157
+ * @return {!Element }
158
+ */
159
+ render ( category , groups ) {
160
+ switch ( category . id ) {
161
+ case 'accessibility' :
162
+ return this . _renderAccessibilityCategory ( category , groups ) ;
163
+ default :
164
+ return this . _renderDefaultCategory ( category ) ;
165
+ }
166
+ }
167
+
145
168
/**
146
169
* @param {!ReportRenderer.CategoryJSON } category
147
170
* @return {!Element }
148
171
*/
149
- render ( category ) {
172
+ _renderDefaultCategory ( category ) {
150
173
const element = this . _dom . createElement ( 'div' , 'lh-category' ) ;
151
174
element . id = category . id ;
152
175
element . appendChild ( this . _renderCategoryScore ( category ) ) ;
@@ -174,6 +197,89 @@ class CategoryRenderer {
174
197
element . appendChild ( passedElem ) ;
175
198
return element ;
176
199
}
200
+
201
+ /**
202
+ * @param {!Array<!ReportRenderer.AuditJSON> } audits
203
+ * @param {!ReportRenderer.GroupJSON } group
204
+ * @return {!Element }
205
+ */
206
+ _renderAuditGroup ( audits , group ) {
207
+ const auditGroupElem = this . _dom . createElement ( 'details' ,
208
+ 'lh-audit-group lh-expandable-details' ) ;
209
+ const auditGroupHeader = this . _dom . createElement ( 'div' ,
210
+ 'lh-audit-group__header lh-expandable-details__header' ) ;
211
+ auditGroupHeader . textContent = group . title ;
212
+
213
+ const auditGroupDescription = this . _dom . createElement ( 'div' , 'lh-audit-group__description' ) ;
214
+ auditGroupDescription . textContent = group . description ;
215
+
216
+ const auditGroupSummary = this . _dom . createElement ( 'summary' ,
217
+ 'lh-audit-group__summary lh-expandable-details__summary' ) ;
218
+ const auditGroupArrow = this . _dom . createElement ( 'div' , 'lh-toggle-arrow' , {
219
+ title : 'See audits' ,
220
+ } ) ;
221
+ auditGroupSummary . appendChild ( auditGroupHeader ) ;
222
+ auditGroupSummary . appendChild ( auditGroupArrow ) ;
223
+
224
+ auditGroupElem . appendChild ( auditGroupSummary ) ;
225
+ auditGroupElem . appendChild ( auditGroupDescription ) ;
226
+ audits . forEach ( audit => auditGroupElem . appendChild ( this . _renderAudit ( audit ) ) ) ;
227
+ return auditGroupElem ;
228
+ }
229
+
230
+ /**
231
+ * @param {!ReportRenderer.CategoryJSON } category
232
+ * @param {!Object<string, !ReportRenderer.GroupJSON> } groupDefinitions
233
+ * @return {!Element }
234
+ */
235
+ _renderAccessibilityCategory ( category , groupDefinitions ) {
236
+ const element = this . _dom . createElement ( 'div' , 'lh-category' ) ;
237
+ element . id = category . id ;
238
+ element . appendChild ( this . _renderCategoryScore ( category ) ) ;
239
+
240
+ const auditsGroupedByGroup = /** @type {!Object<string,
241
+ {passed: !Array<!ReportRenderer.AuditJSON>,
242
+ failed: !Array<!ReportRenderer.AuditJSON>}>} */ ( { } ) ;
243
+ category . audits . forEach ( audit => {
244
+ const groupId = audit . group ;
245
+ const groups = auditsGroupedByGroup [ groupId ] || { passed : [ ] , failed : [ ] } ;
246
+
247
+ if ( audit . score === 100 ) {
248
+ groups . passed . push ( audit ) ;
249
+ } else {
250
+ groups . failed . push ( audit ) ;
251
+ }
252
+
253
+ auditsGroupedByGroup [ groupId ] = groups ;
254
+ } ) ;
255
+
256
+ const passedElements = /** @type {!Array<!Element> } */ ( [ ] ) ;
257
+ Object . keys ( auditsGroupedByGroup ) . forEach ( groupId => {
258
+ const group = groupDefinitions [ groupId ] ;
259
+ const groups = auditsGroupedByGroup [ groupId ] ;
260
+ if ( groups . failed . length ) {
261
+ const auditGroupElem = this . _renderAuditGroup ( groups . failed , group ) ;
262
+ auditGroupElem . open = true ;
263
+ element . appendChild ( auditGroupElem ) ;
264
+ }
265
+
266
+ if ( groups . passed . length ) {
267
+ const auditGroupElem = this . _renderAuditGroup ( groups . passed , group ) ;
268
+ passedElements . push ( auditGroupElem ) ;
269
+ }
270
+ } ) ;
271
+
272
+ // don't create a passed section if there are no passed
273
+ if ( ! passedElements . length ) return element ;
274
+
275
+ const passedElem = this . _dom . createElement ( 'details' , 'lh-passed-audits' ) ;
276
+ const passedSummary = this . _dom . createElement ( 'summary' , 'lh-passed-audits-summary' ) ;
277
+ passedElem . appendChild ( passedSummary ) ;
278
+ passedSummary . textContent = `View ${ passedElements . length } passed items` ;
279
+ passedElements . forEach ( elem => passedElem . appendChild ( elem ) ) ;
280
+ element . appendChild ( passedElem ) ;
281
+ return element ;
282
+ }
177
283
}
178
284
179
285
if ( typeof module !== 'undefined' && module . exports ) {
0 commit comments