Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
650 lines
23 KiB
TypeScript
650 lines
23 KiB
TypeScript
import { useVirtualizer } from "@tanstack/react-virtual";
|
|
import React from "react";
|
|
import {
|
|
getVaultHostGridColumnCount,
|
|
VAULT_HOST_GRID_GAP,
|
|
} from "./vaultHostGridLayout";
|
|
|
|
const GRID_CARD_HEIGHT = 68;
|
|
const LIST_ROW_HEIGHT = 56;
|
|
const INITIAL_VIEWPORT_HEIGHT = 800;
|
|
const OVERSCAN_ROWS = 3;
|
|
|
|
export type VirtualizedHostViewMode = "grid" | "list";
|
|
|
|
export function getVaultHostColumnCount(
|
|
width: number,
|
|
viewMode: VirtualizedHostViewMode,
|
|
): number {
|
|
if (viewMode !== "grid") return 1;
|
|
return getVaultHostGridColumnCount(width);
|
|
}
|
|
|
|
export function getNextVirtualHostIndex({
|
|
currentIndex,
|
|
itemCount,
|
|
columns,
|
|
viewMode,
|
|
key,
|
|
}: {
|
|
currentIndex: number;
|
|
itemCount: number;
|
|
columns: number;
|
|
viewMode: VirtualizedHostViewMode;
|
|
key: string;
|
|
}): number | null {
|
|
let nextIndex = currentIndex;
|
|
if (key === "Home") nextIndex = 0;
|
|
else if (key === "End") nextIndex = itemCount - 1;
|
|
else if (key === "ArrowLeft" && viewMode === "grid") nextIndex -= 1;
|
|
else if (key === "ArrowRight" && viewMode === "grid") nextIndex += 1;
|
|
else if (key === "ArrowUp") nextIndex -= viewMode === "grid" ? columns : 1;
|
|
else if (key === "ArrowDown") nextIndex += viewMode === "grid" ? columns : 1;
|
|
else return null;
|
|
return Math.max(0, Math.min(itemCount - 1, nextIndex));
|
|
}
|
|
|
|
export function getNextRaggedRowPosition({
|
|
rowLengths,
|
|
currentRow,
|
|
currentColumn,
|
|
direction,
|
|
}: {
|
|
rowLengths: number[];
|
|
currentRow: number;
|
|
currentColumn: number;
|
|
direction: -1 | 1;
|
|
}): { row: number; column: number } {
|
|
if (rowLengths.length === 0) return { row: 0, column: 0 };
|
|
const row = Math.max(0, Math.min(rowLengths.length - 1, currentRow + direction));
|
|
return {
|
|
row,
|
|
column: Math.max(0, Math.min(rowLengths[row] - 1, currentColumn)),
|
|
};
|
|
}
|
|
|
|
export function resolveVirtualFocusRequest({
|
|
activeItemKey,
|
|
lastRequestedKey,
|
|
itemIndexByKey,
|
|
}: {
|
|
activeItemKey: React.Key | null | undefined;
|
|
lastRequestedKey: string | null;
|
|
itemIndexByKey: ReadonlyMap<string, number>;
|
|
}):
|
|
| { status: "inactive" | "missing" | "unchanged" }
|
|
| { status: "request"; key: string; index: number } {
|
|
if (activeItemKey === null || activeItemKey === undefined) return { status: "inactive" };
|
|
const key = String(activeItemKey);
|
|
const index = itemIndexByKey.get(key);
|
|
if (index === undefined) return { status: "missing" };
|
|
if (lastRequestedKey === key) return { status: "unchanged" };
|
|
return { status: "request", key, index };
|
|
}
|
|
|
|
/**
|
|
* Virtual collections may retry DOM focus when a remembered active item
|
|
* re-enters the filtered set. Never steal focus from controls outside the
|
|
* collection (e.g. the vault host search input).
|
|
*/
|
|
export function shouldApplyVirtualHostDomFocus(input: {
|
|
collectionRoot: { contains: (node: Node) => boolean } | null | undefined;
|
|
activeElement: Element | null | undefined;
|
|
}): boolean {
|
|
const { collectionRoot, activeElement } = input;
|
|
if (!collectionRoot) return false;
|
|
if (!activeElement) return true;
|
|
const tagName = activeElement.tagName;
|
|
if (tagName === "BODY" || tagName === "HTML") return true;
|
|
return collectionRoot.contains(activeElement);
|
|
}
|
|
|
|
export function VirtualizedHostCollection<T>({
|
|
items,
|
|
itemKey,
|
|
renderItem,
|
|
scrollRef,
|
|
viewMode,
|
|
layoutKey,
|
|
ariaLabel,
|
|
onActiveItemChange,
|
|
activeItemKey,
|
|
onBoundaryNavigation,
|
|
onDragOver,
|
|
onDrop,
|
|
}: {
|
|
items: T[];
|
|
itemKey: (item: T) => React.Key;
|
|
renderItem: (item: T) => React.ReactNode;
|
|
scrollRef: React.RefObject<HTMLDivElement | null>;
|
|
viewMode: VirtualizedHostViewMode;
|
|
layoutKey?: React.Key;
|
|
ariaLabel?: string;
|
|
onActiveItemChange?: (item: T) => void;
|
|
activeItemKey?: React.Key | null;
|
|
onBoundaryNavigation?: (direction: "previous" | "next") => void;
|
|
onDragOver?: React.DragEventHandler<HTMLDivElement>;
|
|
onDrop?: React.DragEventHandler<HTMLDivElement>;
|
|
}) {
|
|
const rootRef = React.useRef<HTMLDivElement>(null);
|
|
const pendingFocusKeyRef = React.useRef<string | null>(null);
|
|
const lastRequestedActiveKeyRef = React.useRef<string | null>(null);
|
|
const [containerWidth, setContainerWidth] = React.useState(
|
|
viewMode === "grid" ? 1280 : 0,
|
|
);
|
|
const [scrollMargin, setScrollMargin] = React.useState(0);
|
|
const columns = getVaultHostColumnCount(containerWidth, viewMode);
|
|
const rowCount = Math.ceil(items.length / columns);
|
|
const rowHeight = viewMode === "grid" ? GRID_CARD_HEIGHT : LIST_ROW_HEIGHT;
|
|
const rowGap = viewMode === "grid" ? VAULT_HOST_GRID_GAP : 0;
|
|
const itemIndexByKey = React.useMemo(() => new Map(
|
|
items.map((item, index) => [String(itemKey(item)), index]),
|
|
), [itemKey, items]);
|
|
|
|
const getRowKey = React.useCallback((rowIndex: number) => {
|
|
const firstItem = items[rowIndex * columns];
|
|
return firstItem === undefined ? rowIndex : itemKey(firstItem);
|
|
}, [columns, itemKey, items]);
|
|
|
|
const virtualizer = useVirtualizer({
|
|
count: rowCount,
|
|
getScrollElement: () => scrollRef.current,
|
|
estimateSize: () => rowHeight,
|
|
gap: rowGap,
|
|
getItemKey: getRowKey,
|
|
overscan: OVERSCAN_ROWS,
|
|
scrollMargin,
|
|
initialRect: typeof window === "undefined"
|
|
? { width: 1280, height: INITIAL_VIEWPORT_HEIGHT }
|
|
: undefined,
|
|
});
|
|
|
|
React.useLayoutEffect(() => {
|
|
const root = rootRef.current;
|
|
const scrollElement = scrollRef.current;
|
|
if (!root || !scrollElement) return;
|
|
|
|
const measure = () => {
|
|
const nextWidth = root.clientWidth;
|
|
const rootRect = root.getBoundingClientRect();
|
|
const scrollRect = scrollElement.getBoundingClientRect();
|
|
const nextScrollMargin = rootRect.top - scrollRect.top + scrollElement.scrollTop;
|
|
setContainerWidth((current) => current === nextWidth ? current : nextWidth);
|
|
setScrollMargin((current) => current === nextScrollMargin ? current : nextScrollMargin);
|
|
};
|
|
|
|
measure();
|
|
const observer = new ResizeObserver(measure);
|
|
observer.observe(root);
|
|
observer.observe(scrollElement);
|
|
return () => observer.disconnect();
|
|
}, [items.length, layoutKey, scrollRef, viewMode]);
|
|
|
|
React.useLayoutEffect(() => {
|
|
virtualizer.measure();
|
|
}, [columns, items.length, virtualizer, viewMode]);
|
|
|
|
const focusRenderedItem = React.useCallback((key: string) => {
|
|
const root = rootRef.current;
|
|
if (!root) return false;
|
|
if (!shouldApplyVirtualHostDomFocus({
|
|
collectionRoot: root,
|
|
activeElement: typeof document === "undefined" ? null : document.activeElement,
|
|
})) {
|
|
pendingFocusKeyRef.current = null;
|
|
return true;
|
|
}
|
|
const wrapper = [...root.querySelectorAll<HTMLElement>("[data-vault-item-key]")]
|
|
.find((element) => element.dataset.vaultItemKey === key);
|
|
const focusTarget = wrapper?.querySelector<HTMLElement>(
|
|
"[data-host-id], [data-vault-focus-target]",
|
|
);
|
|
if (!focusTarget) return false;
|
|
focusTarget.focus();
|
|
return true;
|
|
}, []);
|
|
|
|
React.useLayoutEffect(() => {
|
|
const key = pendingFocusKeyRef.current;
|
|
if (!key || !focusRenderedItem(key)) return;
|
|
pendingFocusKeyRef.current = null;
|
|
});
|
|
|
|
React.useLayoutEffect(() => {
|
|
const request = resolveVirtualFocusRequest({
|
|
activeItemKey,
|
|
lastRequestedKey: lastRequestedActiveKeyRef.current,
|
|
itemIndexByKey,
|
|
});
|
|
if (request.status === "inactive" || request.status === "missing") {
|
|
lastRequestedActiveKeyRef.current = null;
|
|
return;
|
|
}
|
|
if (request.status === "unchanged") return;
|
|
lastRequestedActiveKeyRef.current = request.key;
|
|
pendingFocusKeyRef.current = request.key;
|
|
virtualizer.scrollToIndex(Math.floor(request.index / columns), { align: "auto" });
|
|
queueMicrotask(() => {
|
|
if (focusRenderedItem(request.key)) pendingFocusKeyRef.current = null;
|
|
});
|
|
}, [activeItemKey, columns, focusRenderedItem, itemIndexByKey, virtualizer]);
|
|
|
|
const handleKeyDown = (event: React.KeyboardEvent<HTMLDivElement>) => {
|
|
const target = event.target as HTMLElement;
|
|
const wrapper = target.closest<HTMLElement>("[data-vault-item-key]");
|
|
const currentIndex = wrapper
|
|
? itemIndexByKey.get(wrapper.dataset.vaultItemKey ?? "")
|
|
: undefined;
|
|
if (currentIndex === undefined) return;
|
|
const nextIndex = getNextVirtualHostIndex({
|
|
currentIndex,
|
|
itemCount: items.length,
|
|
columns,
|
|
viewMode,
|
|
key: event.key,
|
|
});
|
|
if (nextIndex === null) return;
|
|
if (nextIndex === currentIndex) {
|
|
const direction = event.key === "ArrowUp" || event.key === "ArrowLeft"
|
|
? "previous"
|
|
: event.key === "ArrowDown" || event.key === "ArrowRight"
|
|
? "next"
|
|
: null;
|
|
if (direction && onBoundaryNavigation) {
|
|
event.preventDefault();
|
|
onBoundaryNavigation(direction);
|
|
}
|
|
return;
|
|
}
|
|
event.preventDefault();
|
|
const nextItem = items[nextIndex];
|
|
const nextKey = String(itemKey(nextItem));
|
|
pendingFocusKeyRef.current = nextKey;
|
|
onActiveItemChange?.(nextItem);
|
|
virtualizer.scrollToIndex(Math.floor(nextIndex / columns), { align: "auto" });
|
|
queueMicrotask(() => {
|
|
if (focusRenderedItem(nextKey)) pendingFocusKeyRef.current = null;
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
ref={rootRef}
|
|
className="relative min-w-0"
|
|
style={{ height: virtualizer.getTotalSize() }}
|
|
data-vault-virtual-collection={viewMode}
|
|
role={viewMode === "grid" ? "grid" : "list"}
|
|
aria-rowcount={viewMode === "grid" ? rowCount : undefined}
|
|
aria-colcount={viewMode === "grid" ? columns : undefined}
|
|
aria-label={ariaLabel}
|
|
onDragOver={onDragOver}
|
|
onDrop={onDrop}
|
|
onKeyDownCapture={handleKeyDown}
|
|
onFocusCapture={(event) => {
|
|
const wrapper = (event.target as HTMLElement).closest<HTMLElement>("[data-vault-item-key]");
|
|
const index = wrapper
|
|
? itemIndexByKey.get(wrapper.dataset.vaultItemKey ?? "")
|
|
: undefined;
|
|
if (index !== undefined) onActiveItemChange?.(items[index]);
|
|
}}
|
|
>
|
|
{virtualizer.getVirtualItems().map((virtualRow) => {
|
|
const rowStart = virtualRow.index * columns;
|
|
const rowItems = items.slice(rowStart, rowStart + columns);
|
|
return (
|
|
<div
|
|
key={virtualRow.key}
|
|
data-vault-virtual-row={virtualRow.index}
|
|
className="absolute left-0 top-0 grid w-full min-w-0"
|
|
style={{
|
|
height: rowHeight,
|
|
gridTemplateColumns: `repeat(${columns}, minmax(0, 1fr))`,
|
|
columnGap: viewMode === "grid" ? VAULT_HOST_GRID_GAP : 0,
|
|
transform: `translateY(${virtualRow.start - scrollMargin}px)`,
|
|
}}
|
|
role={viewMode === "grid" ? "row" : undefined}
|
|
aria-rowindex={viewMode === "grid" ? virtualRow.index + 1 : undefined}
|
|
>
|
|
{rowItems.map((item, columnIndex) => (
|
|
<div
|
|
key={itemKey(item)}
|
|
className="contents"
|
|
data-vault-item-key={String(itemKey(item))}
|
|
role={viewMode === "grid" ? "gridcell" : "listitem"}
|
|
aria-colindex={viewMode === "grid" ? columnIndex + 1 : undefined}
|
|
aria-posinset={viewMode === "list" ? rowStart + columnIndex + 1 : undefined}
|
|
aria-setsize={viewMode === "list" ? items.length : undefined}
|
|
>
|
|
{renderItem(item)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
type VirtualizedHostGroup<T> = {
|
|
name: string;
|
|
hosts: T[];
|
|
};
|
|
|
|
type VirtualizedGroupedRow<T> =
|
|
| { kind: "header"; group: VirtualizedHostGroup<T> }
|
|
| {
|
|
kind: "hosts";
|
|
group: VirtualizedHostGroup<T>;
|
|
hosts: T[];
|
|
hostStartIndex: number;
|
|
};
|
|
|
|
export function VirtualizedGroupedHostCollection<T>({
|
|
groups,
|
|
itemKey,
|
|
renderGroupHeader,
|
|
renderItem,
|
|
scrollRef,
|
|
viewMode,
|
|
layoutKey,
|
|
ariaLabel,
|
|
onActiveItemChange,
|
|
activeItemKey,
|
|
onBoundaryNavigation,
|
|
}: {
|
|
groups: Array<VirtualizedHostGroup<T>>;
|
|
itemKey: (item: T) => React.Key;
|
|
renderGroupHeader: (group: VirtualizedHostGroup<T>) => React.ReactNode;
|
|
renderItem: (item: T, group: VirtualizedHostGroup<T>) => React.ReactNode;
|
|
scrollRef: React.RefObject<HTMLDivElement | null>;
|
|
viewMode: VirtualizedHostViewMode;
|
|
layoutKey?: React.Key;
|
|
ariaLabel?: string;
|
|
onActiveItemChange?: (item: T) => void;
|
|
activeItemKey?: React.Key | null;
|
|
onBoundaryNavigation?: (direction: "previous" | "next") => void;
|
|
}) {
|
|
const rootRef = React.useRef<HTMLDivElement>(null);
|
|
const pendingFocusKeyRef = React.useRef<string | null>(null);
|
|
const lastRequestedActiveKeyRef = React.useRef<string | null>(null);
|
|
const [containerWidth, setContainerWidth] = React.useState(
|
|
viewMode === "grid" ? 1280 : 0,
|
|
);
|
|
const [scrollMargin, setScrollMargin] = React.useState(0);
|
|
const columns = getVaultHostColumnCount(containerWidth, viewMode);
|
|
const rows = React.useMemo(() => {
|
|
const result: Array<VirtualizedGroupedRow<T>> = [];
|
|
let hostStartIndex = 0;
|
|
for (const group of groups) {
|
|
result.push({ kind: "header", group });
|
|
for (let index = 0; index < group.hosts.length; index += columns) {
|
|
result.push({
|
|
kind: "hosts",
|
|
group,
|
|
hosts: group.hosts.slice(index, index + columns),
|
|
hostStartIndex,
|
|
});
|
|
hostStartIndex += Math.min(columns, group.hosts.length - index);
|
|
}
|
|
}
|
|
return result;
|
|
}, [columns, groups]);
|
|
const totalHostCount = React.useMemo(
|
|
() => groups.reduce((count, group) => count + group.hosts.length, 0),
|
|
[groups],
|
|
);
|
|
const flatItems = React.useMemo(() => groups.flatMap((group) => group.hosts), [groups]);
|
|
const itemIndexByKey = React.useMemo(() => new Map(
|
|
flatItems.map((item, index) => [String(itemKey(item)), index]),
|
|
), [flatItems, itemKey]);
|
|
const hostRows = React.useMemo(() => rows.flatMap((row, rowIndex) => (
|
|
row.kind === "hosts" ? [{ row, rowIndex }] : []
|
|
)), [rows]);
|
|
const hostRowLengths = React.useMemo(
|
|
() => hostRows.map(({ row }) => row.hosts.length),
|
|
[hostRows],
|
|
);
|
|
const hostPositionByKey = React.useMemo(() => {
|
|
const positions = new Map<string, { hostRowIndex: number; column: number }>();
|
|
hostRows.forEach(({ row }, hostRowIndex) => {
|
|
row.hosts.forEach((item, column) => {
|
|
positions.set(String(itemKey(item)), { hostRowIndex, column });
|
|
});
|
|
});
|
|
return positions;
|
|
}, [hostRows, itemKey]);
|
|
const virtualRowIndexByItemIndex = React.useMemo(() => {
|
|
const indices = new Map<number, number>();
|
|
hostRows.forEach(({ row, rowIndex }) => {
|
|
row.hosts.forEach((_, column) => {
|
|
indices.set(row.hostStartIndex + column, rowIndex);
|
|
});
|
|
});
|
|
return indices;
|
|
}, [hostRows]);
|
|
const hostRowHeight = viewMode === "grid" ? GRID_CARD_HEIGHT + VAULT_HOST_GRID_GAP : LIST_ROW_HEIGHT;
|
|
const headerRowHeight = viewMode === "grid" ? 56 : 44;
|
|
|
|
const getRowKey = React.useCallback((rowIndex: number) => {
|
|
const row = rows[rowIndex];
|
|
if (!row) return rowIndex;
|
|
if (row.kind === "header") return `group:${row.group.name}`;
|
|
return `hosts:${row.group.name}:${String(itemKey(row.hosts[0]))}`;
|
|
}, [itemKey, rows]);
|
|
|
|
const virtualizer = useVirtualizer({
|
|
count: rows.length,
|
|
getScrollElement: () => scrollRef.current,
|
|
estimateSize: (index) => rows[index]?.kind === "header"
|
|
? headerRowHeight
|
|
: hostRowHeight,
|
|
getItemKey: getRowKey,
|
|
overscan: OVERSCAN_ROWS,
|
|
scrollMargin,
|
|
initialRect: typeof window === "undefined"
|
|
? { width: 1280, height: INITIAL_VIEWPORT_HEIGHT }
|
|
: undefined,
|
|
});
|
|
|
|
React.useLayoutEffect(() => {
|
|
const root = rootRef.current;
|
|
const scrollElement = scrollRef.current;
|
|
if (!root || !scrollElement) return;
|
|
|
|
const measure = () => {
|
|
const nextWidth = root.clientWidth;
|
|
const rootRect = root.getBoundingClientRect();
|
|
const scrollRect = scrollElement.getBoundingClientRect();
|
|
const nextScrollMargin = rootRect.top - scrollRect.top + scrollElement.scrollTop;
|
|
setContainerWidth((current) => current === nextWidth ? current : nextWidth);
|
|
setScrollMargin((current) => current === nextScrollMargin ? current : nextScrollMargin);
|
|
};
|
|
|
|
measure();
|
|
const observer = new ResizeObserver(measure);
|
|
observer.observe(root);
|
|
observer.observe(scrollElement);
|
|
return () => observer.disconnect();
|
|
}, [groups.length, layoutKey, scrollRef, viewMode]);
|
|
|
|
React.useLayoutEffect(() => {
|
|
virtualizer.measure();
|
|
}, [columns, rows.length, virtualizer, viewMode]);
|
|
|
|
const focusRenderedItem = React.useCallback((key: string) => {
|
|
const root = rootRef.current;
|
|
if (!root) return false;
|
|
if (!shouldApplyVirtualHostDomFocus({
|
|
collectionRoot: root,
|
|
activeElement: typeof document === "undefined" ? null : document.activeElement,
|
|
})) {
|
|
pendingFocusKeyRef.current = null;
|
|
return true;
|
|
}
|
|
const wrapper = [...root.querySelectorAll<HTMLElement>("[data-vault-item-key]")]
|
|
.find((element) => element.dataset.vaultItemKey === key);
|
|
const focusTarget = wrapper?.querySelector<HTMLElement>("[data-host-id]");
|
|
if (!focusTarget) return false;
|
|
focusTarget.focus();
|
|
return true;
|
|
}, []);
|
|
|
|
React.useLayoutEffect(() => {
|
|
const key = pendingFocusKeyRef.current;
|
|
if (!key || !focusRenderedItem(key)) return;
|
|
pendingFocusKeyRef.current = null;
|
|
});
|
|
|
|
React.useLayoutEffect(() => {
|
|
const request = resolveVirtualFocusRequest({
|
|
activeItemKey,
|
|
lastRequestedKey: lastRequestedActiveKeyRef.current,
|
|
itemIndexByKey,
|
|
});
|
|
if (request.status === "inactive" || request.status === "missing") {
|
|
lastRequestedActiveKeyRef.current = null;
|
|
return;
|
|
}
|
|
if (request.status === "unchanged") return;
|
|
lastRequestedActiveKeyRef.current = request.key;
|
|
const rowIndex = virtualRowIndexByItemIndex.get(request.index) ?? -1;
|
|
pendingFocusKeyRef.current = request.key;
|
|
if (rowIndex >= 0) virtualizer.scrollToIndex(rowIndex, { align: "auto" });
|
|
queueMicrotask(() => {
|
|
if (focusRenderedItem(request.key)) pendingFocusKeyRef.current = null;
|
|
});
|
|
}, [activeItemKey, focusRenderedItem, itemIndexByKey, virtualizer, virtualRowIndexByItemIndex]);
|
|
|
|
const handleKeyDown = (event: React.KeyboardEvent<HTMLDivElement>) => {
|
|
const target = event.target as HTMLElement;
|
|
const wrapper = target.closest<HTMLElement>("[data-vault-item-key]");
|
|
const currentIndex = wrapper
|
|
? itemIndexByKey.get(wrapper.dataset.vaultItemKey ?? "")
|
|
: undefined;
|
|
if (currentIndex === undefined) return;
|
|
let nextIndex: number | null;
|
|
if (viewMode === "grid" && (event.key === "ArrowUp" || event.key === "ArrowDown")) {
|
|
const currentKey = wrapper?.dataset.vaultItemKey ?? "";
|
|
const currentPosition = hostPositionByKey.get(currentKey);
|
|
const currentHostRowIndex = currentPosition?.hostRowIndex ?? 0;
|
|
const currentColumn = currentPosition?.column ?? 0;
|
|
const direction = event.key === "ArrowDown" ? 1 : -1;
|
|
const targetPosition = getNextRaggedRowPosition({
|
|
rowLengths: hostRowLengths,
|
|
currentRow: currentHostRowIndex,
|
|
currentColumn,
|
|
direction,
|
|
});
|
|
const targetHostRow = hostRows[targetPosition.row];
|
|
const targetItem = targetHostRow?.row.hosts[targetPosition.column];
|
|
nextIndex = targetItem === undefined
|
|
? currentIndex
|
|
: itemIndexByKey.get(String(itemKey(targetItem))) ?? currentIndex;
|
|
} else {
|
|
nextIndex = getNextVirtualHostIndex({
|
|
currentIndex,
|
|
itemCount: flatItems.length,
|
|
columns,
|
|
viewMode,
|
|
key: event.key,
|
|
});
|
|
}
|
|
if (nextIndex === null) return;
|
|
if (nextIndex === currentIndex) {
|
|
const direction = event.key === "ArrowUp"
|
|
? "previous"
|
|
: event.key === "ArrowDown"
|
|
? "next"
|
|
: null;
|
|
if (direction && onBoundaryNavigation) {
|
|
event.preventDefault();
|
|
onBoundaryNavigation(direction);
|
|
}
|
|
return;
|
|
}
|
|
event.preventDefault();
|
|
const nextItem = flatItems[nextIndex];
|
|
const nextKey = String(itemKey(nextItem));
|
|
const rowIndex = virtualRowIndexByItemIndex.get(nextIndex) ?? -1;
|
|
pendingFocusKeyRef.current = nextKey;
|
|
onActiveItemChange?.(nextItem);
|
|
if (rowIndex >= 0) virtualizer.scrollToIndex(rowIndex, { align: "auto" });
|
|
queueMicrotask(() => {
|
|
if (focusRenderedItem(nextKey)) pendingFocusKeyRef.current = null;
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
ref={rootRef}
|
|
className="relative min-w-0"
|
|
style={{ height: virtualizer.getTotalSize() }}
|
|
data-vault-virtual-grouped-collection={viewMode}
|
|
role={viewMode === "grid" ? "grid" : "list"}
|
|
aria-rowcount={viewMode === "grid" ? rows.length : undefined}
|
|
aria-colcount={viewMode === "grid" ? columns : undefined}
|
|
aria-label={ariaLabel}
|
|
onKeyDownCapture={handleKeyDown}
|
|
onFocusCapture={(event) => {
|
|
const wrapper = (event.target as HTMLElement).closest<HTMLElement>("[data-vault-item-key]");
|
|
const index = wrapper
|
|
? itemIndexByKey.get(wrapper.dataset.vaultItemKey ?? "")
|
|
: undefined;
|
|
if (index !== undefined) onActiveItemChange?.(flatItems[index]);
|
|
}}
|
|
>
|
|
{virtualizer.getVirtualItems().map((virtualRow) => {
|
|
const row = rows[virtualRow.index];
|
|
if (!row) return null;
|
|
return (
|
|
<div
|
|
key={virtualRow.key}
|
|
data-vault-virtual-row={virtualRow.index}
|
|
className="absolute left-0 top-0 w-full min-w-0"
|
|
style={{
|
|
height: virtualRow.size,
|
|
transform: `translateY(${virtualRow.start - scrollMargin}px)`,
|
|
}}
|
|
role={viewMode === "grid" ? "row" : undefined}
|
|
aria-rowindex={viewMode === "grid" ? virtualRow.index + 1 : undefined}
|
|
>
|
|
{row.kind === "header" ? (
|
|
<div
|
|
className="flex h-full items-end pb-3"
|
|
role={viewMode === "grid" ? "gridcell" : "heading"}
|
|
aria-colspan={viewMode === "grid" ? columns : undefined}
|
|
aria-level={viewMode === "list" ? 4 : undefined}
|
|
>
|
|
{renderGroupHeader(row.group)}
|
|
</div>
|
|
) : (
|
|
<div
|
|
className="grid w-full min-w-0"
|
|
style={{
|
|
height: viewMode === "grid" ? GRID_CARD_HEIGHT : LIST_ROW_HEIGHT,
|
|
gridTemplateColumns: `repeat(${columns}, minmax(0, 1fr))`,
|
|
columnGap: viewMode === "grid" ? VAULT_HOST_GRID_GAP : 0,
|
|
}}
|
|
>
|
|
{row.hosts.map((item, columnIndex) => (
|
|
<div
|
|
key={itemKey(item)}
|
|
className="contents"
|
|
data-vault-item-key={String(itemKey(item))}
|
|
role={viewMode === "grid" ? "gridcell" : "listitem"}
|
|
aria-colindex={viewMode === "grid" ? columnIndex + 1 : undefined}
|
|
aria-posinset={viewMode === "list" ? row.hostStartIndex + columnIndex + 1 : undefined}
|
|
aria-setsize={viewMode === "list" ? totalHostCount : undefined}
|
|
>
|
|
{renderItem(item, row.group)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|