feat(ui): WebUI modernization PR4 — completion keyboard nav, attachments, sidebar#112
Closed
jkyberneees wants to merge 1 commit into
Closed
feat(ui): WebUI modernization PR4 — completion keyboard nav, attachments, sidebar#112jkyberneees wants to merge 1 commit into
jkyberneees wants to merge 1 commit into
Conversation
…nts, sidebar Fourth PR of the WebUI modernization roadmap (Phase 2c + 2d). Stacked on #111 (feat/webui-modernization-3). Input & @-completion (2c): - ArrowUp/ArrowDown move the selection (with wrap-around), Enter/Tab accept, Esc dismisses. Previously mouse-only with Tab-to-accept, and Enter would send the prompt even with the popup open. - role="listbox"/role="option" + aria-selected kept in sync for keyboard, mouse, and hover selection. - Attachments: per-file error chips (oversized/unreadable/over the 10 MB total cap) that dismiss on click or after 6s, replacing toast-only errors; total-size meter ("1.2 MB / 10 MB", amber when above 8 MB) rendered next to the chips. Sessions sidebar (2d): - Session items restructured: the whole body is a real <button> (keyboard-focusable, Enter opens) with separate real rename/delete buttons. Row actions now reveal on hover, focus-within, and always on touch devices (hover: none) - they were hover-only and unreachable by keyboard/touch. - Rename is an inline edit in the task label (Enter commits, Esc cancels, blur commits) - window.prompt() is gone. - Incremental list updates: loadSessions runs after every turn and used to re-render the whole list (stealing scroll position and hover state); it now skips the re-render when the session signature is unchanged and only syncs the active marker. - Skeleton rows while the list loads on cold start. Verified: node --check, go vet, full cmd/odek test suite.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
odek | 7cee1d5 | Commit Preview URL Branch Preview URL |
Jul 26 2026, 12:46 PM |
This was referenced Jul 26, 2026
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(ui): WebUI modernization PR4 — completion keyboard nav, attachments, sidebar
Fourth PR of the WebUI modernization roadmap (Phase 2c + 2d). Stacked on
#111 (feat/webui-modernization-3).
Input & @-completion (2c):
accept, Esc dismisses. Previously mouse-only with Tab-to-accept, and
Enter would send the prompt even with the popup open.
mouse, and hover selection.
total cap) that dismiss on click or after 6s, replacing toast-only
errors; total-size meter ("1.2 MB / 10 MB", amber when above 8 MB)
rendered next to the chips.
Sessions sidebar (2d):
(keyboard-focusable, Enter opens) with separate real rename/delete
buttons. Row actions now reveal on hover, focus-within, and always on
touch devices (hover: none) - they were hover-only and unreachable by
keyboard/touch.
blur commits) - window.prompt() is gone.
to re-render the whole list (stealing scroll position and hover state);
it now skips the re-render when the session signature is unchanged and
only syncs the active marker.
Verified: node --check, go vet, full cmd/odek test suite.