123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- import {useMemo, useRef} from 'react';
- import {
- AutoSizer,
- CellMeasurer,
- List as ReactVirtualizedList,
- ListRowProps,
- } from 'react-virtualized';
- import Placeholder from 'sentry/components/placeholder';
- import {t} from 'sentry/locale';
- import type {ReplayFrame} from 'sentry/utils/replays/types';
- import BreadcrumbRow from 'sentry/views/replays/detail/breadcrumbs/breadcrumbRow';
- import useScrollToCurrentItem from 'sentry/views/replays/detail/breadcrumbs/useScrollToCurrentItem';
- import FluidHeight from 'sentry/views/replays/detail/layout/fluidHeight';
- import NoRowRenderer from 'sentry/views/replays/detail/noRowRenderer';
- import TabItemContainer from 'sentry/views/replays/detail/tabItemContainer';
- import useVirtualizedList from 'sentry/views/replays/detail/useVirtualizedList';
- import useVirtualizedInspector from '../useVirtualizedInspector';
- type Props = {
- frames: undefined | ReplayFrame[];
- startTimestampMs: number;
- };
- // Ensure this object is created once as it is an input to
- // `useVirtualizedList`'s memoization
- const cellMeasurer = {
- fixedWidth: true,
- minHeight: 53,
- };
- function Breadcrumbs({frames, startTimestampMs}: Props) {
- const listRef = useRef<ReactVirtualizedList>(null);
- // Keep a reference of object paths that are expanded (via <ObjectInspector>)
- // by log row, so they they can be restored as the Console pane is scrolling.
- // Due to virtualization, components can be unmounted as the user scrolls, so
- // state needs to be remembered.
- //
- // Note that this is intentionally not in state because we do not want to
- // re-render when items are expanded/collapsed, though it may work in state as well.
- const expandPathsRef = useRef(new Map<number, Set<string>>());
- const deps = useMemo(() => [frames], [frames]);
- const {cache, updateList} = useVirtualizedList({
- cellMeasurer,
- ref: listRef,
- deps,
- });
- const {handleDimensionChange} = useVirtualizedInspector({
- cache,
- listRef,
- expandPathsRef,
- });
- useScrollToCurrentItem({
- frames,
- ref: listRef,
- });
- const renderRow = ({index, key, style, parent}: ListRowProps) => {
- const item = (frames || [])[index];
- return (
- <CellMeasurer
- cache={cache}
- columnIndex={0}
- key={key}
- parent={parent}
- rowIndex={index}
- >
- <BreadcrumbRow
- index={index}
- frame={item}
- startTimestampMs={startTimestampMs}
- style={style}
- expandPaths={Array.from(expandPathsRef.current?.get(index) || [])}
- onDimensionChange={handleDimensionChange}
- />
- </CellMeasurer>
- );
- };
- return (
- <FluidHeight>
- <TabItemContainer>
- {frames ? (
- <AutoSizer onResize={updateList}>
- {({height, width}) => (
- <ReactVirtualizedList
- deferredMeasurementCache={cache}
- height={height}
- noRowsRenderer={() => (
- <NoRowRenderer unfilteredItems={frames} clearSearchTerm={() => {}}>
- {t('No breadcrumbs recorded')}
- </NoRowRenderer>
- )}
- overscanRowCount={5}
- ref={listRef}
- rowCount={frames.length}
- rowHeight={cache.rowHeight}
- rowRenderer={renderRow}
- width={width}
- />
- )}
- </AutoSizer>
- ) : (
- <Placeholder height="100%" />
- )}
- </TabItemContainer>
- </FluidHeight>
- );
- }
- export default Breadcrumbs;
|