mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* feat: add branch switching and stash management to workspace header Adds the ability to switch git branches from the workspace header by clicking the branch name. Includes full stash support: when switching away from a dirty branch, users are prompted to stash changes; when switching to a branch with a Paseo stash, they're prompted to restore. An amber stash indicator in the header provides anytime restore/discard. New WebSocket messages: checkout_switch_branch, stash_save, stash_pop, stash_drop, stash_list. Stashes are tracked via git stash messages with a "paseo-auto-stash:" prefix convention. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: await query invalidation after branch switch and stash The branch switcher became non-clickable after switching because checkout query invalidation was fire-and-forget. Now we await invalidation so the UI has fresh checkout status (including the new branch name) before rendering. Also invalidate after stash-save so the checkout query sees clean state before the switch. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: emit workspace update immediately after branch switch The sidebar and header were slow to reflect the new branch name because they relied on the daemon's background git watcher to detect changes. Now the switch handler calls emitWorkspaceUpdateForCwd immediately after checkout, pushing the updated workspace descriptor to connected clients. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: stash detection and dirty-tree branch switch handling - Fix stash list parser: git prepends "On <branch>: " to stash messages, so use indexOf instead of startsWith to find the paseo-auto-stash prefix. - Remove switchBranchMutation in favor of inline async flow in handleBranchSelect. Now tries the switch first; if the server returns an uncommitted-changes error, offers the stash dialog automatically — no more red error toast on first attempt. - Move post-switch stash restore prompt into handleBranchSelect so the full flow (switch → check stashes → prompt) is sequential. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: toast.success → toast.show and await stash invalidation - Replace toast.success() with toast.show() — the ToastApi only exposes show/copied/error, not success. - Await invalidateStashAndCheckout in stashPop and stashDrop mutation onSuccess handlers so the stash indicator disappears immediately after restore/discard. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: add stash diff preview and multi-stash management - Add stash_show message pair: server runs `git stash show -p` and returns ParsedDiffFile[] through the existing diff parser. - Stash indicator dropdown now lists ALL Paseo stashes (not just current branch) with per-stash Preview, Restore, and Discard actions. - Preview opens a full diff modal showing file-by-file changes with syntax-colored add/remove lines, file stats, and Restore/Discard action buttons. - Clean up: remove unused handleRestoreStash/handleDropStash callbacks, add Eye/Trash2 icons, import Modal/ScrollView. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: use Fonts.mono instead of theme.fontFamily.mono The theme object doesn't have a fontFamily property. The codebase uses the Fonts constant from @/constants/theme for font family values. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: filter stashes to current branch and handle restore conflicts - Stash indicator only shows when the current branch has stashes, not all branches. Switching branches hides/shows it correctly. - When restoring a stash conflicts with uncommitted changes, offers to stash current changes first then restore the target stash (auto-adjusts stash index after the new save). - Multiple stashes on the same branch show as "Stash 1", "Stash 2" instead of repeating the branch name. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: improve branch switcher with recency sort, sticky search, and branch icons - Sort branches by committer date (most recent first) instead of alphabetical - Use full refname to fix normalization of branches with slashes - Filter out bare "origin" symref leaking as a branch name - Remove server-side search query; fetch all branches once and filter client-side - Port combobox sticky search design from dev (borderless bar above scroll area) - Add GitBranch icons to branch switcher items - Prioritize prefix matches in combobox search results * fix: move useIsCompactFormFactor hook above early return in ToastViewport The hook was called after `if (!toast) return null`, violating React's rules of hooks and causing "Rendered more hooks than during the previous render" crash. * fix: include untracked files in stash-and-switch flow git stash push without --include-untracked left untracked files behind, causing the clean-tree check to fail on the subsequent checkout. * refactor: strip stash management UI, keep stash-and-switch flow Remove the stash indicator icon, dropdown menu, preview modal, and stash_drop/stash_show RPCs. Keep the auto-stash on branch switch and the restore prompt on arrival — that's the useful surface. * refactor: extract filterAndRankComboboxOptions with tests * refactor: extract BranchSwitcher component and useBranchSwitcher hook --------- Co-authored-by: heyimsteve <8645831+heyimsteve@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>