-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathuseOnInView.test.tsx
More file actions
444 lines (367 loc) · 13.3 KB
/
useOnInView.test.tsx
File metadata and controls
444 lines (367 loc) · 13.3 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
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import { render } from "@testing-library/react";
import * as React from "react";
import type { IntersectionEffectOptions } from "..";
import { supportsRefCleanup } from "../reactVersion";
import { intersectionMockInstance, mockAllIsIntersecting } from "../test-utils";
import { useOnInView } from "../useOnInView";
const { useCallback, useEffect, useState } = React;
const OnInViewChangedComponent = ({
options,
unmount,
}: {
options?: IntersectionEffectOptions;
unmount?: boolean;
}) => {
const [inView, setInView] = useState(false);
const [callCount, setCallCount] = useState(0);
const [cleanupCount, setCleanupCount] = useState(0);
const inViewRef = useOnInView((isInView) => {
setInView(isInView);
setCallCount((prev) => prev + 1);
if (!isInView) {
setCleanupCount((prev) => prev + 1);
}
}, options);
return (
<div
data-testid="wrapper"
ref={!unmount ? inViewRef : undefined}
data-inview={inView.toString()}
data-call-count={callCount}
data-cleanup-count={cleanupCount}
>
{inView.toString()}
</div>
);
};
const LazyOnInViewChangedComponent = ({
options,
}: {
options?: IntersectionEffectOptions;
}) => {
const [isLoading, setIsLoading] = useState(true);
const [inView, setInView] = useState(false);
useEffect(() => {
setIsLoading(false);
}, []);
const inViewRef = useOnInView((isInView) => {
setInView(isInView);
}, options);
if (isLoading) return <div>Loading</div>;
return (
<div data-testid="wrapper" ref={inViewRef} data-inview={inView.toString()}>
{inView.toString()}
</div>
);
};
const OnInViewChangedComponentWithoutCleanup = ({
options,
unmount,
}: {
options?: IntersectionEffectOptions;
unmount?: boolean;
}) => {
const [callCount, setCallCount] = useState(0);
const inViewRef = useOnInView(() => {
setCallCount((prev) => prev + 1);
}, options);
return (
<div
data-testid="wrapper-no-cleanup"
ref={!unmount ? inViewRef : undefined}
data-call-count={callCount}
/>
);
};
const ThresholdTriggerComponent = ({
options,
}: {
options?: IntersectionEffectOptions;
}) => {
const [triggerCount, setTriggerCount] = useState(0);
const [cleanupCount, setCleanupCount] = useState(0);
const [lastRatio, setLastRatio] = useState<number | null>(null);
const [triggeredThresholds, setTriggeredThresholds] = useState<number[]>([]);
const inViewRef = useOnInView((isInView, entry) => {
setTriggerCount((prev) => prev + 1);
setLastRatio(entry.intersectionRatio);
if (isInView) {
// Add this ratio to our list of triggered thresholds
setTriggeredThresholds((prev) => [...prev, entry.intersectionRatio]);
} else {
setCleanupCount((prev) => prev + 1);
}
}, options);
return (
<div
data-testid="threshold-trigger"
ref={inViewRef}
data-trigger-count={triggerCount}
data-cleanup-count={cleanupCount}
data-last-ratio={lastRatio !== null ? lastRatio.toFixed(2) : "null"}
data-triggered-thresholds={JSON.stringify(triggeredThresholds)}
>
Tracking thresholds
</div>
);
};
test("should create a hook with useOnInView", () => {
const { getByTestId } = render(<OnInViewChangedComponent />);
const wrapper = getByTestId("wrapper");
const instance = intersectionMockInstance(wrapper);
expect(instance.observe).toHaveBeenCalledWith(wrapper);
});
test("should create a hook with array threshold", () => {
const { getByTestId } = render(
<OnInViewChangedComponent options={{ threshold: [0.1, 1] }} />,
);
const wrapper = getByTestId("wrapper");
const instance = intersectionMockInstance(wrapper);
expect(instance.observe).toHaveBeenCalledWith(wrapper);
});
test("should create a lazy hook with useOnInView", () => {
const { getByTestId } = render(<LazyOnInViewChangedComponent />);
const wrapper = getByTestId("wrapper");
const instance = intersectionMockInstance(wrapper);
expect(instance.observe).toHaveBeenCalledWith(wrapper);
});
test("should call the callback when element comes into view", () => {
const { getByTestId } = render(<OnInViewChangedComponent />);
mockAllIsIntersecting(true);
const wrapper = getByTestId("wrapper");
expect(wrapper.getAttribute("data-inview")).toBe("true");
expect(wrapper.getAttribute("data-call-count")).toBe("1");
});
test("should ignore initial false intersection", () => {
const { getByTestId } = render(<OnInViewChangedComponent />);
const wrapper = getByTestId("wrapper");
mockAllIsIntersecting(false);
expect(wrapper.getAttribute("data-call-count")).toBe("0");
mockAllIsIntersecting(true);
expect(wrapper.getAttribute("data-call-count")).toBe("1");
});
test("should call cleanup when element leaves view", () => {
const { getByTestId } = render(<OnInViewChangedComponent />);
mockAllIsIntersecting(true);
mockAllIsIntersecting(false);
const wrapper = getByTestId("wrapper");
expect(wrapper.getAttribute("data-inview")).toBe("false");
expect(wrapper.getAttribute("data-cleanup-count")).toBe("1");
});
test("should respect threshold values", () => {
const { getByTestId } = render(
<OnInViewChangedComponent options={{ threshold: [0.5, 1] }} />,
);
const wrapper = getByTestId("wrapper");
mockAllIsIntersecting(0.2);
expect(wrapper.getAttribute("data-inview")).toBe("false");
mockAllIsIntersecting(0.5);
expect(wrapper.getAttribute("data-inview")).toBe("true");
mockAllIsIntersecting(1);
expect(wrapper.getAttribute("data-inview")).toBe("true");
});
test("should respect triggerOnce option", () => {
const { getByTestId } = render(
<>
<OnInViewChangedComponent />
<OnInViewChangedComponentWithoutCleanup options={{ triggerOnce: true }} />
</>,
);
const wrapper = getByTestId("wrapper");
const wrapperTriggerOnce = getByTestId("wrapper-no-cleanup");
mockAllIsIntersecting(true);
expect(wrapper.getAttribute("data-call-count")).toBe("1");
expect(wrapperTriggerOnce.getAttribute("data-call-count")).toBe("1");
mockAllIsIntersecting(false);
expect(wrapper.getAttribute("data-cleanup-count")).toBe("1");
mockAllIsIntersecting(true);
expect(wrapper.getAttribute("data-call-count")).toBe("3");
expect(wrapperTriggerOnce.getAttribute("data-call-count")).toBe("1");
});
test("should respect skip option", () => {
const { getByTestId, rerender } = render(
<OnInViewChangedComponent options={{ skip: true }} />,
);
mockAllIsIntersecting(true);
const wrapper = getByTestId("wrapper");
expect(wrapper.getAttribute("data-inview")).toBe("false");
expect(wrapper.getAttribute("data-call-count")).toBe("0");
rerender(<OnInViewChangedComponent options={{ skip: false }} />);
mockAllIsIntersecting(true);
expect(wrapper.getAttribute("data-inview")).toBe("true");
expect(wrapper.getAttribute("data-call-count")).toBe("1");
});
test("should handle unmounting properly", () => {
const { unmount, getByTestId } = render(<OnInViewChangedComponent />);
const wrapper = getByTestId("wrapper");
const instance = intersectionMockInstance(wrapper);
unmount();
expect(instance.unobserve).toHaveBeenCalledWith(wrapper);
});
test("should handle ref changes", () => {
const { rerender, getByTestId } = render(<OnInViewChangedComponent />);
mockAllIsIntersecting(true);
mockAllIsIntersecting(false);
rerender(<OnInViewChangedComponent unmount />);
// Component should register the element leaving view before ref removal
const wrapper = getByTestId("wrapper");
expect(wrapper.getAttribute("data-cleanup-count")).toBe("1");
// Add the ref back
rerender(<OnInViewChangedComponent />);
mockAllIsIntersecting(true);
expect(wrapper.getAttribute("data-inview")).toBe("true");
});
// Test for merging refs
const MergeRefsComponent = ({
options,
}: {
options?: IntersectionEffectOptions;
}) => {
const [inView, setInView] = useState(false);
const inViewRef = useOnInView((isInView) => {
setInView(isInView);
}, options);
const setRef = useCallback(
(node: Element | null) => inViewRef(node),
[inViewRef],
);
return (
<div data-testid="inview" data-inview={inView.toString()} ref={setRef} />
);
};
test("should handle merged refs", () => {
const { rerender, getByTestId } = render(<MergeRefsComponent />);
mockAllIsIntersecting(true);
rerender(<MergeRefsComponent />);
expect(getByTestId("inview").getAttribute("data-inview")).toBe("true");
});
// Test multiple callbacks on the same element
const MultipleCallbacksComponent = ({
options,
}: {
options?: IntersectionEffectOptions;
}) => {
const [inView1, setInView1] = useState(false);
const [inView2, setInView2] = useState(false);
const [inView3, setInView3] = useState(false);
const ref1 = useOnInView((isInView) => {
setInView1(isInView);
}, options);
const ref2 = useOnInView((isInView) => {
setInView2(isInView);
}, options);
const ref3 = useOnInView((isInView) => {
setInView3(isInView);
});
const mergedRefs = useCallback(
(node: Element | null) => {
const cleanup = [ref1(node), ref2(node), ref3(node)];
if (!supportsRefCleanup) {
return;
}
return () =>
cleanup.forEach((fn) => {
fn?.();
});
},
[ref1, ref2, ref3],
);
return (
<div ref={mergedRefs}>
<div data-testid="item-1" data-inview={inView1}>
{inView1.toString()}
</div>
<div data-testid="item-2" data-inview={inView2}>
{inView2.toString()}
</div>
<div data-testid="item-3" data-inview={inView3}>
{inView3.toString()}
</div>
</div>
);
};
test("should handle multiple callbacks on the same element", () => {
const { getByTestId } = render(
<MultipleCallbacksComponent options={{ threshold: 0.1 }} />,
);
mockAllIsIntersecting(true);
expect(getByTestId("item-1").getAttribute("data-inview")).toBe("true");
expect(getByTestId("item-2").getAttribute("data-inview")).toBe("true");
expect(getByTestId("item-3").getAttribute("data-inview")).toBe("true");
});
test("should pass the element to the callback", () => {
let capturedElement: Element | undefined;
const ElementTestComponent = () => {
const inViewRef = useOnInView((_, entry) => {
capturedElement = entry.target;
});
return <div data-testid="element-test" ref={inViewRef} />;
};
const { getByTestId } = render(<ElementTestComponent />);
const element = getByTestId("element-test");
mockAllIsIntersecting(true);
expect(capturedElement).toBe(element);
});
test("should track which threshold triggered the visibility change", () => {
// Using multiple specific thresholds
const { getByTestId } = render(
<ThresholdTriggerComponent options={{ threshold: [0.25, 0.5, 0.75] }} />,
);
const element = getByTestId("threshold-trigger");
// Initially not in view
expect(element.getAttribute("data-trigger-count")).toBe("0");
// Trigger at exactly the first threshold (0.25)
mockAllIsIntersecting(0.25);
expect(element.getAttribute("data-trigger-count")).toBe("1");
expect(element.getAttribute("data-last-ratio")).toBe("0.25");
// Go out of view
mockAllIsIntersecting(0);
expect(element.getAttribute("data-trigger-count")).toBe("2");
// Trigger at exactly the second threshold (0.5)
mockAllIsIntersecting(0.5);
expect(element.getAttribute("data-trigger-count")).toBe("3");
expect(element.getAttribute("data-last-ratio")).toBe("0.50");
// Go out of view
mockAllIsIntersecting(0);
expect(element.getAttribute("data-trigger-count")).toBe("4");
// Trigger at exactly the third threshold (0.75)
mockAllIsIntersecting(0.75);
expect(element.getAttribute("data-trigger-count")).toBe("5");
expect(element.getAttribute("data-last-ratio")).toBe("0.75");
// Check all triggered thresholds were recorded
const triggeredThresholds = JSON.parse(
element.getAttribute("data-triggered-thresholds") || "[]",
);
expect(triggeredThresholds).toContain(0.25);
expect(triggeredThresholds).toContain(0.5);
expect(triggeredThresholds).toContain(0.75);
});
test("should track thresholds when crossing multiple in a single update", () => {
// Using multiple specific thresholds
const { getByTestId } = render(
<ThresholdTriggerComponent options={{ threshold: [0.2, 0.4, 0.6, 0.8] }} />,
);
const element = getByTestId("threshold-trigger");
// Initially not in view
expect(element.getAttribute("data-trigger-count")).toBe("0");
// Jump straight to 0.7 (crosses 0.2, 0.4, 0.6 thresholds)
// The IntersectionObserver will still only call the callback once
// with the highest threshold that was crossed
mockAllIsIntersecting(0.7);
expect(element.getAttribute("data-trigger-count")).toBe("1");
expect(element.getAttribute("data-cleanup-count")).toBe("0");
expect(element.getAttribute("data-last-ratio")).toBe("0.60");
// Go out of view
mockAllIsIntersecting(0);
expect(element.getAttribute("data-cleanup-count")).toBe("1");
expect(element.getAttribute("data-trigger-count")).toBe("2");
// Change to 0.5 (crosses 0.2, 0.4 thresholds)
mockAllIsIntersecting(0.5);
expect(element.getAttribute("data-trigger-count")).toBe("3");
expect(element.getAttribute("data-last-ratio")).toBe("0.40");
// Jump to full visibility - should cleanup the 0.5 callback
mockAllIsIntersecting(1.0);
expect(element.getAttribute("data-trigger-count")).toBe("4");
expect(element.getAttribute("data-cleanup-count")).toBe("1");
expect(element.getAttribute("data-last-ratio")).toBe("0.80");
});