@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,1597 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
Check,
|
|
5
|
-
ChevronDown,
|
|
6
|
-
ChevronUp,
|
|
7
|
-
Loader2,
|
|
8
|
-
MoreHorizontal,
|
|
9
|
-
Save,
|
|
10
|
-
Square,
|
|
11
|
-
Trash2,
|
|
12
|
-
} from '@tuturuuu/icons';
|
|
13
|
-
import type { TaskPriority } from '@tuturuuu/types/primitives/Priority';
|
|
14
|
-
import { Badge } from '@tuturuuu/ui/badge';
|
|
15
|
-
import { Button } from '@tuturuuu/ui/button';
|
|
16
|
-
import { DateTimePicker } from '@tuturuuu/ui/date-time-picker';
|
|
17
|
-
import {
|
|
18
|
-
Dialog,
|
|
19
|
-
DialogContent,
|
|
20
|
-
DialogDescription,
|
|
21
|
-
DialogFooter,
|
|
22
|
-
DialogHeader,
|
|
23
|
-
DialogTitle,
|
|
24
|
-
} from '@tuturuuu/ui/dialog';
|
|
25
|
-
import {
|
|
26
|
-
DropdownMenu,
|
|
27
|
-
DropdownMenuContent,
|
|
28
|
-
DropdownMenuItem,
|
|
29
|
-
DropdownMenuSeparator,
|
|
30
|
-
DropdownMenuTrigger,
|
|
31
|
-
} from '@tuturuuu/ui/dropdown-menu';
|
|
32
|
-
import { useCalendarPreferences } from '@tuturuuu/ui/hooks/use-calendar-preferences';
|
|
33
|
-
import { Label } from '@tuturuuu/ui/label';
|
|
34
|
-
import { ScrollArea } from '@tuturuuu/ui/scroll-area';
|
|
35
|
-
import { toast } from '@tuturuuu/ui/sonner';
|
|
36
|
-
import { Textarea } from '@tuturuuu/ui/textarea';
|
|
37
|
-
import { TaskEstimationMenu } from '@tuturuuu/ui/tu-do/boards/boardId/menus/task-estimation-menu';
|
|
38
|
-
import { TaskLabelsMenu } from '@tuturuuu/ui/tu-do/boards/boardId/menus/task-labels-menu';
|
|
39
|
-
import { TaskPriorityMenu } from '@tuturuuu/ui/tu-do/boards/boardId/menus/task-priority-menu';
|
|
40
|
-
import { TaskProjectsMenu } from '@tuturuuu/ui/tu-do/boards/boardId/menus/task-projects-menu';
|
|
41
|
-
import { TaskEstimationDisplay } from '@tuturuuu/ui/tu-do/shared/task-estimation-display';
|
|
42
|
-
import { cn } from '@tuturuuu/utils/format';
|
|
43
|
-
import dayjs from 'dayjs';
|
|
44
|
-
import timezone from 'dayjs/plugin/timezone';
|
|
45
|
-
import utc from 'dayjs/plugin/utc';
|
|
46
|
-
import { useTranslations } from 'next-intl';
|
|
47
|
-
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
|
48
|
-
|
|
49
|
-
dayjs.extend(utc);
|
|
50
|
-
dayjs.extend(timezone);
|
|
51
|
-
|
|
52
|
-
const MAX_LABEL_SUGGESTIONS = 6;
|
|
53
|
-
const MAX_VISIBLE_PREVIEW_LABELS = 3;
|
|
54
|
-
const MAX_VISIBLE_WORKSPACE_LABELS = 12;
|
|
55
|
-
|
|
56
|
-
const normalizeLabel = (value: string) => value.trim().toLowerCase();
|
|
57
|
-
|
|
58
|
-
const formatLabel = (value: string) =>
|
|
59
|
-
value
|
|
60
|
-
.split(' ')
|
|
61
|
-
.filter(Boolean)
|
|
62
|
-
.map((segment) => segment[0]?.toUpperCase() + segment.slice(1))
|
|
63
|
-
.join(' ');
|
|
64
|
-
|
|
65
|
-
const adjustDateToEndOfDay = (value: Date) => {
|
|
66
|
-
const next = new Date(value);
|
|
67
|
-
if (
|
|
68
|
-
next.getHours() === 0 &&
|
|
69
|
-
next.getMinutes() === 0 &&
|
|
70
|
-
next.getSeconds() === 0 &&
|
|
71
|
-
next.getMilliseconds() === 0
|
|
72
|
-
) {
|
|
73
|
-
next.setHours(23, 59, 59, 999);
|
|
74
|
-
}
|
|
75
|
-
return next;
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
const parseDueDateToState = (value: string | null | undefined) => {
|
|
79
|
-
if (!value) return undefined;
|
|
80
|
-
const parsed = new Date(value);
|
|
81
|
-
if (Number.isNaN(parsed.getTime())) {
|
|
82
|
-
return undefined;
|
|
83
|
-
}
|
|
84
|
-
return adjustDateToEndOfDay(parsed);
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
const formatDueDateForPayload = (value: Date | undefined) =>
|
|
88
|
-
value ? adjustDateToEndOfDay(value).toISOString() : null;
|
|
89
|
-
|
|
90
|
-
const priorityBadgeClass = (priority: TaskPriority | null) => {
|
|
91
|
-
switch (priority) {
|
|
92
|
-
case 'critical':
|
|
93
|
-
return 'border-dynamic-red/60 bg-dynamic-red/15 text-dynamic-red';
|
|
94
|
-
case 'high':
|
|
95
|
-
return 'border-dynamic-orange/60 bg-dynamic-orange/15 text-dynamic-orange';
|
|
96
|
-
case 'normal':
|
|
97
|
-
return 'border-dynamic-yellow/60 bg-dynamic-yellow/15 text-dynamic-yellow';
|
|
98
|
-
case 'low':
|
|
99
|
-
return 'border-dynamic-blue/60 bg-dynamic-blue/15 text-dynamic-blue';
|
|
100
|
-
default:
|
|
101
|
-
return 'border-dynamic-muted/60 bg-dynamic-muted/15 text-muted-foreground';
|
|
102
|
-
}
|
|
103
|
-
};
|
|
104
|
-
|
|
105
|
-
const PRIORITY_KEYS: Record<string, string> = {
|
|
106
|
-
critical: 'preview_priority_urgent',
|
|
107
|
-
high: 'preview_priority_high',
|
|
108
|
-
normal: 'preview_priority_medium',
|
|
109
|
-
low: 'preview_priority_low',
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
const LABEL_COLOR_CLASSES: Record<string, string> = {
|
|
113
|
-
gray: 'border-dynamic-gray/60 bg-dynamic-gray/15 text-dynamic-gray',
|
|
114
|
-
red: 'border-dynamic-red/60 bg-dynamic-red/15 text-dynamic-red',
|
|
115
|
-
orange: 'border-dynamic-orange/60 bg-dynamic-orange/15 text-dynamic-orange',
|
|
116
|
-
yellow: 'border-dynamic-yellow/60 bg-dynamic-yellow/15 text-dynamic-yellow',
|
|
117
|
-
green: 'border-dynamic-green/60 bg-dynamic-green/15 text-dynamic-green',
|
|
118
|
-
blue: 'border-dynamic-blue/60 bg-dynamic-blue/15 text-dynamic-blue',
|
|
119
|
-
purple: 'border-dynamic-purple/60 bg-dynamic-purple/15 text-dynamic-purple',
|
|
120
|
-
pink: 'border-dynamic-pink/60 bg-dynamic-pink/15 text-dynamic-pink',
|
|
121
|
-
};
|
|
122
|
-
|
|
123
|
-
export interface JournalTaskResponse {
|
|
124
|
-
tasks?: Array<{
|
|
125
|
-
id: string;
|
|
126
|
-
name: string;
|
|
127
|
-
description: string | null;
|
|
128
|
-
priority: TaskPriority | null;
|
|
129
|
-
labelSuggestions?: string[];
|
|
130
|
-
dueDate?: string | null;
|
|
131
|
-
labels?: ProvidedTaskLabelPayload[];
|
|
132
|
-
estimationPoints?: number | null;
|
|
133
|
-
projectIds?: string[];
|
|
134
|
-
}>;
|
|
135
|
-
metadata?: {
|
|
136
|
-
generatedWithAI?: boolean;
|
|
137
|
-
totalTasks?: number;
|
|
138
|
-
};
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
interface ProvidedTaskLabelPayload {
|
|
142
|
-
id?: string;
|
|
143
|
-
name: string;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
interface TaskLabelOption {
|
|
147
|
-
id: string | null;
|
|
148
|
-
name: string;
|
|
149
|
-
displayName: string;
|
|
150
|
-
isNew: boolean;
|
|
151
|
-
selected: boolean;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
interface TaskLabelSelection {
|
|
155
|
-
suggestions: TaskLabelOption[];
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
export interface WorkspaceLabel {
|
|
159
|
-
id: string;
|
|
160
|
-
name: string;
|
|
161
|
-
color: string;
|
|
162
|
-
created_at: string;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
interface WorkspaceProject {
|
|
166
|
-
id: string;
|
|
167
|
-
name: string;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
interface BoardConfig {
|
|
171
|
-
estimation_type: string | null;
|
|
172
|
-
extended_estimation: boolean | null;
|
|
173
|
-
allow_zero_estimates: boolean | null;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
export interface ConfirmedTask {
|
|
177
|
-
title: string;
|
|
178
|
-
description: string | null;
|
|
179
|
-
priority: TaskPriority | null;
|
|
180
|
-
labels: Array<{ id?: string; name: string }>;
|
|
181
|
-
dueDate: string | null;
|
|
182
|
-
estimationPoints?: number | null;
|
|
183
|
-
projectIds?: string[];
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
interface TaskPreviewDialogProps {
|
|
187
|
-
open: boolean;
|
|
188
|
-
onOpenChange: (open: boolean) => void;
|
|
189
|
-
previewEntry: string | null;
|
|
190
|
-
pendingTaskTitle: string;
|
|
191
|
-
lastResult: JournalTaskResponse | null;
|
|
192
|
-
workspaceLabels: WorkspaceLabel[];
|
|
193
|
-
workspaceProjects: WorkspaceProject[];
|
|
194
|
-
boardConfig: BoardConfig | undefined | null;
|
|
195
|
-
aiGenerateDescriptions: boolean;
|
|
196
|
-
aiGeneratePriority: boolean;
|
|
197
|
-
aiGenerateLabels: boolean;
|
|
198
|
-
clientTimezone: string;
|
|
199
|
-
selectedLabelIds: string[];
|
|
200
|
-
setSelectedLabelIds: React.Dispatch<React.SetStateAction<string[]>>;
|
|
201
|
-
currentPreviewIndex: number;
|
|
202
|
-
setCurrentPreviewIndex: React.Dispatch<React.SetStateAction<number>>;
|
|
203
|
-
onConfirmReview: (confirmedTasks: ConfirmedTask[]) => void;
|
|
204
|
-
isCreating?: boolean;
|
|
205
|
-
submitShortcut?: 'enter' | 'cmd_enter';
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
export function TaskPreviewDialog({
|
|
209
|
-
open,
|
|
210
|
-
onOpenChange,
|
|
211
|
-
previewEntry,
|
|
212
|
-
pendingTaskTitle,
|
|
213
|
-
lastResult,
|
|
214
|
-
workspaceLabels,
|
|
215
|
-
workspaceProjects,
|
|
216
|
-
boardConfig,
|
|
217
|
-
aiGenerateDescriptions,
|
|
218
|
-
aiGeneratePriority,
|
|
219
|
-
aiGenerateLabels,
|
|
220
|
-
selectedLabelIds,
|
|
221
|
-
setSelectedLabelIds,
|
|
222
|
-
setCurrentPreviewIndex,
|
|
223
|
-
onConfirmReview,
|
|
224
|
-
isCreating = false,
|
|
225
|
-
submitShortcut = 'enter',
|
|
226
|
-
}: TaskPreviewDialogProps) {
|
|
227
|
-
const t = useTranslations();
|
|
228
|
-
const {
|
|
229
|
-
weekStartsOn,
|
|
230
|
-
timezone: tzPreference,
|
|
231
|
-
timeFormat,
|
|
232
|
-
} = useCalendarPreferences();
|
|
233
|
-
|
|
234
|
-
// Label-related state
|
|
235
|
-
const [taskLabelSelections, setTaskLabelSelections] = useState<
|
|
236
|
-
TaskLabelSelection[]
|
|
237
|
-
>([]);
|
|
238
|
-
const [taskDueDates, setTaskDueDates] = useState<(Date | undefined)[]>([]);
|
|
239
|
-
const [expandedLabelCards, setExpandedLabelCards] = useState<
|
|
240
|
-
Record<number, boolean>
|
|
241
|
-
>({});
|
|
242
|
-
const [workspaceLabelsExpanded, setWorkspaceLabelsExpanded] = useState(false);
|
|
243
|
-
const lastInitializedLabelsKey = useRef<string | null>(null);
|
|
244
|
-
const lastInitializedDueDatesKey = useRef<string | null>(null);
|
|
245
|
-
|
|
246
|
-
// Inline editing state
|
|
247
|
-
const [previewTaskMenuOpen, setPreviewTaskMenuOpen] = useState<
|
|
248
|
-
Record<number, boolean>
|
|
249
|
-
>({});
|
|
250
|
-
const [previewTaskNames, setPreviewTaskNames] = useState<
|
|
251
|
-
Record<number, string>
|
|
252
|
-
>({});
|
|
253
|
-
const [previewTaskDescriptions, setPreviewTaskDescriptions] = useState<
|
|
254
|
-
Record<number, string | null>
|
|
255
|
-
>({});
|
|
256
|
-
const [previewTaskPriorities, setPreviewTaskPriorities] = useState<
|
|
257
|
-
Record<number, TaskPriority | null>
|
|
258
|
-
>({});
|
|
259
|
-
const [previewTaskProjects, setPreviewTaskProjects] = useState<
|
|
260
|
-
Record<number, string[]>
|
|
261
|
-
>({});
|
|
262
|
-
const [previewTaskEstimations, setPreviewTaskEstimations] = useState<
|
|
263
|
-
Record<number, number | null>
|
|
264
|
-
>({});
|
|
265
|
-
const [removedTaskIndices, setRemovedTaskIndices] = useState<Set<number>>(
|
|
266
|
-
new Set()
|
|
267
|
-
);
|
|
268
|
-
const [editingTaskTitle, setEditingTaskTitle] = useState<number | null>(null);
|
|
269
|
-
const [editingTaskDescription, setEditingTaskDescription] = useState<
|
|
270
|
-
number | null
|
|
271
|
-
>(null);
|
|
272
|
-
const [expandedTaskIndex, setExpandedTaskIndex] = useState<number | null>(
|
|
273
|
-
null
|
|
274
|
-
);
|
|
275
|
-
|
|
276
|
-
const sortedLabels = useMemo(
|
|
277
|
-
() =>
|
|
278
|
-
aiGenerateLabels
|
|
279
|
-
? [...workspaceLabels].sort((a, b) =>
|
|
280
|
-
a.name.toLowerCase().localeCompare(b.name.toLowerCase())
|
|
281
|
-
)
|
|
282
|
-
: [],
|
|
283
|
-
[workspaceLabels, aiGenerateLabels]
|
|
284
|
-
);
|
|
285
|
-
|
|
286
|
-
const previewTasks = lastResult?.tasks ?? [];
|
|
287
|
-
const generatedWithAI = Boolean(lastResult?.metadata?.generatedWithAI);
|
|
288
|
-
|
|
289
|
-
// Visible tasks (not removed)
|
|
290
|
-
const visiblePreviewTasks = useMemo(() => {
|
|
291
|
-
return previewTasks
|
|
292
|
-
.map((task, originalIndex) => ({ task, originalIndex }))
|
|
293
|
-
.filter(({ originalIndex }) => !removedTaskIndices.has(originalIndex));
|
|
294
|
-
}, [previewTasks, removedTaskIndices]);
|
|
295
|
-
|
|
296
|
-
const displayedWorkspaceLabels = useMemo(() => {
|
|
297
|
-
if (!aiGenerateLabels) return [];
|
|
298
|
-
return workspaceLabelsExpanded
|
|
299
|
-
? sortedLabels
|
|
300
|
-
: sortedLabels.slice(0, MAX_VISIBLE_WORKSPACE_LABELS);
|
|
301
|
-
}, [aiGenerateLabels, workspaceLabelsExpanded, sortedLabels]);
|
|
302
|
-
|
|
303
|
-
const handleCancelPreview = useCallback(() => {
|
|
304
|
-
if (isCreating) return;
|
|
305
|
-
onOpenChange(false);
|
|
306
|
-
setCurrentPreviewIndex(0);
|
|
307
|
-
setEditingTaskTitle(null);
|
|
308
|
-
setEditingTaskDescription(null);
|
|
309
|
-
setExpandedTaskIndex(null);
|
|
310
|
-
}, [isCreating, onOpenChange, setCurrentPreviewIndex]);
|
|
311
|
-
|
|
312
|
-
const toggleLabel = useCallback(
|
|
313
|
-
(labelId: string) => {
|
|
314
|
-
if (isCreating) return;
|
|
315
|
-
setSelectedLabelIds((prev) =>
|
|
316
|
-
prev.includes(labelId)
|
|
317
|
-
? prev.filter((id) => id !== labelId)
|
|
318
|
-
: [...prev, labelId]
|
|
319
|
-
);
|
|
320
|
-
},
|
|
321
|
-
[isCreating, setSelectedLabelIds]
|
|
322
|
-
);
|
|
323
|
-
|
|
324
|
-
const toggleWorkspaceLabelsExpansion = useCallback(() => {
|
|
325
|
-
if (isCreating) return;
|
|
326
|
-
setWorkspaceLabelsExpanded((prev) => !prev);
|
|
327
|
-
}, [isCreating]);
|
|
328
|
-
|
|
329
|
-
const toggleTaskLabelSuggestion = useCallback(
|
|
330
|
-
(taskIndex: number, optionIndex: number) => {
|
|
331
|
-
if (!aiGenerateLabels || isCreating) return;
|
|
332
|
-
|
|
333
|
-
setTaskLabelSelections((prev) => {
|
|
334
|
-
if (!prev[taskIndex]) return prev;
|
|
335
|
-
|
|
336
|
-
const next = prev.map((selection, index) => {
|
|
337
|
-
if (index !== taskIndex) return selection;
|
|
338
|
-
|
|
339
|
-
return {
|
|
340
|
-
suggestions: selection.suggestions.map((option, currentIndex) => {
|
|
341
|
-
if (currentIndex !== optionIndex) return option;
|
|
342
|
-
|
|
343
|
-
return {
|
|
344
|
-
...option,
|
|
345
|
-
selected: !option.selected,
|
|
346
|
-
};
|
|
347
|
-
}),
|
|
348
|
-
};
|
|
349
|
-
});
|
|
350
|
-
|
|
351
|
-
return next;
|
|
352
|
-
});
|
|
353
|
-
},
|
|
354
|
-
[aiGenerateLabels, isCreating]
|
|
355
|
-
);
|
|
356
|
-
|
|
357
|
-
const toggleLabelPreviewExpansion = useCallback(
|
|
358
|
-
(index: number) => {
|
|
359
|
-
if (isCreating) return;
|
|
360
|
-
setExpandedLabelCards((prev) => ({
|
|
361
|
-
...prev,
|
|
362
|
-
[index]: !prev[index],
|
|
363
|
-
}));
|
|
364
|
-
},
|
|
365
|
-
[isCreating]
|
|
366
|
-
);
|
|
367
|
-
|
|
368
|
-
const handleDueDateChange = useCallback(
|
|
369
|
-
(index: number, date: Date | undefined) => {
|
|
370
|
-
if (isCreating) return;
|
|
371
|
-
setTaskDueDates((prev) => {
|
|
372
|
-
const next = [...prev];
|
|
373
|
-
next[index] = date;
|
|
374
|
-
return next;
|
|
375
|
-
});
|
|
376
|
-
},
|
|
377
|
-
[isCreating]
|
|
378
|
-
);
|
|
379
|
-
|
|
380
|
-
const handlePreviewTaskPriorityChange = useCallback(
|
|
381
|
-
(index: number, priority: TaskPriority | null) => {
|
|
382
|
-
if (isCreating) return;
|
|
383
|
-
setPreviewTaskPriorities((prev) => ({
|
|
384
|
-
...prev,
|
|
385
|
-
[index]: priority,
|
|
386
|
-
}));
|
|
387
|
-
},
|
|
388
|
-
[isCreating]
|
|
389
|
-
);
|
|
390
|
-
|
|
391
|
-
const handlePreviewTaskLabelToggle = useCallback(
|
|
392
|
-
(index: number, labelId: string) => {
|
|
393
|
-
if (isCreating) return;
|
|
394
|
-
|
|
395
|
-
const selection = taskLabelSelections[index];
|
|
396
|
-
if (!selection) return;
|
|
397
|
-
|
|
398
|
-
const optionIndex = selection.suggestions.findIndex(
|
|
399
|
-
(opt) => opt.id === labelId
|
|
400
|
-
);
|
|
401
|
-
|
|
402
|
-
if (optionIndex === -1) {
|
|
403
|
-
setTaskLabelSelections((prev) => {
|
|
404
|
-
const next = [...prev];
|
|
405
|
-
if (!next[index]) return prev;
|
|
406
|
-
|
|
407
|
-
const workspaceLabel = workspaceLabels.find((l) => l.id === labelId);
|
|
408
|
-
if (!workspaceLabel) return prev;
|
|
409
|
-
|
|
410
|
-
next[index] = {
|
|
411
|
-
suggestions: [
|
|
412
|
-
...next[index].suggestions,
|
|
413
|
-
{
|
|
414
|
-
id: workspaceLabel.id,
|
|
415
|
-
name: workspaceLabel.name,
|
|
416
|
-
displayName: workspaceLabel.name,
|
|
417
|
-
isNew: false,
|
|
418
|
-
selected: true,
|
|
419
|
-
},
|
|
420
|
-
],
|
|
421
|
-
};
|
|
422
|
-
|
|
423
|
-
return next;
|
|
424
|
-
});
|
|
425
|
-
} else {
|
|
426
|
-
toggleTaskLabelSuggestion(index, optionIndex);
|
|
427
|
-
}
|
|
428
|
-
},
|
|
429
|
-
[
|
|
430
|
-
isCreating,
|
|
431
|
-
taskLabelSelections,
|
|
432
|
-
workspaceLabels,
|
|
433
|
-
toggleTaskLabelSuggestion,
|
|
434
|
-
]
|
|
435
|
-
);
|
|
436
|
-
|
|
437
|
-
const handlePreviewTaskProjectToggle = useCallback(
|
|
438
|
-
(index: number, projectId: string) => {
|
|
439
|
-
if (isCreating) return;
|
|
440
|
-
setPreviewTaskProjects((prev) => {
|
|
441
|
-
const currentProjects = prev[index] || [];
|
|
442
|
-
const hasProject = currentProjects.includes(projectId);
|
|
443
|
-
|
|
444
|
-
return {
|
|
445
|
-
...prev,
|
|
446
|
-
[index]: hasProject
|
|
447
|
-
? currentProjects.filter((id) => id !== projectId)
|
|
448
|
-
: [...currentProjects, projectId],
|
|
449
|
-
};
|
|
450
|
-
});
|
|
451
|
-
},
|
|
452
|
-
[isCreating]
|
|
453
|
-
);
|
|
454
|
-
|
|
455
|
-
const handlePreviewTaskEstimationChange = useCallback(
|
|
456
|
-
(index: number, points: number | null) => {
|
|
457
|
-
if (isCreating) return;
|
|
458
|
-
setPreviewTaskEstimations((prev) => ({
|
|
459
|
-
...prev,
|
|
460
|
-
[index]: points,
|
|
461
|
-
}));
|
|
462
|
-
},
|
|
463
|
-
[isCreating]
|
|
464
|
-
);
|
|
465
|
-
|
|
466
|
-
const handleSaveTitle = useCallback(
|
|
467
|
-
(index: number, value: string) => {
|
|
468
|
-
const trimmedValue = value.trim();
|
|
469
|
-
if (!trimmedValue) {
|
|
470
|
-
toast.error(t('ws-tasks.errors.task_title_empty'));
|
|
471
|
-
return;
|
|
472
|
-
}
|
|
473
|
-
setPreviewTaskNames((prev) => ({
|
|
474
|
-
...prev,
|
|
475
|
-
[index]: trimmedValue,
|
|
476
|
-
}));
|
|
477
|
-
setEditingTaskTitle(null);
|
|
478
|
-
},
|
|
479
|
-
[t]
|
|
480
|
-
);
|
|
481
|
-
|
|
482
|
-
const handleSaveDescription = useCallback((index: number, value: string) => {
|
|
483
|
-
setPreviewTaskDescriptions((prev) => ({
|
|
484
|
-
...prev,
|
|
485
|
-
[index]: value.trim() || null,
|
|
486
|
-
}));
|
|
487
|
-
setEditingTaskDescription(null);
|
|
488
|
-
}, []);
|
|
489
|
-
|
|
490
|
-
const handleRemovePreviewTask = useCallback(
|
|
491
|
-
(index: number) => {
|
|
492
|
-
if (isCreating) return;
|
|
493
|
-
setRemovedTaskIndices((prev) => new Set([...prev, index]));
|
|
494
|
-
setPreviewTaskMenuOpen((prev) => ({
|
|
495
|
-
...prev,
|
|
496
|
-
[index]: false,
|
|
497
|
-
}));
|
|
498
|
-
|
|
499
|
-
if (expandedTaskIndex === index) {
|
|
500
|
-
setExpandedTaskIndex(null);
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
const visibleTasks = previewTasks.filter(
|
|
504
|
-
(_, i) => !removedTaskIndices.has(i) && i !== index
|
|
505
|
-
);
|
|
506
|
-
|
|
507
|
-
if (visibleTasks.length === 0) {
|
|
508
|
-
handleCancelPreview();
|
|
509
|
-
}
|
|
510
|
-
},
|
|
511
|
-
[
|
|
512
|
-
isCreating,
|
|
513
|
-
previewTasks,
|
|
514
|
-
removedTaskIndices,
|
|
515
|
-
expandedTaskIndex,
|
|
516
|
-
handleCancelPreview,
|
|
517
|
-
]
|
|
518
|
-
);
|
|
519
|
-
|
|
520
|
-
const handleRestorePreviewTask = useCallback(
|
|
521
|
-
(index: number) => {
|
|
522
|
-
if (isCreating) return;
|
|
523
|
-
setRemovedTaskIndices((prev) => {
|
|
524
|
-
const next = new Set(prev);
|
|
525
|
-
next.delete(index);
|
|
526
|
-
return next;
|
|
527
|
-
});
|
|
528
|
-
},
|
|
529
|
-
[isCreating]
|
|
530
|
-
);
|
|
531
|
-
|
|
532
|
-
const handleMenuItemSelect = useCallback((e: Event, action: () => void) => {
|
|
533
|
-
e.preventDefault();
|
|
534
|
-
action();
|
|
535
|
-
}, []);
|
|
536
|
-
|
|
537
|
-
// Build and submit confirmed tasks
|
|
538
|
-
const handleConfirmTasks = useCallback(() => {
|
|
539
|
-
const tasksPayload: ConfirmedTask[] = previewTasks
|
|
540
|
-
.map((task, index): ConfirmedTask | null => {
|
|
541
|
-
if (removedTaskIndices.has(index)) {
|
|
542
|
-
return null;
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
const selections = aiGenerateLabels
|
|
546
|
-
? (taskLabelSelections[index]?.suggestions.filter(
|
|
547
|
-
(option) => option.selected
|
|
548
|
-
) ?? [])
|
|
549
|
-
: [];
|
|
550
|
-
|
|
551
|
-
const taskName = previewTaskNames[index] ?? task.name;
|
|
552
|
-
const taskDescription =
|
|
553
|
-
index in previewTaskDescriptions
|
|
554
|
-
? previewTaskDescriptions[index]
|
|
555
|
-
: aiGenerateDescriptions
|
|
556
|
-
? task.description
|
|
557
|
-
: null;
|
|
558
|
-
const taskPriority =
|
|
559
|
-
index in previewTaskPriorities
|
|
560
|
-
? previewTaskPriorities[index]
|
|
561
|
-
: aiGeneratePriority
|
|
562
|
-
? task.priority
|
|
563
|
-
: null;
|
|
564
|
-
const taskEstimation =
|
|
565
|
-
index in previewTaskEstimations
|
|
566
|
-
? previewTaskEstimations[index]
|
|
567
|
-
: null;
|
|
568
|
-
const taskProjects = previewTaskProjects[index] || [];
|
|
569
|
-
|
|
570
|
-
return {
|
|
571
|
-
title: taskName,
|
|
572
|
-
description: taskDescription ?? null,
|
|
573
|
-
priority: taskPriority ?? null,
|
|
574
|
-
labels: selections.map((option) => ({
|
|
575
|
-
id: option.id ?? undefined,
|
|
576
|
-
name: option.name,
|
|
577
|
-
})),
|
|
578
|
-
dueDate: formatDueDateForPayload(taskDueDates[index]),
|
|
579
|
-
estimationPoints: taskEstimation,
|
|
580
|
-
projectIds: taskProjects,
|
|
581
|
-
};
|
|
582
|
-
})
|
|
583
|
-
.filter((task): task is ConfirmedTask => task !== null);
|
|
584
|
-
|
|
585
|
-
if (tasksPayload.length === 0) {
|
|
586
|
-
toast.error(t('ws-tasks.errors.no_tasks_selected'));
|
|
587
|
-
return;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
onConfirmReview(tasksPayload);
|
|
591
|
-
}, [
|
|
592
|
-
previewTasks,
|
|
593
|
-
removedTaskIndices,
|
|
594
|
-
aiGenerateLabels,
|
|
595
|
-
taskLabelSelections,
|
|
596
|
-
previewTaskNames,
|
|
597
|
-
previewTaskDescriptions,
|
|
598
|
-
aiGenerateDescriptions,
|
|
599
|
-
previewTaskPriorities,
|
|
600
|
-
aiGeneratePriority,
|
|
601
|
-
previewTaskEstimations,
|
|
602
|
-
previewTaskProjects,
|
|
603
|
-
taskDueDates,
|
|
604
|
-
onConfirmReview,
|
|
605
|
-
t,
|
|
606
|
-
]);
|
|
607
|
-
|
|
608
|
-
// Initialize task label selections when preview opens
|
|
609
|
-
useEffect(() => {
|
|
610
|
-
if (!aiGenerateLabels) {
|
|
611
|
-
return;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
if (!lastResult?.tasks?.length) {
|
|
615
|
-
if (taskLabelSelections.length > 0) {
|
|
616
|
-
setTaskLabelSelections([]);
|
|
617
|
-
}
|
|
618
|
-
if (Object.keys(expandedLabelCards).length > 0) {
|
|
619
|
-
setExpandedLabelCards({});
|
|
620
|
-
}
|
|
621
|
-
lastInitializedLabelsKey.current = null;
|
|
622
|
-
return;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
const previewKey = `${previewEntry ?? pendingTaskTitle}:${previewTasks.length}`;
|
|
626
|
-
|
|
627
|
-
if (lastInitializedLabelsKey.current === previewKey) {
|
|
628
|
-
return;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
const normalizedExisting = new Map<string, WorkspaceLabel>();
|
|
632
|
-
sortedLabels.forEach((label) => {
|
|
633
|
-
const normalized = normalizeLabel(label.name);
|
|
634
|
-
if (normalized) {
|
|
635
|
-
normalizedExisting.set(normalized, label);
|
|
636
|
-
}
|
|
637
|
-
});
|
|
638
|
-
|
|
639
|
-
const nextSelections: TaskLabelSelection[] = previewTasks.map((task) => {
|
|
640
|
-
const seen = new Set<string>();
|
|
641
|
-
const options: TaskLabelOption[] = [];
|
|
642
|
-
|
|
643
|
-
(task.labels ?? []).forEach((label) => {
|
|
644
|
-
const normalized = normalizeLabel(label.name);
|
|
645
|
-
if (!normalized || seen.has(normalized)) {
|
|
646
|
-
return;
|
|
647
|
-
}
|
|
648
|
-
seen.add(normalized);
|
|
649
|
-
|
|
650
|
-
const existing = normalizedExisting.get(normalized);
|
|
651
|
-
if (existing) {
|
|
652
|
-
options.push({
|
|
653
|
-
id: existing.id,
|
|
654
|
-
name: existing.name,
|
|
655
|
-
displayName: existing.name,
|
|
656
|
-
isNew: false,
|
|
657
|
-
selected: true,
|
|
658
|
-
});
|
|
659
|
-
} else {
|
|
660
|
-
options.push({
|
|
661
|
-
id: label.id ?? null,
|
|
662
|
-
name: label.name,
|
|
663
|
-
displayName: label.name,
|
|
664
|
-
isNew: !label.id,
|
|
665
|
-
selected: true,
|
|
666
|
-
});
|
|
667
|
-
}
|
|
668
|
-
});
|
|
669
|
-
|
|
670
|
-
(task.labelSuggestions ?? []).forEach((suggestion) => {
|
|
671
|
-
const normalized = normalizeLabel(suggestion);
|
|
672
|
-
if (!normalized || seen.has(normalized)) {
|
|
673
|
-
return;
|
|
674
|
-
}
|
|
675
|
-
seen.add(normalized);
|
|
676
|
-
|
|
677
|
-
const existing = normalizedExisting.get(normalized);
|
|
678
|
-
if (existing) {
|
|
679
|
-
options.push({
|
|
680
|
-
id: existing.id,
|
|
681
|
-
name: existing.name,
|
|
682
|
-
displayName: existing.name,
|
|
683
|
-
isNew: false,
|
|
684
|
-
selected: true,
|
|
685
|
-
});
|
|
686
|
-
} else {
|
|
687
|
-
const formatted = formatLabel(suggestion);
|
|
688
|
-
options.push({
|
|
689
|
-
id: null,
|
|
690
|
-
name: formatted,
|
|
691
|
-
displayName: formatted,
|
|
692
|
-
isNew: true,
|
|
693
|
-
selected: false,
|
|
694
|
-
});
|
|
695
|
-
}
|
|
696
|
-
});
|
|
697
|
-
|
|
698
|
-
return {
|
|
699
|
-
suggestions: options.slice(0, MAX_LABEL_SUGGESTIONS),
|
|
700
|
-
};
|
|
701
|
-
});
|
|
702
|
-
|
|
703
|
-
setTaskLabelSelections(nextSelections);
|
|
704
|
-
lastInitializedLabelsKey.current = previewKey;
|
|
705
|
-
setExpandedLabelCards({});
|
|
706
|
-
}, [
|
|
707
|
-
aiGenerateLabels,
|
|
708
|
-
lastResult,
|
|
709
|
-
previewEntry,
|
|
710
|
-
pendingTaskTitle,
|
|
711
|
-
sortedLabels,
|
|
712
|
-
expandedLabelCards,
|
|
713
|
-
taskLabelSelections.length,
|
|
714
|
-
previewTasks,
|
|
715
|
-
]);
|
|
716
|
-
|
|
717
|
-
// Initialize task due dates when preview opens
|
|
718
|
-
useEffect(() => {
|
|
719
|
-
if (!lastResult?.tasks?.length) {
|
|
720
|
-
if (taskDueDates.length) {
|
|
721
|
-
setTaskDueDates([]);
|
|
722
|
-
}
|
|
723
|
-
lastInitializedDueDatesKey.current = null;
|
|
724
|
-
return;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
const previewKey = `${previewEntry ?? pendingTaskTitle}:${previewTasks.length}`;
|
|
728
|
-
if (lastInitializedDueDatesKey.current === previewKey) {
|
|
729
|
-
return;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
setTaskDueDates(
|
|
733
|
-
previewTasks.map((task) => parseDueDateToState(task.dueDate ?? null))
|
|
734
|
-
);
|
|
735
|
-
lastInitializedDueDatesKey.current = previewKey;
|
|
736
|
-
}, [
|
|
737
|
-
lastResult,
|
|
738
|
-
previewEntry,
|
|
739
|
-
pendingTaskTitle,
|
|
740
|
-
taskDueDates.length,
|
|
741
|
-
previewTasks,
|
|
742
|
-
]);
|
|
743
|
-
|
|
744
|
-
// Initialize preview task inline editing state when preview opens
|
|
745
|
-
useEffect(() => {
|
|
746
|
-
if (!lastResult?.tasks?.length) {
|
|
747
|
-
setPreviewTaskMenuOpen({});
|
|
748
|
-
setPreviewTaskNames({});
|
|
749
|
-
setPreviewTaskDescriptions({});
|
|
750
|
-
setPreviewTaskPriorities({});
|
|
751
|
-
setPreviewTaskProjects({});
|
|
752
|
-
setPreviewTaskEstimations({});
|
|
753
|
-
setRemovedTaskIndices(new Set());
|
|
754
|
-
setExpandedTaskIndex(null);
|
|
755
|
-
return;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
const initialNames: Record<number, string> = {};
|
|
759
|
-
const initialDescriptions: Record<number, string | null> = {};
|
|
760
|
-
const initialPriorities: Record<number, TaskPriority | null> = {};
|
|
761
|
-
const initialProjects: Record<number, string[]> = {};
|
|
762
|
-
const initialEstimations: Record<number, number | null> = {};
|
|
763
|
-
|
|
764
|
-
lastResult?.tasks?.forEach((task, index) => {
|
|
765
|
-
initialNames[index] = task.name;
|
|
766
|
-
initialDescriptions[index] = task.description || null;
|
|
767
|
-
initialPriorities[index] = task.priority || null;
|
|
768
|
-
initialProjects[index] = task.projectIds || [];
|
|
769
|
-
initialEstimations[index] = task.estimationPoints ?? null;
|
|
770
|
-
});
|
|
771
|
-
|
|
772
|
-
setPreviewTaskNames(initialNames);
|
|
773
|
-
setPreviewTaskDescriptions(initialDescriptions);
|
|
774
|
-
setPreviewTaskPriorities(initialPriorities);
|
|
775
|
-
setPreviewTaskProjects(initialProjects);
|
|
776
|
-
setPreviewTaskEstimations(initialEstimations);
|
|
777
|
-
setPreviewTaskMenuOpen({});
|
|
778
|
-
setRemovedTaskIndices(new Set());
|
|
779
|
-
setExpandedTaskIndex(null);
|
|
780
|
-
}, [lastResult]);
|
|
781
|
-
|
|
782
|
-
// Reset labels when aiGenerateLabels is disabled
|
|
783
|
-
useEffect(() => {
|
|
784
|
-
if (!aiGenerateLabels) {
|
|
785
|
-
if (selectedLabelIds.length > 0) {
|
|
786
|
-
setSelectedLabelIds([]);
|
|
787
|
-
}
|
|
788
|
-
if (taskLabelSelections.length > 0) {
|
|
789
|
-
setTaskLabelSelections([]);
|
|
790
|
-
}
|
|
791
|
-
if (Object.keys(expandedLabelCards).length > 0) {
|
|
792
|
-
setExpandedLabelCards({});
|
|
793
|
-
}
|
|
794
|
-
if (workspaceLabelsExpanded) {
|
|
795
|
-
setWorkspaceLabelsExpanded(false);
|
|
796
|
-
}
|
|
797
|
-
lastInitializedLabelsKey.current = null;
|
|
798
|
-
}
|
|
799
|
-
}, [
|
|
800
|
-
aiGenerateLabels,
|
|
801
|
-
expandedLabelCards,
|
|
802
|
-
selectedLabelIds.length,
|
|
803
|
-
taskLabelSelections.length,
|
|
804
|
-
workspaceLabelsExpanded,
|
|
805
|
-
setSelectedLabelIds,
|
|
806
|
-
]);
|
|
807
|
-
|
|
808
|
-
const contentRef = useRef<HTMLDivElement>(null);
|
|
809
|
-
|
|
810
|
-
// Allow Enter / Cmd+Enter to submit when not editing inline
|
|
811
|
-
const handleDialogKeyDown = useCallback(
|
|
812
|
-
(e: React.KeyboardEvent) => {
|
|
813
|
-
if (e.key !== 'Enter') return;
|
|
814
|
-
const isModifier = e.metaKey || e.ctrlKey;
|
|
815
|
-
|
|
816
|
-
// When submitShortcut is 'cmd_enter', only modifier+Enter submits
|
|
817
|
-
if (submitShortcut === 'cmd_enter' && !isModifier) return;
|
|
818
|
-
|
|
819
|
-
// Plain Enter: skip if inside textareas, inputs, or dropdown menus
|
|
820
|
-
if (!isModifier) {
|
|
821
|
-
const target = e.target as HTMLElement;
|
|
822
|
-
if (
|
|
823
|
-
target.tagName === 'TEXTAREA' ||
|
|
824
|
-
target.tagName === 'INPUT' ||
|
|
825
|
-
target.closest('[role="menu"]') ||
|
|
826
|
-
target.closest('[role="listbox"]')
|
|
827
|
-
) {
|
|
828
|
-
return;
|
|
829
|
-
}
|
|
830
|
-
}
|
|
831
|
-
if (
|
|
832
|
-
!isCreating &&
|
|
833
|
-
visiblePreviewTasks.length > 0 &&
|
|
834
|
-
editingTaskTitle === null &&
|
|
835
|
-
editingTaskDescription === null
|
|
836
|
-
) {
|
|
837
|
-
e.preventDefault();
|
|
838
|
-
handleConfirmTasks();
|
|
839
|
-
}
|
|
840
|
-
},
|
|
841
|
-
[
|
|
842
|
-
isCreating,
|
|
843
|
-
visiblePreviewTasks.length,
|
|
844
|
-
editingTaskTitle,
|
|
845
|
-
editingTaskDescription,
|
|
846
|
-
handleConfirmTasks,
|
|
847
|
-
submitShortcut,
|
|
848
|
-
]
|
|
849
|
-
);
|
|
850
|
-
|
|
851
|
-
return (
|
|
852
|
-
<Dialog
|
|
853
|
-
open={open}
|
|
854
|
-
onOpenChange={(isOpen) => {
|
|
855
|
-
if (!isOpen) {
|
|
856
|
-
handleCancelPreview();
|
|
857
|
-
}
|
|
858
|
-
}}
|
|
859
|
-
>
|
|
860
|
-
<DialogContent
|
|
861
|
-
ref={contentRef}
|
|
862
|
-
className="max-h-[85vh] overflow-hidden sm:max-w-2xl"
|
|
863
|
-
onOpenAutoFocus={(e) => {
|
|
864
|
-
e.preventDefault();
|
|
865
|
-
contentRef.current?.focus();
|
|
866
|
-
}}
|
|
867
|
-
onKeyDown={handleDialogKeyDown}
|
|
868
|
-
tabIndex={-1}
|
|
869
|
-
>
|
|
870
|
-
<DialogHeader>
|
|
871
|
-
<DialogTitle>
|
|
872
|
-
{t('ws-tasks.review_tasks', { count: previewTasks.length })}
|
|
873
|
-
</DialogTitle>
|
|
874
|
-
<DialogDescription>
|
|
875
|
-
{t('ws-tasks.select_tasks_to_keep')}
|
|
876
|
-
</DialogDescription>
|
|
877
|
-
</DialogHeader>
|
|
878
|
-
|
|
879
|
-
<ScrollArea className="max-h-[55vh] pr-4">
|
|
880
|
-
<div className="space-y-4 py-2">
|
|
881
|
-
{/* Workspace Labels */}
|
|
882
|
-
{aiGenerateLabels && sortedLabels.length > 0 && (
|
|
883
|
-
<div className="space-y-2">
|
|
884
|
-
<div className="flex items-center justify-between">
|
|
885
|
-
<Label className="font-medium text-sm">
|
|
886
|
-
{t('ws-tasks.workspace_labels')}
|
|
887
|
-
</Label>
|
|
888
|
-
<span className="text-muted-foreground text-xs">
|
|
889
|
-
{t('ws-tasks.apply_to_all_tasks')}
|
|
890
|
-
</span>
|
|
891
|
-
</div>
|
|
892
|
-
|
|
893
|
-
<div className="flex flex-wrap gap-2">
|
|
894
|
-
{displayedWorkspaceLabels.map((label) => {
|
|
895
|
-
const selected = selectedLabelIds.includes(label.id);
|
|
896
|
-
const colorClass =
|
|
897
|
-
LABEL_COLOR_CLASSES[label.color] ||
|
|
898
|
-
LABEL_COLOR_CLASSES.gray;
|
|
899
|
-
|
|
900
|
-
return (
|
|
901
|
-
<button
|
|
902
|
-
key={label.id}
|
|
903
|
-
type="button"
|
|
904
|
-
onClick={() => toggleLabel(label.id)}
|
|
905
|
-
className={`rounded-full border px-3 py-1 font-medium text-xs transition ${colorClass} ${
|
|
906
|
-
selected ? 'ring-2 ring-dynamic-blue' : ''
|
|
907
|
-
}`}
|
|
908
|
-
>
|
|
909
|
-
{label.name}
|
|
910
|
-
</button>
|
|
911
|
-
);
|
|
912
|
-
})}
|
|
913
|
-
</div>
|
|
914
|
-
{sortedLabels.length > MAX_VISIBLE_WORKSPACE_LABELS ? (
|
|
915
|
-
<button
|
|
916
|
-
type="button"
|
|
917
|
-
onClick={toggleWorkspaceLabelsExpansion}
|
|
918
|
-
className="mt-2 font-medium text-dynamic-blue text-xs hover:underline"
|
|
919
|
-
disabled={isCreating}
|
|
920
|
-
>
|
|
921
|
-
{workspaceLabelsExpanded
|
|
922
|
-
? t('ws-tasks.show_less')
|
|
923
|
-
: t('ws-tasks.show_n_more', {
|
|
924
|
-
count:
|
|
925
|
-
sortedLabels.length - MAX_VISIBLE_WORKSPACE_LABELS,
|
|
926
|
-
})}
|
|
927
|
-
</button>
|
|
928
|
-
) : null}
|
|
929
|
-
</div>
|
|
930
|
-
)}
|
|
931
|
-
|
|
932
|
-
{/* Task List */}
|
|
933
|
-
<div className="space-y-2">
|
|
934
|
-
<div className="flex items-center justify-between">
|
|
935
|
-
<p className="font-semibold text-foreground text-sm">
|
|
936
|
-
{generatedWithAI
|
|
937
|
-
? t('ws-tasks.ai_generated_tasks', {
|
|
938
|
-
count: previewTasks.length,
|
|
939
|
-
})
|
|
940
|
-
: t('ws-tasks.tasks_count', { count: previewTasks.length })}
|
|
941
|
-
</p>
|
|
942
|
-
<Badge
|
|
943
|
-
variant="outline"
|
|
944
|
-
className="border-dynamic-blue/40 bg-transparent text-foreground text-xs"
|
|
945
|
-
>
|
|
946
|
-
{t('ws-tasks.n_of_m_selected', {
|
|
947
|
-
n: visiblePreviewTasks.length,
|
|
948
|
-
m: previewTasks.length,
|
|
949
|
-
})}
|
|
950
|
-
</Badge>
|
|
951
|
-
</div>
|
|
952
|
-
|
|
953
|
-
<div className="space-y-2">
|
|
954
|
-
{previewTasks.map((task, originalIndex) => {
|
|
955
|
-
const isRemoved = removedTaskIndices.has(originalIndex);
|
|
956
|
-
const isExpanded = expandedTaskIndex === originalIndex;
|
|
957
|
-
const selection = taskLabelSelections[originalIndex];
|
|
958
|
-
const suggestions = aiGenerateLabels
|
|
959
|
-
? (selection?.suggestions ?? [])
|
|
960
|
-
: [];
|
|
961
|
-
const hasNewSelections = suggestions.some(
|
|
962
|
-
(option) => option.isNew && option.selected
|
|
963
|
-
);
|
|
964
|
-
const dueDateValue = taskDueDates[originalIndex];
|
|
965
|
-
const menuOpen = previewTaskMenuOpen[originalIndex] || false;
|
|
966
|
-
|
|
967
|
-
const currentName =
|
|
968
|
-
previewTaskNames[originalIndex] ?? task.name;
|
|
969
|
-
const currentDescription =
|
|
970
|
-
originalIndex in previewTaskDescriptions
|
|
971
|
-
? previewTaskDescriptions[originalIndex]
|
|
972
|
-
: task.description;
|
|
973
|
-
const currentPriority: TaskPriority | null =
|
|
974
|
-
originalIndex in previewTaskPriorities
|
|
975
|
-
? (previewTaskPriorities[originalIndex] ?? null)
|
|
976
|
-
: (task.priority ?? null);
|
|
977
|
-
|
|
978
|
-
// Removed task — compact row with restore button
|
|
979
|
-
if (isRemoved) {
|
|
980
|
-
return (
|
|
981
|
-
<div
|
|
982
|
-
key={task.id ?? `${task.name}-${originalIndex}`}
|
|
983
|
-
className="flex items-center gap-3 rounded-lg border border-muted-foreground/20 border-dashed bg-muted/30 px-3 py-2 opacity-60"
|
|
984
|
-
>
|
|
985
|
-
<button
|
|
986
|
-
type="button"
|
|
987
|
-
onClick={() =>
|
|
988
|
-
handleRestorePreviewTask(originalIndex)
|
|
989
|
-
}
|
|
990
|
-
className="flex h-5 w-5 shrink-0 items-center justify-center rounded border border-muted-foreground/30"
|
|
991
|
-
disabled={isCreating}
|
|
992
|
-
>
|
|
993
|
-
<Square className="h-3 w-3 text-muted-foreground/40" />
|
|
994
|
-
</button>
|
|
995
|
-
<span className="flex-1 truncate text-muted-foreground text-sm line-through">
|
|
996
|
-
{currentName}
|
|
997
|
-
</span>
|
|
998
|
-
<Button
|
|
999
|
-
variant="ghost"
|
|
1000
|
-
size="xs"
|
|
1001
|
-
onClick={() =>
|
|
1002
|
-
handleRestorePreviewTask(originalIndex)
|
|
1003
|
-
}
|
|
1004
|
-
className="h-6 px-2 text-xs"
|
|
1005
|
-
disabled={isCreating}
|
|
1006
|
-
>
|
|
1007
|
-
Restore
|
|
1008
|
-
</Button>
|
|
1009
|
-
</div>
|
|
1010
|
-
);
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
return (
|
|
1014
|
-
<div
|
|
1015
|
-
key={task.id ?? `${task.name}-${originalIndex}`}
|
|
1016
|
-
className="group rounded-lg border bg-background/80 transition-colors hover:border-border"
|
|
1017
|
-
>
|
|
1018
|
-
{/* Compact row */}
|
|
1019
|
-
<div className="flex items-center gap-3 px-3 py-2.5">
|
|
1020
|
-
{/* Checkbox (keep/discard) */}
|
|
1021
|
-
<button
|
|
1022
|
-
type="button"
|
|
1023
|
-
onClick={() => handleRemovePreviewTask(originalIndex)}
|
|
1024
|
-
className="flex h-5 w-5 shrink-0 items-center justify-center rounded border border-dynamic-green/60 bg-dynamic-green/15"
|
|
1025
|
-
disabled={isCreating}
|
|
1026
|
-
title={t('ws-tasks.click_to_discard')}
|
|
1027
|
-
>
|
|
1028
|
-
<Check className="h-3 w-3 text-dynamic-green" />
|
|
1029
|
-
</button>
|
|
1030
|
-
|
|
1031
|
-
{/* Title (click to expand) */}
|
|
1032
|
-
<button
|
|
1033
|
-
type="button"
|
|
1034
|
-
onClick={() =>
|
|
1035
|
-
setExpandedTaskIndex(
|
|
1036
|
-
isExpanded ? null : originalIndex
|
|
1037
|
-
)
|
|
1038
|
-
}
|
|
1039
|
-
className="flex flex-1 items-center gap-2 text-left"
|
|
1040
|
-
disabled={isCreating}
|
|
1041
|
-
>
|
|
1042
|
-
<span className="flex-1 truncate font-medium text-sm">
|
|
1043
|
-
{currentName}
|
|
1044
|
-
</span>
|
|
1045
|
-
</button>
|
|
1046
|
-
|
|
1047
|
-
{/* Priority badge */}
|
|
1048
|
-
{aiGeneratePriority && currentPriority && (
|
|
1049
|
-
<Badge
|
|
1050
|
-
variant="outline"
|
|
1051
|
-
className={cn(
|
|
1052
|
-
'shrink-0 text-[10px]',
|
|
1053
|
-
priorityBadgeClass(currentPriority)
|
|
1054
|
-
)}
|
|
1055
|
-
>
|
|
1056
|
-
{currentPriority && PRIORITY_KEYS[currentPriority]
|
|
1057
|
-
? t(
|
|
1058
|
-
`ws-tasks.${PRIORITY_KEYS[currentPriority]}` as 'ws-tasks.preview_priority_urgent'
|
|
1059
|
-
)
|
|
1060
|
-
: t('ws-tasks.preview_no_priority')}
|
|
1061
|
-
</Badge>
|
|
1062
|
-
)}
|
|
1063
|
-
|
|
1064
|
-
{/* Estimation */}
|
|
1065
|
-
{boardConfig?.estimation_type &&
|
|
1066
|
-
originalIndex in previewTaskEstimations &&
|
|
1067
|
-
previewTaskEstimations[originalIndex] !== null && (
|
|
1068
|
-
<TaskEstimationDisplay
|
|
1069
|
-
points={
|
|
1070
|
-
previewTaskEstimations[originalIndex] ?? 0
|
|
1071
|
-
}
|
|
1072
|
-
size="sm"
|
|
1073
|
-
estimationType={boardConfig.estimation_type}
|
|
1074
|
-
showIcon
|
|
1075
|
-
/>
|
|
1076
|
-
)}
|
|
1077
|
-
|
|
1078
|
-
{/* Due date chip */}
|
|
1079
|
-
{dueDateValue && (
|
|
1080
|
-
<span className="shrink-0 text-muted-foreground text-xs">
|
|
1081
|
-
{dueDateValue.toLocaleDateString('en-US', {
|
|
1082
|
-
month: 'short',
|
|
1083
|
-
day: 'numeric',
|
|
1084
|
-
})}
|
|
1085
|
-
</span>
|
|
1086
|
-
)}
|
|
1087
|
-
|
|
1088
|
-
{/* Expand/collapse */}
|
|
1089
|
-
<Button
|
|
1090
|
-
variant="ghost"
|
|
1091
|
-
size="xs"
|
|
1092
|
-
className="h-6 w-6 shrink-0 p-0"
|
|
1093
|
-
onClick={() =>
|
|
1094
|
-
setExpandedTaskIndex(
|
|
1095
|
-
isExpanded ? null : originalIndex
|
|
1096
|
-
)
|
|
1097
|
-
}
|
|
1098
|
-
disabled={isCreating}
|
|
1099
|
-
>
|
|
1100
|
-
{isExpanded ? (
|
|
1101
|
-
<ChevronUp className="h-3.5 w-3.5" />
|
|
1102
|
-
) : (
|
|
1103
|
-
<ChevronDown className="h-3.5 w-3.5" />
|
|
1104
|
-
)}
|
|
1105
|
-
</Button>
|
|
1106
|
-
</div>
|
|
1107
|
-
|
|
1108
|
-
{/* Expanded details */}
|
|
1109
|
-
{isExpanded && (
|
|
1110
|
-
<div className="border-t px-3 py-3">
|
|
1111
|
-
<div className="space-y-3">
|
|
1112
|
-
{/* Title editing */}
|
|
1113
|
-
<div className="space-y-1">
|
|
1114
|
-
<p className="font-medium text-muted-foreground text-xs">
|
|
1115
|
-
Title
|
|
1116
|
-
</p>
|
|
1117
|
-
{editingTaskTitle === originalIndex ? (
|
|
1118
|
-
<div className="space-y-2">
|
|
1119
|
-
<Textarea
|
|
1120
|
-
value={currentName}
|
|
1121
|
-
onChange={(e) => {
|
|
1122
|
-
setPreviewTaskNames((prev) => ({
|
|
1123
|
-
...prev,
|
|
1124
|
-
[originalIndex]: e.target.value,
|
|
1125
|
-
}));
|
|
1126
|
-
}}
|
|
1127
|
-
onKeyDown={(e) => {
|
|
1128
|
-
if (e.key === 'Enter' && !e.shiftKey) {
|
|
1129
|
-
e.preventDefault();
|
|
1130
|
-
handleSaveTitle(
|
|
1131
|
-
originalIndex,
|
|
1132
|
-
currentName
|
|
1133
|
-
);
|
|
1134
|
-
} else if (e.key === 'Escape') {
|
|
1135
|
-
setEditingTaskTitle(null);
|
|
1136
|
-
}
|
|
1137
|
-
}}
|
|
1138
|
-
className="min-h-10 w-full resize-none text-sm"
|
|
1139
|
-
autoFocus
|
|
1140
|
-
disabled={isCreating}
|
|
1141
|
-
/>
|
|
1142
|
-
<div className="flex gap-2">
|
|
1143
|
-
<Button
|
|
1144
|
-
size="sm"
|
|
1145
|
-
onClick={() =>
|
|
1146
|
-
handleSaveTitle(
|
|
1147
|
-
originalIndex,
|
|
1148
|
-
currentName
|
|
1149
|
-
)
|
|
1150
|
-
}
|
|
1151
|
-
disabled={isCreating}
|
|
1152
|
-
>
|
|
1153
|
-
Save
|
|
1154
|
-
</Button>
|
|
1155
|
-
<Button
|
|
1156
|
-
size="sm"
|
|
1157
|
-
variant="ghost"
|
|
1158
|
-
onClick={() => setEditingTaskTitle(null)}
|
|
1159
|
-
disabled={isCreating}
|
|
1160
|
-
>
|
|
1161
|
-
{t('common.cancel')}
|
|
1162
|
-
</Button>
|
|
1163
|
-
</div>
|
|
1164
|
-
</div>
|
|
1165
|
-
) : (
|
|
1166
|
-
<button
|
|
1167
|
-
type="button"
|
|
1168
|
-
onClick={() =>
|
|
1169
|
-
setEditingTaskTitle(originalIndex)
|
|
1170
|
-
}
|
|
1171
|
-
className="w-full cursor-text rounded px-2 py-1 text-left font-medium text-sm transition hover:bg-muted/50"
|
|
1172
|
-
disabled={isCreating}
|
|
1173
|
-
>
|
|
1174
|
-
{currentName}
|
|
1175
|
-
</button>
|
|
1176
|
-
)}
|
|
1177
|
-
</div>
|
|
1178
|
-
|
|
1179
|
-
{/* Description */}
|
|
1180
|
-
<div className="space-y-1">
|
|
1181
|
-
<p className="font-medium text-muted-foreground text-xs">
|
|
1182
|
-
Description
|
|
1183
|
-
</p>
|
|
1184
|
-
{aiGenerateDescriptions ? (
|
|
1185
|
-
editingTaskDescription === originalIndex ? (
|
|
1186
|
-
<div className="space-y-2">
|
|
1187
|
-
<Textarea
|
|
1188
|
-
value={currentDescription || ''}
|
|
1189
|
-
onChange={(e) => {
|
|
1190
|
-
setPreviewTaskDescriptions((prev) => ({
|
|
1191
|
-
...prev,
|
|
1192
|
-
[originalIndex]: e.target.value,
|
|
1193
|
-
}));
|
|
1194
|
-
}}
|
|
1195
|
-
onKeyDown={(e) => {
|
|
1196
|
-
if (
|
|
1197
|
-
e.key === 'Enter' &&
|
|
1198
|
-
e.metaKey &&
|
|
1199
|
-
!e.shiftKey
|
|
1200
|
-
) {
|
|
1201
|
-
e.preventDefault();
|
|
1202
|
-
handleSaveDescription(
|
|
1203
|
-
originalIndex,
|
|
1204
|
-
currentDescription || ''
|
|
1205
|
-
);
|
|
1206
|
-
} else if (e.key === 'Escape') {
|
|
1207
|
-
setEditingTaskDescription(null);
|
|
1208
|
-
}
|
|
1209
|
-
}}
|
|
1210
|
-
className="min-h-20 w-full resize-none text-sm"
|
|
1211
|
-
placeholder={t(
|
|
1212
|
-
'ws-tasks.add_description'
|
|
1213
|
-
)}
|
|
1214
|
-
autoFocus
|
|
1215
|
-
disabled={isCreating}
|
|
1216
|
-
/>
|
|
1217
|
-
<div className="flex gap-2">
|
|
1218
|
-
<Button
|
|
1219
|
-
size="sm"
|
|
1220
|
-
onClick={() =>
|
|
1221
|
-
handleSaveDescription(
|
|
1222
|
-
originalIndex,
|
|
1223
|
-
currentDescription || ''
|
|
1224
|
-
)
|
|
1225
|
-
}
|
|
1226
|
-
disabled={isCreating}
|
|
1227
|
-
>
|
|
1228
|
-
Save
|
|
1229
|
-
</Button>
|
|
1230
|
-
<Button
|
|
1231
|
-
size="sm"
|
|
1232
|
-
variant="ghost"
|
|
1233
|
-
onClick={() =>
|
|
1234
|
-
setEditingTaskDescription(null)
|
|
1235
|
-
}
|
|
1236
|
-
disabled={isCreating}
|
|
1237
|
-
>
|
|
1238
|
-
{t('common.cancel')}
|
|
1239
|
-
</Button>
|
|
1240
|
-
</div>
|
|
1241
|
-
</div>
|
|
1242
|
-
) : (
|
|
1243
|
-
<button
|
|
1244
|
-
type="button"
|
|
1245
|
-
onClick={() =>
|
|
1246
|
-
setEditingTaskDescription(originalIndex)
|
|
1247
|
-
}
|
|
1248
|
-
className="line-clamp-3 w-full cursor-text rounded px-2 py-1 text-left text-sm leading-relaxed opacity-90 transition hover:bg-muted/50"
|
|
1249
|
-
disabled={isCreating}
|
|
1250
|
-
>
|
|
1251
|
-
{currentDescription ||
|
|
1252
|
-
t('ws-tasks.no_description')}
|
|
1253
|
-
</button>
|
|
1254
|
-
)
|
|
1255
|
-
) : (
|
|
1256
|
-
<p className="text-muted-foreground text-sm italic">
|
|
1257
|
-
{t(
|
|
1258
|
-
'ws-tasks.description_generation_disabled'
|
|
1259
|
-
)}
|
|
1260
|
-
</p>
|
|
1261
|
-
)}
|
|
1262
|
-
</div>
|
|
1263
|
-
|
|
1264
|
-
{/* Inline actions row */}
|
|
1265
|
-
<div className="flex flex-wrap items-center gap-2">
|
|
1266
|
-
{/* Priority / Estimation / Labels / Projects menu */}
|
|
1267
|
-
<DropdownMenu
|
|
1268
|
-
open={menuOpen}
|
|
1269
|
-
onOpenChange={(open) => {
|
|
1270
|
-
setPreviewTaskMenuOpen((prev) => ({
|
|
1271
|
-
...prev,
|
|
1272
|
-
[originalIndex]: open,
|
|
1273
|
-
}));
|
|
1274
|
-
}}
|
|
1275
|
-
>
|
|
1276
|
-
<DropdownMenuTrigger asChild>
|
|
1277
|
-
<Button
|
|
1278
|
-
variant="outline"
|
|
1279
|
-
size="xs"
|
|
1280
|
-
className="h-7 gap-1.5 px-2 text-xs"
|
|
1281
|
-
disabled={isCreating}
|
|
1282
|
-
>
|
|
1283
|
-
<MoreHorizontal className="h-3 w-3" />
|
|
1284
|
-
Options
|
|
1285
|
-
</Button>
|
|
1286
|
-
</DropdownMenuTrigger>
|
|
1287
|
-
<DropdownMenuContent
|
|
1288
|
-
align="start"
|
|
1289
|
-
className="w-56"
|
|
1290
|
-
sideOffset={5}
|
|
1291
|
-
onClick={(e) => {
|
|
1292
|
-
e.stopPropagation();
|
|
1293
|
-
}}
|
|
1294
|
-
>
|
|
1295
|
-
<TaskPriorityMenu
|
|
1296
|
-
currentPriority={currentPriority}
|
|
1297
|
-
isLoading={isCreating}
|
|
1298
|
-
onPriorityChange={(priority) =>
|
|
1299
|
-
handlePreviewTaskPriorityChange(
|
|
1300
|
-
originalIndex,
|
|
1301
|
-
priority
|
|
1302
|
-
)
|
|
1303
|
-
}
|
|
1304
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1305
|
-
onClose={() =>
|
|
1306
|
-
setPreviewTaskMenuOpen((prev) => ({
|
|
1307
|
-
...prev,
|
|
1308
|
-
[originalIndex]: false,
|
|
1309
|
-
}))
|
|
1310
|
-
}
|
|
1311
|
-
translations={{
|
|
1312
|
-
priority: t('ws-tasks.cmd_priority'),
|
|
1313
|
-
none: t('ws-tasks.ctx_none'),
|
|
1314
|
-
urgent: t(
|
|
1315
|
-
'ws-tasks.preview_priority_urgent'
|
|
1316
|
-
),
|
|
1317
|
-
high: t('ws-tasks.preview_priority_high'),
|
|
1318
|
-
medium: t(
|
|
1319
|
-
'ws-tasks.preview_priority_medium'
|
|
1320
|
-
),
|
|
1321
|
-
low: t('ws-tasks.preview_priority_low'),
|
|
1322
|
-
}}
|
|
1323
|
-
/>
|
|
1324
|
-
|
|
1325
|
-
{boardConfig?.estimation_type && (
|
|
1326
|
-
<TaskEstimationMenu
|
|
1327
|
-
currentPoints={
|
|
1328
|
-
originalIndex in previewTaskEstimations
|
|
1329
|
-
? previewTaskEstimations[
|
|
1330
|
-
originalIndex
|
|
1331
|
-
]
|
|
1332
|
-
: null
|
|
1333
|
-
}
|
|
1334
|
-
estimationType={
|
|
1335
|
-
boardConfig.estimation_type
|
|
1336
|
-
}
|
|
1337
|
-
extendedEstimation={
|
|
1338
|
-
boardConfig.extended_estimation || false
|
|
1339
|
-
}
|
|
1340
|
-
allowZeroEstimates={
|
|
1341
|
-
boardConfig.allow_zero_estimates ?? true
|
|
1342
|
-
}
|
|
1343
|
-
isLoading={isCreating}
|
|
1344
|
-
onEstimationChange={(points) =>
|
|
1345
|
-
handlePreviewTaskEstimationChange(
|
|
1346
|
-
originalIndex,
|
|
1347
|
-
points
|
|
1348
|
-
)
|
|
1349
|
-
}
|
|
1350
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1351
|
-
/>
|
|
1352
|
-
)}
|
|
1353
|
-
|
|
1354
|
-
{aiGenerateLabels && (
|
|
1355
|
-
<TaskLabelsMenu
|
|
1356
|
-
taskLabels={suggestions
|
|
1357
|
-
.filter((opt) => opt.selected)
|
|
1358
|
-
.map((opt) => ({
|
|
1359
|
-
id: opt.id || '',
|
|
1360
|
-
name: opt.name,
|
|
1361
|
-
color: 'gray' as const,
|
|
1362
|
-
}))}
|
|
1363
|
-
availableLabels={workspaceLabels}
|
|
1364
|
-
isLoading={false}
|
|
1365
|
-
onToggleLabel={(labelId) => {
|
|
1366
|
-
handlePreviewTaskLabelToggle(
|
|
1367
|
-
originalIndex,
|
|
1368
|
-
labelId
|
|
1369
|
-
);
|
|
1370
|
-
}}
|
|
1371
|
-
onCreateNewLabel={() => {
|
|
1372
|
-
setPreviewTaskMenuOpen((prev) => ({
|
|
1373
|
-
...prev,
|
|
1374
|
-
[originalIndex]: false,
|
|
1375
|
-
}));
|
|
1376
|
-
}}
|
|
1377
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1378
|
-
translations={{
|
|
1379
|
-
labels: t('ws-tasks.cmd_labels'),
|
|
1380
|
-
searchLabels: t(
|
|
1381
|
-
'ws-tasks.ctx_search_labels'
|
|
1382
|
-
),
|
|
1383
|
-
loading: t('ws-tasks.loading'),
|
|
1384
|
-
noLabelsFound: t(
|
|
1385
|
-
'ws-tasks.ctx_no_labels_found'
|
|
1386
|
-
),
|
|
1387
|
-
noLabelsAvailable: t(
|
|
1388
|
-
'ws-tasks.ctx_no_labels_available'
|
|
1389
|
-
),
|
|
1390
|
-
applied: t('ws-tasks.ctx_applied'),
|
|
1391
|
-
createNewLabel: t(
|
|
1392
|
-
'ws-tasks.ctx_create_new_label'
|
|
1393
|
-
),
|
|
1394
|
-
}}
|
|
1395
|
-
/>
|
|
1396
|
-
)}
|
|
1397
|
-
|
|
1398
|
-
<TaskProjectsMenu
|
|
1399
|
-
taskProjects={(
|
|
1400
|
-
previewTaskProjects[originalIndex] || []
|
|
1401
|
-
).map((projectId) => {
|
|
1402
|
-
const project = workspaceProjects.find(
|
|
1403
|
-
(p) => p.id === projectId
|
|
1404
|
-
);
|
|
1405
|
-
return {
|
|
1406
|
-
id: projectId,
|
|
1407
|
-
name:
|
|
1408
|
-
project?.name || 'Unknown Project',
|
|
1409
|
-
status: null,
|
|
1410
|
-
};
|
|
1411
|
-
})}
|
|
1412
|
-
availableProjects={workspaceProjects.map(
|
|
1413
|
-
(p) => ({
|
|
1414
|
-
id: p.id,
|
|
1415
|
-
name: p.name,
|
|
1416
|
-
status: null,
|
|
1417
|
-
})
|
|
1418
|
-
)}
|
|
1419
|
-
isLoading={false}
|
|
1420
|
-
onToggleProject={(projectId) =>
|
|
1421
|
-
handlePreviewTaskProjectToggle(
|
|
1422
|
-
originalIndex,
|
|
1423
|
-
projectId
|
|
1424
|
-
)
|
|
1425
|
-
}
|
|
1426
|
-
onCreateNewProject={() => {
|
|
1427
|
-
setPreviewTaskMenuOpen((prev) => ({
|
|
1428
|
-
...prev,
|
|
1429
|
-
[originalIndex]: false,
|
|
1430
|
-
}));
|
|
1431
|
-
}}
|
|
1432
|
-
onMenuItemSelect={handleMenuItemSelect}
|
|
1433
|
-
/>
|
|
1434
|
-
|
|
1435
|
-
<DropdownMenuSeparator />
|
|
1436
|
-
|
|
1437
|
-
<DropdownMenuItem
|
|
1438
|
-
onSelect={(e) =>
|
|
1439
|
-
handleMenuItemSelect(
|
|
1440
|
-
e as unknown as Event,
|
|
1441
|
-
() => {
|
|
1442
|
-
handleRemovePreviewTask(
|
|
1443
|
-
originalIndex
|
|
1444
|
-
);
|
|
1445
|
-
}
|
|
1446
|
-
)
|
|
1447
|
-
}
|
|
1448
|
-
className="cursor-pointer text-dynamic-red hover:bg-dynamic-red/10 hover:text-dynamic-red/90"
|
|
1449
|
-
disabled={isCreating}
|
|
1450
|
-
>
|
|
1451
|
-
<Trash2 className="h-4 w-4" />
|
|
1452
|
-
Remove task
|
|
1453
|
-
</DropdownMenuItem>
|
|
1454
|
-
</DropdownMenuContent>
|
|
1455
|
-
</DropdownMenu>
|
|
1456
|
-
|
|
1457
|
-
{/* Due date picker */}
|
|
1458
|
-
<DateTimePicker
|
|
1459
|
-
date={dueDateValue}
|
|
1460
|
-
setDate={(date) =>
|
|
1461
|
-
handleDueDateChange(originalIndex, date)
|
|
1462
|
-
}
|
|
1463
|
-
showTimeSelect
|
|
1464
|
-
disabled={isCreating}
|
|
1465
|
-
preferences={{
|
|
1466
|
-
weekStartsOn,
|
|
1467
|
-
timezone: tzPreference,
|
|
1468
|
-
timeFormat,
|
|
1469
|
-
}}
|
|
1470
|
-
/>
|
|
1471
|
-
</div>
|
|
1472
|
-
|
|
1473
|
-
{/* Label suggestions */}
|
|
1474
|
-
{aiGenerateLabels && suggestions.length > 0 && (
|
|
1475
|
-
<div className="space-y-1">
|
|
1476
|
-
<p className="text-muted-foreground text-xs uppercase tracking-wide">
|
|
1477
|
-
Task Labels
|
|
1478
|
-
</p>
|
|
1479
|
-
<div className="flex flex-wrap gap-1.5">
|
|
1480
|
-
{suggestions.map((option, optionIndex) => {
|
|
1481
|
-
if (
|
|
1482
|
-
!expandedLabelCards[originalIndex] &&
|
|
1483
|
-
optionIndex >= MAX_VISIBLE_PREVIEW_LABELS
|
|
1484
|
-
) {
|
|
1485
|
-
return null;
|
|
1486
|
-
}
|
|
1487
|
-
return (
|
|
1488
|
-
<button
|
|
1489
|
-
key={`${task.id ?? `${task.name}-${option.name}`}-${optionIndex}`}
|
|
1490
|
-
type="button"
|
|
1491
|
-
onClick={() =>
|
|
1492
|
-
toggleTaskLabelSuggestion(
|
|
1493
|
-
originalIndex,
|
|
1494
|
-
optionIndex
|
|
1495
|
-
)
|
|
1496
|
-
}
|
|
1497
|
-
className={cn(
|
|
1498
|
-
'rounded-full border px-2.5 py-0.5 font-medium text-xs transition',
|
|
1499
|
-
option.selected
|
|
1500
|
-
? 'border-dynamic-purple/60 bg-dynamic-purple/15 text-dynamic-purple'
|
|
1501
|
-
: 'border-dynamic-muted/40 text-muted-foreground'
|
|
1502
|
-
)}
|
|
1503
|
-
>
|
|
1504
|
-
{option.displayName}
|
|
1505
|
-
{option.isNew ? (
|
|
1506
|
-
<span className="ml-1.5 text-[0.5625rem] text-dynamic-purple uppercase tracking-wide">
|
|
1507
|
-
{t('ws-tasks.new_label_badge')}
|
|
1508
|
-
</span>
|
|
1509
|
-
) : null}
|
|
1510
|
-
</button>
|
|
1511
|
-
);
|
|
1512
|
-
})}
|
|
1513
|
-
</div>
|
|
1514
|
-
{suggestions.length >
|
|
1515
|
-
MAX_VISIBLE_PREVIEW_LABELS ? (
|
|
1516
|
-
<button
|
|
1517
|
-
type="button"
|
|
1518
|
-
onClick={() =>
|
|
1519
|
-
toggleLabelPreviewExpansion(originalIndex)
|
|
1520
|
-
}
|
|
1521
|
-
className="font-medium text-dynamic-blue text-xs hover:underline"
|
|
1522
|
-
disabled={isCreating}
|
|
1523
|
-
>
|
|
1524
|
-
{expandedLabelCards[originalIndex]
|
|
1525
|
-
? t('ws-tasks.show_less')
|
|
1526
|
-
: t('ws-tasks.show_n_more', {
|
|
1527
|
-
count:
|
|
1528
|
-
suggestions.length -
|
|
1529
|
-
MAX_VISIBLE_PREVIEW_LABELS,
|
|
1530
|
-
})}
|
|
1531
|
-
</button>
|
|
1532
|
-
) : null}
|
|
1533
|
-
{hasNewSelections ? (
|
|
1534
|
-
<p className="text-muted-foreground text-xs">
|
|
1535
|
-
{t('ws-tasks.new_labels_auto_created')}
|
|
1536
|
-
</p>
|
|
1537
|
-
) : null}
|
|
1538
|
-
</div>
|
|
1539
|
-
)}
|
|
1540
|
-
</div>
|
|
1541
|
-
</div>
|
|
1542
|
-
)}
|
|
1543
|
-
</div>
|
|
1544
|
-
);
|
|
1545
|
-
})}
|
|
1546
|
-
</div>
|
|
1547
|
-
|
|
1548
|
-
{visiblePreviewTasks.length === 0 && (
|
|
1549
|
-
<p className="rounded-lg border border-dynamic-muted/30 bg-dynamic-muted/10 p-3 text-center text-muted-foreground text-sm">
|
|
1550
|
-
{t('ws-tasks.no_tasks_to_preview')}
|
|
1551
|
-
</p>
|
|
1552
|
-
)}
|
|
1553
|
-
</div>
|
|
1554
|
-
</div>
|
|
1555
|
-
</ScrollArea>
|
|
1556
|
-
|
|
1557
|
-
<DialogFooter className="flex-row items-center justify-between gap-2 sm:justify-between">
|
|
1558
|
-
<p className="text-muted-foreground text-xs">
|
|
1559
|
-
{t('ws-tasks.n_of_m_tasks_selected', {
|
|
1560
|
-
n: visiblePreviewTasks.length,
|
|
1561
|
-
m: previewTasks.length,
|
|
1562
|
-
})}
|
|
1563
|
-
</p>
|
|
1564
|
-
<div className="flex gap-2">
|
|
1565
|
-
<Button
|
|
1566
|
-
type="button"
|
|
1567
|
-
variant="ghost"
|
|
1568
|
-
onClick={handleCancelPreview}
|
|
1569
|
-
disabled={isCreating}
|
|
1570
|
-
>
|
|
1571
|
-
{t('common.cancel')}
|
|
1572
|
-
</Button>
|
|
1573
|
-
<Button
|
|
1574
|
-
type="button"
|
|
1575
|
-
onClick={handleConfirmTasks}
|
|
1576
|
-
disabled={isCreating || visiblePreviewTasks.length === 0}
|
|
1577
|
-
>
|
|
1578
|
-
{isCreating ? (
|
|
1579
|
-
<>
|
|
1580
|
-
<Loader2 className="mr-2 h-4 w-4 animate-spin text-dynamic-blue" />
|
|
1581
|
-
{t('ws-tasks.saving')}
|
|
1582
|
-
</>
|
|
1583
|
-
) : (
|
|
1584
|
-
<>
|
|
1585
|
-
<Save className="mr-2 h-4 w-4" />
|
|
1586
|
-
{t('ws-tasks.save_n_tasks', {
|
|
1587
|
-
count: visiblePreviewTasks.length,
|
|
1588
|
-
})}
|
|
1589
|
-
</>
|
|
1590
|
-
)}
|
|
1591
|
-
</Button>
|
|
1592
|
-
</div>
|
|
1593
|
-
</DialogFooter>
|
|
1594
|
-
</DialogContent>
|
|
1595
|
-
</Dialog>
|
|
1596
|
-
);
|
|
1597
|
-
}
|