-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathaudit-details.d.ts
322 lines (292 loc) · 9.31 KB
/
audit-details.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/**
* @license
* Copyright 2019 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {IcuMessage} from './i18n.js';
import Treemap from './treemap.js';
/** Common properties for all details types. */
interface BaseDetails {
/** Additional information, usually used for including debug or meta information in the LHR */
debugData?: Details.DebugData;
}
type Details =
Details.CriticalRequestChain |
Details.DebugData |
Details.TreemapData |
Details.Filmstrip |
Details.List |
Details.Opportunity |
Details.Screenshot |
Details.Checklist |
Details.Table;
// Details namespace.
declare module Details {
interface CriticalRequestChain extends BaseDetails {
type: 'criticalrequestchain';
longestChain: {
duration: number;
length: number;
transferSize: number;
};
chains: SimpleCriticalRequestNode;
}
type SimpleCriticalRequestNode = {
[id: string]: {
request: {
url: string;
startTime: number;
endTime: number;
responseReceivedTime: number;
transferSize: number;
};
children?: SimpleCriticalRequestNode;
}
}
interface Filmstrip extends BaseDetails {
type: 'filmstrip';
scale: number;
items: {
/** The relative time from navigationStart to this frame, in milliseconds. */
timing: number;
/** The raw timestamp of this frame, in microseconds. */
timestamp: number;
/** The data URL encoding of this frame. */
data: string;
}[];
}
interface List extends BaseDetails {
type: 'list';
// NOTE: any `Details` type *should* be usable in `items`, but check
// styles/report-ui-features are good before adding.
items: Array<Table | DebugData>;
}
interface Opportunity extends BaseDetails {
type: 'opportunity';
headings: TableColumnHeading[];
items: OpportunityItem[];
/**
* Columns to sort the items by, during grouping.
* If omitted, entity groups will be sorted by the audit ordering vs. the new totals.
*/
sortedBy?: Array<string>;
/** Will be true if the table is already grouped by entities. */
isEntityGrouped?: boolean;
/** Column keys to skip summing. If omitted, all column types supported are summed. */
skipSumming?: Array<string>;
/**
* @deprecated
* Historically this represents the time saved on the entire page load. It's mostly used as an
* alias for `metricSavings.LCP` now. We recommend using `metricSavings` directly for more
* metric-specific savings estimates.
*/
overallSavingsMs?: number;
/** Total byte savings covered by this audit. */
overallSavingsBytes?: number;
}
interface Screenshot extends BaseDetails {
type: 'screenshot';
timing: number;
timestamp: number;
data: string;
}
interface Rect {
width: number;
height: number;
top: number;
right: number;
bottom: number;
left: number;
}
interface Checklist extends BaseDetails {
type: 'checklist',
items: Record<string, {value: boolean, label: IcuMessage | string}>,
}
interface Table extends BaseDetails {
type: 'table';
headings: TableColumnHeading[];
items: TableItem[];
summary?: {
wastedMs?: number;
wastedBytes?: number;
};
/**
* Columns to sort the items by, during grouping.
* If omitted, entity groups will be sorted by the audit ordering vs. the new totals.
*/
sortedBy?: Array<string>;
/** Will be true if the table is already grouped by entities. */
isEntityGrouped?: boolean;
/** Column keys to skip summing. If omitted, all column types supported are summed. */
skipSumming?: Array<string>;
}
/** A table item for rows that are nested within a top-level TableItem (row). */
interface TableSubItems {
type: 'subitems';
items: TableItem[];
}
/**
* A details type that is not rendered in the final report; usually used
* for including debug information in the LHR. Can contain anything.
*/
interface DebugData {
type: 'debugdata';
[p: string]: any;
}
interface TreemapData extends BaseDetails {
type: 'treemap-data';
nodes: Treemap.Node[];
}
/** String enum of possible types of values found within table items. */
type ItemValueType = 'bytes' | 'code' | 'link' | 'ms' | 'multi' | 'node' | 'source-location' | 'numeric' | 'text' | 'thumbnail' | 'timespanMs' | 'url';
/** Possible types of values found within table items. */
type ItemValue = string | number | boolean | DebugData | NodeValue | SourceLocationValue | LinkValue | UrlValue | CodeValue | NumericValue | IcuMessage | TableSubItems;
interface TableColumnHeading {
/**
* The name of the property within items being described.
* If null, subItemsHeading must be defined, and the first table row in this column for
* every item will be empty.
* See legacy-javascript for an example.
*/
key: string|null;
/** Readable text label of the field. */
label: IcuMessage | string;
/**
* The data format of the column of values being described. Usually
* those values will be primitives rendered as this type, but the values
* could also be objects with their own type to override this field.
*/
valueType: ItemValueType;
/**
* Optional - defines an inner table of values that correspond to this column.
* Key is required - if other properties are not provided, the value for the heading is used.
*/
subItemsHeading?: {key: string, valueType?: ItemValueType, displayUnit?: string, granularity?: number};
displayUnit?: string;
granularity?: number;
}
interface TableItem {
debugData?: DebugData;
subItems?: TableSubItems;
[p: string]: undefined | ItemValue;
}
/** A more specific table element used for `opportunity` tables. */
interface OpportunityItem extends TableItem {
url: string;
wastedBytes?: number;
totalBytes?: number;
wastedMs?: number;
debugData?: DebugData;
[p: string]: undefined | ItemValue;
}
/**
* A value used within a details object, intended to be displayed as code,
* regardless of the controlling heading's valueType.
*/
interface CodeValue {
type: 'code';
value: IcuMessage | string;
}
/**
* A value used within a details object, intended to be displayed as a
* link with text, regardless of the controlling heading's valueType.
* If URL is the empty string, fallsback to a basic `TextValue`.
*/
interface LinkValue {
type: 'link',
text: string;
url: string;
}
/**
* A value used within a details object, intended to be displayed an HTML
* node, regardless of the controlling heading's valueType.
*/
interface NodeValue {
type: 'node';
/** Unique identifier. */
lhId?: string;
path?: string;
selector?: string;
boundingRect?: Rect;
/** An HTML snippet used to identify the node. */
snippet?: string;
/** A human-friendly text descriptor that's used to identify the node more quickly. */
nodeLabel?: string;
/** A human-friendly explainer on how to approach the possible fix. */
explanation?: string;
}
/**
* A value used within a details object, intended to be displayed as a URL
* encoded with line and column info (url:line:column).
*/
interface SourceLocationValue {
type: 'source-location';
/** A "url" representing the source file. May not be a valid URL, see `urlProvider`. */
url: string;
/**
* - `network` when the url is the actual, observed resource url. This is always a valid URL.
* - `comment` when the url comes from a sourceURL comment. This could be anything, really.
*/
urlProvider: 'network' | 'comment';
/** Zero-indexed. */
line: number;
/** Zero-indexed. */
column: number;
/** The original file location from the source map. */
original?: {
/** The relevant file from the map's `sources` array. */
file: string;
line: number;
column: number;
};
}
/**
* A value used within a details object, intended to be displayed as a
* linkified URL, regardless of the controlling heading's valueType.
*/
interface UrlValue {
type: 'url';
value: string;
}
/**
* Snippet of text with line numbers and annotations.
*/
interface SnippetValue {
type: 'snippet',
title: string,
/** Node where the content of this snippet came from. */
node?: NodeValue,
/**
* The lines that should be rendered. For long snippets we only include important lines
* in the audit result.
*/
lines: {
content: string
/** Line number, starting from 1. */
lineNumber: number;
truncated?: boolean
}[],
/** The total number of lines in the snippet, equal to lines.length for short snippets. */
lineCount: number,
/** Messages that provide information about a specific lines. */
lineMessages: {
/** Line number, starting from 1. */
lineNumber: number,
message: string
}[];
/** Messages that provide information about the snippet in general. */
generalMessages: {
message: string
}[];
}
/**
* A value used within a details object, intended to be displayed as a ms timing
* or a numeric value based on the metric name.
*/
interface NumericValue {
type: 'numeric',
value: number,
granularity?: number,
}
}
export default Details;