File: src/screens/files/files-screen.tsx:1517-1542
visibleEntries is a useMemo over the full file tree, keyed on treeQuery (raw search input). It re-walks the tree on every keystroke.
Suggested fix: debounce treeQuery (150-200ms) before feeding it to the memo.
Related: entryCounts (line 1543) also walks the tree recursively on every entries change — consider caching on entries reference equality.
Severity: medium — feels janky on bigger trees.
File:
src/screens/files/files-screen.tsx:1517-1542visibleEntriesis auseMemoover the full file tree, keyed ontreeQuery(raw search input). It re-walks the tree on every keystroke.Suggested fix: debounce
treeQuery(150-200ms) before feeding it to the memo.Related:
entryCounts(line 1543) also walks the tree recursively on every entries change — consider caching onentriesreference equality.Severity: medium — feels janky on bigger trees.