Commit 7034fd8
feat: major explorer performance overhaul, stream preview, and e2e testing
- Replace structuredClone with fast JSON clone (4x faster record cloning)
- Sample-based estimateSize instead of scanning all records (~600x faster)
- Stabilize wrappedDispatch with useRef to prevent cascading re-executions
- Remove unused useState from useExecution to eliminate full-screen re-renders
- Memoize 8 components with React.memo (TitleBar, ForkTabs, StageList, etc.)
- Add stream preview to AddStageModal and EditStageModal (Tab to toggle, Enter to zoom)
- Split useInput hooks to fix typing garble when TextInput is active
- Fix fuzzy search ranking: name-first matching with +200 bonus, minScore threshold
- Fix fromps race condition: skip UPDATE_STAGE_ARGS when args unchanged
- Fix undo/redo stale cache: clear cache and lastError on UNDO/REDO
- Fix execution not retrying after error + args edit (stageFingerprint dep)
- Fix disabled first stage showing 0 records
- Fix welcome screen 'n' key not working
- Rename tui → explorer throughout codebase
- Add tmux-based e2e test harness and 10 smoke tests (RUN_E2E=1 to enable)
- Add comprehensive unit tests: executor, reducer, fuzzy-match, unicode, etc.
- Add executor benchmark script
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>1 parent bdfdc71 commit 7034fd8
137 files changed
Lines changed: 15713 additions & 1657 deletions
File tree
- bin
- docs
- .vitepress
- explorer
- man/man1
- scripts
- src
- explorer
- components
- modals
- executor
- hooks
- model
- session
- utils
- tui
- components
- modals
- hooks
- tests
- explorer
- components
- e2e
- executor
- hooks
- integration
- model
- session
- utils
- tui/utils
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
99 | 99 | | |
100 | 100 | | |
101 | 101 | | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
115 | 175 | | |
116 | 176 | | |
117 | 177 | | |
| |||
194 | 254 | | |
195 | 255 | | |
196 | 256 | | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
0 commit comments