Advertisement
minafaw3

VirtualizedListbox

Nov 26th, 2024
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. import React, { useEffect, useRef } from 'react';
  2. import { VariableSizeList } from 'react-window';
  3.  
  4. const renderRow = ({ index, style, data }: any) => {
  5. const option = data[index];
  6. const { props: optionProps, key } = option;
  7.  
  8. return (
  9. <li key={key} style={style} {...optionProps}>
  10. {optionProps.children}
  11. </li>
  12. );
  13. };
  14.  
  15. const VirtualizedListbox = React.forwardRef((props: any, ref) => {
  16. const { children, ...other } = props;
  17. const items = React.Children.toArray(children);
  18. const listRef = useRef<VariableSizeList>(null);
  19.  
  20. const itemSize = 35;
  21. const listHeight = Math.min(items.length, 8) * itemSize;
  22.  
  23. useEffect(() => {
  24. if (listRef.current) {
  25. listRef.current.resetAfterIndex(0, true);
  26. }
  27. }, [items]);
  28.  
  29. return (
  30. <VariableSizeList
  31. height={listHeight}
  32. width="100%"
  33. itemCount={items.length}
  34. itemSize={() => itemSize}
  35. itemData={items}
  36. outerRef={ref}
  37. {...other}
  38. >
  39. {renderRow}
  40. </VariableSizeList>
  41. );
  42. });
  43.  
  44. export default VirtualizedListbox;
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement