Commit f40c691
feat(web): add History tab to bottom panel with latest-commit summary
Adds a new History tab to the bottom panel alongside Explore. The tab is
toggled via shift+mod+h with the existing collapse-on-same/switch-on-other
semantics, and the active tab is indicated with an underline using
LowProfileTabsTrigger (now accepts an optional className).
The history panel itself is a client-side infinite-scroll list (react-query
useInfiniteQuery + IntersectionObserver) that hits a new client-side
listCommits wrapper. Each row reuses AuthorsAvatarGroup, the co-author
parsing, and the new shared CommitActionLink primitive for the
view-code-at-commit / view-repo-at-commit actions. CommitRow was refactored
to use the same primitive.
The previous CommitHeader rendered above each open file is removed.
A compact summary of the latest commit now appears in the bottom panel
header (right side) whenever the panel is collapsed, so the file/folder's
last commit stays glanceable without consuming a full row above the code.
When the panel is expanded the right side hosts the View-full-history
and Hide buttons.
Shared commit utilities (commitAuthors.ts, commitParts.tsx) moved up
from browse/[...path]/components/ to browse/components/ so both the
existing commits view and the new bottom-panel components import them
without crossing route boundaries.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent f57f552 commit f40c691
14 files changed
Lines changed: 474 additions & 191 deletions
File tree
- packages/web/src
- app
- (app)/browse
- [...path]/components
- components
- api/(client)
- components/ui
- features/git
Lines changed: 2 additions & 22 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | | - | |
| 7 | + | |
9 | 8 | | |
10 | 9 | | |
11 | 10 | | |
| |||
14 | 13 | | |
15 | 14 | | |
16 | 15 | | |
17 | | - | |
| 16 | + | |
18 | 17 | | |
19 | 18 | | |
20 | 19 | | |
21 | 20 | | |
22 | 21 | | |
23 | 22 | | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | 23 | | |
31 | 24 | | |
32 | 25 | | |
| |||
37 | 30 | | |
38 | 31 | | |
39 | 32 | | |
40 | | - | |
41 | | - | |
42 | 33 | | |
43 | 34 | | |
44 | 35 | | |
| |||
83 | 74 | | |
84 | 75 | | |
85 | 76 | | |
86 | | - | |
87 | | - | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | 77 | | |
98 | 78 | | |
99 | 79 | | |
| |||
Lines changed: 0 additions & 79 deletions
This file was deleted.
Lines changed: 17 additions & 25 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | | - | |
9 | 6 | | |
10 | 7 | | |
11 | 8 | | |
12 | 9 | | |
13 | | - | |
14 | | - | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
15 | 17 | | |
16 | 18 | | |
17 | 19 | | |
| |||
81 | 83 | | |
82 | 84 | | |
83 | 85 | | |
84 | | - | |
85 | | - | |
86 | | - | |
87 | | - | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
94 | 91 | | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
105 | 97 | | |
106 | 98 | | |
107 | 99 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
| |||
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| 27 | + | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
| |||
0 commit comments