import type {MouseEvent, RefObject} from 'react'; import {useCallback} from 'react'; import type {CellMeasurerCache, List} from 'react-virtualized'; import useVirtualListDimentionChange from 'sentry/views/replays/detail/useVirtualListDimentionChange'; type Opts = { cache: CellMeasurerCache; expandPathsRef: RefObject>>; listRef: RefObject; }; export type OnDimensionChange = ( index: number, path: string, expandedState: Record, event: MouseEvent ) => void; export default function useVirtualizedInspector({cache, listRef, expandPathsRef}: Opts) { const {handleDimensionChange} = useVirtualListDimentionChange({cache, listRef}); return { expandPaths: expandPathsRef.current, handleDimensionChange: useCallback( ( index: number, path: string, expandedState: Record, event: MouseEvent ) => { const rowState = expandPathsRef.current?.get(index) || new Set(); if (expandedState[path]) { rowState.add(path); } else { // Collapsed, i.e. its default state, so no need to store state rowState.delete(path); } expandPathsRef.current?.set(index, rowState); handleDimensionChange(index); event.stopPropagation(); }, [expandPathsRef, handleDimensionChange] ), }; }