跳到主要内容

认识

2024年01月29日
柏拉文
越努力,越幸运

一、认识


useVirtualList 提供虚拟化列表能力的 Hook,用于解决展示海量数据渲染时首屏渲染缓慢和滚动卡顿问题。

二、语法


import { useVirtualList } from 'ahooks';
import React, { useMemo, useRef } from 'react';

export default () => {
const wrapperRef = useRef(null);
const containerRef = useRef(null);
const originalList = useMemo(() => Array.from(Array(99999).keys()), []);

const [value, onChange] = React.useState<number>(0);

const [list, scrollTo] = useVirtualList(originalList, {
containerTarget: containerRef,
wrapperTarget: wrapperRef,
itemHeight: (i) => (i % 2 === 0 ? 42 + 8 : 84 + 8),
overscan: 10,
});

return (
<div>
<div style={{ textAlign: 'right', marginBottom: 16 }}>
<input
style={{ width: 120 }}
placeholder="line number"
type="number"
value={value}
onChange={(e) => onChange(Number(e.target.value))}
/>
<button
style={{ marginLeft: 8 }}
type="button"
onClick={() => {
scrollTo(Number(value));
}}
>
scroll to
</button>
</div>
<div ref={containerRef} style={{ height: '300px', overflow: 'auto' }}>
<div ref={wrapperRef}>
{list.map((ele) => (
<div
style={{
height: ele.index % 2 === 0 ? 42 : 84,
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
border: '1px solid #e8e8e8',
marginBottom: 8,
}}
key={ele.index}
>
Row: {ele.data} size: {ele.index % 2 === 0 ? 'small' : 'large'}
</div>
))}
</div>
</div>
</div>
);
};