feat: cross-view integration between kanban, feed, and run detail#48
Open
JunjieAraoXiong wants to merge 1 commit into
Open
feat: cross-view integration between kanban, feed, and run detail#48JunjieAraoXiong wants to merge 1 commit into
JunjieAraoXiong wants to merge 1 commit into
Conversation
Feed entries with item_id show clickable badge that switches to Kanban tab and opens the card. Kanban card runs are clickable and open RunDetail modal. URL param ?item=SHOP-3 deep-links to a card.
Collaborator
Author
|
@claude review this PR and check for any issues with the cross-view navigation logic, event propagation on the item badges, and the URL param handling. |
|
I'll analyze this and get back to you. |
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.

Summary
Connects the kanban board, activity feed, and run detail views so you can navigate between them seamlessly. Every view becomes a different lens on the same data.
Feed → Kanban
Feed entries that have a linked
item_idnow show a clickable badge (e.g.[SHOP-3]). Clicking it switches to the Kanban tab and opens that card's detail modal. Works on both run results and posts.Kanban → Run Detail
In the kanban card modal, run entries in the activity timeline are now clickable. Clicking a run opens the existing RunDetail modal showing the git diff, branch, and ancestor chain.
URL deep-links
?item=SHOP-3in the URL auto-switches to the Kanban tab and opens that card. Useful for sharing direct links to specific work items.Files changed
ui/src/types/api.ts-- addeditem_idto ResultFeedItem and PostFeedItem (+2)ui/src/components/feed.tsx-- ItemBadge component, onItemClick prop (+22/-3)ui/src/components/kanban/kanban-card-modal.tsx-- clickable runs, onRunClick prop (+8/-2)ui/src/app/task/[id]/page.tsx-- wiring + URL param handling (+32/-2)4 files, +57/-7 lines.