fix: allow manual virtual tree scrolling

This commit is contained in:
2026-08-20 01:54:21 +00:00
parent 7d484a3998
commit 43892865c3
2 changed files with 44 additions and 5 deletions
+37
View File
@@ -140,6 +140,43 @@ test('first arrow press chooses the directional edge when no row is active', ()
assert.equal(reduceSidebar(createInitialState(), { type: 'KEY', key: 'ArrowUp' }, rows).activeKey, rows.at(-1).key);
});
test('manual viewport scrolling may virtualize selection until keyboard navigation restores the active row', () => {
const model = buildDeviceTree({
sites: [{ id: 'large', name: 'Large' }],
groups: [],
devices: Array.from({ length: 1500 }, (_, index) => ({
id: `c${String(index).padStart(4, '0')}`,
name: `Camera ${String(index).padStart(4, '0')}`,
siteId: 'large',
})),
});
const site = model.sites[0];
const group = site.groups[0];
const firstCamera = group.cameras[0];
const controller = createSidebarController({
model,
view: { commit() {} },
rowHeight: 20,
overscan: 0,
initialState: { expandedKeys: new Set([site.key, group.key]), viewportHeight: 100 },
});
controller.dispatch({ type: 'SET_SELECTION', rowKey: firstCamera.key });
controller.dispatch({ type: 'SET_VIEWPORT', scrollTop: 30000, viewportHeight: 100 });
let snapshot = controller.getSnapshot();
assert.equal(snapshot.state.selectedKey, firstCamera.key);
assert.equal(snapshot.state.activeKey, firstCamera.key);
assert.equal(snapshot.state.scrollTop, 29940);
assert.equal(snapshot.window.rows.some((row) => row.key === firstCamera.key), false);
assert.equal(snapshot.rows.hiddenSelected, false);
controller.dispatch({ type: 'KEY', key: 'Home' });
snapshot = controller.getSnapshot();
assert.equal(snapshot.state.activeKey, site.key);
assert.equal(snapshot.state.scrollTop, 0);
assert.equal(snapshot.window.rows.some((row) => row.key === site.key), true);
});
test('collapse clamps stale scroll and keyboard navigation scrolls active rows into the virtual window', () => {
const model = buildDeviceTree({
sites: [{ id: 'large', name: 'Large' }],