@tuturuuu/ui 0.17.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +52 -0
- package/biome.json +1 -1
- package/package.json +111 -152
- package/src/components/ui/calendar-app/calendar-client-page.tsx +30 -3
- package/src/components/ui/calendar-app/calendar-page-shell.tsx +60 -29
- package/src/components/ui/calendar-app/components/calendar-connections-manager-helpers.ts +70 -0
- package/src/components/ui/calendar-app/components/calendar-connections-settings-content.tsx +516 -578
- package/src/components/ui/calendar-app/components/calendar-connections-unified.tsx +1 -0
- package/src/components/ui/calendar-app/components/calendar-sync-settings-panel.tsx +155 -0
- package/src/components/ui/calendar-app/components/merge-provider-calendars.test.ts +46 -0
- package/src/components/ui/calendar-app/components/merge-provider-calendars.ts +81 -0
- package/src/components/ui/calendar-app/components/use-calendar-connections-manager.ts +22 -129
- package/src/components/ui/chat/chat-agent-details-operations-panel.test.tsx +17 -3
- package/src/components/ui/chat/chat-agent-details-utils.tsx +2 -0
- package/src/components/ui/chat/chat-agent-details-zalo-personal-panel.tsx +17 -6
- package/src/components/ui/custom/__tests__/settings-dialog-shell.test.tsx +35 -0
- package/src/components/ui/custom/__tests__/workspace-select-helpers.test.ts +17 -0
- package/src/components/ui/custom/nav-link.test.tsx +1 -0
- package/src/components/ui/custom/nav-link.tsx +4 -1
- package/src/components/ui/custom/notification-popover-client.tsx +3 -3
- package/src/components/ui/custom/settings-dialog-shell.tsx +23 -14
- package/src/components/ui/custom/statistic-card.tsx +3 -5
- package/src/components/ui/custom/structure.test.tsx +4 -0
- package/src/components/ui/custom/user-filters.tsx +4 -7
- package/src/components/ui/custom/workspace-access/workspace-access-page-header.tsx +1 -1
- package/src/components/ui/custom/workspace-access/workspace-access-tabs-toolbar.tsx +1 -1
- package/src/components/ui/custom/workspace-select.tsx +38 -53
- package/src/components/ui/finance/analytics/category-spending-chart.test.tsx +3 -3
- package/src/components/ui/finance/budgets/budget-card.test.tsx +3 -3
- package/src/components/ui/finance/debts/debt-loan-card.test.tsx +3 -3
- package/src/components/ui/finance/debts/debt-loan-detail-cards.test.tsx +3 -3
- package/src/components/ui/finance/invoices/charts/invoice-totals-chart.test.tsx +3 -3
- package/src/components/ui/finance/invoices/columns.test.tsx +3 -3
- package/src/components/ui/finance/invoices/components/invoice-customer-select-card.tsx +1 -1
- package/src/components/ui/finance/shared/numbers-visibility-toggle.test.tsx +1 -1
- package/src/components/ui/finance/tags/tag-manager.test.tsx +2 -2
- package/src/components/ui/finance/transactions/categories/columns.test.tsx +5 -5
- package/src/components/ui/finance/transactions/columns.test.tsx +2 -2
- package/src/components/ui/finance/transactions/confidential-field.test.tsx +2 -2
- package/src/components/ui/finance/transactions/transaction-edit-dialog.test.tsx +2 -2
- package/src/components/ui/finance/transactions/transaction-statistics.test.tsx +3 -3
- package/src/components/ui/finance/wallets/form.test.tsx +3 -3
- package/src/components/ui/finance/wallets/wallets-data-table.test.tsx +10 -0
- package/src/components/ui/legacy/calendar/calendar-cell.tsx +1 -1
- package/src/components/ui/storefront/accent-button.tsx +4 -1
- package/src/components/ui/storefront/browse-panel.tsx +6 -1
- package/src/components/ui/storefront/cart-summary-parts.tsx +18 -4
- package/src/components/ui/storefront/cart-summary.tsx +22 -6
- package/src/components/ui/storefront/hero-panel.tsx +13 -17
- package/src/components/ui/storefront/index.ts +2 -0
- package/src/components/ui/storefront/listing-card.tsx +6 -4
- package/src/components/ui/storefront/product-detail.tsx +51 -21
- package/src/components/ui/storefront/product-dialog.tsx +8 -1
- package/src/components/ui/storefront/storefront-surface.test.tsx +79 -3
- package/src/components/ui/storefront/storefront-surface.tsx +151 -100
- package/src/components/ui/storefront/types.ts +3 -0
- package/src/components/ui/storefront/utils.ts +5 -1
- package/src/components/ui/tasks/progress/activity-heatmap.tsx +256 -0
- package/src/components/ui/tasks/progress/breakdown-bars.tsx +79 -0
- package/src/components/ui/tasks/progress/cumulative-progress-chart.tsx +185 -0
- package/src/components/ui/tasks/progress/daily-bar-chart.tsx +97 -0
- package/src/components/ui/tasks/progress/habit-gauge.tsx +92 -0
- package/src/components/ui/tasks/progress/mini-sparkline.tsx +56 -0
- package/src/components/ui/tasks/progress/weekday-distribution-chart.tsx +72 -0
- package/src/components/ui/text-editor/__tests__/task-mention-checkbox.test.ts +23 -6
- package/src/components/ui/text-editor/__tests__/upload-placeholder.test.ts +1 -10
- package/src/components/ui/text-editor/color-controls.tsx +1 -1
- package/src/components/ui/text-editor/editor.tsx +7 -1
- package/src/components/ui/text-editor/extensions.ts +4 -1
- package/src/components/ui/text-editor/mention-extension.tsx +33 -121
- package/src/globals.css +20 -0
- package/src/globals.test.ts +75 -0
- package/src/hooks/__tests__/use-calendar-sync.test.tsx +103 -1
- package/src/hooks/use-calendar-sync.tsx +51 -14
- package/src/lib/task-personal-external.ts +1 -1
- package/src/lib/workspace-actions.ts +15 -4
- package/src/components/ui/calendar-app/components/actions-dropdown.tsx +0 -269
- package/src/components/ui/calendar-app/components/auto-schedule-comprehensive-dialog.tsx +0 -220
- package/src/components/ui/calendar-app/components/calendar-header-actions.tsx +0 -67
- package/src/components/ui/calendar-app/components/experimental-feature-dialog.tsx +0 -56
- package/src/components/ui/calendar-app/components/habits-panel.tsx +0 -335
- package/src/components/ui/calendar-app/components/load-smart-scheduling-tasks.tsx +0 -143
- package/src/components/ui/calendar-app/components/priority-dropdown.tsx +0 -113
- package/src/components/ui/calendar-app/components/priority-view.tsx +0 -954
- package/src/components/ui/calendar-app/components/quick-task-dialog.tsx +0 -335
- package/src/components/ui/calendar-app/components/quick-task-timer.tsx +0 -112
- package/src/components/ui/calendar-app/components/scheduling-dialog.tsx +0 -664
- package/src/components/ui/calendar-app/components/sidebar/calendar-sidebar.tsx +0 -128
- package/src/components/ui/calendar-app/components/sidebar/index.tsx +0 -1
- package/src/components/ui/calendar-app/components/smart-schedule-button.tsx +0 -117
- package/src/components/ui/calendar-app/components/smart-schedule-preview-dialog.tsx +0 -845
- package/src/components/ui/calendar-app/components/smart-schedule-preview-panel.tsx +0 -941
- package/src/components/ui/calendar-app/components/task-fetcher.ts +0 -51
- package/src/components/ui/calendar-app/components/task-form.tsx +0 -132
- package/src/components/ui/calendar-app/components/task-list-form.tsx +0 -84
- package/src/components/ui/calendar-app/components/task-scheduler-panel.tsx +0 -494
- package/src/components/ui/calendar-app/components/tasks-sidebar-content.tsx +0 -232
- package/src/components/ui/calendar-app/components/tasks-sidebar.tsx +0 -31
- package/src/components/ui/calendar-app/components/time-tracker/components/active-session-card.tsx +0 -113
- package/src/components/ui/calendar-app/components/time-tracker/components/index.ts +0 -3
- package/src/components/ui/calendar-app/components/time-tracker/components/session-card.tsx +0 -153
- package/src/components/ui/calendar-app/components/time-tracker/components/stats-cards.tsx +0 -58
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/create-task-dialog.tsx +0 -190
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/delete-session-dialog.tsx +0 -52
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/edit-session-dialog.tsx +0 -173
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/index.ts +0 -3
- package/src/components/ui/calendar-app/components/time-tracker/hooks/index.ts +0 -2
- package/src/components/ui/calendar-app/components/time-tracker/hooks/use-sessions.ts +0 -191
- package/src/components/ui/calendar-app/components/time-tracker/hooks/use-time-tracker.ts +0 -408
- package/src/components/ui/calendar-app/components/time-tracker/index.tsx +0 -907
- package/src/components/ui/calendar-app/components/time-tracker/tabs/history-tab.tsx +0 -28
- package/src/components/ui/calendar-app/components/time-tracker/tabs/index.ts +0 -2
- package/src/components/ui/calendar-app/components/time-tracker/tabs/recent-sessions-tab.tsx +0 -173
- package/src/components/ui/calendar-app/components/time-tracker/time-tracker-trigger.tsx +0 -50
- package/src/components/ui/calendar-app/components/time-tracker/utils/category-colors.ts +0 -38
- package/src/components/ui/calendar-app/components/time-tracker/utils/format-time.ts +0 -26
- package/src/components/ui/calendar-app/components/time-tracker/utils/index.ts +0 -2
- package/src/components/ui/calendar-app/components/time-tracker.tsx +0 -2040
- package/src/components/ui/custom/settings/task-settings.tsx +0 -543
- package/src/components/ui/custom/settings/task-sound-settings.test.tsx +0 -146
- package/src/components/ui/text-editor/__tests__/task-mention-chip.test.tsx +0 -476
- package/src/components/ui/text-editor/task-mention-chip.tsx +0 -1397
- package/src/components/ui/text-editor/task-mention-resolution.ts +0 -235
- package/src/components/ui/text-editor/task-summary-popover.tsx +0 -360
- package/src/components/ui/tu-do/boards/__tests__/board-share-dialog.test.tsx +0 -286
- package/src/components/ui/tu-do/boards/__tests__/quick-create-board-dialog.test.tsx +0 -52
- package/src/components/ui/tu-do/boards/__tests__/task-board-form.test.tsx +0 -142
- package/src/components/ui/tu-do/boards/__tests__/workspace-projects-client-page.test.tsx +0 -169
- package/src/components/ui/tu-do/boards/analytics/GanttChart.tsx +0 -419
- package/src/components/ui/tu-do/boards/analytics/GanttControls.tsx +0 -123
- package/src/components/ui/tu-do/boards/analytics/GanttHeader.tsx +0 -48
- package/src/components/ui/tu-do/boards/analytics/GanttTimeline.tsx +0 -355
- package/src/components/ui/tu-do/boards/analytics/StatusDistribution.tsx +0 -130
- package/src/components/ui/tu-do/boards/analytics/TaskCreationAnalytics.tsx +0 -285
- package/src/components/ui/tu-do/boards/analytics/TaskDetailCard.tsx +0 -270
- package/src/components/ui/tu-do/boards/analytics/TaskGroup.tsx +0 -282
- package/src/components/ui/tu-do/boards/analytics/TaskWorkflowAnalytics.tsx +0 -280
- package/src/components/ui/tu-do/boards/board-public-link-section.tsx +0 -231
- package/src/components/ui/tu-do/boards/board-selector.tsx +0 -301
- package/src/components/ui/tu-do/boards/board-share-dialog.tsx +0 -69
- package/src/components/ui/tu-do/boards/board-share-settings-panel.tsx +0 -351
- package/src/components/ui/tu-do/boards/boardId/__tests__/list-actions.test.tsx +0 -199
- package/src/components/ui/tu-do/boards/boardId/board-column-external-retry.test.tsx +0 -185
- package/src/components/ui/tu-do/boards/boardId/board-column-initial-load.test.ts +0 -38
- package/src/components/ui/tu-do/boards/boardId/board-column.tsx +0 -922
- package/src/components/ui/tu-do/boards/boardId/board-text-utils.test.ts +0 -24
- package/src/components/ui/tu-do/boards/boardId/board-text-utils.ts +0 -11
- package/src/components/ui/tu-do/boards/boardId/enhanced-task-list.tsx +0 -543
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/__tests__/bulk-mutations-external-workspaces.test.tsx +0 -392
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/__tests__/bulk-mutations-move.test.tsx +0 -252
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-island.test.tsx +0 -57
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-island.tsx +0 -106
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-menu.tsx +0 -689
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-custom-date-dialog.tsx +0 -82
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-delete-dialog.tsx +0 -58
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-clear-delete.ts +0 -418
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-move.ts +0 -662
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-assignees.ts +0 -375
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-labels.ts +0 -278
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-projects.ts +0 -297
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations.ts +0 -12
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-updates.ts +0 -462
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-i18n.ts +0 -524
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-types.ts +0 -34
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-utils.ts +0 -377
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operations.ts +0 -348
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-personal-external-move.ts +0 -132
- package/src/components/ui/tu-do/boards/boardId/kanban/data/kanban-deadline-query.ts +0 -90
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-applied-sets.ts +0 -79
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-bulk-resources.ts +0 -112
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-filtered-resources.ts +0 -54
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/__tests__/column-reorder.test.ts +0 -80
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/auto-scroll.test.ts +0 -118
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/auto-scroll.ts +0 -160
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/column-reorder.ts +0 -65
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/drag-preview.tsx +0 -117
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/kanban-sort-helpers.ts +0 -76
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-cache.ts +0 -367
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.test.ts +0 -67
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.ts +0 -94
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-order.ts +0 -150
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.test.ts +0 -37
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.ts +0 -42
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.test.ts +0 -318
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.ts +0 -260
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-types.ts +0 -39
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-sort-key.ts +0 -47
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.test.ts +0 -859
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.ts +0 -1659
- package/src/components/ui/tu-do/boards/boardId/kanban/kanban-column-collapse.ts +0 -16
- package/src/components/ui/tu-do/boards/boardId/kanban/kanban-constants.ts +0 -43
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/__tests__/kanban-planner-island.test.tsx +0 -380
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/kanban-planner-dialog.tsx +0 -204
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-digest-panel.tsx +0 -61
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-item-strip.tsx +0 -54
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-plan-toolbar.tsx +0 -251
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-scope-badge.tsx +0 -27
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-section.tsx +0 -58
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-share-dialog.tsx +0 -238
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-target-controls.tsx +0 -143
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/planner-utils.ts +0 -65
- package/src/components/ui/tu-do/boards/boardId/kanban/planner/use-kanban-planner-state.ts +0 -234
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-column-width.ts +0 -30
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.test.tsx +0 -1077
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.tsx +0 -447
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-panels.tsx +0 -703
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.test.ts +0 -267
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.ts +0 -112
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-skeleton.tsx +0 -113
- package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-keyboard-shortcuts.ts +0 -137
- package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-multi-select.ts +0 -119
- package/src/components/ui/tu-do/boards/boardId/kanban.tsx +0 -631
- package/src/components/ui/tu-do/boards/boardId/list-actions.tsx +0 -522
- package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-estimation-menu.test.tsx +0 -261
- package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-menus.test.tsx +0 -708
- package/src/components/ui/tu-do/boards/boardId/menus/index.ts +0 -12
- package/src/components/ui/tu-do/boards/boardId/menus/task-assignees-menu.tsx +0 -176
- package/src/components/ui/tu-do/boards/boardId/menus/task-blocking-menu.tsx +0 -304
- package/src/components/ui/tu-do/boards/boardId/menus/task-due-date-menu.tsx +0 -201
- package/src/components/ui/tu-do/boards/boardId/menus/task-estimation-menu.tsx +0 -103
- package/src/components/ui/tu-do/boards/boardId/menus/task-labels-menu.tsx +0 -134
- package/src/components/ui/tu-do/boards/boardId/menus/task-move-menu.tsx +0 -66
- package/src/components/ui/tu-do/boards/boardId/menus/task-parent-menu.tsx +0 -228
- package/src/components/ui/tu-do/boards/boardId/menus/task-picker-popover.tsx +0 -300
- package/src/components/ui/tu-do/boards/boardId/menus/task-priority-menu.tsx +0 -178
- package/src/components/ui/tu-do/boards/boardId/menus/task-projects-menu.tsx +0 -143
- package/src/components/ui/tu-do/boards/boardId/menus/task-related-menu.tsx +0 -242
- package/src/components/ui/tu-do/boards/boardId/menus/task-scheduling-menu.tsx +0 -465
- package/src/components/ui/tu-do/boards/boardId/menus/task-scheduling-utils.ts +0 -109
- package/src/components/ui/tu-do/boards/boardId/status-grouped-board.tsx +0 -533
- package/src/components/ui/tu-do/boards/boardId/status-section.tsx +0 -274
- package/src/components/ui/tu-do/boards/boardId/task-actions.tsx +0 -675
- package/src/components/ui/tu-do/boards/boardId/task-board-server-page.test.tsx +0 -209
- package/src/components/ui/tu-do/boards/boardId/task-board-server-page.tsx +0 -109
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardCheckbox.tsx +0 -50
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardDates.tsx +0 -123
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardHeader.tsx +0 -97
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardMetadata.tsx +0 -152
- package/src/components/ui/tu-do/boards/boardId/task-card/measured-task-card.tsx +0 -118
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-archive-visibility.test.ts +0 -44
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-archive-visibility.ts +0 -17
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-checkbox-style.ts +0 -39
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.test.ts +0 -104
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.ts +0 -123
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-completion-checkbox-visibility.test.ts +0 -31
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-completion-checkbox-visibility.ts +0 -9
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-identifier-row.test.tsx +0 -124
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-identifier-row.tsx +0 -88
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-label-options.ts +0 -24
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-open-options.test.ts +0 -166
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-open-options.ts +0 -148
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-resource-context.test.ts +0 -113
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-resource-context.ts +0 -50
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.test.ts +0 -41
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.ts +0 -14
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card.tsx +0 -2889
- package/src/components/ui/tu-do/boards/boardId/task-card/task-scheduling-badge.tsx +0 -174
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/BoardEstimationConfigDialog.tsx +0 -499
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskCustomDateDialog.tsx +0 -109
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskDeleteDialog.tsx +0 -96
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewLabelDialog.tsx +0 -178
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewProjectDialog.tsx +0 -127
- package/src/components/ui/tu-do/boards/boardId/task-filter.test.tsx +0 -152
- package/src/components/ui/tu-do/boards/boardId/task-filter.tsx +0 -996
- package/src/components/ui/tu-do/boards/boardId/task-form.tsx +0 -498
- package/src/components/ui/tu-do/boards/boardId/task-list-drag-preview.test.ts +0 -101
- package/src/components/ui/tu-do/boards/boardId/task-list-form.tsx +0 -91
- package/src/components/ui/tu-do/boards/boardId/task-list.tsx +0 -535
- package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.test.ts +0 -64
- package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.ts +0 -31
- package/src/components/ui/tu-do/boards/boardId/task.tsx +0 -2
- package/src/components/ui/tu-do/boards/boardId/timeline/task-edit-dialog.tsx +0 -109
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-display.ts +0 -103
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-grid.tsx +0 -381
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-task-row.tsx +0 -339
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-toolbar.tsx +0 -356
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.test.ts +0 -169
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.ts +0 -517
- package/src/components/ui/tu-do/boards/boardId/timeline-board-open-task.test.tsx +0 -164
- package/src/components/ui/tu-do/boards/boardId/timeline-board.test.tsx +0 -217
- package/src/components/ui/tu-do/boards/boardId/timeline-board.tsx +0 -834
- package/src/components/ui/tu-do/boards/boards-list-skeleton.tsx +0 -62
- package/src/components/ui/tu-do/boards/columns.tsx +0 -159
- package/src/components/ui/tu-do/boards/copy-board-dialog.tsx +0 -156
- package/src/components/ui/tu-do/boards/enhanced-boards-view.tsx +0 -347
- package/src/components/ui/tu-do/boards/form.tsx +0 -264
- package/src/components/ui/tu-do/boards/quick-create-board-dialog.tsx +0 -75
- package/src/components/ui/tu-do/boards/row-actions.tsx +0 -397
- package/src/components/ui/tu-do/boards/share-section.tsx +0 -100
- package/src/components/ui/tu-do/boards/workspace-projects-client-page.tsx +0 -192
- package/src/components/ui/tu-do/boards/workspace-projects-page.tsx +0 -155
- package/src/components/ui/tu-do/cycles/task-cycles-client.tsx +0 -753
- package/src/components/ui/tu-do/cycles/task-cycles-page.tsx +0 -103
- package/src/components/ui/tu-do/drafts/draft-card.tsx +0 -204
- package/src/components/ui/tu-do/drafts/draft-convert-dialog.tsx +0 -195
- package/src/components/ui/tu-do/drafts/drafts-page.tsx +0 -122
- package/src/components/ui/tu-do/drafts/task-drafts-page.tsx +0 -90
- package/src/components/ui/tu-do/estimates/client.tsx +0 -292
- package/src/components/ui/tu-do/estimates/edit-estimation-dialog.tsx +0 -374
- package/src/components/ui/tu-do/estimates/task-estimates-page.tsx +0 -57
- package/src/components/ui/tu-do/estimates/use-task-estimates.ts +0 -324
- package/src/components/ui/tu-do/habits/client.tsx +0 -263
- package/src/components/ui/tu-do/habits/habit-card.tsx +0 -183
- package/src/components/ui/tu-do/habits/habit-form-dialog.tsx +0 -701
- package/src/components/ui/tu-do/habits/habits-page.tsx +0 -27
- package/src/components/ui/tu-do/hooks/__tests__/useDraftPersistence.test.ts +0 -494
- package/src/components/ui/tu-do/hooks/__tests__/useTaskDialog.test.tsx +0 -127
- package/src/components/ui/tu-do/hooks/__tests__/useTaskDialogState.test.ts +0 -217
- package/src/components/ui/tu-do/hooks/__tests__/useTaskLabelManagement.test.tsx +0 -572
- package/src/components/ui/tu-do/hooks/__tests__/useTaskProjectManagement.test.tsx +0 -144
- package/src/components/ui/tu-do/hooks/useDraftPersistence.ts +0 -199
- package/src/components/ui/tu-do/hooks/useTaskCardRelationships.ts +0 -340
- package/src/components/ui/tu-do/hooks/useTaskDialog.ts +0 -122
- package/src/components/ui/tu-do/hooks/useTaskDialogState.ts +0 -145
- package/src/components/ui/tu-do/hooks/useTaskFormState.ts +0 -206
- package/src/components/ui/tu-do/hooks/useTaskKeyboardShortcuts.ts +0 -58
- package/src/components/ui/tu-do/hooks/useTaskLabelManagement.ts +0 -425
- package/src/components/ui/tu-do/hooks/useTaskProjectManagement.ts +0 -454
- package/src/components/ui/tu-do/initiatives/task-initiatives-client.tsx +0 -889
- package/src/components/ui/tu-do/initiatives/task-initiatives-page.tsx +0 -116
- package/src/components/ui/tu-do/labels/client.tsx +0 -201
- package/src/components/ui/tu-do/labels/components/delete-label-dialog.tsx +0 -57
- package/src/components/ui/tu-do/labels/components/label-card.tsx +0 -86
- package/src/components/ui/tu-do/labels/components/label-dialog.tsx +0 -259
- package/src/components/ui/tu-do/labels/components/label-list.tsx +0 -83
- package/src/components/ui/tu-do/labels/hooks/use-task-labels.ts +0 -170
- package/src/components/ui/tu-do/labels/task-labels-page.tsx +0 -53
- package/src/components/ui/tu-do/labels/types.ts +0 -6
- package/src/components/ui/tu-do/logs/columns.tsx +0 -755
- package/src/components/ui/tu-do/logs/logs-client.tsx +0 -1006
- package/src/components/ui/tu-do/logs/logs-timeline.tsx +0 -2483
- package/src/components/ui/tu-do/logs/task-logs-page.tsx +0 -59
- package/src/components/ui/tu-do/my-tasks/__tests__/my-tasks-content.test.tsx +0 -408
- package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-query.test.ts +0 -469
- package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-state.test.ts +0 -1017
- package/src/components/ui/tu-do/my-tasks/__tests__/use-task-context-actions.test.ts +0 -584
- package/src/components/ui/tu-do/my-tasks/ai-credit-indicator.tsx +0 -143
- package/src/components/ui/tu-do/my-tasks/board-selector-dialog.tsx +0 -239
- package/src/components/ui/tu-do/my-tasks/command-bar.tsx +0 -1351
- package/src/components/ui/tu-do/my-tasks/label-project-filter.tsx +0 -194
- package/src/components/ui/tu-do/my-tasks/my-task-context-menu.tsx +0 -356
- package/src/components/ui/tu-do/my-tasks/my-tasks-content.tsx +0 -328
- package/src/components/ui/tu-do/my-tasks/my-tasks-data-loader.tsx +0 -17
- package/src/components/ui/tu-do/my-tasks/my-tasks-filters.tsx +0 -258
- package/src/components/ui/tu-do/my-tasks/my-tasks-header.tsx +0 -121
- package/src/components/ui/tu-do/my-tasks/my-tasks-page.tsx +0 -40
- package/src/components/ui/tu-do/my-tasks/personal-placement-dialog.tsx +0 -188
- package/src/components/ui/tu-do/my-tasks/task-filter.tsx +0 -235
- package/src/components/ui/tu-do/my-tasks/task-list-with-completion.tsx +0 -832
- package/src/components/ui/tu-do/my-tasks/task-list.tsx +0 -258
- package/src/components/ui/tu-do/my-tasks/task-preview-dialog.tsx +0 -1597
- package/src/components/ui/tu-do/my-tasks/task-section.tsx +0 -261
- package/src/components/ui/tu-do/my-tasks/use-my-tasks-query.ts +0 -149
- package/src/components/ui/tu-do/my-tasks/use-my-tasks-state.ts +0 -1037
- package/src/components/ui/tu-do/my-tasks/use-task-context-actions.ts +0 -474
- package/src/components/ui/tu-do/notes/note-edit-dialog.tsx +0 -118
- package/src/components/ui/tu-do/notes/note-list.tsx +0 -799
- package/src/components/ui/tu-do/notes/notes-content.tsx +0 -178
- package/src/components/ui/tu-do/notes/notes-page.tsx +0 -27
- package/src/components/ui/tu-do/progress/task-progress-import-panel.tsx +0 -60
- package/src/components/ui/tu-do/progress/task-progress-leaderboards-panel.tsx +0 -156
- package/src/components/ui/tu-do/progress/task-progress-page.tsx +0 -382
- package/src/components/ui/tu-do/progress/task-progress-panels.tsx +0 -303
- package/src/components/ui/tu-do/projects/components/index.ts +0 -11
- package/src/components/ui/tu-do/projects/components/project-actions-menu.tsx +0 -66
- package/src/components/ui/tu-do/projects/components/project-badges.tsx +0 -84
- package/src/components/ui/tu-do/projects/components/project-filter-menu.tsx +0 -170
- package/src/components/ui/tu-do/projects/components/project-grid-card.tsx +0 -198
- package/src/components/ui/tu-do/projects/components/project-list-item.tsx +0 -195
- package/src/components/ui/tu-do/projects/components/project-metrics.tsx +0 -87
- package/src/components/ui/tu-do/projects/components/project-progress-meter.tsx +0 -33
- package/src/components/ui/tu-do/projects/components/project-sort-menu.tsx +0 -71
- package/src/components/ui/tu-do/projects/components/projects-empty-state.tsx +0 -38
- package/src/components/ui/tu-do/projects/components/projects-loading-state.tsx +0 -26
- package/src/components/ui/tu-do/projects/components/projects-toolbar.tsx +0 -179
- package/src/components/ui/tu-do/projects/dialogs/create-project-dialog.tsx +0 -117
- package/src/components/ui/tu-do/projects/dialogs/edit-project-dialog.tsx +0 -125
- package/src/components/ui/tu-do/projects/dialogs/index.ts +0 -3
- package/src/components/ui/tu-do/projects/dialogs/manage-tasks-dialog.tsx +0 -205
- package/src/components/ui/tu-do/projects/hooks/index.ts +0 -2
- package/src/components/ui/tu-do/projects/hooks/use-project-filters.ts +0 -248
- package/src/components/ui/tu-do/projects/hooks/use-task-projects.ts +0 -238
- package/src/components/ui/tu-do/projects/projectId/components/__tests__/tasks-tab-layout.test.tsx +0 -169
- package/src/components/ui/tu-do/projects/projectId/components/documents-tab.tsx +0 -90
- package/src/components/ui/tu-do/projects/projectId/components/index.ts +0 -9
- package/src/components/ui/tu-do/projects/projectId/components/overview/description-card.tsx +0 -77
- package/src/components/ui/tu-do/projects/projectId/components/overview/linked-documents-card.tsx +0 -81
- package/src/components/ui/tu-do/projects/projectId/components/overview/linked-tasks-card.tsx +0 -85
- package/src/components/ui/tu-do/projects/projectId/components/overview/updates-card.tsx +0 -85
- package/src/components/ui/tu-do/projects/projectId/components/overview-tab.tsx +0 -35
- package/src/components/ui/tu-do/projects/projectId/components/project-configuration.tsx +0 -229
- package/src/components/ui/tu-do/projects/projectId/components/project-header.tsx +0 -115
- package/src/components/ui/tu-do/projects/projectId/components/project-lead-selector.tsx +0 -55
- package/src/components/ui/tu-do/projects/projectId/components/project-overview-context.tsx +0 -82
- package/src/components/ui/tu-do/projects/projectId/components/project-sidebar.tsx +0 -246
- package/src/components/ui/tu-do/projects/projectId/components/tasks-tab.tsx +0 -266
- package/src/components/ui/tu-do/projects/projectId/components/update-card.tsx +0 -162
- package/src/components/ui/tu-do/projects/projectId/components/updates-tab.tsx +0 -129
- package/src/components/ui/tu-do/projects/projectId/dialogs/index.ts +0 -1
- package/src/components/ui/tu-do/projects/projectId/dialogs/link-task-dialog.tsx +0 -114
- package/src/components/ui/tu-do/projects/projectId/hooks/index.ts +0 -4
- package/src/components/ui/tu-do/projects/projectId/hooks/use-animation-variants.ts +0 -68
- package/src/components/ui/tu-do/projects/projectId/hooks/use-project-form.ts +0 -214
- package/src/components/ui/tu-do/projects/projectId/hooks/use-project-updates.ts +0 -209
- package/src/components/ui/tu-do/projects/projectId/hooks/use-task-linking.ts +0 -101
- package/src/components/ui/tu-do/projects/projectId/task-project-detail-page-client.tsx +0 -93
- package/src/components/ui/tu-do/projects/projectId/task-project-detail-page.tsx +0 -78
- package/src/components/ui/tu-do/projects/projectId/task-project-detail.tsx +0 -367
- package/src/components/ui/tu-do/projects/projectId/types.ts +0 -51
- package/src/components/ui/tu-do/projects/task-projects-client.tsx +0 -270
- package/src/components/ui/tu-do/projects/task-projects-page.tsx +0 -97
- package/src/components/ui/tu-do/projects/types.ts +0 -62
- package/src/components/ui/tu-do/providers/__tests__/task-dialog-provider.test.tsx +0 -616
- package/src/components/ui/tu-do/providers/task-dialog-provider.tsx +0 -923
- package/src/components/ui/tu-do/providers/workspace-presence-provider.tsx +0 -88
- package/src/components/ui/tu-do/shared/AccessibleButton.tsx +0 -79
- package/src/components/ui/tu-do/shared/__tests__/assignee-select.test.tsx +0 -143
- package/src/components/ui/tu-do/shared/__tests__/board-client.test.tsx +0 -358
- package/src/components/ui/tu-do/shared/__tests__/board-header.test.tsx +0 -598
- package/src/components/ui/tu-do/shared/__tests__/board-query-cache.test.ts +0 -219
- package/src/components/ui/tu-do/shared/__tests__/board-switcher.test.tsx +0 -374
- package/src/components/ui/tu-do/shared/__tests__/board-views.test.tsx +0 -1288
- package/src/components/ui/tu-do/shared/__tests__/create-list-dialog.test.tsx +0 -118
- package/src/components/ui/tu-do/shared/__tests__/task-board-loading-state.test.tsx +0 -99
- package/src/components/ui/tu-do/shared/__tests__/task-cache-patches.test.ts +0 -147
- package/src/components/ui/tu-do/shared/__tests__/task-detail-page.test.tsx +0 -170
- package/src/components/ui/tu-do/shared/__tests__/task-dialog-manager.test.tsx +0 -945
- package/src/components/ui/tu-do/shared/__tests__/task-legacy-route-recovery.test.tsx +0 -101
- package/src/components/ui/tu-do/shared/__tests__/use-progressive-board-loader.test.tsx +0 -645
- package/src/components/ui/tu-do/shared/assignee-select.tsx +0 -592
- package/src/components/ui/tu-do/shared/board-broadcast-context.tsx +0 -45
- package/src/components/ui/tu-do/shared/board-client.tsx +0 -283
- package/src/components/ui/tu-do/shared/board-config-storage.ts +0 -94
- package/src/components/ui/tu-do/shared/board-header.tsx +0 -803
- package/src/components/ui/tu-do/shared/board-layout-settings.tsx +0 -1134
- package/src/components/ui/tu-do/shared/board-query-cache.ts +0 -157
- package/src/components/ui/tu-do/shared/board-switcher.tsx +0 -322
- package/src/components/ui/tu-do/shared/board-user-presence-avatars.tsx +0 -578
- package/src/components/ui/tu-do/shared/board-views.tsx +0 -1238
- package/src/components/ui/tu-do/shared/clear-menu-item.tsx +0 -34
- package/src/components/ui/tu-do/shared/create-list-dialog.tsx +0 -401
- package/src/components/ui/tu-do/shared/cursor-overlay-multi-wrapper.tsx +0 -245
- package/src/components/ui/tu-do/shared/cursor-overlay.tsx +0 -78
- package/src/components/ui/tu-do/shared/custom-date-picker/custom-date-picker-dialog.tsx +0 -157
- package/src/components/ui/tu-do/shared/description-overflow-warning-dialog.tsx +0 -68
- package/src/components/ui/tu-do/shared/edit-list-dialog.tsx +0 -383
- package/src/components/ui/tu-do/shared/empty-state-card.tsx +0 -46
- package/src/components/ui/tu-do/shared/estimation-mapping.test.ts +0 -32
- package/src/components/ui/tu-do/shared/estimation-mapping.ts +0 -74
- package/src/components/ui/tu-do/shared/estimation-utils.ts +0 -54
- package/src/components/ui/tu-do/shared/fade-setting-initializer.tsx +0 -61
- package/src/components/ui/tu-do/shared/label-chip.tsx +0 -46
- package/src/components/ui/tu-do/shared/list-view-context-menu.test.tsx +0 -203
- package/src/components/ui/tu-do/shared/list-view-sorting.test.ts +0 -50
- package/src/components/ui/tu-do/shared/list-view-sorting.ts +0 -108
- package/src/components/ui/tu-do/shared/list-view.tsx +0 -1248
- package/src/components/ui/tu-do/shared/mention-system/__tests__/mention-system.test.ts +0 -250
- package/src/components/ui/tu-do/shared/mention-system/mention-menu.tsx +0 -217
- package/src/components/ui/tu-do/shared/mention-system/types.ts +0 -141
- package/src/components/ui/tu-do/shared/mention-system/use-mention-suggestions.ts +0 -244
- package/src/components/ui/tu-do/shared/progressive-loader-context.tsx +0 -45
- package/src/components/ui/tu-do/shared/recent-sidebar-events.ts +0 -58
- package/src/components/ui/tu-do/shared/recycle-bin-panel.tsx +0 -651
- package/src/components/ui/tu-do/shared/relationship-task-identifier.ts +0 -14
- package/src/components/ui/tu-do/shared/slash-commands/__tests__/slash-commands.test.ts +0 -315
- package/src/components/ui/tu-do/shared/slash-commands/definitions.ts +0 -167
- package/src/components/ui/tu-do/shared/slash-commands/slash-command-menu.tsx +0 -114
- package/src/components/ui/tu-do/shared/special-task-list-pins.ts +0 -51
- package/src/components/ui/tu-do/shared/sync-warning-dialog.tsx +0 -133
- package/src/components/ui/tu-do/shared/task-board-errors.ts +0 -19
- package/src/components/ui/tu-do/shared/task-board-loading-state.tsx +0 -82
- package/src/components/ui/tu-do/shared/task-cache-patches.ts +0 -394
- package/src/components/ui/tu-do/shared/task-detail-page.tsx +0 -176
- package/src/components/ui/tu-do/shared/task-detail-server-page.tsx +0 -37
- package/src/components/ui/tu-do/shared/task-dialog-manager.tsx +0 -596
- package/src/components/ui/tu-do/shared/task-dialog-presentation.test.ts +0 -53
- package/src/components/ui/tu-do/shared/task-dialog-presentation.ts +0 -30
- package/src/components/ui/tu-do/shared/task-dialog-wrapper.tsx +0 -28
- package/src/components/ui/tu-do/shared/task-due-date-visibility.test.ts +0 -72
- package/src/components/ui/tu-do/shared/task-due-date-visibility.ts +0 -38
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/compact-task-create-popover.test.tsx +0 -325
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/compact-task-create-popover.tsx +0 -268
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/mobile-floating-save-button.tsx +0 -46
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/quick-settings-popover.tsx +0 -198
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/smart-task-suggestions-panel.test.tsx +0 -129
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/smart-task-suggestions-panel.tsx +0 -358
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-description-editor.tsx +0 -496
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-dialog-header.tsx +0 -545
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-picker-panel.tsx +0 -220
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-selector.tsx +0 -165
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-trigger-styles.ts +0 -69
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.test.tsx +0 -180
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.tsx +0 -218
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-suggestion-menus.tsx +0 -148
- package/src/components/ui/tu-do/shared/task-edit-dialog/constants.ts +0 -18
- package/src/components/ui/tu-do/shared/task-edit-dialog/context-menu-guard.test.ts +0 -37
- package/src/components/ui/tu-do/shared/task-edit-dialog/description-diff-viewer.tsx +0 -1665
- package/src/components/ui/tu-do/shared/task-edit-dialog/description-versions.test.ts +0 -97
- package/src/components/ui/tu-do/shared/task-edit-dialog/description-versions.ts +0 -210
- package/src/components/ui/tu-do/shared/task-edit-dialog/field-diff-viewer.tsx +0 -716
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-close.test.ts +0 -218
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-keyboard-shortcuts.test.ts +0 -140
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-mutations.test.tsx +0 -231
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-overrides.test.ts +0 -412
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-realtime-sync.test.tsx +0 -237
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-yjs-sync.test.ts +0 -190
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-update-shared-task.test.ts +0 -107
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/task-api.test.ts +0 -171
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/task-api.ts +0 -296
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-editor-commands.ts +0 -314
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-suggestion-menus.ts +0 -503
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-change-detection.ts +0 -175
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-data.ts +0 -401
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dependencies.ts +0 -773
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-close.ts +0 -193
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-keyboard-shortcuts.ts +0 -365
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-reset.ts +0 -231
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-state.ts +0 -307
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-mutations.ts +0 -609
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-overrides.ts +0 -134
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-realtime-sync.ts +0 -270
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.test.tsx +0 -212
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.ts +0 -554
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-revert.ts +0 -140
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.test.ts +0 -289
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.ts +0 -1473
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-snapshot.ts +0 -59
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-yjs-sync.ts +0 -224
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-update-shared-task.ts +0 -60
- package/src/components/ui/tu-do/shared/task-edit-dialog/personal-overrides-section.tsx +0 -368
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/clickable-task-item.tsx +0 -90
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/index.ts +0 -4
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/subtask-action-buttons.tsx +0 -140
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/tab-button.tsx +0 -76
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/task-relationship-action-buttons.tsx +0 -178
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/dependencies-section.tsx +0 -140
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/index.ts +0 -35
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/parent-section.tsx +0 -70
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/related-section.tsx +0 -81
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/subtasks-section.tsx +0 -87
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/task-search-popover.tsx +0 -229
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/types/task-relationships.types.ts +0 -194
- package/src/components/ui/tu-do/shared/task-edit-dialog/selective-revert-panel.test.tsx +0 -91
- package/src/components/ui/tu-do/shared/task-edit-dialog/selective-revert-panel.tsx +0 -365
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-activity-section.tsx +0 -802
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-delete-dialog.tsx +0 -104
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-description-change-dialog.test.tsx +0 -63
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-description-change-dialog.tsx +0 -218
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-description-restore-banner.tsx +0 -83
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-description-version-restore-dialog.test.tsx +0 -120
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-description-version-restore-dialog.tsx +0 -180
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-dialog-actions.test.tsx +0 -68
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-dialog-actions.tsx +0 -239
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-instances-section.tsx +0 -173
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-properties-section.test.tsx +0 -303
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-properties-section.tsx +0 -2213
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-relationships-properties.tsx +0 -315
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-snapshot-dialog.tsx +0 -167
- package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.test.ts +0 -52
- package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.ts +0 -134
- package/src/components/ui/tu-do/shared/task-edit-dialog/types.ts +0 -64
- package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.test.ts +0 -58
- package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.ts +0 -45
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.test.ts +0 -98
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.ts +0 -39
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils.test.ts +0 -504
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils.ts +0 -582
- package/src/components/ui/tu-do/shared/task-edit-dialog/yjs-prosemirror-compat.test.ts +0 -65
- package/src/components/ui/tu-do/shared/task-edit-dialog.tsx +0 -3196
- package/src/components/ui/tu-do/shared/task-estimation-display.tsx +0 -52
- package/src/components/ui/tu-do/shared/task-estimation-picker.tsx +0 -226
- package/src/components/ui/tu-do/shared/task-filter.types.ts +0 -65
- package/src/components/ui/tu-do/shared/task-label-selector.tsx +0 -217
- package/src/components/ui/tu-do/shared/task-labels-display.test.tsx +0 -51
- package/src/components/ui/tu-do/shared/task-labels-display.tsx +0 -119
- package/src/components/ui/tu-do/shared/task-legacy-route-recovery.tsx +0 -65
- package/src/components/ui/tu-do/shared/task-projects-display.tsx +0 -80
- package/src/components/ui/tu-do/shared/task-quick-create-target-list.ts +0 -20
- package/src/components/ui/tu-do/shared/task-resource-search-field.tsx +0 -49
- package/src/components/ui/tu-do/shared/task-resource-search-filters.ts +0 -27
- package/src/components/ui/tu-do/shared/task-row-actions-menu.test.tsx +0 -138
- package/src/components/ui/tu-do/shared/task-row-actions-menu.tsx +0 -402
- package/src/components/ui/tu-do/shared/task-share-dialog/components/share-link-settings.tsx +0 -86
- package/src/components/ui/tu-do/shared/task-share-dialog/components/shares-list.tsx +0 -85
- package/src/components/ui/tu-do/shared/task-share-dialog/hooks/use-task-sharing.ts +0 -296
- package/src/components/ui/tu-do/shared/task-share-dialog.tsx +0 -144
- package/src/components/ui/tu-do/shared/task-sound-effects.test.ts +0 -189
- package/src/components/ui/tu-do/shared/task-sound-effects.tsx +0 -468
- package/src/components/ui/tu-do/shared/task-url.ts +0 -56
- package/src/components/ui/tu-do/shared/text-diff-viewer.tsx +0 -55
- package/src/components/ui/tu-do/shared/types.ts +0 -14
- package/src/components/ui/tu-do/shared/unsaved-changes-warning-dialog.tsx +0 -71
- package/src/components/ui/tu-do/shared/use-progressive-board-loader.ts +0 -312
- package/src/components/ui/tu-do/shared/user-avatar.tsx +0 -46
- package/src/components/ui/tu-do/shared/user-presence-avatars.tsx +0 -415
- package/src/components/ui/tu-do/shared/utils/translate-task-list-display-name.ts +0 -28
- package/src/components/ui/tu-do/tasks-route-context.tsx +0 -50
- package/src/components/ui/tu-do/templates/client.tsx +0 -505
- package/src/components/ui/tu-do/templates/marketplace/client.tsx +0 -487
- package/src/components/ui/tu-do/templates/marketplace/task-marketplace-page.tsx +0 -169
- package/src/components/ui/tu-do/templates/save-as-template-dialog.tsx +0 -381
- package/src/components/ui/tu-do/templates/task-template-api.ts +0 -142
- package/src/components/ui/tu-do/templates/task-template-card.tsx +0 -118
- package/src/components/ui/tu-do/templates/task-template-client.test.tsx +0 -52
- package/src/components/ui/tu-do/templates/task-template-client.tsx +0 -258
- package/src/components/ui/tu-do/templates/task-template-dialogs.test.tsx +0 -167
- package/src/components/ui/tu-do/templates/task-template-dialogs.tsx +0 -376
- package/src/components/ui/tu-do/templates/task-templates-hub.test.tsx +0 -114
- package/src/components/ui/tu-do/templates/task-templates-hub.tsx +0 -53
- package/src/components/ui/tu-do/templates/task-templates-page.tsx +0 -157
- package/src/components/ui/tu-do/templates/templateId/client.tsx +0 -674
- package/src/components/ui/tu-do/templates/templateId/edit-template-dialog.tsx +0 -300
- package/src/components/ui/tu-do/templates/templateId/share-template-dialog.tsx +0 -261
- package/src/components/ui/tu-do/templates/templateId/task-template-detail-page-client.tsx +0 -127
- package/src/components/ui/tu-do/templates/templateId/task-template-detail-page.tsx +0 -89
- package/src/components/ui/tu-do/templates/templateId/use-template-dialog.tsx +0 -165
- package/src/components/ui/tu-do/templates/types.ts +0 -53
- package/src/components/ui/tu-do/utils/__tests__/label-colors.test.ts +0 -43
- package/src/components/ui/tu-do/utils/__tests__/taskColorUtils.test.ts +0 -267
- package/src/components/ui/tu-do/utils/__tests__/taskConstants.test.ts +0 -178
- package/src/components/ui/tu-do/utils/__tests__/taskDateUtils.test.ts +0 -226
- package/src/components/ui/tu-do/utils/__tests__/weekDateUtils.test.ts +0 -182
- package/src/components/ui/tu-do/utils/label-colors.test.ts +0 -15
- package/src/components/ui/tu-do/utils/label-colors.ts +0 -59
- package/src/components/ui/tu-do/utils/taskColorUtils.ts +0 -116
- package/src/components/ui/tu-do/utils/taskConstants.ts +0 -102
- package/src/components/ui/tu-do/utils/taskDateUtils.ts +0 -81
- package/src/components/ui/tu-do/utils/taskPriorityUtils.tsx +0 -80
- package/src/components/ui/tu-do/utils/weekDateUtils.ts +0 -64
- package/src/hooks/__tests__/use-task-actions.test.tsx +0 -2098
- package/src/hooks/__tests__/useBoardPresence.test.tsx +0 -191
- package/src/hooks/__tests__/useBoardRealtime.test.tsx +0 -1036
- package/src/hooks/__tests__/useCursorTracking.test.tsx +0 -212
- package/src/hooks/task-actions-personal-external.ts +0 -313
- package/src/hooks/use-task-actions.ts +0 -1910
- package/src/hooks/useBoardPresence.ts +0 -364
- package/src/hooks/useBoardRealtime.ts +0 -428
- package/src/hooks/useBoardRealtime.types.ts +0 -56
- package/src/hooks/useBoardRealtimeEventHandler.ts +0 -452
- package/src/hooks/useCursorTracking.ts +0 -402
- package/src/hooks/usePresence.ts +0 -272
- package/src/hooks/useTaskUserRealtime.ts +0 -340
- /package/src/{components/ui/tu-do/shared → lib}/task-open-events.ts +0 -0
|
@@ -1,1397 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { useQuery, useQueryClient } from '@tanstack/react-query';
|
|
4
|
-
import type { Editor } from '@tiptap/react';
|
|
5
|
-
import {
|
|
6
|
-
AlertCircle,
|
|
7
|
-
Ban,
|
|
8
|
-
CheckCircle2,
|
|
9
|
-
CircleSlash,
|
|
10
|
-
Copy,
|
|
11
|
-
ExternalLink,
|
|
12
|
-
Trash2,
|
|
13
|
-
} from '@tuturuuu/icons';
|
|
14
|
-
import {
|
|
15
|
-
cleanupWorkspaceTaskMentions,
|
|
16
|
-
listWorkspaceTaskLists,
|
|
17
|
-
listWorkspaceTaskProjects,
|
|
18
|
-
} from '@tuturuuu/internal-api';
|
|
19
|
-
import type { Task } from '@tuturuuu/types/primitives/Task';
|
|
20
|
-
import type { TaskList } from '@tuturuuu/types/primitives/TaskList';
|
|
21
|
-
import { useWorkspaceMembers } from '@tuturuuu/ui/hooks/use-workspace-members';
|
|
22
|
-
import { cn } from '@tuturuuu/utils/format';
|
|
23
|
-
import {
|
|
24
|
-
useBoardConfig,
|
|
25
|
-
useWorkspaceLabels,
|
|
26
|
-
} from '@tuturuuu/utils/task-helper';
|
|
27
|
-
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
28
|
-
import { useDomResolvedTheme } from '../../../hooks/use-dom-resolved-theme';
|
|
29
|
-
import { useTaskActions } from '../../../hooks/use-task-actions';
|
|
30
|
-
import { Avatar, AvatarFallback, AvatarImage } from '../avatar';
|
|
31
|
-
import { Badge } from '../badge';
|
|
32
|
-
import {
|
|
33
|
-
DropdownMenu,
|
|
34
|
-
DropdownMenuContent,
|
|
35
|
-
DropdownMenuItem,
|
|
36
|
-
DropdownMenuSeparator,
|
|
37
|
-
DropdownMenuTrigger,
|
|
38
|
-
} from '../dropdown-menu';
|
|
39
|
-
import { toast } from '../sonner';
|
|
40
|
-
import {
|
|
41
|
-
TaskAssigneesMenu,
|
|
42
|
-
TaskBlockingMenu,
|
|
43
|
-
TaskDueDateMenu,
|
|
44
|
-
TaskEstimationMenu,
|
|
45
|
-
TaskLabelsMenu,
|
|
46
|
-
TaskMoveMenu,
|
|
47
|
-
TaskParentMenu,
|
|
48
|
-
TaskPriorityMenu,
|
|
49
|
-
TaskProjectsMenu,
|
|
50
|
-
TaskRelatedMenu,
|
|
51
|
-
} from '../tu-do/boards/boardId/menus';
|
|
52
|
-
import { TaskCustomDateDialog } from '../tu-do/boards/boardId/task-dialogs/TaskCustomDateDialog';
|
|
53
|
-
import { TaskDeleteDialog } from '../tu-do/boards/boardId/task-dialogs/TaskDeleteDialog';
|
|
54
|
-
import { TaskNewLabelDialog } from '../tu-do/boards/boardId/task-dialogs/TaskNewLabelDialog';
|
|
55
|
-
import { TaskNewProjectDialog } from '../tu-do/boards/boardId/task-dialogs/TaskNewProjectDialog';
|
|
56
|
-
import { useTaskCardRelationships } from '../tu-do/hooks/useTaskCardRelationships';
|
|
57
|
-
import { useTaskLabelManagement } from '../tu-do/hooks/useTaskLabelManagement';
|
|
58
|
-
import { useTaskProjectManagement } from '../tu-do/hooks/useTaskProjectManagement';
|
|
59
|
-
import { CreateListDialog } from '../tu-do/shared/create-list-dialog';
|
|
60
|
-
import { buildWorkspaceTaskUrl } from '../tu-do/shared/task-url';
|
|
61
|
-
import { computeAccessibleLabelStyles } from '../tu-do/utils/label-colors';
|
|
62
|
-
import {
|
|
63
|
-
getAssigneeInitials,
|
|
64
|
-
getTicketBadgeColorClasses,
|
|
65
|
-
} from '../tu-do/utils/taskColorUtils';
|
|
66
|
-
import { getPriorityIcon } from '../tu-do/utils/taskPriorityUtils';
|
|
67
|
-
import {
|
|
68
|
-
getRouteTaskBoardIdFromPathname,
|
|
69
|
-
getRouteWorkspaceIdFromPathname,
|
|
70
|
-
resolveTaskMentionPayload,
|
|
71
|
-
} from './task-mention-resolution';
|
|
72
|
-
import { TaskSummaryPopover } from './task-summary-popover';
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* Remove all mention nodes for a specific task from the editor
|
|
76
|
-
* @param editor - The Tiptap editor instance
|
|
77
|
-
* @param taskId - The ID of the task to remove mentions for
|
|
78
|
-
* @returns Number of mentions removed
|
|
79
|
-
*/
|
|
80
|
-
const removeTaskMentionsFromEditor = (
|
|
81
|
-
editor: Editor,
|
|
82
|
-
taskId: string
|
|
83
|
-
): number => {
|
|
84
|
-
let removedCount = 0;
|
|
85
|
-
|
|
86
|
-
// Use a single transaction to delete all mentions
|
|
87
|
-
editor.commands.command(({ tr, state }) => {
|
|
88
|
-
const nodesToDelete: Array<{ from: number; to: number }> = [];
|
|
89
|
-
|
|
90
|
-
// Find all mention nodes for this task
|
|
91
|
-
state.doc.descendants((node, pos) => {
|
|
92
|
-
if (
|
|
93
|
-
node.type.name === 'mention' &&
|
|
94
|
-
node.attrs.entityType === 'task' &&
|
|
95
|
-
node.attrs.entityId === taskId
|
|
96
|
-
) {
|
|
97
|
-
nodesToDelete.push({ from: pos, to: pos + node.nodeSize });
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
|
|
101
|
-
// Delete in reverse order to maintain correct positions
|
|
102
|
-
// When deleting from end to start, earlier positions remain valid
|
|
103
|
-
nodesToDelete
|
|
104
|
-
.sort((a, b) => b.from - a.from) // Sort by position descending
|
|
105
|
-
.forEach(({ from, to }) => {
|
|
106
|
-
tr.delete(from, to);
|
|
107
|
-
removedCount++;
|
|
108
|
-
});
|
|
109
|
-
|
|
110
|
-
return true;
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
return removedCount;
|
|
114
|
-
};
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* Clean up task mentions from all other tasks in the workspace (non-blocking background operation)
|
|
118
|
-
* @param deletedTaskId - The ID of the deleted task
|
|
119
|
-
* @param wsId - The workspace ID
|
|
120
|
-
* @param queryClient - The React Query client for cache invalidation
|
|
121
|
-
*/
|
|
122
|
-
const cleanupTaskMentionsGlobally = async (
|
|
123
|
-
deletedTaskId: string,
|
|
124
|
-
wsId: string,
|
|
125
|
-
_queryClient: ReturnType<typeof useQueryClient>
|
|
126
|
-
): Promise<void> => {
|
|
127
|
-
try {
|
|
128
|
-
await cleanupWorkspaceTaskMentions(wsId, deletedTaskId);
|
|
129
|
-
} catch (error) {
|
|
130
|
-
console.error('Failed to clean up task mentions globally:', error);
|
|
131
|
-
}
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
// Extended Task type that includes board_id (denormalized field in database)
|
|
135
|
-
interface TaskWithBoardId extends Task {
|
|
136
|
-
board_id: string;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
interface TaskMentionChipProps {
|
|
140
|
-
entityId: string;
|
|
141
|
-
displayNumber: string;
|
|
142
|
-
avatarUrl?: string | null;
|
|
143
|
-
subtitle?: string | null;
|
|
144
|
-
workspaceId?: string | null;
|
|
145
|
-
className?: string;
|
|
146
|
-
editor?: Editor | null;
|
|
147
|
-
onResolvedTaskMention?: (attrs: {
|
|
148
|
-
avatarUrl?: string | null;
|
|
149
|
-
displayName: string;
|
|
150
|
-
entityId: string;
|
|
151
|
-
priority?: string | null;
|
|
152
|
-
subtitle?: string | null;
|
|
153
|
-
workspaceId?: string | null;
|
|
154
|
-
}) => void;
|
|
155
|
-
/** Optional translations for dialogs (for use in isolated React roots) */
|
|
156
|
-
translations?: {
|
|
157
|
-
// TaskDeleteDialog
|
|
158
|
-
delete_task?: string;
|
|
159
|
-
delete_task_confirmation?: string | ((name: string) => string);
|
|
160
|
-
cancel?: string;
|
|
161
|
-
deleting?: string;
|
|
162
|
-
// TaskCustomDateDialog
|
|
163
|
-
set_custom_due_date?: string;
|
|
164
|
-
custom_due_date_description?: string;
|
|
165
|
-
remove_due_date?: string;
|
|
166
|
-
// TaskNewLabelDialog
|
|
167
|
-
create_new_label?: string;
|
|
168
|
-
create_new_label_description?: string;
|
|
169
|
-
label_name?: string;
|
|
170
|
-
color?: string;
|
|
171
|
-
preview?: string;
|
|
172
|
-
creating?: string;
|
|
173
|
-
create_label?: string;
|
|
174
|
-
// TaskNewProjectDialog
|
|
175
|
-
create_new_project?: string;
|
|
176
|
-
create_new_project_description?: string;
|
|
177
|
-
project_name?: string;
|
|
178
|
-
create_project?: string;
|
|
179
|
-
// TaskLabelsDisplay
|
|
180
|
-
hidden_labels?: string;
|
|
181
|
-
};
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
export function TaskMentionChip({
|
|
185
|
-
entityId,
|
|
186
|
-
displayNumber,
|
|
187
|
-
avatarUrl,
|
|
188
|
-
subtitle,
|
|
189
|
-
className,
|
|
190
|
-
editor: editorProp,
|
|
191
|
-
onResolvedTaskMention,
|
|
192
|
-
translations,
|
|
193
|
-
}: TaskMentionChipProps) {
|
|
194
|
-
const [menuOpen, setMenuOpen] = useState(false);
|
|
195
|
-
const [popoverOpen, setPopoverOpen] = useState(false);
|
|
196
|
-
const [isLoading, setIsLoading] = useState(false);
|
|
197
|
-
const [menuGuardUntil, setMenuGuardUntil] = useState(0);
|
|
198
|
-
const resolvedMentionRef = useRef<string | null>(null);
|
|
199
|
-
const dropdownTriggerRef = useRef<HTMLButtonElement>(null);
|
|
200
|
-
const queryClient = useQueryClient();
|
|
201
|
-
const routeWsId = useMemo(() => {
|
|
202
|
-
if (typeof window === 'undefined') {
|
|
203
|
-
return undefined;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
return getRouteWorkspaceIdFromPathname(window.location.pathname);
|
|
207
|
-
}, []);
|
|
208
|
-
const routeBoardId = useMemo(() => {
|
|
209
|
-
if (typeof window === 'undefined') {
|
|
210
|
-
return undefined;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
return getRouteTaskBoardIdFromPathname(window.location.pathname);
|
|
214
|
-
}, []);
|
|
215
|
-
const resolutionWorkspaceId = routeWsId;
|
|
216
|
-
const taskMentionQueryKey = useMemo(
|
|
217
|
-
() => [
|
|
218
|
-
'task',
|
|
219
|
-
'mention',
|
|
220
|
-
entityId,
|
|
221
|
-
resolutionWorkspaceId ?? null,
|
|
222
|
-
routeBoardId ?? null,
|
|
223
|
-
displayNumber.trim(),
|
|
224
|
-
subtitle?.trim() ?? null,
|
|
225
|
-
],
|
|
226
|
-
[displayNumber, entityId, resolutionWorkspaceId, routeBoardId, subtitle]
|
|
227
|
-
);
|
|
228
|
-
const isDark = useDomResolvedTheme() === 'dark';
|
|
229
|
-
|
|
230
|
-
// Dialog states
|
|
231
|
-
const [showDeleteDialog, setShowDeleteDialog] = useState(false);
|
|
232
|
-
const [showCustomDateDialog, setShowCustomDateDialog] = useState(false);
|
|
233
|
-
const [showCreateListDialog, setShowCreateListDialog] = useState(false);
|
|
234
|
-
const [showNewLabelDialog, setShowNewLabelDialog] = useState(false);
|
|
235
|
-
const [showNewProjectDialog, setShowNewProjectDialog] = useState(false);
|
|
236
|
-
|
|
237
|
-
// Fetch full task data - load immediately to show priority, assignees, and colors
|
|
238
|
-
const {
|
|
239
|
-
data: taskPayload,
|
|
240
|
-
isLoading: taskLoading,
|
|
241
|
-
error: taskError,
|
|
242
|
-
} = useQuery({
|
|
243
|
-
queryKey: taskMentionQueryKey,
|
|
244
|
-
queryFn: async () => {
|
|
245
|
-
return resolveTaskMentionPayload({
|
|
246
|
-
displayNumber,
|
|
247
|
-
entityId,
|
|
248
|
-
routeBoardId,
|
|
249
|
-
routeWorkspaceId: resolutionWorkspaceId,
|
|
250
|
-
subtitle,
|
|
251
|
-
});
|
|
252
|
-
},
|
|
253
|
-
enabled: true, // Always load to show inline metadata
|
|
254
|
-
staleTime: 30000,
|
|
255
|
-
retry: false,
|
|
256
|
-
});
|
|
257
|
-
|
|
258
|
-
const task = taskPayload?.task as TaskWithBoardId | undefined;
|
|
259
|
-
const resolvedTaskId = task?.id ?? entityId;
|
|
260
|
-
const taskWorkspaceId = taskPayload?.taskWsId;
|
|
261
|
-
const taskWorkspacePersonal = taskPayload?.taskWorkspacePersonal;
|
|
262
|
-
const canonicalWorkspaceId = taskWorkspaceId ?? routeWsId;
|
|
263
|
-
const boardWorkspaceId = canonicalWorkspaceId;
|
|
264
|
-
const resolvedTaskBelongsToRouteWorkspace = useMemo(() => {
|
|
265
|
-
if (!routeWsId || !taskWorkspaceId) {
|
|
266
|
-
return false;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
if (taskWorkspaceId === routeWsId) {
|
|
270
|
-
return true;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
return routeWsId === 'personal' && taskWorkspacePersonal === true;
|
|
274
|
-
}, [routeWsId, taskWorkspaceId, taskWorkspacePersonal]);
|
|
275
|
-
|
|
276
|
-
// Get board config - only fetch when menu opens and we have task data
|
|
277
|
-
const { data: boardConfig } = useBoardConfig(
|
|
278
|
-
task?.board_id,
|
|
279
|
-
boardWorkspaceId
|
|
280
|
-
);
|
|
281
|
-
const actionWorkspaceId = boardConfig?.ws_id ?? canonicalWorkspaceId;
|
|
282
|
-
|
|
283
|
-
// Fetch workspace labels
|
|
284
|
-
const { data: workspaceLabels = [], isLoading: labelsLoading } =
|
|
285
|
-
useWorkspaceLabels(actionWorkspaceId);
|
|
286
|
-
|
|
287
|
-
// Fetch workspace projects
|
|
288
|
-
const { data: workspaceProjects = [], isLoading: projectsLoading } = useQuery(
|
|
289
|
-
{
|
|
290
|
-
queryKey: ['task_projects', actionWorkspaceId],
|
|
291
|
-
queryFn: async () => {
|
|
292
|
-
if (!actionWorkspaceId) return [];
|
|
293
|
-
const data = await listWorkspaceTaskProjects(actionWorkspaceId);
|
|
294
|
-
return data.filter((project) => project.status !== 'deleted');
|
|
295
|
-
},
|
|
296
|
-
enabled: !!actionWorkspaceId && menuOpen,
|
|
297
|
-
staleTime: 10 * 60 * 1000,
|
|
298
|
-
}
|
|
299
|
-
);
|
|
300
|
-
|
|
301
|
-
// Fetch workspace members
|
|
302
|
-
const { data: workspaceMembers = [], isLoading: membersLoading } =
|
|
303
|
-
useWorkspaceMembers(actionWorkspaceId, {
|
|
304
|
-
enabled: !!actionWorkspaceId && menuOpen, // Only needed for editing
|
|
305
|
-
});
|
|
306
|
-
|
|
307
|
-
// Fetch available task lists - enable when we have task data to get current list color
|
|
308
|
-
const { data: availableLists = [] } = useQuery({
|
|
309
|
-
queryKey: ['task_lists', task?.board_id, actionWorkspaceId],
|
|
310
|
-
queryFn: async () => {
|
|
311
|
-
if (taskPayload?.availableLists?.length) {
|
|
312
|
-
return taskPayload.availableLists as TaskList[];
|
|
313
|
-
}
|
|
314
|
-
if (!task?.board_id || !actionWorkspaceId) return [];
|
|
315
|
-
const payload = await listWorkspaceTaskLists(
|
|
316
|
-
actionWorkspaceId,
|
|
317
|
-
task.board_id
|
|
318
|
-
);
|
|
319
|
-
return payload.lists as TaskList[];
|
|
320
|
-
},
|
|
321
|
-
enabled: !!task?.board_id, // Load when we have task data
|
|
322
|
-
staleTime: 10 * 60 * 1000,
|
|
323
|
-
});
|
|
324
|
-
|
|
325
|
-
// Get current task's list for color rendering
|
|
326
|
-
const currentTaskList = useMemo(() => {
|
|
327
|
-
if (!task || !availableLists.length) return null;
|
|
328
|
-
return availableLists.find((list) => list.id === task.list_id) || null;
|
|
329
|
-
}, [task, availableLists]);
|
|
330
|
-
|
|
331
|
-
// Placeholder task for hooks when task is not loaded yet
|
|
332
|
-
const placeholderTask: Task = useMemo(
|
|
333
|
-
() => ({
|
|
334
|
-
id: entityId,
|
|
335
|
-
name: displayNumber,
|
|
336
|
-
list_id: '',
|
|
337
|
-
display_number: 0,
|
|
338
|
-
created_at: new Date().toISOString(),
|
|
339
|
-
}),
|
|
340
|
-
[entityId, displayNumber]
|
|
341
|
-
);
|
|
342
|
-
|
|
343
|
-
// Use label management hook - only when we have task
|
|
344
|
-
const {
|
|
345
|
-
toggleTaskLabel: baseToggleTaskLabel,
|
|
346
|
-
createNewLabel: baseCreateNewLabel,
|
|
347
|
-
newLabelName,
|
|
348
|
-
setNewLabelName,
|
|
349
|
-
newLabelColor,
|
|
350
|
-
setNewLabelColor,
|
|
351
|
-
creatingLabel,
|
|
352
|
-
} = useTaskLabelManagement({
|
|
353
|
-
task: task ?? placeholderTask,
|
|
354
|
-
boardId: task?.board_id || '',
|
|
355
|
-
workspaceLabels,
|
|
356
|
-
workspaceId: actionWorkspaceId,
|
|
357
|
-
selectedTasks: undefined,
|
|
358
|
-
isMultiSelectMode: false,
|
|
359
|
-
onClearSelection: undefined,
|
|
360
|
-
taskId: resolvedTaskId, // Pass resolved task ID to sync individual task cache
|
|
361
|
-
});
|
|
362
|
-
|
|
363
|
-
// Use project management hook - only when we have task
|
|
364
|
-
const {
|
|
365
|
-
toggleTaskProject: baseToggleTaskProject,
|
|
366
|
-
newProjectName,
|
|
367
|
-
setNewProjectName,
|
|
368
|
-
creatingProject,
|
|
369
|
-
createNewProject: baseCreateNewProject,
|
|
370
|
-
} = useTaskProjectManagement({
|
|
371
|
-
task: task ?? placeholderTask,
|
|
372
|
-
boardId: task?.board_id || '',
|
|
373
|
-
workspaceProjects,
|
|
374
|
-
workspaceId: actionWorkspaceId,
|
|
375
|
-
selectedTasks: undefined,
|
|
376
|
-
isMultiSelectMode: false,
|
|
377
|
-
onClearSelection: undefined,
|
|
378
|
-
taskId: resolvedTaskId, // Pass resolved task ID to sync individual task cache
|
|
379
|
-
});
|
|
380
|
-
|
|
381
|
-
// Use task relationships hook - only when we have task
|
|
382
|
-
const {
|
|
383
|
-
parentTask,
|
|
384
|
-
childTasks,
|
|
385
|
-
blocking: blockingTasks,
|
|
386
|
-
blockedBy: blockedByTasks,
|
|
387
|
-
relatedTasks,
|
|
388
|
-
setParentTask,
|
|
389
|
-
removeParentTask,
|
|
390
|
-
addBlockingTask,
|
|
391
|
-
removeBlockingTask,
|
|
392
|
-
addBlockedByTask,
|
|
393
|
-
removeBlockedByTask,
|
|
394
|
-
addRelatedTask,
|
|
395
|
-
removeRelatedTask,
|
|
396
|
-
isSaving: relationshipSaving,
|
|
397
|
-
savingTaskId: relationshipSavingTaskId,
|
|
398
|
-
} = useTaskCardRelationships({
|
|
399
|
-
taskId: task?.id || '',
|
|
400
|
-
boardId: task?.board_id || '',
|
|
401
|
-
wsId: actionWorkspaceId,
|
|
402
|
-
});
|
|
403
|
-
|
|
404
|
-
const targetCompletionList = useMemo(() => {
|
|
405
|
-
if (!task) return null;
|
|
406
|
-
const doneList = availableLists.find((list) => list.status === 'done');
|
|
407
|
-
const closedList = availableLists.find((list) => list.status === 'closed');
|
|
408
|
-
return doneList || closedList || null;
|
|
409
|
-
}, [availableLists, task]);
|
|
410
|
-
|
|
411
|
-
const targetClosedList = useMemo(() => {
|
|
412
|
-
if (!task) return null;
|
|
413
|
-
return availableLists.find((list) => list.status === 'closed') || null;
|
|
414
|
-
}, [availableLists, task]);
|
|
415
|
-
|
|
416
|
-
const handleUpdate = useCallback(() => {
|
|
417
|
-
queryClient.invalidateQueries({ queryKey: ['task', 'mention'] });
|
|
418
|
-
queryClient.invalidateQueries({ queryKey: ['task', entityId] });
|
|
419
|
-
if (resolvedTaskId !== entityId) {
|
|
420
|
-
queryClient.invalidateQueries({ queryKey: ['task', resolvedTaskId] });
|
|
421
|
-
}
|
|
422
|
-
if (task?.board_id) {
|
|
423
|
-
queryClient.invalidateQueries({ queryKey: ['tasks', task.board_id] });
|
|
424
|
-
}
|
|
425
|
-
}, [queryClient, entityId, resolvedTaskId, task?.board_id]);
|
|
426
|
-
|
|
427
|
-
// Helper to sync individual task cache with updates
|
|
428
|
-
// Supports both direct updates and functional updates for operations that depend on current state
|
|
429
|
-
const syncTaskCache = useCallback(
|
|
430
|
-
(
|
|
431
|
-
updatesOrFn:
|
|
432
|
-
| Partial<TaskWithBoardId>
|
|
433
|
-
| ((current: TaskWithBoardId) => Partial<TaskWithBoardId>)
|
|
434
|
-
) => {
|
|
435
|
-
const cacheTaskIds = Array.from(new Set([entityId, resolvedTaskId]));
|
|
436
|
-
|
|
437
|
-
for (const cacheTaskId of cacheTaskIds) {
|
|
438
|
-
queryClient.setQueryData(
|
|
439
|
-
['task', cacheTaskId],
|
|
440
|
-
(old: TaskWithBoardId | undefined) => {
|
|
441
|
-
if (!old) return old;
|
|
442
|
-
const updates =
|
|
443
|
-
typeof updatesOrFn === 'function'
|
|
444
|
-
? updatesOrFn(old)
|
|
445
|
-
: updatesOrFn;
|
|
446
|
-
return { ...old, ...updates };
|
|
447
|
-
}
|
|
448
|
-
);
|
|
449
|
-
}
|
|
450
|
-
},
|
|
451
|
-
[queryClient, entityId, resolvedTaskId]
|
|
452
|
-
);
|
|
453
|
-
|
|
454
|
-
// Use task actions hook - only when we have task
|
|
455
|
-
const {
|
|
456
|
-
handleMoveToCompletion: baseHandleMoveToCompletion,
|
|
457
|
-
handleMoveToClose: baseHandleMoveToClose,
|
|
458
|
-
handleDelete: baseHandleDelete,
|
|
459
|
-
handleMoveToList: baseHandleMoveToList,
|
|
460
|
-
handleDueDateChange: baseHandleDueDateChange,
|
|
461
|
-
handlePriorityChange: baseHandlePriorityChange,
|
|
462
|
-
updateEstimationPoints: baseUpdateEstimationPoints,
|
|
463
|
-
handleCustomDateChange: baseHandleCustomDateChange,
|
|
464
|
-
handleToggleAssignee: baseHandleToggleAssignee,
|
|
465
|
-
} = useTaskActions({
|
|
466
|
-
task: task || undefined,
|
|
467
|
-
boardId: task?.board_id || '',
|
|
468
|
-
workspaceId: actionWorkspaceId,
|
|
469
|
-
targetCompletionList,
|
|
470
|
-
targetClosedList,
|
|
471
|
-
availableLists,
|
|
472
|
-
onUpdate: handleUpdate,
|
|
473
|
-
setIsLoading,
|
|
474
|
-
setMenuOpen,
|
|
475
|
-
setCustomDateDialogOpen: setShowCustomDateDialog,
|
|
476
|
-
setDeleteDialogOpen: setShowDeleteDialog,
|
|
477
|
-
setEstimationSaving: () => {},
|
|
478
|
-
selectedTasks: undefined,
|
|
479
|
-
isMultiSelectMode: false,
|
|
480
|
-
onClearSelection: undefined,
|
|
481
|
-
taskId: resolvedTaskId, // Pass resolved task ID to sync individual task cache
|
|
482
|
-
});
|
|
483
|
-
|
|
484
|
-
// Wrap handlers to also sync individual task cache
|
|
485
|
-
const handleMoveToCompletion = useCallback(async () => {
|
|
486
|
-
if (targetCompletionList) {
|
|
487
|
-
syncTaskCache({
|
|
488
|
-
list_id: targetCompletionList.id,
|
|
489
|
-
closed_at: new Date().toISOString(),
|
|
490
|
-
completed_at:
|
|
491
|
-
targetCompletionList.status === 'done'
|
|
492
|
-
? new Date().toISOString()
|
|
493
|
-
: task?.completed_at,
|
|
494
|
-
});
|
|
495
|
-
}
|
|
496
|
-
return baseHandleMoveToCompletion();
|
|
497
|
-
}, [
|
|
498
|
-
baseHandleMoveToCompletion,
|
|
499
|
-
syncTaskCache,
|
|
500
|
-
targetCompletionList,
|
|
501
|
-
task?.completed_at,
|
|
502
|
-
]);
|
|
503
|
-
|
|
504
|
-
const handleMoveToClose = useCallback(async () => {
|
|
505
|
-
if (targetClosedList) {
|
|
506
|
-
syncTaskCache({
|
|
507
|
-
list_id: targetClosedList.id,
|
|
508
|
-
closed_at: new Date().toISOString(),
|
|
509
|
-
});
|
|
510
|
-
}
|
|
511
|
-
return baseHandleMoveToClose();
|
|
512
|
-
}, [baseHandleMoveToClose, syncTaskCache, targetClosedList]);
|
|
513
|
-
|
|
514
|
-
const handleDelete = useCallback(async () => {
|
|
515
|
-
if (!task) return;
|
|
516
|
-
|
|
517
|
-
const taskId = task.id;
|
|
518
|
-
|
|
519
|
-
// Perform deletion
|
|
520
|
-
await baseHandleDelete();
|
|
521
|
-
|
|
522
|
-
// Phase 1: Clean up mentions from current editor (immediate)
|
|
523
|
-
const editor = editorProp;
|
|
524
|
-
|
|
525
|
-
if (editor) {
|
|
526
|
-
const removedCount = removeTaskMentionsFromEditor(editor, taskId);
|
|
527
|
-
if (removedCount > 0) {
|
|
528
|
-
console.log(
|
|
529
|
-
`Removed ${removedCount} mention(s) of task ${taskId} from current editor`
|
|
530
|
-
);
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
|
|
534
|
-
// Phase 2: Clean up mentions from all other tasks (non-blocking background operation)
|
|
535
|
-
if (actionWorkspaceId) {
|
|
536
|
-
cleanupTaskMentionsGlobally(taskId, actionWorkspaceId, queryClient).catch(
|
|
537
|
-
(error) => {
|
|
538
|
-
console.error('Failed to clean up task mentions globally:', error);
|
|
539
|
-
// Don't show error to user - this is background cleanup
|
|
540
|
-
}
|
|
541
|
-
);
|
|
542
|
-
}
|
|
543
|
-
}, [actionWorkspaceId, baseHandleDelete, task, queryClient, editorProp]);
|
|
544
|
-
|
|
545
|
-
const handleMoveToList = useCallback(
|
|
546
|
-
async (targetListId: string) => {
|
|
547
|
-
const targetList = availableLists.find((l) => l.id === targetListId);
|
|
548
|
-
const isCompletionList =
|
|
549
|
-
targetList?.status === 'done' || targetList?.status === 'closed';
|
|
550
|
-
const now = new Date().toISOString();
|
|
551
|
-
syncTaskCache({
|
|
552
|
-
list_id: targetListId,
|
|
553
|
-
...(isCompletionList ? { closed_at: now } : { closed_at: undefined }),
|
|
554
|
-
...(targetList?.status === 'done'
|
|
555
|
-
? { completed_at: now }
|
|
556
|
-
: { completed_at: undefined }),
|
|
557
|
-
} as Partial<TaskWithBoardId>);
|
|
558
|
-
return baseHandleMoveToList(targetListId);
|
|
559
|
-
},
|
|
560
|
-
[baseHandleMoveToList, syncTaskCache, availableLists]
|
|
561
|
-
);
|
|
562
|
-
|
|
563
|
-
const handleDueDateChange = useCallback(
|
|
564
|
-
async (days: number | null) => {
|
|
565
|
-
let newDate: string | null = null;
|
|
566
|
-
if (days !== null) {
|
|
567
|
-
const target = new Date();
|
|
568
|
-
target.setDate(target.getDate() + days);
|
|
569
|
-
target.setHours(23, 59, 59, 999);
|
|
570
|
-
newDate = target.toISOString();
|
|
571
|
-
}
|
|
572
|
-
syncTaskCache({ end_date: newDate });
|
|
573
|
-
return baseHandleDueDateChange(days);
|
|
574
|
-
},
|
|
575
|
-
[baseHandleDueDateChange, syncTaskCache]
|
|
576
|
-
);
|
|
577
|
-
|
|
578
|
-
const handlePriorityChange = useCallback(
|
|
579
|
-
async (newPriority: Parameters<typeof baseHandlePriorityChange>[0]) => {
|
|
580
|
-
syncTaskCache({ priority: newPriority });
|
|
581
|
-
return baseHandlePriorityChange(newPriority);
|
|
582
|
-
},
|
|
583
|
-
[baseHandlePriorityChange, syncTaskCache]
|
|
584
|
-
);
|
|
585
|
-
|
|
586
|
-
const updateEstimationPoints = useCallback(
|
|
587
|
-
async (points: number | null) => {
|
|
588
|
-
syncTaskCache({ estimation_points: points });
|
|
589
|
-
return baseUpdateEstimationPoints(points);
|
|
590
|
-
},
|
|
591
|
-
[baseUpdateEstimationPoints, syncTaskCache]
|
|
592
|
-
);
|
|
593
|
-
|
|
594
|
-
const handleCustomDateChange = useCallback(
|
|
595
|
-
async (date: Date | undefined) => {
|
|
596
|
-
let newDate: string | null = null;
|
|
597
|
-
if (date) {
|
|
598
|
-
const selectedDate = new Date(date);
|
|
599
|
-
if (
|
|
600
|
-
selectedDate.getHours() === 0 &&
|
|
601
|
-
selectedDate.getMinutes() === 0 &&
|
|
602
|
-
selectedDate.getSeconds() === 0 &&
|
|
603
|
-
selectedDate.getMilliseconds() === 0
|
|
604
|
-
) {
|
|
605
|
-
selectedDate.setHours(23, 59, 59, 999);
|
|
606
|
-
}
|
|
607
|
-
newDate = selectedDate.toISOString();
|
|
608
|
-
}
|
|
609
|
-
syncTaskCache({ end_date: newDate });
|
|
610
|
-
return baseHandleCustomDateChange(date);
|
|
611
|
-
},
|
|
612
|
-
[baseHandleCustomDateChange, syncTaskCache]
|
|
613
|
-
);
|
|
614
|
-
|
|
615
|
-
const onToggleAssignee = useCallback(
|
|
616
|
-
(assigneeId: string) => {
|
|
617
|
-
if (!task) return;
|
|
618
|
-
return baseHandleToggleAssignee(assigneeId);
|
|
619
|
-
},
|
|
620
|
-
[baseHandleToggleAssignee, task]
|
|
621
|
-
);
|
|
622
|
-
|
|
623
|
-
// Wrap label toggle - base function handles all cache updates
|
|
624
|
-
const toggleTaskLabel = useCallback(
|
|
625
|
-
async (labelId: string) => {
|
|
626
|
-
if (!task) return;
|
|
627
|
-
// Base function handles optimistic updates to both caches
|
|
628
|
-
return baseToggleTaskLabel(labelId);
|
|
629
|
-
},
|
|
630
|
-
[baseToggleTaskLabel, task]
|
|
631
|
-
);
|
|
632
|
-
|
|
633
|
-
// Wrap project toggle - base function handles all cache updates
|
|
634
|
-
const toggleTaskProject = useCallback(
|
|
635
|
-
async (projectId: string) => {
|
|
636
|
-
if (!task) return;
|
|
637
|
-
// Base function handles optimistic updates to both caches
|
|
638
|
-
return baseToggleTaskProject(projectId);
|
|
639
|
-
},
|
|
640
|
-
[baseToggleTaskProject, task]
|
|
641
|
-
);
|
|
642
|
-
|
|
643
|
-
// Wrap create new label - base function handles cache updates
|
|
644
|
-
const createNewLabel = useCallback(async () => {
|
|
645
|
-
// Base function handles optimistic updates to both caches
|
|
646
|
-
return baseCreateNewLabel();
|
|
647
|
-
}, [baseCreateNewLabel]);
|
|
648
|
-
|
|
649
|
-
// Wrap create new project - base function handles cache updates
|
|
650
|
-
const createNewProject = useCallback(async () => {
|
|
651
|
-
// Base function handles optimistic updates to both caches
|
|
652
|
-
return baseCreateNewProject();
|
|
653
|
-
}, [baseCreateNewProject]);
|
|
654
|
-
|
|
655
|
-
// Guarded select handler for menu items
|
|
656
|
-
const handleMenuItemSelect = useCallback(
|
|
657
|
-
(e: Event, action: () => void) => {
|
|
658
|
-
if (Date.now() < menuGuardUntil) {
|
|
659
|
-
if (e && typeof (e as any).preventDefault === 'function') {
|
|
660
|
-
(e as any).preventDefault();
|
|
661
|
-
}
|
|
662
|
-
return;
|
|
663
|
-
}
|
|
664
|
-
action();
|
|
665
|
-
},
|
|
666
|
-
[menuGuardUntil]
|
|
667
|
-
);
|
|
668
|
-
|
|
669
|
-
// Derive actual display number - prefer fetched task data over props
|
|
670
|
-
// This fixes legacy mentions where task name was stored instead of display number
|
|
671
|
-
const actualDisplayNumber = useMemo(() => {
|
|
672
|
-
// If we have task data with a valid display_number, use it
|
|
673
|
-
if (task?.display_number !== undefined && task.display_number !== null) {
|
|
674
|
-
return String(task.display_number);
|
|
675
|
-
}
|
|
676
|
-
// Otherwise use the prop (for new mentions, this should be correct)
|
|
677
|
-
return displayNumber;
|
|
678
|
-
}, [task?.display_number, displayNumber]);
|
|
679
|
-
|
|
680
|
-
// Derive actual task name - prefer fetched task data over subtitle prop
|
|
681
|
-
const actualTaskName = useMemo(() => {
|
|
682
|
-
// If we have task data with a name, use it
|
|
683
|
-
if (task?.name) {
|
|
684
|
-
return task.name;
|
|
685
|
-
}
|
|
686
|
-
// For legacy mentions where displayNumber might be the task name
|
|
687
|
-
// and subtitle is also the task name, use subtitle
|
|
688
|
-
return subtitle || null;
|
|
689
|
-
}, [task?.name, subtitle]);
|
|
690
|
-
|
|
691
|
-
useEffect(() => {
|
|
692
|
-
if (!task || task.id === entityId || !resolvedTaskBelongsToRouteWorkspace) {
|
|
693
|
-
return;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
queryClient.setQueryData(['task', task.id], taskPayload);
|
|
697
|
-
|
|
698
|
-
if (resolvedMentionRef.current === task.id) {
|
|
699
|
-
return;
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
resolvedMentionRef.current = task.id;
|
|
703
|
-
onResolvedTaskMention?.({
|
|
704
|
-
avatarUrl,
|
|
705
|
-
displayName:
|
|
706
|
-
typeof task.display_number === 'number'
|
|
707
|
-
? String(task.display_number)
|
|
708
|
-
: actualDisplayNumber,
|
|
709
|
-
entityId: task.id,
|
|
710
|
-
priority: task.priority ?? null,
|
|
711
|
-
subtitle: task.name ?? subtitle ?? null,
|
|
712
|
-
workspaceId: actionWorkspaceId ?? null,
|
|
713
|
-
});
|
|
714
|
-
}, [
|
|
715
|
-
actionWorkspaceId,
|
|
716
|
-
actualDisplayNumber,
|
|
717
|
-
avatarUrl,
|
|
718
|
-
entityId,
|
|
719
|
-
onResolvedTaskMention,
|
|
720
|
-
queryClient,
|
|
721
|
-
resolvedTaskBelongsToRouteWorkspace,
|
|
722
|
-
subtitle,
|
|
723
|
-
task,
|
|
724
|
-
taskPayload,
|
|
725
|
-
]);
|
|
726
|
-
|
|
727
|
-
const showTaskResolutionError = useCallback(
|
|
728
|
-
(fallbackDescription?: string) => {
|
|
729
|
-
const description =
|
|
730
|
-
taskError instanceof Error
|
|
731
|
-
? taskError.message
|
|
732
|
-
: (fallbackDescription ??
|
|
733
|
-
'The linked task could not be resolved from the current mention.');
|
|
734
|
-
|
|
735
|
-
toast.error(`Failed to resolve linked task #${actualDisplayNumber}`, {
|
|
736
|
-
description: `${description} (task id: ${resolvedTaskId})`,
|
|
737
|
-
});
|
|
738
|
-
},
|
|
739
|
-
[actualDisplayNumber, resolvedTaskId, taskError]
|
|
740
|
-
);
|
|
741
|
-
|
|
742
|
-
const getTaskUrl = () => {
|
|
743
|
-
const wsId = actionWorkspaceId;
|
|
744
|
-
const boardId = task?.board_id ?? currentTaskList?.board_id ?? null;
|
|
745
|
-
if (!wsId || !boardId || typeof window === 'undefined') return null;
|
|
746
|
-
return buildWorkspaceTaskUrl({
|
|
747
|
-
boardId,
|
|
748
|
-
currentPathname: window.location.pathname,
|
|
749
|
-
origin: window.location.origin,
|
|
750
|
-
taskId: resolvedTaskId,
|
|
751
|
-
workspaceId: wsId,
|
|
752
|
-
isPersonalWorkspace: taskWorkspacePersonal,
|
|
753
|
-
});
|
|
754
|
-
};
|
|
755
|
-
|
|
756
|
-
const handleGoToTask = () => {
|
|
757
|
-
const taskUrl = getTaskUrl();
|
|
758
|
-
if (!taskUrl) {
|
|
759
|
-
showTaskResolutionError('Task link is not available yet.');
|
|
760
|
-
return;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
const openedWindow = window.open(taskUrl, '_blank', 'noopener,noreferrer');
|
|
764
|
-
if (!openedWindow) {
|
|
765
|
-
showTaskResolutionError(
|
|
766
|
-
'The browser blocked the task window from opening.'
|
|
767
|
-
);
|
|
768
|
-
return;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
setMenuOpen(false);
|
|
772
|
-
};
|
|
773
|
-
|
|
774
|
-
const handleCopyTaskLink = async () => {
|
|
775
|
-
const taskUrl = getTaskUrl();
|
|
776
|
-
if (!taskUrl) {
|
|
777
|
-
showTaskResolutionError('Task link is not available yet.');
|
|
778
|
-
return;
|
|
779
|
-
}
|
|
780
|
-
|
|
781
|
-
try {
|
|
782
|
-
await navigator.clipboard.writeText(taskUrl);
|
|
783
|
-
toast.success('Task link copied to clipboard');
|
|
784
|
-
} catch {
|
|
785
|
-
toast.error('Failed to copy link');
|
|
786
|
-
}
|
|
787
|
-
setMenuOpen(false);
|
|
788
|
-
setPopoverOpen(false);
|
|
789
|
-
};
|
|
790
|
-
|
|
791
|
-
const title = actualTaskName
|
|
792
|
-
? `#${actualDisplayNumber} • ${actualTaskName}`
|
|
793
|
-
: `#${actualDisplayNumber}`;
|
|
794
|
-
const canOpenTaskMention = !!task && !taskLoading && !taskError;
|
|
795
|
-
|
|
796
|
-
// Get styling based on task list color or priority
|
|
797
|
-
const chipColorClasses = useMemo(() => {
|
|
798
|
-
return getTicketBadgeColorClasses(
|
|
799
|
-
currentTaskList || undefined,
|
|
800
|
-
task?.priority || undefined
|
|
801
|
-
);
|
|
802
|
-
}, [currentTaskList, task?.priority]);
|
|
803
|
-
|
|
804
|
-
const chipContent = (
|
|
805
|
-
<span
|
|
806
|
-
data-mention="true"
|
|
807
|
-
data-entity-id={resolvedTaskId}
|
|
808
|
-
data-entity-type="task"
|
|
809
|
-
data-display-number={displayNumber}
|
|
810
|
-
data-avatar-url={avatarUrl ?? ''}
|
|
811
|
-
data-subtitle={subtitle ?? ''}
|
|
812
|
-
data-priority={task?.priority ?? ''}
|
|
813
|
-
data-list-color={currentTaskList?.color ?? ''}
|
|
814
|
-
data-workspace-id={actionWorkspaceId ?? ''}
|
|
815
|
-
title={title}
|
|
816
|
-
aria-disabled={!canOpenTaskMention}
|
|
817
|
-
contentEditable={false}
|
|
818
|
-
onClick={(e) => {
|
|
819
|
-
if (!canOpenTaskMention) {
|
|
820
|
-
return;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
e.stopPropagation();
|
|
824
|
-
(e as any).stopImmediatePropagation?.();
|
|
825
|
-
e.preventDefault();
|
|
826
|
-
|
|
827
|
-
setPopoverOpen((prev) => !prev);
|
|
828
|
-
}}
|
|
829
|
-
onContextMenu={(e) => {
|
|
830
|
-
if (!canOpenTaskMention) {
|
|
831
|
-
return;
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
e.stopPropagation();
|
|
835
|
-
(e as any).stopImmediatePropagation?.();
|
|
836
|
-
e.preventDefault();
|
|
837
|
-
// Right-click: close popover and open dropdown menu after delay
|
|
838
|
-
setPopoverOpen(false);
|
|
839
|
-
// Delay to let popover close animation complete before opening menu
|
|
840
|
-
setTimeout(() => {
|
|
841
|
-
setMenuOpen(true);
|
|
842
|
-
setMenuGuardUntil(Date.now() + 300);
|
|
843
|
-
}, 50);
|
|
844
|
-
}}
|
|
845
|
-
className={cn(
|
|
846
|
-
'inline-flex items-center gap-1 rounded-full border py-0.5 pr-1 pl-2 font-medium text-[12px] leading-normal transition-colors',
|
|
847
|
-
chipColorClasses,
|
|
848
|
-
canOpenTaskMention
|
|
849
|
-
? 'cursor-pointer hover:opacity-80'
|
|
850
|
-
: taskLoading
|
|
851
|
-
? 'cursor-progress opacity-90'
|
|
852
|
-
: 'cursor-default opacity-70',
|
|
853
|
-
className
|
|
854
|
-
)}
|
|
855
|
-
>
|
|
856
|
-
{/* Chip content - updated 2025-12-26 */}
|
|
857
|
-
{/* Task Number - use derived value for legacy mention support */}
|
|
858
|
-
<span className="font-semibold">#{actualDisplayNumber}</span>
|
|
859
|
-
|
|
860
|
-
{/* Priority Icon */}
|
|
861
|
-
{task?.priority && (
|
|
862
|
-
<span className="flex items-center justify-center">
|
|
863
|
-
{getPriorityIcon(task.priority, 'h-3 w-3')}
|
|
864
|
-
</span>
|
|
865
|
-
)}
|
|
866
|
-
|
|
867
|
-
{/* Dot separator between priority and blocked icon */}
|
|
868
|
-
<span className="opacity-50">•</span>
|
|
869
|
-
|
|
870
|
-
{/* Blocked indicator - show if task has blocking tasks */}
|
|
871
|
-
{blockedByTasks.length > 0 && (
|
|
872
|
-
<span
|
|
873
|
-
className="flex items-center justify-center text-dynamic-red"
|
|
874
|
-
title={`Blocked by ${blockedByTasks.length} task${blockedByTasks.length > 1 ? 's' : ''}`}
|
|
875
|
-
>
|
|
876
|
-
<Ban className="h-3 w-3" />
|
|
877
|
-
</span>
|
|
878
|
-
)}
|
|
879
|
-
|
|
880
|
-
{/* Task Name - use derived value for legacy mention support, with priority color */}
|
|
881
|
-
{actualTaskName && (
|
|
882
|
-
<span className={cn('max-w-50 truncate font-medium')}>
|
|
883
|
-
{actualTaskName}
|
|
884
|
-
</span>
|
|
885
|
-
)}
|
|
886
|
-
|
|
887
|
-
{/* Assignee Avatars */}
|
|
888
|
-
{task?.assignees && task.assignees.length > 0 && (
|
|
889
|
-
<span className="ml-1 flex -space-x-1">
|
|
890
|
-
{task.assignees.slice(0, 3).map((assignee) => (
|
|
891
|
-
<Avatar
|
|
892
|
-
key={assignee.id}
|
|
893
|
-
className="h-4 w-4 border border-background"
|
|
894
|
-
title={assignee.display_name || 'Unknown'}
|
|
895
|
-
>
|
|
896
|
-
{assignee.avatar_url && (
|
|
897
|
-
<AvatarImage
|
|
898
|
-
src={assignee.avatar_url}
|
|
899
|
-
alt={assignee.display_name || 'User'}
|
|
900
|
-
referrerPolicy="no-referrer"
|
|
901
|
-
/>
|
|
902
|
-
)}
|
|
903
|
-
<AvatarFallback className="text-[8px]">
|
|
904
|
-
{getAssigneeInitials(assignee.display_name, null)}
|
|
905
|
-
</AvatarFallback>
|
|
906
|
-
</Avatar>
|
|
907
|
-
))}
|
|
908
|
-
{task.assignees.length > 3 && (
|
|
909
|
-
<span className="flex h-4 w-4 items-center justify-center rounded-full border border-background bg-muted font-medium text-[8px]">
|
|
910
|
-
+{task.assignees.length - 3}
|
|
911
|
-
</span>
|
|
912
|
-
)}
|
|
913
|
-
</span>
|
|
914
|
-
)}
|
|
915
|
-
|
|
916
|
-
{/* Labels with cross-theme accessible colors - using same strategy as TaskLabelsDisplay */}
|
|
917
|
-
{task?.labels && task.labels.length > 0 && (
|
|
918
|
-
<span className="flex items-center gap-0.5">
|
|
919
|
-
{task.labels.slice(0, 2).map((label) => {
|
|
920
|
-
const styles = computeAccessibleLabelStyles(label.color, isDark);
|
|
921
|
-
return (
|
|
922
|
-
<Badge
|
|
923
|
-
key={label.id}
|
|
924
|
-
variant="outline"
|
|
925
|
-
className="inline-flex h-4 max-w-16 items-center gap-0.5 truncate rounded-full border px-1 font-medium text-[8px] ring-0"
|
|
926
|
-
style={
|
|
927
|
-
styles
|
|
928
|
-
? {
|
|
929
|
-
backgroundColor: styles.bg,
|
|
930
|
-
borderColor: styles.border,
|
|
931
|
-
color: styles.text,
|
|
932
|
-
}
|
|
933
|
-
: undefined
|
|
934
|
-
}
|
|
935
|
-
title={label.name}
|
|
936
|
-
>
|
|
937
|
-
<span className="truncate">{label.name}</span>
|
|
938
|
-
</Badge>
|
|
939
|
-
);
|
|
940
|
-
})}
|
|
941
|
-
{task.labels.length > 2 && (
|
|
942
|
-
<Badge
|
|
943
|
-
variant="outline"
|
|
944
|
-
className="inline-flex h-4 items-center border-dashed px-1 font-medium text-[8px] opacity-80"
|
|
945
|
-
>
|
|
946
|
-
+{task.labels.length - 2}
|
|
947
|
-
</Badge>
|
|
948
|
-
)}
|
|
949
|
-
</span>
|
|
950
|
-
)}
|
|
951
|
-
</span>
|
|
952
|
-
);
|
|
953
|
-
|
|
954
|
-
const canMoveToCompletion =
|
|
955
|
-
targetCompletionList && targetCompletionList.id !== task?.list_id;
|
|
956
|
-
const canMoveToClose =
|
|
957
|
-
targetClosedList && targetClosedList.id !== task?.list_id;
|
|
958
|
-
|
|
959
|
-
const menuItems = task ? (
|
|
960
|
-
<>
|
|
961
|
-
<DropdownMenuItem onClick={handleGoToTask} className="cursor-pointer">
|
|
962
|
-
<ExternalLink className="mr-2 h-4 w-4" />
|
|
963
|
-
Go to task
|
|
964
|
-
</DropdownMenuItem>
|
|
965
|
-
|
|
966
|
-
<DropdownMenuItem onClick={handleCopyTaskLink} className="cursor-pointer">
|
|
967
|
-
<Copy className="mr-2 h-4 w-4" />
|
|
968
|
-
Copy task link
|
|
969
|
-
</DropdownMenuItem>
|
|
970
|
-
|
|
971
|
-
<DropdownMenuSeparator />
|
|
972
|
-
|
|
973
|
-
{/* Quick Completion Actions */}
|
|
974
|
-
{canMoveToCompletion && (
|
|
975
|
-
<DropdownMenuItem
|
|
976
|
-
onSelect={(e) =>
|
|
977
|
-
handleMenuItemSelect(e as unknown as Event, handleMoveToCompletion)
|
|
978
|
-
}
|
|
979
|
-
className="cursor-pointer"
|
|
980
|
-
disabled={isLoading}
|
|
981
|
-
>
|
|
982
|
-
<CheckCircle2 className="mr-2 h-4 w-4 text-dynamic-green" />
|
|
983
|
-
Mark as {targetCompletionList?.status === 'done' ? 'Done' : 'Closed'}
|
|
984
|
-
</DropdownMenuItem>
|
|
985
|
-
)}
|
|
986
|
-
|
|
987
|
-
{canMoveToClose && targetClosedList?.id !== targetCompletionList?.id && (
|
|
988
|
-
<DropdownMenuItem
|
|
989
|
-
onSelect={(e) =>
|
|
990
|
-
handleMenuItemSelect(e as unknown as Event, handleMoveToClose)
|
|
991
|
-
}
|
|
992
|
-
className="cursor-pointer"
|
|
993
|
-
disabled={isLoading}
|
|
994
|
-
>
|
|
995
|
-
<CircleSlash className="mr-2 h-4 w-4 text-dynamic-purple" />
|
|
996
|
-
Mark as Closed
|
|
997
|
-
</DropdownMenuItem>
|
|
998
|
-
)}
|
|
999
|
-
|
|
1000
|
-
{(canMoveToCompletion || canMoveToClose) && <DropdownMenuSeparator />}
|
|
1001
|
-
|
|
1002
|
-
{/* Priority Menu */}
|
|
1003
|
-
<TaskPriorityMenu
|
|
1004
|
-
currentPriority={task.priority ?? null}
|
|
1005
|
-
isLoading={isLoading}
|
|
1006
|
-
onPriorityChange={handlePriorityChange}
|
|
1007
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1008
|
-
onClose={() => setMenuOpen(false)}
|
|
1009
|
-
/>
|
|
1010
|
-
|
|
1011
|
-
{/* Due Date Menu */}
|
|
1012
|
-
<TaskDueDateMenu
|
|
1013
|
-
endDate={task.end_date}
|
|
1014
|
-
isLoading={isLoading}
|
|
1015
|
-
onDueDateChange={handleDueDateChange}
|
|
1016
|
-
onCustomDateClick={() => {
|
|
1017
|
-
setMenuOpen(false);
|
|
1018
|
-
setTimeout(() => setShowCustomDateDialog(true), 100);
|
|
1019
|
-
}}
|
|
1020
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1021
|
-
onClose={() => setMenuOpen(false)}
|
|
1022
|
-
/>
|
|
1023
|
-
|
|
1024
|
-
{/* Estimation Menu */}
|
|
1025
|
-
{boardConfig?.estimation_type && (
|
|
1026
|
-
<TaskEstimationMenu
|
|
1027
|
-
currentPoints={task.estimation_points}
|
|
1028
|
-
estimationType={boardConfig.estimation_type}
|
|
1029
|
-
extendedEstimation={boardConfig.extended_estimation}
|
|
1030
|
-
allowZeroEstimates={boardConfig.allow_zero_estimates}
|
|
1031
|
-
isLoading={isLoading}
|
|
1032
|
-
onEstimationChange={updateEstimationPoints}
|
|
1033
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1034
|
-
/>
|
|
1035
|
-
)}
|
|
1036
|
-
|
|
1037
|
-
{/* Labels Menu */}
|
|
1038
|
-
<TaskLabelsMenu
|
|
1039
|
-
taskLabels={task.labels || []}
|
|
1040
|
-
availableLabels={workspaceLabels}
|
|
1041
|
-
isLoading={labelsLoading}
|
|
1042
|
-
onToggleLabel={toggleTaskLabel}
|
|
1043
|
-
onCreateNewLabel={() => {
|
|
1044
|
-
setShowNewLabelDialog(true);
|
|
1045
|
-
setMenuOpen(false);
|
|
1046
|
-
}}
|
|
1047
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1048
|
-
/>
|
|
1049
|
-
|
|
1050
|
-
{/* Projects Menu */}
|
|
1051
|
-
<TaskProjectsMenu
|
|
1052
|
-
taskProjects={task.projects || []}
|
|
1053
|
-
availableProjects={workspaceProjects}
|
|
1054
|
-
isLoading={projectsLoading}
|
|
1055
|
-
onToggleProject={toggleTaskProject}
|
|
1056
|
-
onCreateNewProject={() => {
|
|
1057
|
-
setShowNewProjectDialog(true);
|
|
1058
|
-
setMenuOpen(false);
|
|
1059
|
-
}}
|
|
1060
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1061
|
-
/>
|
|
1062
|
-
|
|
1063
|
-
<DropdownMenuSeparator />
|
|
1064
|
-
|
|
1065
|
-
{/* Task Relationships Section */}
|
|
1066
|
-
{actionWorkspaceId && (
|
|
1067
|
-
<>
|
|
1068
|
-
<TaskParentMenu
|
|
1069
|
-
wsId={actionWorkspaceId}
|
|
1070
|
-
taskId={task.id}
|
|
1071
|
-
parentTask={parentTask}
|
|
1072
|
-
childTaskIds={childTasks.map((t) => t.id)}
|
|
1073
|
-
isSaving={relationshipSaving}
|
|
1074
|
-
onSetParent={setParentTask}
|
|
1075
|
-
onRemoveParent={removeParentTask}
|
|
1076
|
-
translations={{
|
|
1077
|
-
parent_task: 'Parent Task',
|
|
1078
|
-
search_tasks: 'Search tasks...',
|
|
1079
|
-
error_loading_tasks: 'Error loading tasks',
|
|
1080
|
-
no_matching_tasks: 'No matching tasks',
|
|
1081
|
-
no_available_tasks: 'No available tasks',
|
|
1082
|
-
n_set: '1',
|
|
1083
|
-
}}
|
|
1084
|
-
/>
|
|
1085
|
-
|
|
1086
|
-
<TaskBlockingMenu
|
|
1087
|
-
wsId={actionWorkspaceId}
|
|
1088
|
-
taskId={task.id}
|
|
1089
|
-
blockingTasks={blockingTasks}
|
|
1090
|
-
blockedByTasks={blockedByTasks}
|
|
1091
|
-
isSaving={relationshipSaving}
|
|
1092
|
-
savingTaskId={relationshipSavingTaskId}
|
|
1093
|
-
onAddBlocking={addBlockingTask}
|
|
1094
|
-
onRemoveBlocking={removeBlockingTask}
|
|
1095
|
-
onAddBlockedBy={addBlockedByTask}
|
|
1096
|
-
onRemoveBlockedBy={removeBlockedByTask}
|
|
1097
|
-
translations={{
|
|
1098
|
-
dependencies: 'Dependencies',
|
|
1099
|
-
blocks: 'Blocks',
|
|
1100
|
-
blocked_by: 'Blocked By',
|
|
1101
|
-
search_tasks_to_block: 'Search tasks...',
|
|
1102
|
-
search_blocking_tasks: 'Search tasks...',
|
|
1103
|
-
error_loading_tasks: 'Error loading tasks',
|
|
1104
|
-
no_matching_tasks: 'No matching tasks',
|
|
1105
|
-
no_available_tasks: 'No available tasks',
|
|
1106
|
-
remove_dependency: 'Remove',
|
|
1107
|
-
tasks_that_cannot_start:
|
|
1108
|
-
'Tasks that cannot start until this one is done',
|
|
1109
|
-
tasks_that_must_complete:
|
|
1110
|
-
'Tasks that must complete before this one can start',
|
|
1111
|
-
}}
|
|
1112
|
-
/>
|
|
1113
|
-
|
|
1114
|
-
<TaskRelatedMenu
|
|
1115
|
-
wsId={actionWorkspaceId}
|
|
1116
|
-
taskId={task.id}
|
|
1117
|
-
relatedTasks={relatedTasks}
|
|
1118
|
-
isSaving={relationshipSaving}
|
|
1119
|
-
savingTaskId={relationshipSavingTaskId}
|
|
1120
|
-
onAddRelated={addRelatedTask}
|
|
1121
|
-
onRemoveRelated={removeRelatedTask}
|
|
1122
|
-
translations={{
|
|
1123
|
-
related_tasks: 'Related Tasks',
|
|
1124
|
-
currently_related: 'Currently Related',
|
|
1125
|
-
search_tasks_to_link: 'Search tasks to link...',
|
|
1126
|
-
no_matching_tasks: 'No matching tasks',
|
|
1127
|
-
no_available_tasks: 'No available tasks',
|
|
1128
|
-
related_tasks_help:
|
|
1129
|
-
'Link tasks that share context or are related to each other',
|
|
1130
|
-
}}
|
|
1131
|
-
/>
|
|
1132
|
-
|
|
1133
|
-
<DropdownMenuSeparator />
|
|
1134
|
-
</>
|
|
1135
|
-
)}
|
|
1136
|
-
|
|
1137
|
-
{/* Move Menu */}
|
|
1138
|
-
{availableLists.length > 0 && actionWorkspaceId && task?.board_id && (
|
|
1139
|
-
<TaskMoveMenu
|
|
1140
|
-
currentListId={task.list_id}
|
|
1141
|
-
availableLists={availableLists}
|
|
1142
|
-
isLoading={isLoading}
|
|
1143
|
-
onMoveToList={handleMoveToList}
|
|
1144
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1145
|
-
onRequestOpenCreateDialog={() => {
|
|
1146
|
-
setMenuOpen(false);
|
|
1147
|
-
setShowCreateListDialog(true);
|
|
1148
|
-
}}
|
|
1149
|
-
/>
|
|
1150
|
-
)}
|
|
1151
|
-
|
|
1152
|
-
{/* Assignee Menu */}
|
|
1153
|
-
{actionWorkspaceId && (
|
|
1154
|
-
<TaskAssigneesMenu
|
|
1155
|
-
taskAssignees={task.assignees || []}
|
|
1156
|
-
availableMembers={workspaceMembers}
|
|
1157
|
-
isLoading={membersLoading}
|
|
1158
|
-
onToggleAssignee={onToggleAssignee}
|
|
1159
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1160
|
-
/>
|
|
1161
|
-
)}
|
|
1162
|
-
|
|
1163
|
-
<DropdownMenuSeparator />
|
|
1164
|
-
|
|
1165
|
-
<DropdownMenuItem
|
|
1166
|
-
onSelect={(e) =>
|
|
1167
|
-
handleMenuItemSelect(e as unknown as Event, () => {
|
|
1168
|
-
setShowDeleteDialog(true);
|
|
1169
|
-
setMenuOpen(false);
|
|
1170
|
-
})
|
|
1171
|
-
}
|
|
1172
|
-
className="cursor-pointer text-dynamic-red focus:text-dynamic-red"
|
|
1173
|
-
>
|
|
1174
|
-
<Trash2 className="mr-2 h-4 w-4" />
|
|
1175
|
-
Delete task
|
|
1176
|
-
</DropdownMenuItem>
|
|
1177
|
-
</>
|
|
1178
|
-
) : (
|
|
1179
|
-
<>
|
|
1180
|
-
<button
|
|
1181
|
-
type="button"
|
|
1182
|
-
onClick={handleGoToTask}
|
|
1183
|
-
className="flex w-full cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden hover:bg-accent hover:text-accent-foreground"
|
|
1184
|
-
>
|
|
1185
|
-
<ExternalLink className="h-4 w-4" />
|
|
1186
|
-
Go to task
|
|
1187
|
-
</button>
|
|
1188
|
-
|
|
1189
|
-
<button
|
|
1190
|
-
type="button"
|
|
1191
|
-
onClick={handleCopyTaskLink}
|
|
1192
|
-
className="flex w-full cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden hover:bg-accent hover:text-accent-foreground"
|
|
1193
|
-
>
|
|
1194
|
-
<Copy className="h-4 w-4" />
|
|
1195
|
-
Copy task link
|
|
1196
|
-
</button>
|
|
1197
|
-
</>
|
|
1198
|
-
);
|
|
1199
|
-
|
|
1200
|
-
// Render chip that opens popover, and a separate dropdown menu for editing
|
|
1201
|
-
return (
|
|
1202
|
-
<div style={{ display: 'inline-flex', position: 'relative' }}>
|
|
1203
|
-
<TaskSummaryPopover
|
|
1204
|
-
task={task || null}
|
|
1205
|
-
taskList={currentTaskList}
|
|
1206
|
-
isLoading={taskLoading}
|
|
1207
|
-
onEdit={() => {
|
|
1208
|
-
setPopoverOpen(false);
|
|
1209
|
-
setTimeout(() => setMenuOpen(true), 100);
|
|
1210
|
-
}}
|
|
1211
|
-
onGoToTask={handleGoToTask}
|
|
1212
|
-
open={popoverOpen}
|
|
1213
|
-
onOpenChange={setPopoverOpen}
|
|
1214
|
-
blockedBy={blockedByTasks as Task[]}
|
|
1215
|
-
workspaceId={actionWorkspaceId}
|
|
1216
|
-
hiddenLabelsLabel={translations?.hidden_labels}
|
|
1217
|
-
>
|
|
1218
|
-
{chipContent}
|
|
1219
|
-
</TaskSummaryPopover>
|
|
1220
|
-
|
|
1221
|
-
{/* Dropdown menu for editing */}
|
|
1222
|
-
<DropdownMenu
|
|
1223
|
-
open={menuOpen}
|
|
1224
|
-
onOpenChange={(open) => {
|
|
1225
|
-
setMenuOpen(open);
|
|
1226
|
-
if (open) {
|
|
1227
|
-
setMenuGuardUntil(Date.now() + 300);
|
|
1228
|
-
}
|
|
1229
|
-
}}
|
|
1230
|
-
>
|
|
1231
|
-
<DropdownMenuTrigger asChild>
|
|
1232
|
-
<button
|
|
1233
|
-
ref={dropdownTriggerRef}
|
|
1234
|
-
type="button"
|
|
1235
|
-
tabIndex={-1}
|
|
1236
|
-
aria-hidden="true"
|
|
1237
|
-
style={{
|
|
1238
|
-
position: 'absolute',
|
|
1239
|
-
top: '100%',
|
|
1240
|
-
left: 0,
|
|
1241
|
-
opacity: 0,
|
|
1242
|
-
width: '1px',
|
|
1243
|
-
height: '1px',
|
|
1244
|
-
border: 'none',
|
|
1245
|
-
padding: 0,
|
|
1246
|
-
background: 'transparent',
|
|
1247
|
-
}}
|
|
1248
|
-
/>
|
|
1249
|
-
</DropdownMenuTrigger>
|
|
1250
|
-
<DropdownMenuContent
|
|
1251
|
-
align="start"
|
|
1252
|
-
className="w-56"
|
|
1253
|
-
side="bottom"
|
|
1254
|
-
sideOffset={8}
|
|
1255
|
-
onClick={(e: React.MouseEvent<HTMLDivElement>) => e.stopPropagation()}
|
|
1256
|
-
onCloseAutoFocus={(e) => {
|
|
1257
|
-
// Prevent focus from moving to an element that might be outside the parent dialog
|
|
1258
|
-
// This fixes the issue where closing the dropdown causes the parent dialog to close
|
|
1259
|
-
e.preventDefault();
|
|
1260
|
-
}}
|
|
1261
|
-
>
|
|
1262
|
-
{taskLoading ? (
|
|
1263
|
-
<div className="flex items-center justify-center p-4">
|
|
1264
|
-
<div className="h-4 w-4 animate-spin rounded-full border-2 border-primary border-t-transparent" />
|
|
1265
|
-
</div>
|
|
1266
|
-
) : taskError ? (
|
|
1267
|
-
<div className="flex flex-col items-center gap-2 p-4 text-center text-muted-foreground text-sm">
|
|
1268
|
-
<AlertCircle className="h-5 w-5 text-dynamic-red" />
|
|
1269
|
-
<span>Failed to load task</span>
|
|
1270
|
-
<span className="text-xs opacity-70">
|
|
1271
|
-
{taskError instanceof Error
|
|
1272
|
-
? taskError.message
|
|
1273
|
-
: 'Unknown error'}
|
|
1274
|
-
</span>
|
|
1275
|
-
</div>
|
|
1276
|
-
) : (
|
|
1277
|
-
menuItems
|
|
1278
|
-
)}
|
|
1279
|
-
</DropdownMenuContent>
|
|
1280
|
-
</DropdownMenu>
|
|
1281
|
-
|
|
1282
|
-
{/* Dialogs */}
|
|
1283
|
-
{task && (
|
|
1284
|
-
<>
|
|
1285
|
-
<TaskDeleteDialog
|
|
1286
|
-
task={task}
|
|
1287
|
-
open={showDeleteDialog}
|
|
1288
|
-
isLoading={isLoading}
|
|
1289
|
-
onOpenChange={setShowDeleteDialog}
|
|
1290
|
-
onConfirm={handleDelete}
|
|
1291
|
-
translations={
|
|
1292
|
-
translations
|
|
1293
|
-
? {
|
|
1294
|
-
delete_task: translations.delete_task,
|
|
1295
|
-
delete_task_confirmation:
|
|
1296
|
-
translations.delete_task_confirmation,
|
|
1297
|
-
cancel: translations.cancel,
|
|
1298
|
-
deleting: translations.deleting,
|
|
1299
|
-
}
|
|
1300
|
-
: undefined
|
|
1301
|
-
}
|
|
1302
|
-
/>
|
|
1303
|
-
|
|
1304
|
-
<TaskCustomDateDialog
|
|
1305
|
-
open={showCustomDateDialog}
|
|
1306
|
-
endDate={task.end_date ?? null}
|
|
1307
|
-
isLoading={isLoading}
|
|
1308
|
-
onOpenChange={setShowCustomDateDialog}
|
|
1309
|
-
onDateChange={handleCustomDateChange}
|
|
1310
|
-
onClear={() => {
|
|
1311
|
-
handleDueDateChange(null);
|
|
1312
|
-
setShowCustomDateDialog(false);
|
|
1313
|
-
}}
|
|
1314
|
-
translations={
|
|
1315
|
-
translations
|
|
1316
|
-
? {
|
|
1317
|
-
set_custom_due_date: translations.set_custom_due_date,
|
|
1318
|
-
custom_due_date_description:
|
|
1319
|
-
translations.custom_due_date_description,
|
|
1320
|
-
cancel: translations.cancel,
|
|
1321
|
-
remove_due_date: translations.remove_due_date,
|
|
1322
|
-
}
|
|
1323
|
-
: undefined
|
|
1324
|
-
}
|
|
1325
|
-
/>
|
|
1326
|
-
|
|
1327
|
-
{actionWorkspaceId && task?.board_id && (
|
|
1328
|
-
<CreateListDialog
|
|
1329
|
-
open={showCreateListDialog}
|
|
1330
|
-
onOpenChange={setShowCreateListDialog}
|
|
1331
|
-
boardId={task.board_id}
|
|
1332
|
-
wsId={actionWorkspaceId}
|
|
1333
|
-
initialStatus="active"
|
|
1334
|
-
onSuccess={(listId) => {
|
|
1335
|
-
handleMoveToList(listId);
|
|
1336
|
-
}}
|
|
1337
|
-
/>
|
|
1338
|
-
)}
|
|
1339
|
-
|
|
1340
|
-
<TaskNewLabelDialog
|
|
1341
|
-
open={showNewLabelDialog}
|
|
1342
|
-
newLabelName={newLabelName}
|
|
1343
|
-
newLabelColor={newLabelColor}
|
|
1344
|
-
creatingLabel={creatingLabel}
|
|
1345
|
-
onNameChange={setNewLabelName}
|
|
1346
|
-
onColorChange={setNewLabelColor}
|
|
1347
|
-
onOpenChange={setShowNewLabelDialog}
|
|
1348
|
-
onConfirm={async () => {
|
|
1349
|
-
const result = await createNewLabel();
|
|
1350
|
-
if (result) setShowNewLabelDialog(false);
|
|
1351
|
-
}}
|
|
1352
|
-
translations={
|
|
1353
|
-
translations
|
|
1354
|
-
? {
|
|
1355
|
-
create_new_label: translations.create_new_label,
|
|
1356
|
-
create_new_label_description:
|
|
1357
|
-
translations.create_new_label_description,
|
|
1358
|
-
label_name: translations.label_name,
|
|
1359
|
-
color: translations.color,
|
|
1360
|
-
preview: translations.preview,
|
|
1361
|
-
cancel: translations.cancel,
|
|
1362
|
-
creating: translations.creating,
|
|
1363
|
-
create_label: translations.create_label,
|
|
1364
|
-
}
|
|
1365
|
-
: undefined
|
|
1366
|
-
}
|
|
1367
|
-
/>
|
|
1368
|
-
|
|
1369
|
-
<TaskNewProjectDialog
|
|
1370
|
-
open={showNewProjectDialog}
|
|
1371
|
-
newProjectName={newProjectName}
|
|
1372
|
-
creatingProject={creatingProject}
|
|
1373
|
-
onNameChange={setNewProjectName}
|
|
1374
|
-
onOpenChange={setShowNewProjectDialog}
|
|
1375
|
-
onConfirm={async () => {
|
|
1376
|
-
const result = await createNewProject();
|
|
1377
|
-
if (result) setShowNewProjectDialog(false);
|
|
1378
|
-
}}
|
|
1379
|
-
translations={
|
|
1380
|
-
translations
|
|
1381
|
-
? {
|
|
1382
|
-
create_new_project: translations.create_new_project,
|
|
1383
|
-
create_new_project_description:
|
|
1384
|
-
translations.create_new_project_description,
|
|
1385
|
-
project_name: translations.project_name,
|
|
1386
|
-
cancel: translations.cancel,
|
|
1387
|
-
creating: translations.creating,
|
|
1388
|
-
create_project: translations.create_project,
|
|
1389
|
-
}
|
|
1390
|
-
: undefined
|
|
1391
|
-
}
|
|
1392
|
-
/>
|
|
1393
|
-
</>
|
|
1394
|
-
)}
|
|
1395
|
-
</div>
|
|
1396
|
-
);
|
|
1397
|
-
}
|