-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.tsx
More file actions
228 lines (203 loc) · 6.65 KB
/
Copy pathindex.tsx
File metadata and controls
228 lines (203 loc) · 6.65 KB
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
"use client";
import type { ReactNode } from "react";
import { Children, cloneElement, createContext, isValidElement, useContext, useEffect, useMemo, useRef } from "react";
import { useIntersectionObserver } from "../hooks/useIntersectionObserver";
import { useMergeRefs } from "../hooks/useMergeRefs";
import { Scheduler } from "../scheduler";
import type { DOMEventNames, ImpressionOptions, TrackerConfig, TrackerContextProps } from "./types";
export function createTracker<Context, SendParams, EventParams, ImpressionParams, PageViewParams>(
config: TrackerConfig<Context, SendParams, EventParams, ImpressionParams, PageViewParams>,
) {
const TrackerContext = createContext<null | TrackerContextProps<
Context,
SendParams,
EventParams,
ImpressionParams,
PageViewParams
>>(null);
const useTracker = () => {
const trackerContext = useContext(TrackerContext);
if (trackerContext === null) {
throw new Error("useTracker must be used within a TrackerProvider");
}
const scheduledDomEvents = {} as Record<DOMEventNames, (params: EventParams) => void>;
for (const key in trackerContext.tracker.DOMEvents) {
scheduledDomEvents[key as DOMEventNames] = (params: EventParams) => {
return trackerContext._schedule(() =>
trackerContext.tracker.DOMEvents?.[key as DOMEventNames]?.(
params,
trackerContext._getContext(),
trackerContext._setContext,
),
);
};
}
return {
send: (params: SendParams) =>
trackerContext.tracker.send?.(params, trackerContext._getContext(), trackerContext._setContext),
setContext: trackerContext._setContext,
getContext: trackerContext._getContext,
events: {
...scheduledDomEvents,
onImpression: (params: ImpressionParams) => {
return trackerContext._schedule(() =>
trackerContext.tracker.impression?.onImpression(
params,
trackerContext._getContext(),
trackerContext._setContext,
),
);
},
onPageView: (params: PageViewParams) => {
return trackerContext._schedule(() =>
trackerContext.tracker.pageView?.onPageView(
params,
trackerContext._getContext(),
trackerContext._setContext,
),
);
},
},
};
};
const Provider = ({ children, initialContext }: { children: ReactNode; initialContext: Context }) => {
const contextRef = useRef<Context>(initialContext);
const isInitializedRef = useRef(false);
const schedulerRef = useRef<Scheduler>(
new Scheduler({
isTrackerInitialized: () => isInitializedRef.current,
batch: config.batch ?? { enable: false },
}),
);
const _setContext = (context: Context | ((prevContext: Context) => Context)) => {
if (typeof context === "function") {
contextRef.current = (context as (prevContext: Context) => Context)(contextRef.current);
} else {
contextRef.current = context;
}
};
useEffect(() => {
const initialize = config.init?.(initialContext, _setContext);
if (initialize instanceof Promise) {
initialize.then(() => {
isInitializedRef.current = true;
schedulerRef.current.startDelayedJobs();
});
} else {
isInitializedRef.current = true;
schedulerRef.current.startDelayedJobs();
}
const scheduler = schedulerRef.current;
scheduler.listen();
return () => {
scheduler.remove();
};
}, [initialContext]);
return (
<TrackerContext.Provider
value={useMemo(
() => ({
tracker: config,
_setContext,
_getContext: () => contextRef.current,
_schedule: schedulerRef.current.schedule,
}),
[],
)}
>
{children}
</TrackerContext.Provider>
);
};
const DOMEvent = ({ children, type, params }: { children: ReactNode; type: DOMEventNames; params: EventParams }) => {
const child = Children.only(children);
const tracker = useTracker();
return (
isValidElement<{ [key in DOMEventNames]?: (...args: any[]) => void }>(child) &&
cloneElement(child, {
...child.props,
[type]: (...args: any[]) => {
if (tracker.events[type] !== undefined) {
tracker.events[type](params);
}
if (child.props && typeof child.props?.[type] === "function") {
return child.props[type]?.(...args);
}
},
})
);
};
const Click = ({ children, params }: { children: ReactNode; params: EventParams }) => {
return (
<DOMEvent type="onClick" params={params}>
{children}
</DOMEvent>
);
};
const Impression = ({
children,
params,
options,
}: {
children: ReactNode;
params: ImpressionParams;
options?: ImpressionOptions;
}) => {
const tracker = useTracker();
const { ref: impressionRef } = useIntersectionObserver({
...(options ??
config.impression?.options ?? {
threshold: 0.2,
freezeOnceVisible: true,
initialIsIntersecting: false,
}),
onChange: (isIntersecting) => {
if (isIntersecting) tracker.events.onImpression?.(params);
},
});
const child = Children.only(children);
const hasRef = isValidElement(child) && (child as any)?.ref != null;
const ref = useMergeRefs<HTMLDivElement>(hasRef ? [(child as any).ref, impressionRef] : [impressionRef]);
return hasRef ? (
cloneElement(child as any, {
ref,
})
) : (
// FIXME: not a good solution since it can cause style issues
<div aria-hidden ref={ref}>
{child}
</div>
);
};
const PageView = ({ params }: { params: PageViewParams }) => {
const tracker = useTracker();
const onPageViewRef = useRef<() => Promise<void>>(undefined);
onPageViewRef.current = () => tracker.events.onPageView(params);
useEffect(() => {
onPageViewRef.current?.();
}, [onPageViewRef]);
return null;
};
const SetContext = ({ context }: { context: Context | ((prevContext: Context) => Context) }) => {
const tracker = useTracker();
useEffect(() => {
if (typeof context === "function") {
tracker.setContext((context as (prevContext: Context) => Context)(tracker.getContext()));
} else {
tracker.setContext(context);
}
}, [tracker, context]);
return null;
};
return [
{
Provider,
DOMEvent,
Click,
Impression,
PageView,
SetContext,
},
useTracker,
] as const;
}