Add project rename support in the sidebar#1798
Merged
juliusmarminge merged 1 commit intomainfrom Apr 6, 2026
Merged
Conversation
- Inline-edit project names from the sidebar context menu - Handle project.meta-updated events in store state
Contributor
ApprovabilityVerdict: Needs human review This PR adds a new user-facing feature (project rename in sidebar) with new API integration to dispatch 'project.meta.update' commands. While the implementation follows existing patterns for thread renaming and is well-contained, new features introducing user-facing behavior warrant human review to verify the intended UX and API contract. You can customize Macroscope's approvability policy. Learn more. |
Aditya190803
pushed a commit
to Aditya190803/t3code
that referenced
this pull request
Apr 7, 2026
Chrono-byte
pushed a commit
to Chrono-byte/t3code
that referenced
this pull request
Apr 7, 2026
gigq
pushed a commit
to gigq/t3code
that referenced
this pull request
Apr 8, 2026
(cherry picked from commit a221542)
|
Thank you for this, having an option to open file location would be nice as well. I will create a PR for this |
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.
Closes #1370
Summary
project.meta.updateand clears rename state on blur, Enter, or Escape.project.meta-updatedrefreshes the existing project name and timestamp.Testing
bun fmtbun lintbun typecheckbun run testNote
Low Risk
Low risk UI/state changes that add a new
project.meta.updatecommand dispatch path; main risk is minor rename-state edge cases (blur/escape/enter) affecting sidebar interactions.Overview
Adds inline project rename in the sidebar: a new "Rename project" context-menu action swaps the project title for an input, then commits on Enter/blur (or cancels on Escape) by dispatching
project.meta.update.Refactors thread renaming to pass explicit callbacks (
onRenamingInputMount,hasRenameCommitted,markRenameCommitted) instead of exposing mutable refs, and ensures starting a rename clears any active rename state for the other entity (project vs thread).Extends store tests to cover
project.meta-updatedupdating an existing project’snameandupdatedAt.Reviewed by Cursor Bugbot for commit fe56ef0. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Add inline project rename support in the sidebar
project.meta.updatecommand via the native API; on Escape, cancels without saving. Shows a toast on error.SidebarThreadRowfrom ref-based to function-based (onRenamingInputMount,hasRenameCommitted,markRenameCommitted).project.meta-updatedevents correctly update project title andupdatedAtin state.Macroscope summarized fe56ef0.