feat(ui): rework queue with dedicated views per action type - #63
Merged
Conversation
Replace the single-line summary row with a card that renders each action's payload in its native shape: label pills with real colors, user avatars, multi-line bodies, merge method + commit details, reactions with emoji. Per-item entries are no longer hidden, and each card's footer opens its source file in the editor.
Move the open-source affordance to a small icon button in the header (the icon already encodes the source type), and drop the dedicated footer. Surface each entry's issue/PR title next to the number so hub-level entries are recognisable at a glance.
Show the issue/PR title in the entry card whenever syncState knows it, not only when the number is being rendered. Adds a regression test that queue-builder propagates titles from syncState into yml entries.
When navigating between items the `item` computed briefly becomes null before the v-if/v-else swaps in the empty state. Reka-ui's force-mounted TabsContent re-rendered children during that window, which crashed DetailConversationTab on item.author. Guard the tab bodies with v-if="item".
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
The queue UI used to crush every action into a single truncated summary line, hiding most of the data behind ellipses (label colors, avatars, full bodies, merge details, reactions,
ifUnchangedSince, source files). This rework gives each entry a card with a colored action pill, a body rendered in the action's natural shape (label pills, user avatars, multi-line text, merge method + commit, emoji + target, etc.), and a footer that opens its source file in the editor. Per-item edits — previously hidden from the queue — are now visible alongsideexecute.yml/execute.mdso every pending op lives in one place. The duplicated row template betweenpanel/Queue.vueandhub/QueueList.vueis gone; both consume a sharedQueueEntryCard.Created with the help of an agent.