-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathtypes.ts
106 lines (91 loc) · 3.31 KB
/
types.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
// h/t https://stackoverflow.com/a/59801602/93579
type ExcludeProps< T > = { [ k: string ]: any } & { [ K in keyof T ]?: never };
import { onCLS, onFCP, onINP, onLCP, onTTFB } from 'web-vitals';
import {
onCLS as onCLSWithAttribution,
onFCP as onFCPWithAttribution,
onINP as onINPWithAttribution,
onLCP as onLCPWithAttribution,
onTTFB as onTTFBWithAttribution,
} from 'web-vitals/attribution';
export interface ElementData {
isLCP: boolean;
isLCPCandidate: boolean;
xpath: string;
intersectionRatio: number;
intersectionRect: DOMRectReadOnly;
boundingClientRect: DOMRectReadOnly;
}
export type ExtendedElementData = ExcludeProps< ElementData >;
export interface URLMetric {
url: string;
viewport: {
width: number;
height: number;
};
elements: ElementData[];
}
export type ExtendedRootData = ExcludeProps< URLMetric >;
export interface URLMetricGroupStatus {
minimumViewportWidth: number;
maximumViewportWidth: number | null;
complete: boolean;
}
export type OnTTFBFunction = typeof onTTFB;
export type OnFCPFunction = typeof onFCP;
export type OnLCPFunction = typeof onLCP;
export type OnINPFunction = typeof onINP;
export type OnCLSFunction = typeof onCLS;
export type OnTTFBWithAttributionFunction = typeof onTTFBWithAttribution;
export type OnFCPWithAttributionFunction = typeof onFCPWithAttribution;
export type OnLCPWithAttributionFunction = typeof onLCPWithAttribution;
export type OnINPWithAttributionFunction = typeof onINPWithAttribution;
export type OnCLSWithAttributionFunction = typeof onCLSWithAttribution;
export type LogFunction = ( ...message: any[] ) => void;
export interface Logger {
log: LogFunction;
info: LogFunction;
warn: LogFunction;
error: LogFunction;
}
export type GetRootDataFunction = () => URLMetric;
export type ExtendRootDataFunction = ( properties: ExtendedRootData ) => void;
export type GetElementDataFunction = ( xpath: string ) => ElementData | null;
export type ExtendElementDataFunction = (
xpath: string,
properties: ExtendedElementData
) => void;
export type InitializeArgs = {
readonly isDebug: boolean;
readonly log: LogFunction;
readonly info: LogFunction;
readonly warn: LogFunction;
readonly error: LogFunction;
readonly onTTFB: OnTTFBFunction | OnTTFBWithAttributionFunction;
readonly onFCP: OnFCPFunction | OnFCPWithAttributionFunction;
readonly onLCP: OnLCPFunction | OnLCPWithAttributionFunction;
readonly onINP: OnINPFunction | OnINPWithAttributionFunction;
readonly onCLS: OnCLSFunction | OnCLSWithAttributionFunction;
readonly getRootData: GetRootDataFunction;
readonly extendRootData: ExtendRootDataFunction;
readonly getElementData: GetElementDataFunction;
readonly extendElementData: ExtendElementDataFunction;
};
export type InitializeCallback = ( args: InitializeArgs ) => Promise< void >;
export type FinalizeArgs = {
readonly getRootData: GetRootDataFunction;
readonly extendRootData: ExtendRootDataFunction;
readonly getElementData: GetElementDataFunction;
readonly extendElementData: ExtendElementDataFunction;
readonly isDebug: boolean;
readonly log: LogFunction;
readonly info: LogFunction;
readonly warn: LogFunction;
readonly error: LogFunction;
};
export type FinalizeCallback = ( args: FinalizeArgs ) => Promise< void >;
export interface Extension {
readonly name?: string;
readonly initialize?: InitializeCallback;
readonly finalize?: FinalizeCallback;
}