virtua 0.2.1 → 0.2.3
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/README.md +68 -16
- package/lib/core/dom.d.ts +1 -0
- package/lib/core/resizer.d.ts +13 -0
- package/lib/core/scroller.d.ts +1 -6
- package/lib/core/store.d.ts +17 -14
- package/lib/core/utils.d.ts +1 -1
- package/lib/index.d.ts +4 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +1 -1
- package/lib/react/VGrid.d.ts +96 -0
- package/lib/react/VList.d.ts +16 -4
- package/lib/react/types.d.ts +2 -0
- package/lib/react/utils.d.ts +2 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
   [](https://github.com/inokawa/virtua/actions/workflows/check.yml) [](https://github.com/inokawa/virtua/actions/workflows/demo.yml)
|
|
4
4
|
|
|
5
|
-
A zero-config, fast and small (3kB) virtual list component for [React](https://github.com/facebook/react).
|
|
5
|
+
A zero-config, fast and small (3kB) virtual list and grid component for [React](https://github.com/facebook/react).
|
|
6
6
|
|
|
7
7
|
If you want to check the difference with the alternatives right away, [see comparison section](#comparison).
|
|
8
8
|
|
|
@@ -14,7 +14,7 @@ This project is a challenge to rethink virtualization. The goals are...
|
|
|
14
14
|
- **Fast:** Scrolling without frame drop needs optimization in many aspects (reduce CPU usage, reduce GC, [reduce layout recalculation](https://gist.github.com/paulirish/5d52fb081b3570c81e3a), optimize for frameworks, etc). We are trying to combine the best of them.
|
|
15
15
|
- **Small:** Its bundle size should be small as much as possible to be friendly with modern web development. Currently [about 3kB gzipped](https://bundlephobia.com/package/virtua).
|
|
16
16
|
- **Flexible:** Aiming to support many usecases - fixed size, dynamic size, horizontal scrolling, reverse scrolling, rtl direction, sticky, infinite scrolling, placeholder, scrollTo, dnd, table, and more. See [live demo](#demo).
|
|
17
|
-
- **Framework agnostic (WIP):** Currently only for React but we could support Vue, Svelte, Solid, Web Components and more in the future.
|
|
17
|
+
- **Framework agnostic (WIP):** Currently only for [React](https://react.dev/) but we could support [Vue](https://vuejs.org/), [Svelte](https://svelte.dev/), [Solid](https://www.solidjs.com/), [Web Components](https://developer.mozilla.org/en-US/docs/Web/API/Web_components) and more in the future.
|
|
18
18
|
|
|
19
19
|
## Demo
|
|
20
20
|
|
|
@@ -34,6 +34,8 @@ If you use ESM and webpack 5, use react >= 18 to avoid [Can't resolve `react/jsx
|
|
|
34
34
|
|
|
35
35
|
## Usage
|
|
36
36
|
|
|
37
|
+
### Vertical scroll
|
|
38
|
+
|
|
37
39
|
```tsx
|
|
38
40
|
import { VList } from "virtua";
|
|
39
41
|
|
|
@@ -57,6 +59,55 @@ export const App = () => {
|
|
|
57
59
|
};
|
|
58
60
|
```
|
|
59
61
|
|
|
62
|
+
### Horizontal scroll
|
|
63
|
+
|
|
64
|
+
```tsx
|
|
65
|
+
import { VList } from "virtua";
|
|
66
|
+
|
|
67
|
+
export const App = () => {
|
|
68
|
+
return (
|
|
69
|
+
<VList style={{ height: 400 }} horizontal>
|
|
70
|
+
{Array.from({ length: 1000 }).map((_, i) => (
|
|
71
|
+
<div
|
|
72
|
+
key={i}
|
|
73
|
+
style={{
|
|
74
|
+
width: Math.floor(Math.random() * 10) * 10 + 10,
|
|
75
|
+
borderRight: "solid 1px gray",
|
|
76
|
+
background: "white",
|
|
77
|
+
}}
|
|
78
|
+
>
|
|
79
|
+
{i}
|
|
80
|
+
</div>
|
|
81
|
+
))}
|
|
82
|
+
</VList>
|
|
83
|
+
);
|
|
84
|
+
};
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Vertical and horizontal scroll
|
|
88
|
+
|
|
89
|
+
```tsx
|
|
90
|
+
import { VGrid } from "virtua";
|
|
91
|
+
|
|
92
|
+
export const App = () => {
|
|
93
|
+
return (
|
|
94
|
+
<VGrid style={{ height: 800 }} row={1000} col={500}>
|
|
95
|
+
{({ rowIndex, colIndex }) => (
|
|
96
|
+
<div
|
|
97
|
+
style={{
|
|
98
|
+
width: ((colIndex % 3) + 1) * 100,
|
|
99
|
+
border: "solid 1px gray",
|
|
100
|
+
background: "white",
|
|
101
|
+
}}
|
|
102
|
+
>
|
|
103
|
+
{rowIndex} / {colIndex}
|
|
104
|
+
</div>
|
|
105
|
+
)}
|
|
106
|
+
</VGrid>
|
|
107
|
+
);
|
|
108
|
+
};
|
|
109
|
+
```
|
|
110
|
+
|
|
60
111
|
And see [examples](./stories) for more usages.
|
|
61
112
|
|
|
62
113
|
## Documentation
|
|
@@ -71,20 +122,21 @@ WIP
|
|
|
71
122
|
|
|
72
123
|
### Features
|
|
73
124
|
|
|
74
|
-
| | [virtua](https://github.com/inokawa/virtua) | [react-virtuoso](https://github.com/petyosi/react-virtuoso) | [react-
|
|
75
|
-
| :------------------------------------------------- | :------------------------------------------------------- | :---------------------------------------------------------------- |
|
|
76
|
-
| Bundle size | [3.1kB gzipped](https://bundlephobia.com/package/virtua) | [16.3kB gzipped](https://bundlephobia.com/package/react-virtuoso) | [
|
|
77
|
-
| Vertical scroll | ✅ | ✅ | ✅
|
|
78
|
-
| Horizontal scroll | ✅ | ✅ | ✅
|
|
79
|
-
| Grid
|
|
80
|
-
| Table | 🟠 (needs customization) | ✅
|
|
81
|
-
| Window scroller | ❌ | ✅ | ✅ ([WindowScroller](https://github.com/bvaughn/react-virtualized/blob/master/docs/WindowScroller.md)) |
|
|
82
|
-
| Dynamic list size | ✅ | ✅ | 🟠 (needs [AutoSizer](https://github.com/bvaughn/react-virtualized/blob/master/docs/AutoSizer.md))
|
|
83
|
-
| Dynamic item size | ✅ | ✅ | 🟠 (needs [CellMeasurer](https://github.com/bvaughn/react-virtualized/blob/master/docs/CellMeasurer.md) and has wrong destination when scrolling to item imperatively) | 🟠 (
|
|
84
|
-
| Reverse scroll | ✅ | ✅ | ❌
|
|
85
|
-
| Infinite scroll | ✅ | ✅ | 🟠 (needs [
|
|
86
|
-
| RTL | ✅ | ❌ | ✅
|
|
87
|
-
|
|
|
125
|
+
| | [virtua](https://github.com/inokawa/virtua) | [react-virtuoso](https://github.com/petyosi/react-virtuoso) | [react-window](https://github.com/bvaughn/react-window) | [react-virtualized](https://github.com/bvaughn/react-virtualized) | [@tanstack/react-virtual](https://github.com/TanStack/virtual) | [react-cool-virtual](https://github.com/wellyshen/react-cool-virtual) |
|
|
126
|
+
| :------------------------------------------------- | :------------------------------------------------------- | :---------------------------------------------------------------- | :------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------ | :-------------------------------------------------------------------- |
|
|
127
|
+
| Bundle size | [3.1kB gzipped](https://bundlephobia.com/package/virtua) | [16.3kB gzipped](https://bundlephobia.com/package/react-virtuoso) | [6.4kB gzipped](https://bundlephobia.com/package/react-window) | [27.3kB gzipped](https://bundlephobia.com/package/react-virtualized) | [2.3kB gzipped](https://bundlephobia.com/package/@tanstack/react-virtual) | [3.1kB gzipped](https://bundlephobia.com/package/react-cool-virtual) |
|
|
128
|
+
| Vertical scroll | ✅ | ✅ | ✅ | ✅ | 🟠 (needs customization) | 🟠 (needs customization) |
|
|
129
|
+
| Horizontal scroll | ✅ | ✅ | ✅ | ✅ | 🟠 (needs customization) | 🟠 (needs customization) |
|
|
130
|
+
| Grid (Virtualization for both direction) | ✅ | ❌ | ✅ (FixedSizeGrid / VariableSizeGrid) | ✅ ([Grid](https://github.com/bvaughn/react-virtualized/blob/master/docs/Grid.md)) | 🟠 (needs customization) | 🟠 (needs customization) |
|
|
131
|
+
| Table | 🟠 (needs customization) | ✅ (TableVirtuoso) | 🟠 (needs customization) | ✅ ([Table](https://github.com/bvaughn/react-virtualized/blob/master/docs/Table.md)) | 🟠 (needs customization) | 🟠 (needs customization) |
|
|
132
|
+
| Window scroller | ❌ | ✅ | ❌ | ✅ ([WindowScroller](https://github.com/bvaughn/react-virtualized/blob/master/docs/WindowScroller.md)) | ✅ | ❌ |
|
|
133
|
+
| Dynamic list size | ✅ | ✅ | 🟠 (needs [AutoSizer](https://github.com/bvaughn/react-virtualized/blob/master/docs/AutoSizer.md)) | 🟠 (needs [AutoSizer](https://github.com/bvaughn/react-virtualized/blob/master/docs/AutoSizer.md)) | ✅ | ✅ |
|
|
134
|
+
| Dynamic item size | ✅ | ✅ | 🟠 (needs additional codes and has wrong destination when scrolling to item imperatively) | 🟠 (needs [CellMeasurer](https://github.com/bvaughn/react-virtualized/blob/master/docs/CellMeasurer.md) and has wrong destination when scrolling to item imperatively) | 🟠 (has wrong destination when scrolling to item imperatively) | 🟠 (has wrong destination when scrolling to item imperatively) |
|
|
135
|
+
| Reverse scroll | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
|
|
136
|
+
| Infinite scroll | ✅ | ✅ | 🟠 (needs [react-window-infinite-loader](https://github.com/bvaughn/react-window-infinite-loader)) | 🟠 (needs [InfiniteLoader](https://github.com/bvaughn/react-virtualized/blob/master/docs/InfiniteLoader.md)) | ✅ | ✅ |
|
|
137
|
+
| RTL | ✅ | ❌ | ✅ | ❌ | ❌ | ❌ |
|
|
138
|
+
| SSR support | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
139
|
+
| Display exceeding browser's max element size limit | ❌ | ❌ | ❌ | ✅ | ❌ | ❌ |
|
|
88
140
|
|
|
89
141
|
- ✅ - Built-in supported
|
|
90
142
|
- 🟠 - Supported but partial, limited or requires some user custom code
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const hasNegativeOffsetInRtl: (scrollable: HTMLElement) => boolean;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { VirtualStore } from "./store";
|
|
2
|
+
export declare const createResizer: (store: VirtualStore) => {
|
|
3
|
+
_observeRoot(root: HTMLElement): () => void;
|
|
4
|
+
_observeItem(el: HTMLElement, i: number): () => void;
|
|
5
|
+
_isJustResized(): boolean;
|
|
6
|
+
};
|
|
7
|
+
export type Resizer = ReturnType<typeof createResizer>;
|
|
8
|
+
export declare const createGridResizer: (vStore: VirtualStore, hStore: VirtualStore) => {
|
|
9
|
+
_observeRoot(root: HTMLElement): () => void;
|
|
10
|
+
_observeItem(el: HTMLElement, rowIndex: number, colIndex: number): () => void;
|
|
11
|
+
_isJustResized(horizontal?: boolean): boolean;
|
|
12
|
+
};
|
|
13
|
+
export type GridResizer = ReturnType<typeof createGridResizer>;
|
package/lib/core/scroller.d.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
1
|
import { ScrollJump, VirtualStore } from "./store";
|
|
2
|
-
export declare const SCROLL_STOP = 0;
|
|
3
|
-
export declare const SCROLL_DOWN = 1;
|
|
4
|
-
export declare const SCROLL_UP = 2;
|
|
5
|
-
export declare const SCROLL_MANUAL = 3;
|
|
6
2
|
export type Scroller = {
|
|
7
3
|
_initRoot: (rootElement: HTMLElement) => () => void;
|
|
8
|
-
_initItem: (itemElement: HTMLElement, index: number) => () => void;
|
|
9
4
|
_getActualScrollSize: () => number;
|
|
10
5
|
_scrollTo: (offset: number) => void;
|
|
11
6
|
_scrollToIndex: (index: number, count: number) => void;
|
|
12
7
|
_fixScrollJump: (jump: ScrollJump, startIndex: number) => void;
|
|
13
8
|
};
|
|
14
|
-
export declare const createScroller: (store: VirtualStore,
|
|
9
|
+
export declare const createScroller: (store: VirtualStore, isJustResized: () => boolean) => Scroller;
|
package/lib/core/store.d.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
type ItemJump = [sizeDiff: number, index: number];
|
|
2
|
+
export type ScrollJump = Readonly<ItemJump[]>;
|
|
2
3
|
export type ItemResize = [index: number, size: number];
|
|
3
4
|
type ItemsRange = [startIndex: number, endIndex: number];
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
type
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
] | [type: typeof ACTION_HANDLE_SCROLL, offset: number];
|
|
5
|
+
export declare const SCROLL_STOP = 0;
|
|
6
|
+
export declare const SCROLL_DOWN = 1;
|
|
7
|
+
export declare const SCROLL_UP = 2;
|
|
8
|
+
export declare const SCROLL_MANUAL = 3;
|
|
9
|
+
type ScrollDirection = typeof SCROLL_STOP | typeof SCROLL_DOWN | typeof SCROLL_UP | typeof SCROLL_MANUAL;
|
|
10
|
+
export declare const ACTION_ITEM_RESIZE = 1;
|
|
11
|
+
export declare const ACTION_WINDOW_RESIZE = 2;
|
|
12
|
+
export declare const ACTION_SCROLL = 3;
|
|
13
|
+
export declare const ACTION_MANUAL_SCROLL = 4;
|
|
14
|
+
type Actions = [type: typeof ACTION_ITEM_RESIZE, entries: ItemResize[]] | [type: typeof ACTION_WINDOW_RESIZE, size: number] | [type: typeof ACTION_SCROLL, offset: number] | [type: typeof ACTION_MANUAL_SCROLL, offset: number];
|
|
15
15
|
export type VirtualStore = {
|
|
16
16
|
_getRange(): ItemsRange;
|
|
17
17
|
_isUnmeasuredItem(index: number): boolean;
|
|
18
18
|
_hasUnmeasuredItemsInRange(startIndex: number): boolean;
|
|
19
19
|
_getItemOffset(index: number): number;
|
|
20
|
+
_getItemSize(index: number): number;
|
|
20
21
|
_getScrollOffset(): number;
|
|
21
22
|
_getViewportSize(): number;
|
|
22
23
|
_getScrollSize(): number;
|
|
23
|
-
_getItemCount(): number;
|
|
24
24
|
_getJump(): ScrollJump;
|
|
25
25
|
_isHorizontal(): boolean;
|
|
26
26
|
_isRtl(): boolean;
|
|
@@ -28,6 +28,9 @@ export type VirtualStore = {
|
|
|
28
28
|
_waitForScrollDestinationItemsMeasured(): Promise<void>;
|
|
29
29
|
_subscribe(cb: () => void): () => void;
|
|
30
30
|
_update(...action: Actions): void;
|
|
31
|
+
_getScrollDirection(): ScrollDirection;
|
|
32
|
+
_setScrollDirection(direction: ScrollDirection): void;
|
|
33
|
+
_updateCacheLength(length: number): void;
|
|
31
34
|
};
|
|
32
|
-
export declare const createVirtualStore: (itemCount: number, itemSize: number, isHorizontal: boolean, isRtl: boolean) => VirtualStore;
|
|
35
|
+
export declare const createVirtualStore: (itemCount: number, itemSize: number, isHorizontal: boolean, isRtl: boolean, initialItemCount: number | undefined, onScrollStateChange: (scrolling: boolean) => void, onScrollOffsetChange: (offset: number) => void) => VirtualStore;
|
|
33
36
|
export {};
|
package/lib/core/utils.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare const min: (...values: number[]) => number;
|
|
2
2
|
export declare const max: (...values: number[]) => number;
|
|
3
|
-
export declare const abs: (x: number) => number;
|
|
4
3
|
export declare const now: () => number;
|
|
5
4
|
export declare const exists: <T>(v: T) => v is Exclude<T, null | undefined>;
|
|
6
5
|
export declare const range: <T>(length: number, cb: (i: number) => T) => T[];
|
|
@@ -9,3 +8,4 @@ export declare const debounce: <T extends (...args: any[]) => void>(fn: T, ms: n
|
|
|
9
8
|
_cancel: () => void;
|
|
10
9
|
};
|
|
11
10
|
export declare const throttle: <T extends (...args: any[]) => void>(fn: T, ms: number) => (...args: Parameters<T>) => void;
|
|
11
|
+
export declare const once: <F extends (...args: any[]) => any>(fn: F) => F;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
export { VList } from "./react/VList";
|
|
2
|
-
export type { VListProps, VListHandle, CustomItemComponent, CustomItemComponentProps, CustomWindowComponent, CustomWindowComponentProps,
|
|
2
|
+
export type { VListProps, VListHandle, CustomItemComponent, CustomItemComponentProps, CustomWindowComponent, CustomWindowComponentProps, } from "./react/VList";
|
|
3
|
+
export { VGrid } from "./react/VGrid";
|
|
4
|
+
export type { VGridProps, VGridHandle, CustomCellComponent, CustomCellComponentProps, CustomGridWindowComponent, CustomGridWindowComponentProps, } from "./react/VGrid";
|
|
5
|
+
export type { WindowComponentAttributes } from "./react/types";
|
package/lib/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var e=require("react/jsx-runtime"),t=require("react"),r=require("use-sync-external-store/shim/index.js");const n=Math.min,o=Math.max,
|
|
1
|
+
var e=require("react/jsx-runtime"),t=require("react"),r=require("use-sync-external-store/shim/index.js");const n=Math.min,o=Math.max,i=Date.now,l=e=>null!=e,s=(e,t)=>Array.from({length:e},((e,r)=>t(r))),c=e=>{let t,r;return(...n)=>(t||(t=!0,r=e(...n)),r)},u=(e,t)=>{const r=e.t[t];return-1===r?e.o:r},d=(e,t,r)=>{if(!e.i)return 0;if(e.l>=t)return r?e.u[t]+u(e,t):e.u[t];let n=e.l,o=e.u[n];for(;n<=t&&(e.u[n]=o,n!==t||r);)o+=u(e,n),n++;return e.l=t,o},a=(e,t)=>d(e,t),_=(e,t,r)=>{let i=0;if(r>=0)for(;t<e.i-1;){const n=u(e,t++);if((i+=n)>=r){i-n/2>=r&&t--;break}}else for(;t>0;){const n=u(e,--t);if((i-=n)<=r){i+n/2<r&&t++;break}}return n(o(t,0),e.i-1)},h=(e,t,r,n)=>_(e,r,t-n),f=_,g=(e,t,r)=>({o:t,i:e,l:r?n(r.l,e-1):0,t:s(e,(e=>{const t=r&&r.t[e];return l(t)?t:-1})),u:s(e,(e=>{if(0===e)return 0;const t=r&&r.u[e];return l(t)?t:-1}))}),m=(e,t,r,i,l=0,s,c)=>{let _,m=t*o(l-1,0),w=0,S=[],v=g(e,t),p=0,z=[0,l];const I=new Set;return{_(){const[e,t]=z,r=a(v,e),n=h(v,w,e,r),o=f(v,n,m);return e===n&&t===o?z:z=[n,o]},h:e=>-1===v.t[e],g:e=>((e,t,r)=>{for(let n=t;n<=r;n++)if(-1===e.t[n])return!0;return!1})(v,e,f(v,e,m)),m:e=>a(v,e),S:e=>u(v,e),v:()=>w,p:()=>m,I:()=>(e=>d(e,e.i-1,!0))(v),R:()=>S,T:()=>r,M:()=>i,C:e=>h(v,e,0,0),O:()=>(_&&_[1](),new Promise(((e,t)=>{_=[()=>{Promise.resolve().then((()=>{e(),_=void 0}))},t]}))),W:e=>(I.add(e),()=>{I.delete(e)}),H(e,t){const r=(()=>{switch(e){case 1:{const e=t.filter((([e,t])=>v.t[e]!==t));if(!e.length)return!1;const r=[];return e.forEach((([e,t])=>{r.push([t-u(v,e),e]),((e,t,r)=>{e.t[t]=r,e.l=n(t,e.l)})(v,e,t)})),S=r,!0}case 2:return m!==t&&(m=t,!0);case 3:case 4:{const e=w;return(w=t)!==e}}})();r&&(I.forEach((e=>{e()})),3===e?c(w):_&&1===e&&_[0]())},k:()=>p,D(e){const t=p;p=e,0===p?s(!1):0!==t||1!==p&&2!==p||s(!0)},J(e){v.i!==e&&(v=g(e,t,v))}}},w="undefined"!=typeof window?t.useLayoutEffect:t.useEffect,S=(e,t)=>r.useSyncExternalStore(e,t,t),v=c((e=>{const t="scrollLeft",r=e[t];e[t]=1;const n=0===e[t];return e[t]=r,n})),p=(e,t)=>{let r;const s=e.T(),c=e.M(),u=s?"scrollLeft":"scrollTop",d=()=>r?s?r.scrollWidth:r.scrollHeight:0,a=(t,n)=>{r&&(s&&c&&v(r)&&(t*=-1),n?r[u]+=t:(r[u]=t,e.D(3)))},_=async(t,r)=>{const n=()=>{let t=r();const n=d(),o=e.p();return n-(t+o)<=0&&(t=n-o),t};if(e.g(t)){do{e.H(4,n());try{await e.O()}catch(e){return}}while(e.g(t));a(n())}else{const t=n();a(t),e.H(4,t)}},h=e=>e.reduce(((e,[t])=>e+t),0);return{$(n){r=n;const o=()=>{let r=n[u];s&&c&&v(n)&&(r*=-1);const o=e.v();if(o===r)return;const i=e.k(),l=t();0!==i&&l||3===i||e.D(o>r?2:1),e.H(3,r)},d=(()=>{let t;const r=()=>{l(t)&&clearTimeout(t)},n=()=>{r(),t=setTimeout((()=>{t=null,o(),e.D(0)}),150)};return n.q=r,n})(),a=()=>{o(),d()},_=(()=>{let t=i()-50;return(...r)=>{const n=i();t+50<n&&(t=n,(t=>{if(0!==e.k()&&!t.ctrlKey&&(s?t.deltaX:t.deltaY)){const t=e.v();t>0&&t<e.I()-e.p()&&d()}})(...r))}})();return n.addEventListener("scroll",a),n.addEventListener("wheel",_,{passive:!0}),()=>{n.removeEventListener("scroll",a),n.removeEventListener("wheel",_),d.q()}},L:d,j(t){t=o(t,0),_(e.C(t),(()=>t))},A(t,r){t=o(n(t,r-1),0),_(t,(()=>e.m(t)))},F:(t,r)=>{const n=e.k();if(2===n){const e=h(t);e&&a(e,!0)}else if(3===n){const n=e.v();if(0===n);else{const o=h(t);if(e.I()-(n+e.p()+o)<=0)o&&a(n+o);else{const e=t.reduce(((e,[t,n])=>(n<r&&(e+=t),e)),0);e&&a(e,!0)}}}}}},z="current",I=e=>{const r=t.useRef();return r[z]||(r[z]=e())},b=e=>{const r=t.useRef(e);return w((()=>{r[z]=e}),[e]),r},x=t.memo((({P:r,U:n,B:o,V:i,G:l})=>{const s=t.useRef(null),c=S(o.W,(()=>o.m(i))),u=S(o.W,(()=>o.h(i)));return w((()=>n.K(s[z],i)),[i]),e.jsx(l,{ref:s,style:t.useMemo((()=>{const e=o.T(),t=o.M()?"right":"left",r={margin:0,padding:0,position:"absolute",[e?"height":"width"]:"100%",[e?"top":t]:0,[e?t:"top"]:c,visibility:u?"hidden":"visible"};return e&&(r.display="flex"),r}),[c,u]),children:r})})),y=t.forwardRef((({children:r,scrollSize:n,scrolling:o,horizontal:i,attrs:l},s)=>e.jsx("div",{ref:s,...l,children:e.jsx("div",{style:t.useMemo((()=>({position:"relative",visibility:"hidden",width:i?n:"100%",height:i?"100%":n,pointerEvents:o?"none":"auto"})),[n,o]),children:r})}))),R=({P:r,N:n,B:o,G:i,X:l,Y:s})=>{const c=S(o.W,o.I),u=o.T();return e.jsx(i,{ref:n,scrollSize:c,scrolling:l,horizontal:u,attrs:t.useMemo((()=>({...s,style:{overflow:u?"auto hidden":"hidden auto",contain:"strict",width:"100%",height:"100%",padding:0,margin:0,...s.style}})),[s]),children:r})},T=t.forwardRef((({children:r,itemSize:i=40,overscan:s=4,initialItemCount:u,horizontal:d,rtl:a,element:_=y,itemElement:h="div",onScroll:f,onScrollStop:g,onRangeChange:v,...T},M)=>{const C=t.useMemo((()=>{const e=[];return t.Children.forEach(r,(t=>{(e=>!l(e)||"boolean"==typeof e)(t)||e.push(t)})),e}),[r]),O=C.length,W=b(f),H=b(g),[k,D]=t.useState(new Set),[E,J]=t.useState(!1),[$,q,L]=I((()=>{const e=m(O,i,!!d,!!a,u,(e=>{J(e),e||(D(new Set),H[z]&&H[z]())}),(e=>{W[z]&&W[z](e)})),t=(e=>{let t,r=!1;const n=e.T()?"width":"height",o=new WeakMap,i=c((()=>new ResizeObserver((i=>{const s=[];for(const{target:r,contentRect:c}of i)if(r===t)e.H(2,c[n]);else{const e=o.get(r);l(e)&&s.push([e,c[n]])}s.length&&(e.H(1,s),r=!0)}))));return{Z(e){t=e;const r=i();return r.observe(e),()=>{r.disconnect()}},K(e,t){const r=i();return o.set(e,t),r.observe(e),()=>{o.delete(e),r.unobserve(e)}},ee(){const e=r;return r=!1,e}}})(e);return[e,t,p(e,t.ee)]}));$.J(O);const[j,A]=S($.W,$._),F=S($.W,$.R),P=t.useRef(null);w((()=>{const e=P[z],t=q.Z(e),r=L.$(e);return()=>{t(),r()}}),[]),w((()=>{F.length&&L.F(F,j)}),[F]),t.useEffect((()=>{v&&v({start:j,end:A,count:O})}),[j,A]),t.useImperativeHandle(M,(()=>({get scrollOffset(){return $.v()},get scrollSize(){return L.L()},get viewportSize(){return $.p()},scrollToIndex(e){L.A(e,O)},scrollTo:L.j,scrollBy(e){L.j($.v()+e)}})),[O]);const U=o(j-s,0),B=n(A+s,O-1),V=t.useMemo((()=>{const t=[];for(let e=U;e<=B;e++)k.add(e);return k.forEach((r=>{const n=C[r];l(n)&&t.push(e.jsx(x,{U:q,B:$,V:r,G:h,P:n},(null==n?void 0:n.key)||r))})),t}),[C,k,U,B]);return e.jsx(R,{N:P,B:$,G:_,X:E,P:V,Y:T})})),M=(e,t)=>`${e}-${t}`,C=t.memo((({P:r,U:n,te:o,re:i,ne:l,oe:s,G:c})=>{const u=t.useRef(null),d=S(o.W,(()=>o.m(l))),a=S(i.W,(()=>i.m(s))),_=S(o.W,(()=>o.h(l))),h=S(i.W,(()=>i.h(s))),f=S(o.W,(()=>o.S(l))),g=S(i.W,(()=>i.S(s)));return w((()=>n.K(u[z],l,s)),[s,l]),e.jsx(c,{ref:u,style:t.useMemo((()=>({display:"grid",margin:0,padding:0,position:"absolute",top:d,[o.M()?"right":"left"]:a,visibility:_||h?"hidden":"visible",minHeight:f,minWidth:g})),[d,a,g,f,_,h]),children:r})})),O=t.forwardRef((({children:r,scrollWidth:n,scrollHeight:o,scrolling:i,attrs:l},s)=>e.jsx("div",{ref:s,...l,children:e.jsx("div",{style:t.useMemo((()=>({position:"relative",visibility:"hidden",width:n,height:o,pointerEvents:i?"none":"auto"})),[n,o,i]),children:r})}))),W=({P:r,N:n,ie:o,le:i,G:l,X:s,Y:c})=>{const u=S(o.W,o.I),d=S(i.W,i.I);return e.jsx(l,{ref:n,scrollWidth:d,scrollHeight:u,scrolling:s,attrs:t.useMemo((()=>({...c,style:{overflow:"auto",contain:"strict",width:"100%",height:"100%",padding:0,margin:0,...c.style}})),[c]),children:r})},H=t.forwardRef((({children:r,row:i,col:l,cellHeight:s=40,cellWidth:u=100,overscan:d=2,initialRowCount:a,initialColCount:_,rtl:h,element:f=O,cellElement:g="div",...v})=>{const[b,x]=t.useState(!1),[y,R]=t.useState(!1),[T,H,k,D,E]=I((()=>{const e=()=>{},t=m(i,s,!1,!!h,a,x,e),r=m(l,u,!0,!!h,_,R,e),n=((e,t)=>{let r,n=!1,i=!1;const l="height",s="width",u=new WeakMap,d=new Set,a=new Set,_=new Map,h=(e,t)=>`${e}-${t}`,f=c((()=>new ResizeObserver((c=>{const f=new Set,g=new Set;for(const{target:n,contentRect:o}of c)if(n===r)e.H(2,o[l]),t.H(2,o[s]);else{const e=u.get(n);if(e){const[t,r]=e,n=h(t,r),i=_.get(n),c=[o[l],o[s]];let u,d;i?(i[0]!==c[0]&&(u=!0),i[1]!==c[1]&&(d=!0)):u=d=!0,u&&f.add(t),d&&g.add(r),(u||d)&&_.set(n,c)}}if(f.size){const t=[];f.forEach((e=>{let r=0;a.forEach((t=>{const n=_.get(h(e,t));n&&(r=o(r,n[0]))})),r&&t.push([e,r])})),e.H(1,t),n=!0}if(g.size){const e=[];g.forEach((t=>{let r=0;d.forEach((e=>{const n=_.get(h(e,t));n&&(r=o(r,n[1]))})),r&&e.push([t,r])})),t.H(1,e),i=!0}}))));return{Z(e){r=e;const t=f();return t.observe(e),()=>{t.disconnect()}},K(e,t,r){const n=f();return u.set(e,[t,r]),d.add(t),a.add(r),n.observe(e),()=>{u.delete(e),n.unobserve(e)}},ee(e){const t=e?i:n;return e?i=!1:n=!1,t}}})(t,r);return[t,r,n,p(t,(()=>n.ee())),p(r,(()=>n.ee(!0)))]}));T.J(i),H.J(l);const[J,$]=S(T.W,T._),[q,L]=S(H.W,H._),j=S(T.W,T.R),A=S(H.W,H.R),F=t.useRef(null);w((()=>{const e=F[z],t=k.Z(e),r=D.$(e),n=E.$(e);return()=>{t(),r(),n()}}),[]),w((()=>{j.length&&D.F(j,J)}),[j]),w((()=>{A.length&&E.F(A,q)}),[A]);const P=t.useMemo((()=>{const e=new Map;return(t,n)=>{let o=e.get(M(t,n));return o||e.set(M(t,n),o=r({rowIndex:t,colIndex:n})),o}}),[r]),U=o(J-d,0),B=n($+d,i-1),V=o(q-d,0),G=n(L+d,l-1),K=t.useMemo((()=>{const t=[];for(let r=U;r<=B;r++)for(let n=V;n<=G;n++)t.push(e.jsx(C,{U:k,te:T,re:H,ne:r,oe:n,G:g,P:P(r,n)},M(r,n)));return t}),[P,U,B,V,G]);return e.jsx(W,{N:F,ie:T,le:H,G:f,X:b||y,P:K,Y:v})}));exports.VGrid=H,exports.VList=T;
|
|
2
2
|
//# sourceMappingURL=index.js.map
|