@fluentui/react-virtualizer 9.0.0-alpha.84 → 9.0.0-alpha.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -2
- package/dist/index.d.ts +78 -5
- package/lib/components/Virtualizer/Virtualizer.types.js.map +1 -1
- package/lib/components/Virtualizer/useVirtualizer.js +208 -143
- package/lib/components/Virtualizer/useVirtualizer.js.map +1 -1
- package/lib/components/VirtualizerScrollView/useVirtualizerScrollView.js +3 -3
- package/lib/components/VirtualizerScrollView/useVirtualizerScrollView.js.map +1 -1
- package/lib/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.js.map +1 -1
- package/lib/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.js +11 -9
- package/lib/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.js.map +1 -1
- package/lib/hooks/hooks.types.js.map +1 -1
- package/lib/hooks/index.js +1 -0
- package/lib/hooks/index.js.map +1 -1
- package/lib/hooks/useDynamicVirtualizerMeasure.js +63 -45
- package/lib/hooks/useDynamicVirtualizerMeasure.js.map +1 -1
- package/lib/hooks/useMeasureList.js +14 -2
- package/lib/hooks/useMeasureList.js.map +1 -1
- package/lib/hooks/useResizeObserverRef.js +11 -1
- package/lib/hooks/useResizeObserverRef.js.map +1 -1
- package/lib/hooks/useVirtualizerMeasure.js +31 -15
- package/lib/hooks/useVirtualizerMeasure.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/utilities/VirtualizerContext/VirtualizerContext.js +12 -14
- package/lib/utilities/VirtualizerContext/VirtualizerContext.js.map +1 -1
- package/lib/utilities/VirtualizerContext/types.js +1 -3
- package/lib/utilities/VirtualizerContext/types.js.map +1 -1
- package/lib-commonjs/components/Virtualizer/Virtualizer.types.js.map +1 -1
- package/lib-commonjs/components/Virtualizer/useVirtualizer.js +206 -141
- package/lib-commonjs/components/Virtualizer/useVirtualizer.js.map +1 -1
- package/lib-commonjs/components/VirtualizerScrollView/useVirtualizerScrollView.js +3 -3
- package/lib-commonjs/components/VirtualizerScrollView/useVirtualizerScrollView.js.map +1 -1
- package/lib-commonjs/components/VirtualizerScrollViewDynamic/VirtualizerScrollViewDynamic.types.js.map +1 -1
- package/lib-commonjs/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.js +11 -9
- package/lib-commonjs/components/VirtualizerScrollViewDynamic/useVirtualizerScrollViewDynamic.js.map +1 -1
- package/lib-commonjs/hooks/hooks.types.js.map +1 -1
- package/lib-commonjs/hooks/index.js +1 -0
- package/lib-commonjs/hooks/index.js.map +1 -1
- package/lib-commonjs/hooks/useDynamicVirtualizerMeasure.js +62 -44
- package/lib-commonjs/hooks/useDynamicVirtualizerMeasure.js.map +1 -1
- package/lib-commonjs/hooks/useMeasureList.js +14 -2
- package/lib-commonjs/hooks/useMeasureList.js.map +1 -1
- package/lib-commonjs/hooks/useResizeObserverRef.js +11 -1
- package/lib-commonjs/hooks/useResizeObserverRef.js.map +1 -1
- package/lib-commonjs/hooks/useVirtualizerMeasure.js +31 -15
- package/lib-commonjs/hooks/useVirtualizerMeasure.js.map +1 -1
- package/lib-commonjs/index.js +3 -0
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utilities/VirtualizerContext/VirtualizerContext.js +11 -13
- package/lib-commonjs/utilities/VirtualizerContext/VirtualizerContext.js.map +1 -1
- package/lib-commonjs/utilities/VirtualizerContext/types.js +3 -3
- package/lib-commonjs/utilities/VirtualizerContext/types.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,20 +1,26 @@
|
|
|
1
|
-
import { useEffect, useRef, useCallback,
|
|
1
|
+
import { useEffect, useRef, useCallback, useImperativeHandle, useState, useReducer } from 'react';
|
|
2
2
|
import { useIntersectionObserver } from '../../hooks/useIntersectionObserver';
|
|
3
|
-
import { flushSync } from 'react-dom';
|
|
4
3
|
import { useVirtualizerContextState_unstable } from '../../Utilities';
|
|
5
4
|
import { slot, useTimeout } from '@fluentui/react-utilities';
|
|
5
|
+
import { flushSync } from 'react-dom';
|
|
6
6
|
export function useVirtualizer_unstable(props) {
|
|
7
7
|
'use no memo';
|
|
8
|
-
const { itemSize, numItems, virtualizerLength, children: renderChild, getItemSize, bufferItems = Math.round(virtualizerLength / 4.0), bufferSize = Math.floor(bufferItems / 2.0) * itemSize,
|
|
8
|
+
const { itemSize, numItems, virtualizerLength, children: renderChild, getItemSize, bufferItems = Math.round(virtualizerLength / 4.0), bufferSize = Math.floor(bufferItems / 2.0) * itemSize, axis = 'vertical', reversed = false, virtualizerContext, onRenderedFlaggedIndex, imperativeVirtualizerRef, containerSizeRef, scrollViewRef, enableScrollLoad } = props;
|
|
9
9
|
/* The context is optional, it's useful for injecting additional index logic, or performing uniform state updates*/ const _virtualizerContext = useVirtualizerContextState_unstable(virtualizerContext);
|
|
10
10
|
// We use this ref as a constant source to access the virtualizer's state imperatively
|
|
11
11
|
const actualIndexRef = useRef(_virtualizerContext.contextIndex);
|
|
12
|
-
if (actualIndexRef.current !== _virtualizerContext.contextIndex) {
|
|
13
|
-
actualIndexRef.current = _virtualizerContext.contextIndex;
|
|
14
|
-
}
|
|
15
12
|
const flaggedIndex = useRef(null);
|
|
16
13
|
const actualIndex = _virtualizerContext.contextIndex;
|
|
17
|
-
|
|
14
|
+
// Just in case our ref gets out of date vs the context during a re-render
|
|
15
|
+
if (_virtualizerContext.contextIndex !== actualIndexRef.current) {
|
|
16
|
+
actualIndexRef.current = _virtualizerContext.contextIndex;
|
|
17
|
+
}
|
|
18
|
+
const setActualIndex = useCallback((index)=>{
|
|
19
|
+
actualIndexRef.current = index;
|
|
20
|
+
_virtualizerContext.setContextIndex(index);
|
|
21
|
+
}, [
|
|
22
|
+
_virtualizerContext
|
|
23
|
+
]);
|
|
18
24
|
// Store ref to before padding element
|
|
19
25
|
const beforeElementRef = useRef(null);
|
|
20
26
|
// Store ref to before padding element
|
|
@@ -23,11 +29,11 @@ export function useVirtualizer_unstable(props) {
|
|
|
23
29
|
const childSizes = useRef(new Array(getItemSize ? numItems : 0));
|
|
24
30
|
/* We keep track of the progressive sizing/placement down the list,
|
|
25
31
|
this helps us skip re-calculations unless children/size changes */ const childProgressiveSizes = useRef(new Array(getItemSize ? numItems : 0));
|
|
32
|
+
if (virtualizerContext === null || virtualizerContext === void 0 ? void 0 : virtualizerContext.childProgressiveSizes) {
|
|
33
|
+
virtualizerContext.childProgressiveSizes.current = childProgressiveSizes.current;
|
|
34
|
+
}
|
|
26
35
|
// The internal tracking REF for child array (updates often).
|
|
27
36
|
const childArray = useRef(new Array(virtualizerLength));
|
|
28
|
-
// We want to be methodical about updating the render with child reference array
|
|
29
|
-
const forceUpdate = useReducer(()=>({}), {})[1];
|
|
30
|
-
const horizontal = axis === 'horizontal';
|
|
31
37
|
const populateSizeArrays = ()=>{
|
|
32
38
|
if (!getItemSize) {
|
|
33
39
|
// Static sizes, never mind!
|
|
@@ -38,6 +44,9 @@ export function useVirtualizer_unstable(props) {
|
|
|
38
44
|
}
|
|
39
45
|
if (numItems !== childProgressiveSizes.current.length) {
|
|
40
46
|
childProgressiveSizes.current = new Array(numItems);
|
|
47
|
+
if (virtualizerContext === null || virtualizerContext === void 0 ? void 0 : virtualizerContext.childProgressiveSizes) {
|
|
48
|
+
virtualizerContext.childProgressiveSizes.current = childProgressiveSizes.current;
|
|
49
|
+
}
|
|
41
50
|
}
|
|
42
51
|
for(let index = 0; index < numItems; index++){
|
|
43
52
|
childSizes.current[index] = getItemSize(index);
|
|
@@ -52,6 +61,10 @@ export function useVirtualizer_unstable(props) {
|
|
|
52
61
|
const [setScrollTimer, clearScrollTimer] = useTimeout();
|
|
53
62
|
const scrollCounter = useRef(0);
|
|
54
63
|
const initializeScrollingTimer = useCallback(()=>{
|
|
64
|
+
if (!enableScrollLoad) {
|
|
65
|
+
// Disabled by default for reduction of render callbacks
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
55
68
|
/*
|
|
56
69
|
* This can be considered the 'velocity' required to start 'isScrolling'
|
|
57
70
|
* INIT_SCROLL_FLAG_REQ: Number of renders required to activate isScrolling
|
|
@@ -70,7 +83,8 @@ export function useVirtualizer_unstable(props) {
|
|
|
70
83
|
}, INIT_SCROLL_FLAG_DELAY);
|
|
71
84
|
}, [
|
|
72
85
|
clearScrollTimer,
|
|
73
|
-
setScrollTimer
|
|
86
|
+
setScrollTimer,
|
|
87
|
+
enableScrollLoad
|
|
74
88
|
]);
|
|
75
89
|
useEffect(()=>{
|
|
76
90
|
initializeScrollingTimer();
|
|
@@ -78,98 +92,66 @@ export function useVirtualizer_unstable(props) {
|
|
|
78
92
|
actualIndex,
|
|
79
93
|
initializeScrollingTimer
|
|
80
94
|
]);
|
|
81
|
-
const
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
updateCurrentItemSizes(index);
|
|
85
|
-
// Set before 'setActualIndex' call
|
|
86
|
-
// If it changes before render, or injected via context, re-render will update ref.
|
|
87
|
-
actualIndexRef.current = index;
|
|
88
|
-
// State setters
|
|
89
|
-
setActualIndex(index);
|
|
90
|
-
};
|
|
91
|
-
// Observe intersections of virtualized components
|
|
92
|
-
const { setObserverList } = useIntersectionObserver(// TODO: exclude types from this lint rule: https://github.com/microsoft/fluentui/issues/31286
|
|
93
|
-
// eslint-disable-next-line no-restricted-globals
|
|
94
|
-
(entries, observer)=>{
|
|
95
|
-
/* Sanity check - do we even need virtualization? */ if (virtualizerLength > numItems) {
|
|
96
|
-
if (actualIndex !== 0) {
|
|
97
|
-
batchUpdateNewIndex(0);
|
|
98
|
-
}
|
|
99
|
-
// No-op
|
|
100
|
-
return;
|
|
95
|
+
const updateChildRows = useCallback((newIndex)=>{
|
|
96
|
+
if (numItems === 0) {
|
|
97
|
+
/* Nothing to virtualize */ return;
|
|
101
98
|
}
|
|
102
|
-
/*
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
99
|
+
/*
|
|
100
|
+
We reset the array every time to ensure children are re-rendered
|
|
101
|
+
This function should only be called when update is nessecary
|
|
102
|
+
*/ childArray.current = new Array(virtualizerLength);
|
|
103
|
+
const _actualIndex = Math.max(newIndex, 0);
|
|
104
|
+
const end = Math.min(_actualIndex + virtualizerLength, numItems);
|
|
105
|
+
for(let i = _actualIndex; i < end; i++){
|
|
106
|
+
childArray.current[i - _actualIndex] = renderChild(i, isScrolling);
|
|
107
|
+
}
|
|
108
|
+
}, [
|
|
109
|
+
isScrolling,
|
|
110
|
+
numItems,
|
|
111
|
+
renderChild,
|
|
112
|
+
virtualizerLength
|
|
113
|
+
]);
|
|
114
|
+
const updateCurrentItemSizes = useCallback((newIndex)=>{
|
|
115
|
+
if (!getItemSize) {
|
|
116
|
+
// Static sizes, not required.
|
|
110
117
|
return;
|
|
111
118
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
measurementPos -= latestEntry.boundingClientRect.top;
|
|
123
|
-
}
|
|
124
|
-
} else {
|
|
125
|
-
if (reversed) {
|
|
126
|
-
// Scrolling 'left' and hit the after element
|
|
127
|
-
measurementPos -= Math.abs(latestEntry.boundingClientRect.right);
|
|
128
|
-
} else if (latestEntry.boundingClientRect.left < 0) {
|
|
129
|
-
// Scrolling 'right' and hit the after element
|
|
130
|
-
measurementPos -= latestEntry.boundingClientRect.left;
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
} else if (latestEntry.target === beforeElementRef.current) {
|
|
134
|
-
measurementPos = reversed ? calculateTotalSize() - calculateBefore() : calculateBefore();
|
|
135
|
-
if (!horizontal) {
|
|
136
|
-
if (!reversed) {
|
|
137
|
-
measurementPos -= Math.abs(latestEntry.boundingClientRect.bottom);
|
|
138
|
-
} else if (latestEntry.boundingClientRect.top < 0) {
|
|
139
|
-
// Scrolling 'down' in reverse order and hit the before element above top: 0
|
|
140
|
-
measurementPos -= latestEntry.boundingClientRect.top;
|
|
141
|
-
}
|
|
142
|
-
} else {
|
|
143
|
-
if (!reversed) {
|
|
144
|
-
measurementPos -= Math.abs(latestEntry.boundingClientRect.right);
|
|
145
|
-
} else if (latestEntry.boundingClientRect.left < 0) {
|
|
146
|
-
// Scrolling 'left' and hit before element
|
|
147
|
-
measurementPos -= latestEntry.boundingClientRect.left;
|
|
148
|
-
}
|
|
119
|
+
// We should always call our size function on index change (only for the items that will be rendered)
|
|
120
|
+
// This ensures we request the latest data for incoming items in case sizing has changed.
|
|
121
|
+
const endIndex = Math.min(newIndex + virtualizerLength, numItems);
|
|
122
|
+
const startIndex = Math.max(newIndex, 0);
|
|
123
|
+
let didUpdate = false;
|
|
124
|
+
for(let i = startIndex; i < endIndex; i++){
|
|
125
|
+
const newSize = getItemSize(i);
|
|
126
|
+
if (newSize !== childSizes.current[i]) {
|
|
127
|
+
childSizes.current[i] = newSize;
|
|
128
|
+
didUpdate = true;
|
|
149
129
|
}
|
|
150
130
|
}
|
|
151
|
-
if (
|
|
152
|
-
//
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
const bufferedIndex = Math.max(startIndex - bufferCount, 0);
|
|
158
|
-
// Safety limits
|
|
159
|
-
const maxIndex = Math.max(numItems - virtualizerLength, 0);
|
|
160
|
-
const newStartIndex = Math.min(Math.max(bufferedIndex, 0), maxIndex);
|
|
161
|
-
if (actualIndex !== newStartIndex) {
|
|
162
|
-
// We flush sync this and perform an immediate state update
|
|
163
|
-
flushSync(()=>{
|
|
164
|
-
batchUpdateNewIndex(newStartIndex);
|
|
165
|
-
});
|
|
131
|
+
if (didUpdate) {
|
|
132
|
+
// Update our progressive size array
|
|
133
|
+
for(let i = startIndex; i < numItems; i++){
|
|
134
|
+
const prevSize = i > 0 ? childProgressiveSizes.current[i - 1] : 0;
|
|
135
|
+
childProgressiveSizes.current[i] = prevSize + childSizes.current[i];
|
|
136
|
+
}
|
|
166
137
|
}
|
|
167
|
-
},
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
const
|
|
138
|
+
}, [
|
|
139
|
+
getItemSize,
|
|
140
|
+
numItems,
|
|
141
|
+
virtualizerLength
|
|
142
|
+
]);
|
|
143
|
+
const batchUpdateNewIndex = useCallback((index)=>{
|
|
144
|
+
// Local updates
|
|
145
|
+
updateChildRows(index);
|
|
146
|
+
updateCurrentItemSizes(index);
|
|
147
|
+
// State setters
|
|
148
|
+
setActualIndex(index);
|
|
149
|
+
}, [
|
|
150
|
+
setActualIndex,
|
|
151
|
+
updateChildRows,
|
|
152
|
+
updateCurrentItemSizes
|
|
153
|
+
]);
|
|
154
|
+
const findIndexRecursive = useCallback((scrollPos, lowIndex, highIndex)=>{
|
|
173
155
|
if (lowIndex > highIndex) {
|
|
174
156
|
// We shouldn't get here - but no-op the index if we do.
|
|
175
157
|
return actualIndex;
|
|
@@ -189,8 +171,10 @@ export function useVirtualizer_unstable(props) {
|
|
|
189
171
|
} else {
|
|
190
172
|
return findIndexRecursive(scrollPos, midpoint + 1, highIndex);
|
|
191
173
|
}
|
|
192
|
-
}
|
|
193
|
-
|
|
174
|
+
}, [
|
|
175
|
+
actualIndex
|
|
176
|
+
]);
|
|
177
|
+
const getIndexFromSizeArray = useCallback((scrollPos)=>{
|
|
194
178
|
/* Quick searches our progressive height array */ if (scrollPos === 0 || childProgressiveSizes.current.length === 0 || scrollPos <= childProgressiveSizes.current[0]) {
|
|
195
179
|
// Check start
|
|
196
180
|
return 0;
|
|
@@ -200,13 +184,19 @@ export function useVirtualizer_unstable(props) {
|
|
|
200
184
|
return childProgressiveSizes.current.length - 1;
|
|
201
185
|
}
|
|
202
186
|
return findIndexRecursive(scrollPos, 0, childProgressiveSizes.current.length - 1);
|
|
203
|
-
}
|
|
204
|
-
|
|
187
|
+
}, [
|
|
188
|
+
findIndexRecursive
|
|
189
|
+
]);
|
|
190
|
+
const getIndexFromScrollPosition = useCallback((scrollPos)=>{
|
|
205
191
|
if (!getItemSize) {
|
|
206
192
|
return Math.round(scrollPos / itemSize);
|
|
207
193
|
}
|
|
208
194
|
return getIndexFromSizeArray(scrollPos);
|
|
209
|
-
}
|
|
195
|
+
}, [
|
|
196
|
+
getIndexFromSizeArray,
|
|
197
|
+
getItemSize,
|
|
198
|
+
itemSize
|
|
199
|
+
]);
|
|
210
200
|
const calculateTotalSize = useCallback(()=>{
|
|
211
201
|
if (!getItemSize) {
|
|
212
202
|
return itemSize * numItems;
|
|
@@ -254,25 +244,118 @@ export function useVirtualizer_unstable(props) {
|
|
|
254
244
|
numItems,
|
|
255
245
|
virtualizerLength
|
|
256
246
|
]);
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
247
|
+
// Observe intersections of virtualized components
|
|
248
|
+
const { setObserverList } = useIntersectionObserver(useCallback(// TODO: exclude types from this lint rule: https://github.com/microsoft/fluentui/issues/31286
|
|
249
|
+
// eslint-disable-next-line no-restricted-globals
|
|
250
|
+
(entries, observer)=>{
|
|
251
|
+
/* Sanity check - do we even need virtualization? */ if (virtualizerLength > numItems) {
|
|
252
|
+
if (actualIndex !== 0) {
|
|
253
|
+
batchUpdateNewIndex(0);
|
|
254
|
+
}
|
|
255
|
+
// No-op
|
|
256
|
+
return;
|
|
260
257
|
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
childArray.current[i - _actualIndex] = renderChild(i, isScrolling);
|
|
258
|
+
// Grab latest entry that is intersecting
|
|
259
|
+
const latestEntry = entries.length === 1 ? entries[0] : entries.sort((entry1, entry2)=>entry2.time - entry1.time).find((entry)=>{
|
|
260
|
+
return entry.intersectionRatio > 0;
|
|
261
|
+
});
|
|
262
|
+
if (!latestEntry || !latestEntry.isIntersecting) {
|
|
263
|
+
// If we don't find an intersecting area, ignore for now.
|
|
264
|
+
return;
|
|
269
265
|
}
|
|
266
|
+
// We have to be sure our item sizes are up to date with current indexed ref before calculation
|
|
267
|
+
// Check if we still need
|
|
268
|
+
updateCurrentItemSizes(actualIndexRef.current);
|
|
269
|
+
const calculateOverBuffer = ()=>{
|
|
270
|
+
/**
|
|
271
|
+
* We avoid using the scroll ref scrollTop, it may be incorrect
|
|
272
|
+
* as virtualization may exist within a scroll view with other elements
|
|
273
|
+
* The benefit of using IO is that we can detect relative scrolls,
|
|
274
|
+
* so any items can be placed around the virtualizer in the scroll view
|
|
275
|
+
*/ let measurementPos = 0;
|
|
276
|
+
if (latestEntry.target === afterElementRef.current) {
|
|
277
|
+
// Get after buffers position
|
|
278
|
+
measurementPos = calculateTotalSize() - calculateAfter();
|
|
279
|
+
// Get exact intersection position based on overflow size (how far into IO did we scroll?)
|
|
280
|
+
const overflowAmount = axis === 'vertical' ? latestEntry.intersectionRect.height : latestEntry.intersectionRect.width;
|
|
281
|
+
// Add to original after position
|
|
282
|
+
measurementPos += overflowAmount;
|
|
283
|
+
// Ignore buffer size (IO offset)
|
|
284
|
+
measurementPos -= bufferSize;
|
|
285
|
+
var _containerSizeRef_current;
|
|
286
|
+
// we hit the after buffer and detected the end of view, we need to find the start index.
|
|
287
|
+
measurementPos -= (_containerSizeRef_current = containerSizeRef.current) !== null && _containerSizeRef_current !== void 0 ? _containerSizeRef_current : 0;
|
|
288
|
+
// Calculate how far past the window bounds we are (this will be zero if IO is within window)
|
|
289
|
+
const hOverflow = latestEntry.boundingClientRect.top - latestEntry.intersectionRect.top;
|
|
290
|
+
const hOverflowReversed = latestEntry.boundingClientRect.bottom - latestEntry.intersectionRect.bottom;
|
|
291
|
+
const wOverflow = latestEntry.boundingClientRect.left - latestEntry.intersectionRect.left;
|
|
292
|
+
const wOverflowReversed = latestEntry.boundingClientRect.right - latestEntry.intersectionRect.right;
|
|
293
|
+
const widthOverflow = reversed ? wOverflowReversed : wOverflow;
|
|
294
|
+
const heightOverflow = reversed ? hOverflowReversed : hOverflow;
|
|
295
|
+
const additionalOverflow = axis === 'vertical' ? heightOverflow : widthOverflow;
|
|
296
|
+
if (reversed) {
|
|
297
|
+
measurementPos += additionalOverflow;
|
|
298
|
+
} else {
|
|
299
|
+
measurementPos -= additionalOverflow;
|
|
300
|
+
}
|
|
301
|
+
} else if (latestEntry.target === beforeElementRef.current) {
|
|
302
|
+
// Get before buffers position
|
|
303
|
+
measurementPos = calculateBefore();
|
|
304
|
+
// Get exact intersection position based on overflow size (how far into window did we scroll IO?)
|
|
305
|
+
const overflowAmount = axis === 'vertical' ? latestEntry.intersectionRect.height : latestEntry.intersectionRect.width;
|
|
306
|
+
// Minus from original before position
|
|
307
|
+
measurementPos -= overflowAmount;
|
|
308
|
+
// Ignore buffer size (IO offset)
|
|
309
|
+
measurementPos += bufferSize;
|
|
310
|
+
// Calculate how far past the window bounds we are (this will be zero if IO is within window)
|
|
311
|
+
const hOverflow = latestEntry.boundingClientRect.bottom - latestEntry.intersectionRect.bottom;
|
|
312
|
+
const hOverflowReversed = latestEntry.boundingClientRect.top - latestEntry.intersectionRect.top;
|
|
313
|
+
const wOverflow = latestEntry.boundingClientRect.right - latestEntry.intersectionRect.right;
|
|
314
|
+
const wOverflowReversed = latestEntry.boundingClientRect.left - latestEntry.intersectionRect.left;
|
|
315
|
+
const widthOverflow = reversed ? wOverflowReversed : wOverflow;
|
|
316
|
+
const heightOverflow = reversed ? hOverflowReversed : hOverflow;
|
|
317
|
+
const additionalOverflow = axis === 'vertical' ? heightOverflow : widthOverflow;
|
|
318
|
+
if (reversed) {
|
|
319
|
+
measurementPos += additionalOverflow;
|
|
320
|
+
} else {
|
|
321
|
+
measurementPos -= additionalOverflow;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
return measurementPos;
|
|
325
|
+
};
|
|
326
|
+
// Get exact relative 'scrollTop' via IO values
|
|
327
|
+
const measurementPos = calculateOverBuffer();
|
|
328
|
+
const maxIndex = Math.max(numItems - virtualizerLength, 0);
|
|
329
|
+
const startIndex = getIndexFromScrollPosition(measurementPos) - bufferItems;
|
|
330
|
+
// Safety limits
|
|
331
|
+
const newStartIndex = Math.min(Math.max(startIndex, 0), maxIndex);
|
|
332
|
+
flushSync(()=>{
|
|
333
|
+
_virtualizerContext.setContextPosition(measurementPos);
|
|
334
|
+
if (actualIndex !== newStartIndex) {
|
|
335
|
+
batchUpdateNewIndex(newStartIndex);
|
|
336
|
+
}
|
|
337
|
+
});
|
|
270
338
|
}, [
|
|
271
|
-
|
|
339
|
+
_virtualizerContext,
|
|
340
|
+
actualIndex,
|
|
341
|
+
axis,
|
|
342
|
+
batchUpdateNewIndex,
|
|
343
|
+
bufferItems,
|
|
344
|
+
bufferSize,
|
|
345
|
+
calculateAfter,
|
|
346
|
+
calculateBefore,
|
|
347
|
+
calculateTotalSize,
|
|
348
|
+
containerSizeRef,
|
|
349
|
+
getIndexFromScrollPosition,
|
|
272
350
|
numItems,
|
|
273
|
-
|
|
351
|
+
reversed,
|
|
352
|
+
updateCurrentItemSizes,
|
|
274
353
|
virtualizerLength
|
|
275
|
-
])
|
|
354
|
+
]), {
|
|
355
|
+
root: scrollViewRef ? scrollViewRef === null || scrollViewRef === void 0 ? void 0 : scrollViewRef.current : null,
|
|
356
|
+
rootMargin: '0px',
|
|
357
|
+
threshold: 0
|
|
358
|
+
});
|
|
276
359
|
const setBeforeRef = useCallback((element)=>{
|
|
277
360
|
if (!element || beforeElementRef.current === element) {
|
|
278
361
|
return;
|
|
@@ -303,31 +386,6 @@ export function useVirtualizer_unstable(props) {
|
|
|
303
386
|
}, [
|
|
304
387
|
setObserverList
|
|
305
388
|
]);
|
|
306
|
-
const updateCurrentItemSizes = (newIndex)=>{
|
|
307
|
-
if (!getItemSize) {
|
|
308
|
-
// Static sizes, not required.
|
|
309
|
-
return;
|
|
310
|
-
}
|
|
311
|
-
// We should always call our size function on index change (only for the items that will be rendered)
|
|
312
|
-
// This ensures we request the latest data for incoming items in case sizing has changed.
|
|
313
|
-
const endIndex = Math.min(newIndex + virtualizerLength, numItems);
|
|
314
|
-
const startIndex = Math.max(newIndex, 0);
|
|
315
|
-
let didUpdate = false;
|
|
316
|
-
for(let i = startIndex; i < endIndex; i++){
|
|
317
|
-
const newSize = getItemSize(i);
|
|
318
|
-
if (newSize !== childSizes.current[i]) {
|
|
319
|
-
childSizes.current[i] = newSize;
|
|
320
|
-
didUpdate = true;
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
if (didUpdate) {
|
|
324
|
-
// Update our progressive size array
|
|
325
|
-
for(let i = startIndex; i < numItems; i++){
|
|
326
|
-
const prevSize = i > 0 ? childProgressiveSizes.current[i - 1] : 0;
|
|
327
|
-
childProgressiveSizes.current[i] = prevSize + childSizes.current[i];
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
};
|
|
331
389
|
// Initialize the size array before first render.
|
|
332
390
|
const hasInitialized = useRef(false);
|
|
333
391
|
const initializeSizeArray = ()=>{
|
|
@@ -355,16 +413,23 @@ export function useVirtualizer_unstable(props) {
|
|
|
355
413
|
}
|
|
356
414
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
357
415
|
}, []);
|
|
416
|
+
/*
|
|
417
|
+
* forceUpdate:
|
|
418
|
+
* We only want to trigger this when scrollLoading is enabled and set to false,
|
|
419
|
+
* it will force re-render all children elements
|
|
420
|
+
*/ const forceUpdate = useReducer(()=>({}), {})[1];
|
|
358
421
|
// If the user passes in an updated renderChild function - update current children
|
|
359
422
|
useEffect(()=>{
|
|
360
423
|
if (actualIndex >= 0) {
|
|
361
424
|
updateChildRows(actualIndex);
|
|
362
|
-
|
|
425
|
+
if (enableScrollLoad && !isScrolling) {
|
|
426
|
+
forceUpdate();
|
|
427
|
+
}
|
|
363
428
|
}
|
|
364
429
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
365
430
|
}, [
|
|
366
431
|
renderChild,
|
|
367
|
-
|
|
432
|
+
isScrolling
|
|
368
433
|
]);
|
|
369
434
|
useEffect(()=>{
|
|
370
435
|
// Ensure we repopulate if getItemSize callback changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["useVirtualizer.ts"],"sourcesContent":["import type { ReactNode } from 'react';\nimport type { VirtualizerProps, VirtualizerState } from './Virtualizer.types';\n\nimport { useEffect, useRef, useCallback, useReducer, useImperativeHandle, useState } from 'react';\nimport { useIntersectionObserver } from '../../hooks/useIntersectionObserver';\nimport { flushSync } from 'react-dom';\nimport { useVirtualizerContextState_unstable } from '../../Utilities';\nimport { slot, useTimeout } from '@fluentui/react-utilities';\n\nexport function useVirtualizer_unstable(props: VirtualizerProps): VirtualizerState {\n 'use no memo';\n\n const {\n itemSize,\n numItems,\n virtualizerLength,\n children: renderChild,\n getItemSize,\n bufferItems = Math.round(virtualizerLength / 4.0),\n bufferSize = Math.floor(bufferItems / 2.0) * itemSize,\n scrollViewRef,\n axis = 'vertical',\n reversed = false,\n virtualizerContext,\n onRenderedFlaggedIndex,\n imperativeVirtualizerRef,\n } = props;\n\n /* The context is optional, it's useful for injecting additional index logic, or performing uniform state updates*/\n const _virtualizerContext = useVirtualizerContextState_unstable(virtualizerContext);\n\n // We use this ref as a constant source to access the virtualizer's state imperatively\n const actualIndexRef = useRef<number>(_virtualizerContext.contextIndex);\n if (actualIndexRef.current !== _virtualizerContext.contextIndex) {\n actualIndexRef.current = _virtualizerContext.contextIndex;\n }\n const flaggedIndex = useRef<number | null>(null);\n\n const actualIndex = _virtualizerContext.contextIndex;\n const setActualIndex = _virtualizerContext.setContextIndex;\n\n // Store ref to before padding element\n const beforeElementRef = useRef<Element | null>(null);\n\n // Store ref to before padding element\n const afterElementRef = useRef<Element | null>(null);\n\n // We need to store an array to track dynamic sizes, we can use this to incrementally update changes\n const childSizes = useRef<number[]>(new Array<number>(getItemSize ? numItems : 0));\n\n /* We keep track of the progressive sizing/placement down the list,\n this helps us skip re-calculations unless children/size changes */\n const childProgressiveSizes = useRef<number[]>(new Array<number>(getItemSize ? numItems : 0));\n\n // The internal tracking REF for child array (updates often).\n const childArray = useRef<ReactNode[]>(new Array(virtualizerLength));\n\n // We want to be methodical about updating the render with child reference array\n const forceUpdate = useReducer(() => ({}), {})[1];\n\n const horizontal = axis === 'horizontal';\n\n const populateSizeArrays = () => {\n if (!getItemSize) {\n // Static sizes, never mind!\n return;\n }\n\n if (numItems !== childSizes.current.length) {\n childSizes.current = new Array<number>(numItems);\n }\n\n if (numItems !== childProgressiveSizes.current.length) {\n childProgressiveSizes.current = new Array<number>(numItems);\n }\n\n for (let index = 0; index < numItems; index++) {\n childSizes.current[index] = getItemSize(index);\n if (index === 0) {\n childProgressiveSizes.current[index] = childSizes.current[index];\n } else {\n childProgressiveSizes.current[index] = childProgressiveSizes.current[index - 1] + childSizes.current[index];\n }\n }\n };\n\n const [isScrolling, setIsScrolling] = useState<boolean>(false);\n const [setScrollTimer, clearScrollTimer] = useTimeout();\n const scrollCounter = useRef<number>(0);\n\n const initializeScrollingTimer = useCallback(() => {\n /*\n * This can be considered the 'velocity' required to start 'isScrolling'\n * INIT_SCROLL_FLAG_REQ: Number of renders required to activate isScrolling\n * INIT_SCROLL_FLAG_DELAY: Amount of time (ms) before current number of renders is reset\n * - Maybe we should let users customize these in the future.\n */\n const INIT_SCROLL_FLAG_REQ = 10;\n const INIT_SCROLL_FLAG_DELAY = 100;\n\n scrollCounter.current++;\n if (scrollCounter.current >= INIT_SCROLL_FLAG_REQ) {\n setIsScrolling(true);\n }\n clearScrollTimer();\n setScrollTimer(() => {\n setIsScrolling(false);\n scrollCounter.current = 0;\n }, INIT_SCROLL_FLAG_DELAY);\n }, [clearScrollTimer, setScrollTimer]);\n\n useEffect(() => {\n initializeScrollingTimer();\n }, [actualIndex, initializeScrollingTimer]);\n\n const batchUpdateNewIndex = (index: number) => {\n // Local updates\n updateChildRows(index);\n updateCurrentItemSizes(index);\n\n // Set before 'setActualIndex' call\n // If it changes before render, or injected via context, re-render will update ref.\n actualIndexRef.current = index;\n\n // State setters\n setActualIndex(index);\n };\n\n // Observe intersections of virtualized components\n const { setObserverList } = useIntersectionObserver(\n // TODO: exclude types from this lint rule: https://github.com/microsoft/fluentui/issues/31286\n // eslint-disable-next-line no-restricted-globals\n (entries: IntersectionObserverEntry[], observer: IntersectionObserver) => {\n /* Sanity check - do we even need virtualization? */\n if (virtualizerLength > numItems) {\n if (actualIndex !== 0) {\n batchUpdateNewIndex(0);\n }\n // No-op\n return;\n }\n\n /* IO initiates this function when needed (bookend entering view) */\n let measurementPos = 0;\n let bufferCount = bufferItems;\n\n // Grab latest entry that is intersecting\n const latestEntry =\n entries.length === 1\n ? entries[0]\n : entries\n .sort((entry1, entry2) => entry2.time - entry1.time)\n .find(entry => {\n return entry.intersectionRatio > 0;\n });\n\n if (!latestEntry) {\n // If we don't find an intersecting area, ignore for now.\n return;\n }\n\n if (latestEntry.target === afterElementRef.current) {\n // We need to inverse the buffer count\n bufferCount = virtualizerLength - bufferItems;\n measurementPos = reversed ? calculateAfter() : calculateTotalSize() - calculateAfter();\n if (!horizontal) {\n if (reversed) {\n // Scrolling 'up' and hit the after element below\n measurementPos -= Math.abs(latestEntry.boundingClientRect.bottom);\n } else if (latestEntry.boundingClientRect.top < 0) {\n // Scrolling 'down' and hit the after element above top: 0\n measurementPos -= latestEntry.boundingClientRect.top;\n }\n } else {\n if (reversed) {\n // Scrolling 'left' and hit the after element\n measurementPos -= Math.abs(latestEntry.boundingClientRect.right);\n } else if (latestEntry.boundingClientRect.left < 0) {\n // Scrolling 'right' and hit the after element\n measurementPos -= latestEntry.boundingClientRect.left;\n }\n }\n } else if (latestEntry.target === beforeElementRef.current) {\n measurementPos = reversed ? calculateTotalSize() - calculateBefore() : calculateBefore();\n if (!horizontal) {\n if (!reversed) {\n measurementPos -= Math.abs(latestEntry.boundingClientRect.bottom);\n } else if (latestEntry.boundingClientRect.top < 0) {\n // Scrolling 'down' in reverse order and hit the before element above top: 0\n measurementPos -= latestEntry.boundingClientRect.top;\n }\n } else {\n if (!reversed) {\n measurementPos -= Math.abs(latestEntry.boundingClientRect.right);\n } else if (latestEntry.boundingClientRect.left < 0) {\n // Scrolling 'left' and hit before element\n measurementPos -= latestEntry.boundingClientRect.left;\n }\n }\n }\n\n if (reversed) {\n // We're reversed, up is down, left is right, invert the scroll measure.\n measurementPos = Math.max(calculateTotalSize() - Math.abs(measurementPos), 0);\n }\n\n // For now lets use hardcoded size to assess current element to paginate on\n const startIndex = getIndexFromScrollPosition(measurementPos);\n const bufferedIndex = Math.max(startIndex - bufferCount, 0);\n\n // Safety limits\n const maxIndex = Math.max(numItems - virtualizerLength, 0);\n const newStartIndex = Math.min(Math.max(bufferedIndex, 0), maxIndex);\n\n if (actualIndex !== newStartIndex) {\n // We flush sync this and perform an immediate state update\n flushSync(() => {\n batchUpdateNewIndex(newStartIndex);\n });\n }\n },\n {\n root: scrollViewRef ? scrollViewRef?.current : null,\n rootMargin: '0px',\n threshold: 0,\n },\n );\n\n const findIndexRecursive = (scrollPos: number, lowIndex: number, highIndex: number): number => {\n if (lowIndex > highIndex) {\n // We shouldn't get here - but no-op the index if we do.\n return actualIndex;\n }\n const midpoint = Math.floor((lowIndex + highIndex) / 2);\n const iBefore = Math.max(midpoint - 1, 0);\n const iAfter = Math.min(midpoint + 1, childProgressiveSizes.current.length - 1);\n const indexValue = childProgressiveSizes.current[midpoint];\n const afterIndexValue = childProgressiveSizes.current[iAfter];\n const beforeIndexValue = childProgressiveSizes.current[iBefore];\n if (scrollPos <= afterIndexValue && scrollPos >= beforeIndexValue) {\n /* We've found our index - if we are exactly matching before/after index that's ok,\n better to reduce checks if it's right on the boundary. */\n return midpoint;\n }\n\n if (indexValue > scrollPos) {\n return findIndexRecursive(scrollPos, lowIndex, midpoint - 1);\n } else {\n return findIndexRecursive(scrollPos, midpoint + 1, highIndex);\n }\n };\n\n const getIndexFromSizeArray = (scrollPos: number): number => {\n /* Quick searches our progressive height array */\n if (\n scrollPos === 0 ||\n childProgressiveSizes.current.length === 0 ||\n scrollPos <= childProgressiveSizes.current[0]\n ) {\n // Check start\n return 0;\n }\n\n if (scrollPos >= childProgressiveSizes.current[childProgressiveSizes.current.length - 1]) {\n // Check end\n return childProgressiveSizes.current.length - 1;\n }\n\n return findIndexRecursive(scrollPos, 0, childProgressiveSizes.current.length - 1);\n };\n\n const getIndexFromScrollPosition = (scrollPos: number) => {\n if (!getItemSize) {\n return Math.round(scrollPos / itemSize);\n }\n\n return getIndexFromSizeArray(scrollPos);\n };\n\n const calculateTotalSize = useCallback(() => {\n if (!getItemSize) {\n return itemSize * numItems;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[numItems - 1];\n }, [getItemSize, itemSize, numItems]);\n\n const calculateBefore = useCallback(() => {\n const currentIndex = Math.min(actualIndex, numItems - 1);\n\n if (!getItemSize) {\n // The missing items from before virtualization starts height\n return currentIndex * itemSize;\n }\n\n if (currentIndex <= 0) {\n return 0;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[currentIndex - 1];\n }, [actualIndex, getItemSize, itemSize, numItems]);\n\n const calculateAfter = useCallback(() => {\n if (numItems === 0 || actualIndex + virtualizerLength >= numItems) {\n return 0;\n }\n\n const lastItemIndex = Math.min(actualIndex + virtualizerLength, numItems);\n if (!getItemSize) {\n // The missing items from after virtualization ends height\n const remainingItems = numItems - lastItemIndex;\n return remainingItems * itemSize;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[numItems - 1] - childProgressiveSizes.current[lastItemIndex - 1];\n }, [actualIndex, getItemSize, itemSize, numItems, virtualizerLength]);\n\n const updateChildRows = useCallback(\n (newIndex: number) => {\n if (numItems === 0) {\n /* Nothing to virtualize */\n return;\n }\n\n /*\n We reset the array every time to ensure children are re-rendered\n This function should only be called when update is nessecary\n */\n childArray.current = new Array(virtualizerLength);\n const _actualIndex = Math.max(newIndex, 0);\n const end = Math.min(_actualIndex + virtualizerLength, numItems);\n for (let i = _actualIndex; i < end; i++) {\n childArray.current[i - _actualIndex] = renderChild(i, isScrolling);\n }\n },\n [isScrolling, numItems, renderChild, virtualizerLength],\n );\n\n const setBeforeRef = useCallback(\n (element: HTMLDivElement) => {\n if (!element || beforeElementRef.current === element) {\n return;\n }\n beforeElementRef.current = element;\n const newList = [];\n\n newList.push(beforeElementRef.current);\n\n if (afterElementRef.current) {\n newList.push(afterElementRef.current);\n }\n\n // Ensure we update array if before element changed\n setObserverList(newList);\n },\n [setObserverList],\n );\n\n const setAfterRef = useCallback(\n (element: HTMLDivElement) => {\n if (!element || afterElementRef.current === element) {\n return;\n }\n afterElementRef.current = element;\n const newList = [];\n\n if (beforeElementRef.current) {\n newList.push(beforeElementRef.current);\n }\n\n newList.push(afterElementRef.current);\n\n // Ensure we update array if after element changed\n setObserverList(newList);\n },\n [setObserverList],\n );\n\n const updateCurrentItemSizes = (newIndex: number) => {\n if (!getItemSize) {\n // Static sizes, not required.\n return;\n }\n // We should always call our size function on index change (only for the items that will be rendered)\n // This ensures we request the latest data for incoming items in case sizing has changed.\n const endIndex = Math.min(newIndex + virtualizerLength, numItems);\n const startIndex = Math.max(newIndex, 0);\n\n let didUpdate = false;\n for (let i = startIndex; i < endIndex; i++) {\n const newSize = getItemSize(i);\n if (newSize !== childSizes.current[i]) {\n childSizes.current[i] = newSize;\n didUpdate = true;\n }\n }\n\n if (didUpdate) {\n // Update our progressive size array\n for (let i = startIndex; i < numItems; i++) {\n const prevSize = i > 0 ? childProgressiveSizes.current[i - 1] : 0;\n childProgressiveSizes.current[i] = prevSize + childSizes.current[i];\n }\n }\n };\n\n // Initialize the size array before first render.\n const hasInitialized = useRef<boolean>(false);\n const initializeSizeArray = () => {\n if (hasInitialized.current === false) {\n hasInitialized.current = true;\n populateSizeArrays();\n }\n };\n\n useImperativeHandle(\n imperativeVirtualizerRef,\n () => {\n return {\n progressiveSizes: childProgressiveSizes,\n nodeSizes: childSizes,\n setFlaggedIndex: (index: number | null) => (flaggedIndex.current = index),\n currentIndex: actualIndexRef,\n };\n },\n [childProgressiveSizes, childSizes],\n );\n\n // Initialization on mount - update array index to 0 (ready state).\n // Only fire on mount (no deps).\n useEffect(() => {\n if (actualIndex < 0) {\n batchUpdateNewIndex(0);\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n // If the user passes in an updated renderChild function - update current children\n useEffect(() => {\n if (actualIndex >= 0) {\n updateChildRows(actualIndex);\n forceUpdate();\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [renderChild, updateChildRows]);\n\n useEffect(() => {\n // Ensure we repopulate if getItemSize callback changes\n populateSizeArrays();\n\n // We only run this effect on getItemSize change (recalc dynamic sizes)\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [getItemSize]);\n\n // Effect to check flag index on updates\n useEffect(() => {\n if (!onRenderedFlaggedIndex || flaggedIndex.current === null) {\n return;\n }\n if (actualIndex <= flaggedIndex.current && actualIndex + virtualizerLength >= flaggedIndex.current) {\n onRenderedFlaggedIndex(flaggedIndex.current);\n flaggedIndex.current = null;\n }\n }, [actualIndex, onRenderedFlaggedIndex, virtualizerLength]);\n\n // Ensure we have run through and updated the whole size list array at least once.\n initializeSizeArray();\n\n if (getItemSize && (numItems !== childSizes.current.length || numItems !== childProgressiveSizes.current.length)) {\n // Child length mismatch, repopulate size arrays.\n populateSizeArrays();\n }\n\n // Ensure we recalc if virtualizer length changes\n const maxCompare = Math.min(virtualizerLength, numItems);\n if (childArray.current.length !== maxCompare && actualIndex + childArray.current.length < numItems) {\n updateChildRows(actualIndex);\n }\n\n const isFullyInitialized = hasInitialized.current && actualIndex >= 0;\n return {\n components: {\n before: 'div',\n after: 'div',\n beforeContainer: 'div',\n afterContainer: 'div',\n },\n virtualizedChildren: childArray.current,\n before: slot.always(props.before, {\n defaultProps: {\n ref: setBeforeRef,\n role: 'none',\n },\n elementType: 'div',\n }),\n after: slot.always(props.after, {\n defaultProps: {\n ref: setAfterRef,\n role: 'none',\n },\n elementType: 'div',\n }),\n beforeContainer: slot.always(props.beforeContainer, {\n defaultProps: {\n role: 'none',\n },\n elementType: 'div',\n }),\n afterContainer: slot.always(props.afterContainer, {\n defaultProps: {\n role: 'none',\n },\n elementType: 'div',\n }),\n beforeBufferHeight: isFullyInitialized ? calculateBefore() : 0,\n afterBufferHeight: isFullyInitialized ? calculateAfter() : 0,\n totalVirtualizerHeight: isFullyInitialized ? calculateTotalSize() : virtualizerLength * itemSize,\n virtualizerStartIndex: actualIndex,\n axis,\n bufferSize,\n reversed,\n childSizes,\n childProgressiveSizes,\n };\n}\n"],"names":["useEffect","useRef","useCallback","useReducer","useImperativeHandle","useState","useIntersectionObserver","flushSync","useVirtualizerContextState_unstable","slot","useTimeout","useVirtualizer_unstable","props","itemSize","numItems","virtualizerLength","children","renderChild","getItemSize","bufferItems","Math","round","bufferSize","floor","scrollViewRef","axis","reversed","virtualizerContext","onRenderedFlaggedIndex","imperativeVirtualizerRef","_virtualizerContext","actualIndexRef","contextIndex","current","flaggedIndex","actualIndex","setActualIndex","setContextIndex","beforeElementRef","afterElementRef","childSizes","Array","childProgressiveSizes","childArray","forceUpdate","horizontal","populateSizeArrays","length","index","isScrolling","setIsScrolling","setScrollTimer","clearScrollTimer","scrollCounter","initializeScrollingTimer","INIT_SCROLL_FLAG_REQ","INIT_SCROLL_FLAG_DELAY","batchUpdateNewIndex","updateChildRows","updateCurrentItemSizes","setObserverList","entries","observer","measurementPos","bufferCount","latestEntry","sort","entry1","entry2","time","find","entry","intersectionRatio","target","calculateAfter","calculateTotalSize","abs","boundingClientRect","bottom","top","right","left","calculateBefore","max","startIndex","getIndexFromScrollPosition","bufferedIndex","maxIndex","newStartIndex","min","root","rootMargin","threshold","findIndexRecursive","scrollPos","lowIndex","highIndex","midpoint","iBefore","iAfter","indexValue","afterIndexValue","beforeIndexValue","getIndexFromSizeArray","currentIndex","lastItemIndex","remainingItems","newIndex","_actualIndex","end","i","setBeforeRef","element","newList","push","setAfterRef","endIndex","didUpdate","newSize","prevSize","hasInitialized","initializeSizeArray","progressiveSizes","nodeSizes","setFlaggedIndex","maxCompare","isFullyInitialized","components","before","after","beforeContainer","afterContainer","virtualizedChildren","always","defaultProps","ref","role","elementType","beforeBufferHeight","afterBufferHeight","totalVirtualizerHeight","virtualizerStartIndex"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"AAGA,SAASA,SAAS,EAAEC,MAAM,EAAEC,WAAW,EAAEC,UAAU,EAAEC,mBAAmB,EAAEC,QAAQ,QAAQ,QAAQ;AAClG,SAASC,uBAAuB,QAAQ,sCAAsC;AAC9E,SAASC,SAAS,QAAQ,YAAY;AACtC,SAASC,mCAAmC,QAAQ,kBAAkB;AACtE,SAASC,IAAI,EAAEC,UAAU,QAAQ,4BAA4B;AAE7D,OAAO,SAASC,wBAAwBC,KAAuB;IAC7D;IAEA,MAAM,EACJC,QAAQ,EACRC,QAAQ,EACRC,iBAAiB,EACjBC,UAAUC,WAAW,EACrBC,WAAW,EACXC,cAAcC,KAAKC,KAAK,CAACN,oBAAoB,IAAI,EACjDO,aAAaF,KAAKG,KAAK,CAACJ,cAAc,OAAON,QAAQ,EACrDW,aAAa,EACbC,OAAO,UAAU,EACjBC,WAAW,KAAK,EAChBC,kBAAkB,EAClBC,sBAAsB,EACtBC,wBAAwB,EACzB,GAAGjB;IAEJ,iHAAiH,GACjH,MAAMkB,sBAAsBtB,oCAAoCmB;IAEhE,sFAAsF;IACtF,MAAMI,iBAAiB9B,OAAe6B,oBAAoBE,YAAY;IACtE,IAAID,eAAeE,OAAO,KAAKH,oBAAoBE,YAAY,EAAE;QAC/DD,eAAeE,OAAO,GAAGH,oBAAoBE,YAAY;IAC3D;IACA,MAAME,eAAejC,OAAsB;IAE3C,MAAMkC,cAAcL,oBAAoBE,YAAY;IACpD,MAAMI,iBAAiBN,oBAAoBO,eAAe;IAE1D,sCAAsC;IACtC,MAAMC,mBAAmBrC,OAAuB;IAEhD,sCAAsC;IACtC,MAAMsC,kBAAkBtC,OAAuB;IAE/C,oGAAoG;IACpG,MAAMuC,aAAavC,OAAiB,IAAIwC,MAAcvB,cAAcJ,WAAW;IAE/E;kEACgE,GAChE,MAAM4B,wBAAwBzC,OAAiB,IAAIwC,MAAcvB,cAAcJ,WAAW;IAE1F,6DAA6D;IAC7D,MAAM6B,aAAa1C,OAAoB,IAAIwC,MAAM1B;IAEjD,gFAAgF;IAChF,MAAM6B,cAAczC,WAAW,IAAO,CAAA,CAAC,CAAA,GAAI,CAAC,EAAE,CAAC,EAAE;IAEjD,MAAM0C,aAAapB,SAAS;IAE5B,MAAMqB,qBAAqB;QACzB,IAAI,CAAC5B,aAAa;YAChB,4BAA4B;YAC5B;QACF;QAEA,IAAIJ,aAAa0B,WAAWP,OAAO,CAACc,MAAM,EAAE;YAC1CP,WAAWP,OAAO,GAAG,IAAIQ,MAAc3B;QACzC;QAEA,IAAIA,aAAa4B,sBAAsBT,OAAO,CAACc,MAAM,EAAE;YACrDL,sBAAsBT,OAAO,GAAG,IAAIQ,MAAc3B;QACpD;QAEA,IAAK,IAAIkC,QAAQ,GAAGA,QAAQlC,UAAUkC,QAAS;YAC7CR,WAAWP,OAAO,CAACe,MAAM,GAAG9B,YAAY8B;YACxC,IAAIA,UAAU,GAAG;gBACfN,sBAAsBT,OAAO,CAACe,MAAM,GAAGR,WAAWP,OAAO,CAACe,MAAM;YAClE,OAAO;gBACLN,sBAAsBT,OAAO,CAACe,MAAM,GAAGN,sBAAsBT,OAAO,CAACe,QAAQ,EAAE,GAAGR,WAAWP,OAAO,CAACe,MAAM;YAC7G;QACF;IACF;IAEA,MAAM,CAACC,aAAaC,eAAe,GAAG7C,SAAkB;IACxD,MAAM,CAAC8C,gBAAgBC,iBAAiB,GAAG1C;IAC3C,MAAM2C,gBAAgBpD,OAAe;IAErC,MAAMqD,2BAA2BpD,YAAY;QAC3C;;;;;KAKC,GACD,MAAMqD,uBAAuB;QAC7B,MAAMC,yBAAyB;QAE/BH,cAAcpB,OAAO;QACrB,IAAIoB,cAAcpB,OAAO,IAAIsB,sBAAsB;YACjDL,eAAe;QACjB;QACAE;QACAD,eAAe;YACbD,eAAe;YACfG,cAAcpB,OAAO,GAAG;QAC1B,GAAGuB;IACL,GAAG;QAACJ;QAAkBD;KAAe;IAErCnD,UAAU;QACRsD;IACF,GAAG;QAACnB;QAAamB;KAAyB;IAE1C,MAAMG,sBAAsB,CAACT;QAC3B,gBAAgB;QAChBU,gBAAgBV;QAChBW,uBAAuBX;QAEvB,mCAAmC;QACnC,mFAAmF;QACnFjB,eAAeE,OAAO,GAAGe;QAEzB,gBAAgB;QAChBZ,eAAeY;IACjB;IAEA,kDAAkD;IAClD,MAAM,EAAEY,eAAe,EAAE,GAAGtD,wBAC1B,8FAA8F;IAC9F,iDAAiD;IACjD,CAACuD,SAAsCC;QACrC,kDAAkD,GAClD,IAAI/C,oBAAoBD,UAAU;YAChC,IAAIqB,gBAAgB,GAAG;gBACrBsB,oBAAoB;YACtB;YACA,QAAQ;YACR;QACF;QAEA,kEAAkE,GAClE,IAAIM,iBAAiB;QACrB,IAAIC,cAAc7C;QAElB,yCAAyC;QACzC,MAAM8C,cACJJ,QAAQd,MAAM,KAAK,IACfc,OAAO,CAAC,EAAE,GACVA,QACGK,IAAI,CAAC,CAACC,QAAQC,SAAWA,OAAOC,IAAI,GAAGF,OAAOE,IAAI,EAClDC,IAAI,CAACC,CAAAA;YACJ,OAAOA,MAAMC,iBAAiB,GAAG;QACnC;QAER,IAAI,CAACP,aAAa;YAChB,yDAAyD;YACzD;QACF;QAEA,IAAIA,YAAYQ,MAAM,KAAKlC,gBAAgBN,OAAO,EAAE;YAClD,sCAAsC;YACtC+B,cAAcjD,oBAAoBI;YAClC4C,iBAAiBrC,WAAWgD,mBAAmBC,uBAAuBD;YACtE,IAAI,CAAC7B,YAAY;gBACf,IAAInB,UAAU;oBACZ,iDAAiD;oBACjDqC,kBAAkB3C,KAAKwD,GAAG,CAACX,YAAYY,kBAAkB,CAACC,MAAM;gBAClE,OAAO,IAAIb,YAAYY,kBAAkB,CAACE,GAAG,GAAG,GAAG;oBACjD,0DAA0D;oBAC1DhB,kBAAkBE,YAAYY,kBAAkB,CAACE,GAAG;gBACtD;YACF,OAAO;gBACL,IAAIrD,UAAU;oBACZ,6CAA6C;oBAC7CqC,kBAAkB3C,KAAKwD,GAAG,CAACX,YAAYY,kBAAkB,CAACG,KAAK;gBACjE,OAAO,IAAIf,YAAYY,kBAAkB,CAACI,IAAI,GAAG,GAAG;oBAClD,8CAA8C;oBAC9ClB,kBAAkBE,YAAYY,kBAAkB,CAACI,IAAI;gBACvD;YACF;QACF,OAAO,IAAIhB,YAAYQ,MAAM,KAAKnC,iBAAiBL,OAAO,EAAE;YAC1D8B,iBAAiBrC,WAAWiD,uBAAuBO,oBAAoBA;YACvE,IAAI,CAACrC,YAAY;gBACf,IAAI,CAACnB,UAAU;oBACbqC,kBAAkB3C,KAAKwD,GAAG,CAACX,YAAYY,kBAAkB,CAACC,MAAM;gBAClE,OAAO,IAAIb,YAAYY,kBAAkB,CAACE,GAAG,GAAG,GAAG;oBACjD,4EAA4E;oBAC5EhB,kBAAkBE,YAAYY,kBAAkB,CAACE,GAAG;gBACtD;YACF,OAAO;gBACL,IAAI,CAACrD,UAAU;oBACbqC,kBAAkB3C,KAAKwD,GAAG,CAACX,YAAYY,kBAAkB,CAACG,KAAK;gBACjE,OAAO,IAAIf,YAAYY,kBAAkB,CAACI,IAAI,GAAG,GAAG;oBAClD,0CAA0C;oBAC1ClB,kBAAkBE,YAAYY,kBAAkB,CAACI,IAAI;gBACvD;YACF;QACF;QAEA,IAAIvD,UAAU;YACZ,wEAAwE;YACxEqC,iBAAiB3C,KAAK+D,GAAG,CAACR,uBAAuBvD,KAAKwD,GAAG,CAACb,iBAAiB;QAC7E;QAEA,2EAA2E;QAC3E,MAAMqB,aAAaC,2BAA2BtB;QAC9C,MAAMuB,gBAAgBlE,KAAK+D,GAAG,CAACC,aAAapB,aAAa;QAEzD,gBAAgB;QAChB,MAAMuB,WAAWnE,KAAK+D,GAAG,CAACrE,WAAWC,mBAAmB;QACxD,MAAMyE,gBAAgBpE,KAAKqE,GAAG,CAACrE,KAAK+D,GAAG,CAACG,eAAe,IAAIC;QAE3D,IAAIpD,gBAAgBqD,eAAe;YACjC,2DAA2D;YAC3DjF,UAAU;gBACRkD,oBAAoB+B;YACtB;QACF;IACF,GACA;QACEE,MAAMlE,gBAAgBA,0BAAAA,oCAAAA,cAAeS,OAAO,GAAG;QAC/C0D,YAAY;QACZC,WAAW;IACb;IAGF,MAAMC,qBAAqB,CAACC,WAAmBC,UAAkBC;QAC/D,IAAID,WAAWC,WAAW;YACxB,wDAAwD;YACxD,OAAO7D;QACT;QACA,MAAM8D,WAAW7E,KAAKG,KAAK,CAAC,AAACwE,CAAAA,WAAWC,SAAQ,IAAK;QACrD,MAAME,UAAU9E,KAAK+D,GAAG,CAACc,WAAW,GAAG;QACvC,MAAME,SAAS/E,KAAKqE,GAAG,CAACQ,WAAW,GAAGvD,sBAAsBT,OAAO,CAACc,MAAM,GAAG;QAC7E,MAAMqD,aAAa1D,sBAAsBT,OAAO,CAACgE,SAAS;QAC1D,MAAMI,kBAAkB3D,sBAAsBT,OAAO,CAACkE,OAAO;QAC7D,MAAMG,mBAAmB5D,sBAAsBT,OAAO,CAACiE,QAAQ;QAC/D,IAAIJ,aAAaO,mBAAmBP,aAAaQ,kBAAkB;YACjE;6DACuD,GACvD,OAAOL;QACT;QAEA,IAAIG,aAAaN,WAAW;YAC1B,OAAOD,mBAAmBC,WAAWC,UAAUE,WAAW;QAC5D,OAAO;YACL,OAAOJ,mBAAmBC,WAAWG,WAAW,GAAGD;QACrD;IACF;IAEA,MAAMO,wBAAwB,CAACT;QAC7B,+CAA+C,GAC/C,IACEA,cAAc,KACdpD,sBAAsBT,OAAO,CAACc,MAAM,KAAK,KACzC+C,aAAapD,sBAAsBT,OAAO,CAAC,EAAE,EAC7C;YACA,cAAc;YACd,OAAO;QACT;QAEA,IAAI6D,aAAapD,sBAAsBT,OAAO,CAACS,sBAAsBT,OAAO,CAACc,MAAM,GAAG,EAAE,EAAE;YACxF,YAAY;YACZ,OAAOL,sBAAsBT,OAAO,CAACc,MAAM,GAAG;QAChD;QAEA,OAAO8C,mBAAmBC,WAAW,GAAGpD,sBAAsBT,OAAO,CAACc,MAAM,GAAG;IACjF;IAEA,MAAMsC,6BAA6B,CAACS;QAClC,IAAI,CAAC5E,aAAa;YAChB,OAAOE,KAAKC,KAAK,CAACyE,YAAYjF;QAChC;QAEA,OAAO0F,sBAAsBT;IAC/B;IAEA,MAAMnB,qBAAqBzE,YAAY;QACrC,IAAI,CAACgB,aAAa;YAChB,OAAOL,WAAWC;QACpB;QAEA,6BAA6B;QAC7B,OAAO4B,sBAAsBT,OAAO,CAACnB,WAAW,EAAE;IACpD,GAAG;QAACI;QAAaL;QAAUC;KAAS;IAEpC,MAAMoE,kBAAkBhF,YAAY;QAClC,MAAMsG,eAAepF,KAAKqE,GAAG,CAACtD,aAAarB,WAAW;QAEtD,IAAI,CAACI,aAAa;YAChB,6DAA6D;YAC7D,OAAOsF,eAAe3F;QACxB;QAEA,IAAI2F,gBAAgB,GAAG;YACrB,OAAO;QACT;QAEA,6BAA6B;QAC7B,OAAO9D,sBAAsBT,OAAO,CAACuE,eAAe,EAAE;IACxD,GAAG;QAACrE;QAAajB;QAAaL;QAAUC;KAAS;IAEjD,MAAM4D,iBAAiBxE,YAAY;QACjC,IAAIY,aAAa,KAAKqB,cAAcpB,qBAAqBD,UAAU;YACjE,OAAO;QACT;QAEA,MAAM2F,gBAAgBrF,KAAKqE,GAAG,CAACtD,cAAcpB,mBAAmBD;QAChE,IAAI,CAACI,aAAa;YAChB,0DAA0D;YAC1D,MAAMwF,iBAAiB5F,WAAW2F;YAClC,OAAOC,iBAAiB7F;QAC1B;QAEA,6BAA6B;QAC7B,OAAO6B,sBAAsBT,OAAO,CAACnB,WAAW,EAAE,GAAG4B,sBAAsBT,OAAO,CAACwE,gBAAgB,EAAE;IACvG,GAAG;QAACtE;QAAajB;QAAaL;QAAUC;QAAUC;KAAkB;IAEpE,MAAM2C,kBAAkBxD,YACtB,CAACyG;QACC,IAAI7F,aAAa,GAAG;YAClB,yBAAyB,GACzB;QACF;QAEA;;;OAGC,GACD6B,WAAWV,OAAO,GAAG,IAAIQ,MAAM1B;QAC/B,MAAM6F,eAAexF,KAAK+D,GAAG,CAACwB,UAAU;QACxC,MAAME,MAAMzF,KAAKqE,GAAG,CAACmB,eAAe7F,mBAAmBD;QACvD,IAAK,IAAIgG,IAAIF,cAAcE,IAAID,KAAKC,IAAK;YACvCnE,WAAWV,OAAO,CAAC6E,IAAIF,aAAa,GAAG3F,YAAY6F,GAAG7D;QACxD;IACF,GACA;QAACA;QAAanC;QAAUG;QAAaF;KAAkB;IAGzD,MAAMgG,eAAe7G,YACnB,CAAC8G;QACC,IAAI,CAACA,WAAW1E,iBAAiBL,OAAO,KAAK+E,SAAS;YACpD;QACF;QACA1E,iBAAiBL,OAAO,GAAG+E;QAC3B,MAAMC,UAAU,EAAE;QAElBA,QAAQC,IAAI,CAAC5E,iBAAiBL,OAAO;QAErC,IAAIM,gBAAgBN,OAAO,EAAE;YAC3BgF,QAAQC,IAAI,CAAC3E,gBAAgBN,OAAO;QACtC;QAEA,mDAAmD;QACnD2B,gBAAgBqD;IAClB,GACA;QAACrD;KAAgB;IAGnB,MAAMuD,cAAcjH,YAClB,CAAC8G;QACC,IAAI,CAACA,WAAWzE,gBAAgBN,OAAO,KAAK+E,SAAS;YACnD;QACF;QACAzE,gBAAgBN,OAAO,GAAG+E;QAC1B,MAAMC,UAAU,EAAE;QAElB,IAAI3E,iBAAiBL,OAAO,EAAE;YAC5BgF,QAAQC,IAAI,CAAC5E,iBAAiBL,OAAO;QACvC;QAEAgF,QAAQC,IAAI,CAAC3E,gBAAgBN,OAAO;QAEpC,kDAAkD;QAClD2B,gBAAgBqD;IAClB,GACA;QAACrD;KAAgB;IAGnB,MAAMD,yBAAyB,CAACgD;QAC9B,IAAI,CAACzF,aAAa;YAChB,8BAA8B;YAC9B;QACF;QACA,qGAAqG;QACrG,yFAAyF;QACzF,MAAMkG,WAAWhG,KAAKqE,GAAG,CAACkB,WAAW5F,mBAAmBD;QACxD,MAAMsE,aAAahE,KAAK+D,GAAG,CAACwB,UAAU;QAEtC,IAAIU,YAAY;QAChB,IAAK,IAAIP,IAAI1B,YAAY0B,IAAIM,UAAUN,IAAK;YAC1C,MAAMQ,UAAUpG,YAAY4F;YAC5B,IAAIQ,YAAY9E,WAAWP,OAAO,CAAC6E,EAAE,EAAE;gBACrCtE,WAAWP,OAAO,CAAC6E,EAAE,GAAGQ;gBACxBD,YAAY;YACd;QACF;QAEA,IAAIA,WAAW;YACb,oCAAoC;YACpC,IAAK,IAAIP,IAAI1B,YAAY0B,IAAIhG,UAAUgG,IAAK;gBAC1C,MAAMS,WAAWT,IAAI,IAAIpE,sBAAsBT,OAAO,CAAC6E,IAAI,EAAE,GAAG;gBAChEpE,sBAAsBT,OAAO,CAAC6E,EAAE,GAAGS,WAAW/E,WAAWP,OAAO,CAAC6E,EAAE;YACrE;QACF;IACF;IAEA,iDAAiD;IACjD,MAAMU,iBAAiBvH,OAAgB;IACvC,MAAMwH,sBAAsB;QAC1B,IAAID,eAAevF,OAAO,KAAK,OAAO;YACpCuF,eAAevF,OAAO,GAAG;YACzBa;QACF;IACF;IAEA1C,oBACEyB,0BACA;QACE,OAAO;YACL6F,kBAAkBhF;YAClBiF,WAAWnF;YACXoF,iBAAiB,CAAC5E,QAA0Bd,aAAaD,OAAO,GAAGe;YACnEwD,cAAczE;QAChB;IACF,GACA;QAACW;QAAuBF;KAAW;IAGrC,mEAAmE;IACnE,gCAAgC;IAChCxC,UAAU;QACR,IAAImC,cAAc,GAAG;YACnBsB,oBAAoB;QACtB;IACA,uDAAuD;IACzD,GAAG,EAAE;IAEL,kFAAkF;IAClFzD,UAAU;QACR,IAAImC,eAAe,GAAG;YACpBuB,gBAAgBvB;YAChBS;QACF;IACA,uDAAuD;IACzD,GAAG;QAAC3B;QAAayC;KAAgB;IAEjC1D,UAAU;QACR,uDAAuD;QACvD8C;IAEA,uEAAuE;IACvE,uDAAuD;IACzD,GAAG;QAAC5B;KAAY;IAEhB,wCAAwC;IACxClB,UAAU;QACR,IAAI,CAAC4B,0BAA0BM,aAAaD,OAAO,KAAK,MAAM;YAC5D;QACF;QACA,IAAIE,eAAeD,aAAaD,OAAO,IAAIE,cAAcpB,qBAAqBmB,aAAaD,OAAO,EAAE;YAClGL,uBAAuBM,aAAaD,OAAO;YAC3CC,aAAaD,OAAO,GAAG;QACzB;IACF,GAAG;QAACE;QAAaP;QAAwBb;KAAkB;IAE3D,kFAAkF;IAClF0G;IAEA,IAAIvG,eAAgBJ,CAAAA,aAAa0B,WAAWP,OAAO,CAACc,MAAM,IAAIjC,aAAa4B,sBAAsBT,OAAO,CAACc,MAAM,AAAD,GAAI;QAChH,iDAAiD;QACjDD;IACF;IAEA,iDAAiD;IACjD,MAAM+E,aAAazG,KAAKqE,GAAG,CAAC1E,mBAAmBD;IAC/C,IAAI6B,WAAWV,OAAO,CAACc,MAAM,KAAK8E,cAAc1F,cAAcQ,WAAWV,OAAO,CAACc,MAAM,GAAGjC,UAAU;QAClG4C,gBAAgBvB;IAClB;IAEA,MAAM2F,qBAAqBN,eAAevF,OAAO,IAAIE,eAAe;IACpE,OAAO;QACL4F,YAAY;YACVC,QAAQ;YACRC,OAAO;YACPC,iBAAiB;YACjBC,gBAAgB;QAClB;QACAC,qBAAqBzF,WAAWV,OAAO;QACvC+F,QAAQvH,KAAK4H,MAAM,CAACzH,MAAMoH,MAAM,EAAE;YAChCM,cAAc;gBACZC,KAAKxB;gBACLyB,MAAM;YACR;YACAC,aAAa;QACf;QACAR,OAAOxH,KAAK4H,MAAM,CAACzH,MAAMqH,KAAK,EAAE;YAC9BK,cAAc;gBACZC,KAAKpB;gBACLqB,MAAM;YACR;YACAC,aAAa;QACf;QACAP,iBAAiBzH,KAAK4H,MAAM,CAACzH,MAAMsH,eAAe,EAAE;YAClDI,cAAc;gBACZE,MAAM;YACR;YACAC,aAAa;QACf;QACAN,gBAAgB1H,KAAK4H,MAAM,CAACzH,MAAMuH,cAAc,EAAE;YAChDG,cAAc;gBACZE,MAAM;YACR;YACAC,aAAa;QACf;QACAC,oBAAoBZ,qBAAqB5C,oBAAoB;QAC7DyD,mBAAmBb,qBAAqBpD,mBAAmB;QAC3DkE,wBAAwBd,qBAAqBnD,uBAAuB5D,oBAAoBF;QACxFgI,uBAAuB1G;QACvBV;QACAH;QACAI;QACAc;QACAE;IACF;AACF"}
|
|
1
|
+
{"version":3,"sources":["useVirtualizer.ts"],"sourcesContent":["import type { ReactNode } from 'react';\nimport type { VirtualizerProps, VirtualizerState } from './Virtualizer.types';\n\nimport { useEffect, useRef, useCallback, useImperativeHandle, useState, useReducer } from 'react';\nimport { useIntersectionObserver } from '../../hooks/useIntersectionObserver';\nimport { useVirtualizerContextState_unstable } from '../../Utilities';\nimport { slot, useTimeout } from '@fluentui/react-utilities';\nimport { flushSync } from 'react-dom';\n\nexport function useVirtualizer_unstable(props: VirtualizerProps): VirtualizerState {\n 'use no memo';\n\n const {\n itemSize,\n numItems,\n virtualizerLength,\n children: renderChild,\n getItemSize,\n bufferItems = Math.round(virtualizerLength / 4.0),\n bufferSize = Math.floor(bufferItems / 2.0) * itemSize,\n axis = 'vertical',\n reversed = false,\n virtualizerContext,\n onRenderedFlaggedIndex,\n imperativeVirtualizerRef,\n containerSizeRef,\n scrollViewRef,\n enableScrollLoad,\n } = props;\n\n /* The context is optional, it's useful for injecting additional index logic, or performing uniform state updates*/\n const _virtualizerContext = useVirtualizerContextState_unstable(virtualizerContext);\n\n // We use this ref as a constant source to access the virtualizer's state imperatively\n const actualIndexRef = useRef<number>(_virtualizerContext.contextIndex);\n const flaggedIndex = useRef<number | null>(null);\n\n const actualIndex = _virtualizerContext.contextIndex;\n // Just in case our ref gets out of date vs the context during a re-render\n if (_virtualizerContext.contextIndex !== actualIndexRef.current) {\n actualIndexRef.current = _virtualizerContext.contextIndex;\n }\n const setActualIndex = useCallback(\n (index: number) => {\n actualIndexRef.current = index;\n _virtualizerContext.setContextIndex(index);\n },\n [_virtualizerContext],\n );\n\n // Store ref to before padding element\n const beforeElementRef = useRef<Element | null>(null);\n\n // Store ref to before padding element\n const afterElementRef = useRef<Element | null>(null);\n\n // We need to store an array to track dynamic sizes, we can use this to incrementally update changes\n const childSizes = useRef<number[]>(new Array<number>(getItemSize ? numItems : 0));\n\n /* We keep track of the progressive sizing/placement down the list,\n this helps us skip re-calculations unless children/size changes */\n const childProgressiveSizes = useRef<number[]>(new Array<number>(getItemSize ? numItems : 0));\n if (virtualizerContext?.childProgressiveSizes) {\n virtualizerContext.childProgressiveSizes.current = childProgressiveSizes.current;\n }\n\n // The internal tracking REF for child array (updates often).\n const childArray = useRef<ReactNode[]>(new Array(virtualizerLength));\n\n const populateSizeArrays = () => {\n if (!getItemSize) {\n // Static sizes, never mind!\n return;\n }\n\n if (numItems !== childSizes.current.length) {\n childSizes.current = new Array<number>(numItems);\n }\n\n if (numItems !== childProgressiveSizes.current.length) {\n childProgressiveSizes.current = new Array<number>(numItems);\n if (virtualizerContext?.childProgressiveSizes) {\n virtualizerContext.childProgressiveSizes.current = childProgressiveSizes.current;\n }\n }\n\n for (let index = 0; index < numItems; index++) {\n childSizes.current[index] = getItemSize(index);\n if (index === 0) {\n childProgressiveSizes.current[index] = childSizes.current[index];\n } else {\n childProgressiveSizes.current[index] = childProgressiveSizes.current[index - 1] + childSizes.current[index];\n }\n }\n };\n\n const [isScrolling, setIsScrolling] = useState<boolean>(false);\n const [setScrollTimer, clearScrollTimer] = useTimeout();\n const scrollCounter = useRef<number>(0);\n\n const initializeScrollingTimer = useCallback(() => {\n if (!enableScrollLoad) {\n // Disabled by default for reduction of render callbacks\n return;\n }\n /*\n * This can be considered the 'velocity' required to start 'isScrolling'\n * INIT_SCROLL_FLAG_REQ: Number of renders required to activate isScrolling\n * INIT_SCROLL_FLAG_DELAY: Amount of time (ms) before current number of renders is reset\n * - Maybe we should let users customize these in the future.\n */\n const INIT_SCROLL_FLAG_REQ = 10;\n const INIT_SCROLL_FLAG_DELAY = 100;\n\n scrollCounter.current++;\n if (scrollCounter.current >= INIT_SCROLL_FLAG_REQ) {\n setIsScrolling(true);\n }\n clearScrollTimer();\n setScrollTimer(() => {\n setIsScrolling(false);\n scrollCounter.current = 0;\n }, INIT_SCROLL_FLAG_DELAY);\n }, [clearScrollTimer, setScrollTimer, enableScrollLoad]);\n\n useEffect(() => {\n initializeScrollingTimer();\n }, [actualIndex, initializeScrollingTimer]);\n\n const updateChildRows = useCallback(\n (newIndex: number) => {\n if (numItems === 0) {\n /* Nothing to virtualize */\n return;\n }\n\n /*\n We reset the array every time to ensure children are re-rendered\n This function should only be called when update is nessecary\n */\n childArray.current = new Array(virtualizerLength);\n const _actualIndex = Math.max(newIndex, 0);\n const end = Math.min(_actualIndex + virtualizerLength, numItems);\n for (let i = _actualIndex; i < end; i++) {\n childArray.current[i - _actualIndex] = renderChild(i, isScrolling);\n }\n },\n [isScrolling, numItems, renderChild, virtualizerLength],\n );\n\n const updateCurrentItemSizes = useCallback(\n (newIndex: number) => {\n if (!getItemSize) {\n // Static sizes, not required.\n return;\n }\n // We should always call our size function on index change (only for the items that will be rendered)\n // This ensures we request the latest data for incoming items in case sizing has changed.\n const endIndex = Math.min(newIndex + virtualizerLength, numItems);\n const startIndex = Math.max(newIndex, 0);\n\n let didUpdate = false;\n for (let i = startIndex; i < endIndex; i++) {\n const newSize = getItemSize(i);\n if (newSize !== childSizes.current[i]) {\n childSizes.current[i] = newSize;\n didUpdate = true;\n }\n }\n\n if (didUpdate) {\n // Update our progressive size array\n for (let i = startIndex; i < numItems; i++) {\n const prevSize = i > 0 ? childProgressiveSizes.current[i - 1] : 0;\n childProgressiveSizes.current[i] = prevSize + childSizes.current[i];\n }\n }\n },\n [getItemSize, numItems, virtualizerLength],\n );\n\n const batchUpdateNewIndex = useCallback(\n (index: number) => {\n // Local updates\n updateChildRows(index);\n updateCurrentItemSizes(index);\n\n // State setters\n setActualIndex(index);\n },\n [setActualIndex, updateChildRows, updateCurrentItemSizes],\n );\n\n const findIndexRecursive = useCallback(\n (scrollPos: number, lowIndex: number, highIndex: number): number => {\n if (lowIndex > highIndex) {\n // We shouldn't get here - but no-op the index if we do.\n return actualIndex;\n }\n const midpoint = Math.floor((lowIndex + highIndex) / 2);\n const iBefore = Math.max(midpoint - 1, 0);\n const iAfter = Math.min(midpoint + 1, childProgressiveSizes.current.length - 1);\n const indexValue = childProgressiveSizes.current[midpoint];\n const afterIndexValue = childProgressiveSizes.current[iAfter];\n const beforeIndexValue = childProgressiveSizes.current[iBefore];\n if (scrollPos <= afterIndexValue && scrollPos >= beforeIndexValue) {\n /* We've found our index - if we are exactly matching before/after index that's ok,\n better to reduce checks if it's right on the boundary. */\n return midpoint;\n }\n\n if (indexValue > scrollPos) {\n return findIndexRecursive(scrollPos, lowIndex, midpoint - 1);\n } else {\n return findIndexRecursive(scrollPos, midpoint + 1, highIndex);\n }\n },\n [actualIndex],\n );\n\n const getIndexFromSizeArray = useCallback(\n (scrollPos: number): number => {\n /* Quick searches our progressive height array */\n if (\n scrollPos === 0 ||\n childProgressiveSizes.current.length === 0 ||\n scrollPos <= childProgressiveSizes.current[0]\n ) {\n // Check start\n return 0;\n }\n\n if (scrollPos >= childProgressiveSizes.current[childProgressiveSizes.current.length - 1]) {\n // Check end\n return childProgressiveSizes.current.length - 1;\n }\n\n return findIndexRecursive(scrollPos, 0, childProgressiveSizes.current.length - 1);\n },\n [findIndexRecursive],\n );\n const getIndexFromScrollPosition = useCallback(\n (scrollPos: number) => {\n if (!getItemSize) {\n return Math.round(scrollPos / itemSize);\n }\n\n return getIndexFromSizeArray(scrollPos);\n },\n [getIndexFromSizeArray, getItemSize, itemSize],\n );\n\n const calculateTotalSize = useCallback(() => {\n if (!getItemSize) {\n return itemSize * numItems;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[numItems - 1];\n }, [getItemSize, itemSize, numItems]);\n\n const calculateBefore = useCallback(() => {\n const currentIndex = Math.min(actualIndex, numItems - 1);\n\n if (!getItemSize) {\n // The missing items from before virtualization starts height\n return currentIndex * itemSize;\n }\n\n if (currentIndex <= 0) {\n return 0;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[currentIndex - 1];\n }, [actualIndex, getItemSize, itemSize, numItems]);\n\n const calculateAfter = useCallback(() => {\n if (numItems === 0 || actualIndex + virtualizerLength >= numItems) {\n return 0;\n }\n\n const lastItemIndex = Math.min(actualIndex + virtualizerLength, numItems);\n if (!getItemSize) {\n // The missing items from after virtualization ends height\n const remainingItems = numItems - lastItemIndex;\n return remainingItems * itemSize;\n }\n\n // Time for custom size calcs\n return childProgressiveSizes.current[numItems - 1] - childProgressiveSizes.current[lastItemIndex - 1];\n }, [actualIndex, getItemSize, itemSize, numItems, virtualizerLength]);\n\n // Observe intersections of virtualized components\n const { setObserverList } = useIntersectionObserver(\n useCallback(\n // TODO: exclude types from this lint rule: https://github.com/microsoft/fluentui/issues/31286\n // eslint-disable-next-line no-restricted-globals\n (entries: IntersectionObserverEntry[], observer: IntersectionObserver) => {\n /* Sanity check - do we even need virtualization? */\n if (virtualizerLength > numItems) {\n if (actualIndex !== 0) {\n batchUpdateNewIndex(0);\n }\n // No-op\n return;\n }\n\n // Grab latest entry that is intersecting\n const latestEntry =\n entries.length === 1\n ? entries[0]\n : entries\n .sort((entry1, entry2) => entry2.time - entry1.time)\n .find(entry => {\n return entry.intersectionRatio > 0;\n });\n\n if (!latestEntry || !latestEntry.isIntersecting) {\n // If we don't find an intersecting area, ignore for now.\n return;\n }\n\n // We have to be sure our item sizes are up to date with current indexed ref before calculation\n // Check if we still need\n updateCurrentItemSizes(actualIndexRef.current);\n\n const calculateOverBuffer = (): number => {\n /**\n * We avoid using the scroll ref scrollTop, it may be incorrect\n * as virtualization may exist within a scroll view with other elements\n * The benefit of using IO is that we can detect relative scrolls,\n * so any items can be placed around the virtualizer in the scroll view\n */\n let measurementPos = 0;\n if (latestEntry.target === afterElementRef.current) {\n // Get after buffers position\n measurementPos = calculateTotalSize() - calculateAfter();\n\n // Get exact intersection position based on overflow size (how far into IO did we scroll?)\n const overflowAmount =\n axis === 'vertical' ? latestEntry.intersectionRect.height : latestEntry.intersectionRect.width;\n // Add to original after position\n measurementPos += overflowAmount;\n // Ignore buffer size (IO offset)\n measurementPos -= bufferSize;\n // we hit the after buffer and detected the end of view, we need to find the start index.\n measurementPos -= containerSizeRef.current ?? 0;\n\n // Calculate how far past the window bounds we are (this will be zero if IO is within window)\n const hOverflow = latestEntry.boundingClientRect.top - latestEntry.intersectionRect.top;\n const hOverflowReversed = latestEntry.boundingClientRect.bottom - latestEntry.intersectionRect.bottom;\n const wOverflow = latestEntry.boundingClientRect.left - latestEntry.intersectionRect.left;\n const wOverflowReversed = latestEntry.boundingClientRect.right - latestEntry.intersectionRect.right;\n const widthOverflow = reversed ? wOverflowReversed : wOverflow;\n const heightOverflow = reversed ? hOverflowReversed : hOverflow;\n const additionalOverflow = axis === 'vertical' ? heightOverflow : widthOverflow;\n\n if (reversed) {\n measurementPos += additionalOverflow;\n } else {\n measurementPos -= additionalOverflow;\n }\n } else if (latestEntry.target === beforeElementRef.current) {\n // Get before buffers position\n measurementPos = calculateBefore();\n // Get exact intersection position based on overflow size (how far into window did we scroll IO?)\n const overflowAmount =\n axis === 'vertical' ? latestEntry.intersectionRect.height : latestEntry.intersectionRect.width;\n // Minus from original before position\n measurementPos -= overflowAmount;\n // Ignore buffer size (IO offset)\n measurementPos += bufferSize;\n\n // Calculate how far past the window bounds we are (this will be zero if IO is within window)\n const hOverflow = latestEntry.boundingClientRect.bottom - latestEntry.intersectionRect.bottom;\n const hOverflowReversed = latestEntry.boundingClientRect.top - latestEntry.intersectionRect.top;\n const wOverflow = latestEntry.boundingClientRect.right - latestEntry.intersectionRect.right;\n const wOverflowReversed = latestEntry.boundingClientRect.left - latestEntry.intersectionRect.left;\n const widthOverflow = reversed ? wOverflowReversed : wOverflow;\n const heightOverflow = reversed ? hOverflowReversed : hOverflow;\n const additionalOverflow = axis === 'vertical' ? heightOverflow : widthOverflow;\n\n if (reversed) {\n measurementPos += additionalOverflow;\n } else {\n measurementPos -= additionalOverflow;\n }\n }\n\n return measurementPos;\n };\n\n // Get exact relative 'scrollTop' via IO values\n const measurementPos = calculateOverBuffer();\n\n const maxIndex = Math.max(numItems - virtualizerLength, 0);\n\n const startIndex = getIndexFromScrollPosition(measurementPos) - bufferItems;\n\n // Safety limits\n const newStartIndex = Math.min(Math.max(startIndex, 0), maxIndex);\n\n flushSync(() => {\n _virtualizerContext.setContextPosition(measurementPos);\n if (actualIndex !== newStartIndex) {\n batchUpdateNewIndex(newStartIndex);\n }\n });\n },\n [\n _virtualizerContext,\n actualIndex,\n axis,\n batchUpdateNewIndex,\n bufferItems,\n bufferSize,\n calculateAfter,\n calculateBefore,\n calculateTotalSize,\n containerSizeRef,\n getIndexFromScrollPosition,\n numItems,\n reversed,\n updateCurrentItemSizes,\n virtualizerLength,\n ],\n ),\n {\n root: scrollViewRef ? scrollViewRef?.current : null,\n rootMargin: '0px',\n threshold: 0,\n },\n );\n\n const setBeforeRef = useCallback(\n (element: HTMLDivElement) => {\n if (!element || beforeElementRef.current === element) {\n return;\n }\n beforeElementRef.current = element;\n const newList = [];\n\n newList.push(beforeElementRef.current);\n\n if (afterElementRef.current) {\n newList.push(afterElementRef.current);\n }\n\n // Ensure we update array if before element changed\n setObserverList(newList);\n },\n [setObserverList],\n );\n\n const setAfterRef = useCallback(\n (element: HTMLDivElement) => {\n if (!element || afterElementRef.current === element) {\n return;\n }\n afterElementRef.current = element;\n const newList = [];\n\n if (beforeElementRef.current) {\n newList.push(beforeElementRef.current);\n }\n\n newList.push(afterElementRef.current);\n\n // Ensure we update array if after element changed\n setObserverList(newList);\n },\n [setObserverList],\n );\n\n // Initialize the size array before first render.\n const hasInitialized = useRef<boolean>(false);\n const initializeSizeArray = () => {\n if (hasInitialized.current === false) {\n hasInitialized.current = true;\n populateSizeArrays();\n }\n };\n\n useImperativeHandle(\n imperativeVirtualizerRef,\n () => {\n return {\n progressiveSizes: childProgressiveSizes,\n nodeSizes: childSizes,\n setFlaggedIndex: (index: number | null) => (flaggedIndex.current = index),\n currentIndex: actualIndexRef,\n };\n },\n [childProgressiveSizes, childSizes],\n );\n\n // Initialization on mount - update array index to 0 (ready state).\n // Only fire on mount (no deps).\n useEffect(() => {\n if (actualIndex < 0) {\n batchUpdateNewIndex(0);\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, []);\n\n /*\n * forceUpdate:\n * We only want to trigger this when scrollLoading is enabled and set to false,\n * it will force re-render all children elements\n */\n const forceUpdate = useReducer(() => ({}), {})[1];\n // If the user passes in an updated renderChild function - update current children\n useEffect(() => {\n if (actualIndex >= 0) {\n updateChildRows(actualIndex);\n if (enableScrollLoad && !isScrolling) {\n forceUpdate();\n }\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [renderChild, isScrolling]);\n\n useEffect(() => {\n // Ensure we repopulate if getItemSize callback changes\n populateSizeArrays();\n\n // We only run this effect on getItemSize change (recalc dynamic sizes)\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [getItemSize]);\n\n // Effect to check flag index on updates\n useEffect(() => {\n if (!onRenderedFlaggedIndex || flaggedIndex.current === null) {\n return;\n }\n if (actualIndex <= flaggedIndex.current && actualIndex + virtualizerLength >= flaggedIndex.current) {\n onRenderedFlaggedIndex(flaggedIndex.current);\n flaggedIndex.current = null;\n }\n }, [actualIndex, onRenderedFlaggedIndex, virtualizerLength]);\n\n // Ensure we have run through and updated the whole size list array at least once.\n initializeSizeArray();\n\n if (getItemSize && (numItems !== childSizes.current.length || numItems !== childProgressiveSizes.current.length)) {\n // Child length mismatch, repopulate size arrays.\n populateSizeArrays();\n }\n\n // Ensure we recalc if virtualizer length changes\n const maxCompare = Math.min(virtualizerLength, numItems);\n if (childArray.current.length !== maxCompare && actualIndex + childArray.current.length < numItems) {\n updateChildRows(actualIndex);\n }\n\n const isFullyInitialized = hasInitialized.current && actualIndex >= 0;\n return {\n components: {\n before: 'div',\n after: 'div',\n beforeContainer: 'div',\n afterContainer: 'div',\n },\n virtualizedChildren: childArray.current,\n before: slot.always(props.before, {\n defaultProps: {\n ref: setBeforeRef,\n role: 'none',\n },\n elementType: 'div',\n }),\n after: slot.always(props.after, {\n defaultProps: {\n ref: setAfterRef,\n role: 'none',\n },\n elementType: 'div',\n }),\n beforeContainer: slot.always(props.beforeContainer, {\n defaultProps: {\n role: 'none',\n },\n elementType: 'div',\n }),\n afterContainer: slot.always(props.afterContainer, {\n defaultProps: {\n role: 'none',\n },\n elementType: 'div',\n }),\n beforeBufferHeight: isFullyInitialized ? calculateBefore() : 0,\n afterBufferHeight: isFullyInitialized ? calculateAfter() : 0,\n totalVirtualizerHeight: isFullyInitialized ? calculateTotalSize() : virtualizerLength * itemSize,\n virtualizerStartIndex: actualIndex,\n axis,\n bufferSize,\n reversed,\n childSizes,\n childProgressiveSizes,\n };\n}\n"],"names":["useEffect","useRef","useCallback","useImperativeHandle","useState","useReducer","useIntersectionObserver","useVirtualizerContextState_unstable","slot","useTimeout","flushSync","useVirtualizer_unstable","props","itemSize","numItems","virtualizerLength","children","renderChild","getItemSize","bufferItems","Math","round","bufferSize","floor","axis","reversed","virtualizerContext","onRenderedFlaggedIndex","imperativeVirtualizerRef","containerSizeRef","scrollViewRef","enableScrollLoad","_virtualizerContext","actualIndexRef","contextIndex","flaggedIndex","actualIndex","current","setActualIndex","index","setContextIndex","beforeElementRef","afterElementRef","childSizes","Array","childProgressiveSizes","childArray","populateSizeArrays","length","isScrolling","setIsScrolling","setScrollTimer","clearScrollTimer","scrollCounter","initializeScrollingTimer","INIT_SCROLL_FLAG_REQ","INIT_SCROLL_FLAG_DELAY","updateChildRows","newIndex","_actualIndex","max","end","min","i","updateCurrentItemSizes","endIndex","startIndex","didUpdate","newSize","prevSize","batchUpdateNewIndex","findIndexRecursive","scrollPos","lowIndex","highIndex","midpoint","iBefore","iAfter","indexValue","afterIndexValue","beforeIndexValue","getIndexFromSizeArray","getIndexFromScrollPosition","calculateTotalSize","calculateBefore","currentIndex","calculateAfter","lastItemIndex","remainingItems","setObserverList","entries","observer","latestEntry","sort","entry1","entry2","time","find","entry","intersectionRatio","isIntersecting","calculateOverBuffer","measurementPos","target","overflowAmount","intersectionRect","height","width","hOverflow","boundingClientRect","top","hOverflowReversed","bottom","wOverflow","left","wOverflowReversed","right","widthOverflow","heightOverflow","additionalOverflow","maxIndex","newStartIndex","setContextPosition","root","rootMargin","threshold","setBeforeRef","element","newList","push","setAfterRef","hasInitialized","initializeSizeArray","progressiveSizes","nodeSizes","setFlaggedIndex","forceUpdate","maxCompare","isFullyInitialized","components","before","after","beforeContainer","afterContainer","virtualizedChildren","always","defaultProps","ref","role","elementType","beforeBufferHeight","afterBufferHeight","totalVirtualizerHeight","virtualizerStartIndex"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
|