mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 14:37:05 +01:00
92 lines
2.7 KiB
TypeScript
92 lines
2.7 KiB
TypeScript
import { useVirtualizer } from '@tanstack/react-virtual';
|
|
import type { ReactElement, ReactNode, UIEvent } from 'react';
|
|
import { useCallback, useLayoutEffect, useRef, useState } from 'react';
|
|
import { IconButton } from './IconButton';
|
|
|
|
interface Props<T> {
|
|
data: T[];
|
|
render: (item: T, index: number) => ReactElement<HTMLElement>;
|
|
header?: ReactNode;
|
|
}
|
|
|
|
export function AutoScroller<T>({ data, render, header }: Props<T>) {
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const [autoScroll, setAutoScroll] = useState<boolean>(true);
|
|
|
|
// The virtualizer
|
|
const rowVirtualizer = useVirtualizer({
|
|
count: data.length,
|
|
getScrollElement: () => containerRef.current,
|
|
estimateSize: () => 27, // react-virtual requires a height, so we'll give it one
|
|
});
|
|
|
|
// Scroll to new items
|
|
const handleScroll = useCallback(
|
|
(e: UIEvent<HTMLDivElement>) => {
|
|
const el = e.currentTarget;
|
|
|
|
// Set auto-scroll when container is scrolled
|
|
const pixelsFromBottom = el.scrollHeight - (el.scrollTop + el.clientHeight);
|
|
const newAutoScroll = pixelsFromBottom <= 0;
|
|
if (newAutoScroll !== autoScroll) {
|
|
setAutoScroll(newAutoScroll);
|
|
}
|
|
},
|
|
[autoScroll],
|
|
);
|
|
|
|
// Scroll to bottom on count change
|
|
useLayoutEffect(() => {
|
|
if (!autoScroll) return;
|
|
|
|
const el = containerRef.current;
|
|
if (el == null) return;
|
|
|
|
el.scrollTop = el.scrollHeight;
|
|
}, [autoScroll, data.length]);
|
|
|
|
return (
|
|
<div className="h-full w-full relative grid grid-rows-[minmax(0,auto)_minmax(0,1fr)]">
|
|
{!autoScroll && (
|
|
<div className="absolute bottom-0 right-0 m-2">
|
|
<IconButton
|
|
title="Lock scroll to bottom"
|
|
icon="arrow_down"
|
|
size="sm"
|
|
iconSize="md"
|
|
variant="border"
|
|
className="!bg-surface z-10"
|
|
onClick={() => setAutoScroll((v) => !v)}
|
|
/>
|
|
</div>
|
|
)}
|
|
{header ?? <span aria-hidden />}
|
|
<div ref={containerRef} className="h-full w-full overflow-y-auto" onScroll={handleScroll}>
|
|
<div
|
|
style={{
|
|
height: `${rowVirtualizer.getTotalSize()}px`,
|
|
width: '100%',
|
|
position: 'relative',
|
|
}}
|
|
>
|
|
{rowVirtualizer.getVirtualItems().map((virtualItem) => (
|
|
<div
|
|
key={virtualItem.key}
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
width: '100%',
|
|
height: `${virtualItem.size}px`,
|
|
transform: `translateY(${virtualItem.start}px)`,
|
|
}}
|
|
>
|
|
{render(data[virtualItem.index]!, virtualItem.index)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|