feat(board): double-click task card to toggle between backlog and sprint#231
Open
RSnew wants to merge 9 commits into
Open
feat(board): double-click task card to toggle between backlog and sprint#231RSnew wants to merge 9 commits into
RSnew wants to merge 9 commits into
Conversation
added 5 commits
June 29, 2026 17:32
Clicking a task once opens the detail panel. Now double-clicking quickly moves it: - Task in Backlog → first active sprint (or newest sprint) - Task in a Sprint → back to Backlog (sprint_id = null) This is much faster than drag-and-drop for common task triage. No breaking changes — drag-and-drop and single-click still work.
Extends the double-click feature to the backlog table and sprint list views (TaskRow + ListGroup), not just the Kanban board. Double-click a task row in any view to toggle between backlog and the active sprint.
- Moved handleDoubleClickSprintToggle after handleMoveToColumn (fix ref error) - Wired onTaskDoubleClick through list-view→ListGroup→TaskRow - Fixed JSX: onDoubleClick before /> not after
Single click now waits 280ms. If a second click arrives within that window, the single-click action is cancelled and the double-click action (toggle sprint) executes instead.
Card/row briefly scales down then bounces back with a brightness flash, providing visual feedback that the task has been moved.
1878da5 to
0e39380
Compare
added 4 commits
June 29, 2026 18:04
Backlog→Sprint: card slides up and fades out Sprint→Backlog: card slides down and fades out Animation plays for 350ms before API call triggers re-render
Tracks recently toggled task via module-level state. When the card re-renders in its new position, it plays a slide-in animation from the direction it came from.
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.
What
Adds double-click to task cards on the board to quickly toggle between Backlog and Sprint:
Why
Currently moving tasks requires drag-and-drop. Double-click makes quick triage instant.
Changes
Only +11 lines, no breaking changes. Drag-and-drop and single-click still work.
Closes #230
🤖 Generated with Claude Code