gsxdsm
924bcb97d5
FN-7255: add task card context menus
Add shared task action menus across board and list task surfaces.
- Add reusable task context menu UI with open, copy, archive, delete, pause, duplicate, retry, refine, and dependency actions.
- Wire board cards, swimlanes, worktree groups, and list rows to expose consistent menu behavior.
- Reuse task-detail action handlers and cover menu interactions with dashboard tests.
- Document the new task context menu behavior and add a patch changeset.
Files changed:
.changeset/fn-7255-card-context-menu.md | 7 +
docs/dashboard-guide.md | 6 +
packages/dashboard/app/App.tsx | 2 +
packages/dashboard/app/components/Board.tsx | 61 ++-
packages/dashboard/app/components/Column.tsx | 43 +-
packages/dashboard/app/components/Lane.tsx | 11 +-
packages/dashboard/app/components/ListView.css | 25 ++
packages/dashboard/app/components/ListView.tsx | 438 ++++++++++++++++++-
packages/dashboard/app/components/TaskCard.css | 12 +
packages/dashboard/app/components/TaskCard.tsx | 472 ++++++++++++++++++++-
.../dashboard/app/components/TaskContextMenu.css | 57 +++
.../dashboard/app/components/TaskContextMenu.tsx | 346 +++++++++++++++
.../dashboard/app/components/TaskDetailModal.tsx | 235 ++++------
.../dashboard/app/components/WorktreeGroup.tsx | 60 ++-
.../app/components/__tests__/ListView.test.tsx | 159 ++++++-
.../__tests__/TaskCard.cli-states.test.tsx | 1 +
.../app/components/__tests__/TaskCard.test.tsx | 180 +++++++-
.../components/__tests__/TaskContextMenu.test.tsx | 205 +++++++++
.../app/components/__tests__/board-mobile.test.tsx | 1 +
.../app/components/dashboard/MainContent.tsx | 12 +
.../__tests__/MainContent.graph-popout.test.tsx | 1 +
.../dashboard/app/components/dashboard/types.ts | 1 +
packages/dashboard/app/hooks/useAppSettings.ts | 8 +
23 files changed, 2178 insertions(+), 165 deletions(-)
Fusion-Task-Id: FN-7255
Fusion-Task-Lineage: 5b5714a9-3eb5-4df1-a466-0d2f839b6bd9
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
2026-06-30 01:57:09 -07:00
..
2026-06-30 01:50:52 -07:00
2026-06-27 15:56:42 -07:00
2026-06-22 15:23:43 -07:00
2026-06-22 15:23:43 -07:00
2026-04-08 10:39:38 -07:00
2026-04-12 17:55:07 -07:00
2026-06-08 13:32:58 -07:00
2026-05-26 21:57:31 -07:00
2026-05-20 03:19:44 -07:00
2026-04-08 16:48:35 -07:00
2026-06-27 09:28:29 -07:00
2026-06-30 01:57:09 -07:00
2026-06-27 22:15:53 -07:00
2026-06-22 05:20:22 -07:00
2026-06-23 20:03:44 -07:00
2026-05-15 22:24:12 -07:00
2026-06-15 02:29:08 -07:00
2026-05-13 15:05:05 -07:00
2026-04-23 23:02:36 -07:00
2026-06-17 04:51:31 -07:00
2026-06-29 21:02:34 -07:00
2026-06-29 14:41:52 -07:00
2026-06-23 19:52:52 -07:00
2026-06-23 20:14:14 -07:00
2026-06-27 15:56:42 -07:00
2026-06-03 20:52:44 -07:00
2026-05-15 15:19:56 -07:00
2026-06-23 19:35:53 -07:00
2026-06-13 19:40:15 -07:00
2026-05-23 20:44:01 -07:00
2026-05-17 11:33:56 -07:00
2026-06-23 20:03:44 -07:00
2026-06-03 19:06:53 -07:00
2026-06-23 11:26:51 -07:00
2026-04-20 12:59:58 -07:00
2026-05-21 18:15:26 -07:00
2026-05-20 03:19:44 -07:00
2026-05-03 14:10:11 -07:00
2026-05-03 07:47:45 -07:00
2026-05-17 11:33:56 -07:00
2026-06-22 04:18:35 -07:00
2026-06-25 08:35:44 -07:00
2026-05-17 11:33:56 -07:00
2026-06-27 22:02:59 -07:00
2026-05-20 03:19:44 -07:00
2026-04-23 23:02:36 -07:00
2026-06-03 19:06:53 -07:00
2026-05-20 04:12:40 -07:00
2026-03-26 00:10:53 -04:00
2026-06-03 22:35:28 -07:00
2026-06-26 13:57:00 -07:00
2026-06-03 20:52:44 -07:00
2026-05-16 09:21:06 -07:00
2026-06-03 13:02:23 -07:00
2026-04-24 23:16:29 -07:00
2026-06-27 09:28:29 -07:00
2026-06-27 12:15:42 -07:00
2026-06-10 09:21:48 -07:00
2026-04-25 18:22:37 -07:00
2026-04-28 14:25:55 -07:00
2026-05-23 15:57:48 -07:00
2026-06-10 09:21:48 -07:00
2026-06-13 10:14:11 -07:00
2026-06-21 13:25:40 -07:00
2026-06-27 12:15:42 -07:00
2026-06-13 11:46:53 -07:00
2026-05-20 03:19:44 -07:00
2026-05-02 08:05:33 -07:00
2026-06-29 20:50:14 -07:00
2026-04-09 13:01:19 -07:00
2026-06-10 09:21:48 -07:00
2026-06-19 23:47:20 +00:00
2026-06-30 01:50:52 -07:00
2026-05-05 12:14:20 -07:00
2026-05-06 02:14:05 -07:00
2026-04-16 10:04:44 -07:00
2026-06-23 21:09:36 -07:00
2026-05-21 18:15:26 -07:00
2026-04-23 23:02:35 -07:00
2026-06-03 19:06:53 -07:00
2026-06-07 02:26:00 +07:00
2026-04-23 23:02:36 -07:00
2026-06-03 19:06:53 -07:00
2026-06-10 09:21:48 -07:00
2026-04-24 08:55:02 -07:00
2026-06-10 09:21:48 -07:00
2026-04-10 02:59:38 -07:00
2026-05-19 08:13:07 -07:00
2026-05-21 18:15:26 -07:00
2026-06-23 20:03:44 -07:00
2026-06-17 03:29:39 -07:00
2026-05-01 13:08:07 -07:00
2026-04-13 18:21:31 -07:00
2026-04-22 01:31:40 -07:00
2026-04-20 10:16:13 -07:00
2026-05-08 08:37:26 -07:00
2026-05-07 23:21:05 -07:00
2026-06-23 19:28:22 -07:00
2026-05-29 21:32:09 -07:00
2026-06-07 23:30:16 -07:00
2026-06-29 20:16:41 -07:00
2026-06-09 12:57:21 -07:00
2026-06-30 00:03:37 -07:00
2026-06-22 18:21:06 -07:00
2026-05-23 00:03:22 -07:00
2026-06-03 20:52:44 -07:00
2026-04-27 01:40:07 -07:00
2026-06-10 09:21:48 -07:00
2026-06-11 19:37:25 -07:00
2026-06-22 05:20:22 -07:00
2026-06-29 23:17:49 -07:00
2026-06-03 19:06:53 -07:00
2026-04-23 23:02:36 -07:00
2026-05-15 23:39:43 -07:00
2026-06-10 09:21:48 -07:00