-
-
Notifications
You must be signed in to change notification settings - Fork 391
feat(web): multi-session grid view, composer status bar, in-chat keyboard shortcuts #484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
YiwenZhu77
wants to merge
20
commits into
tiann:main
Choose a base branch
from
YiwenZhu77:feat/grid-view-and-ux-improvements
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a92e7d8
feat(web): add multi-session grid view with keyboard navigation
YiwenZhu77 f21c0eb
feat(web): inline status and permission mode into composer bottom bar
YiwenZhu77 8253523
feat(web): add keyboard shortcuts for in-chat scroll and message jump
YiwenZhu77 0bf055d
fix(web): remove flavor icon from session list; focus window on push …
YiwenZhu77 50cef38
fix: resolve TypeScript typecheck errors for CI
YiwenZhu77 162d291
fix: toast isolation and draft storage migration
YiwenZhu77 31fcba7
feat(web): integrate toast notifications into composer status bar in …
YiwenZhu77 2198b9b
feat(web): toast notification dot in grid cell overlay
YiwenZhu77 c80a4c6
fix(test): update composer-drafts tests for localStorage migration
YiwenZhu77 1f3059f
feat(cli): add /btw and /branch to Claude builtin slash commands
YiwenZhu77 05e9e6e
fix(web): add /branch and /btw to Claude builtin slash commands in au…
YiwenZhu77 fa81ddc
fix(web): fix grid empty on load and allow duplicate sessions in repl…
YiwenZhu77 bfe95f0
feat(web): blue dot in grid overlay when session is outputting/thinking
YiwenZhu77 86b1e1a
fix(web): use instant scroll for Alt+[/] navigation to fix slow key-r…
YiwenZhu77 79af830
feat(web): tint grid cell overlay blue while session is thinking/outp…
YiwenZhu77 1eaaebe
fix(web): only tint text blue when thinking, keep overlay background …
YiwenZhu77 138f59a
fix(web): don't swallow Cmd+Shift+F/X and Cmd+' outside grid view
YiwenZhu77 e3d1d76
feat(web): add /effort slash command to change thinking effort level
YiwenZhu77 b148655
feat(web): double-click title to rename + stop auto-renaming from sum…
YiwenZhu77 da8a9e6
feat(web): unify dot size, flash orange on thinking→idle transition
YiwenZhu77 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MAJOR]
behavior: 'instant'is not part of the DOMScrollBehaviorunion (auto|smooth). In this strict TypeScript repo that should failbun typecheck, and browsers only guarantee immediate jumps forbehavior: 'auto'. The same invalid value is repeated on the nextscrollToandscrollBycalls below.Suggested fix: