@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,1665 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
ChevronDown,
|
|
5
|
-
ChevronRight,
|
|
6
|
-
ChevronsUpDown,
|
|
7
|
-
Columns2,
|
|
8
|
-
Eye,
|
|
9
|
-
FileText,
|
|
10
|
-
FoldVertical,
|
|
11
|
-
Image as ImageIcon,
|
|
12
|
-
Minus,
|
|
13
|
-
Pen,
|
|
14
|
-
Plus,
|
|
15
|
-
Rows2,
|
|
16
|
-
Type,
|
|
17
|
-
Video,
|
|
18
|
-
WrapText,
|
|
19
|
-
X,
|
|
20
|
-
Youtube,
|
|
21
|
-
} from '@tuturuuu/icons';
|
|
22
|
-
import { Badge } from '@tuturuuu/ui/badge';
|
|
23
|
-
import { Button } from '@tuturuuu/ui/button';
|
|
24
|
-
import {
|
|
25
|
-
Dialog,
|
|
26
|
-
DialogContent,
|
|
27
|
-
DialogHeader,
|
|
28
|
-
DialogTitle,
|
|
29
|
-
DialogTrigger,
|
|
30
|
-
} from '@tuturuuu/ui/dialog';
|
|
31
|
-
import { Separator } from '@tuturuuu/ui/separator';
|
|
32
|
-
import { ToggleGroup, ToggleGroupItem } from '@tuturuuu/ui/toggle-group';
|
|
33
|
-
import { cn } from '@tuturuuu/utils/format';
|
|
34
|
-
import {
|
|
35
|
-
computeNodeDiff,
|
|
36
|
-
getNodeImageSrc,
|
|
37
|
-
type NodeDiffResult,
|
|
38
|
-
type NodeDiffSummary,
|
|
39
|
-
parseJsonContent,
|
|
40
|
-
} from '@tuturuuu/utils/node-diff';
|
|
41
|
-
import {
|
|
42
|
-
computeLineDiff,
|
|
43
|
-
computeWordDiff,
|
|
44
|
-
type DiffChange,
|
|
45
|
-
getDiffStats,
|
|
46
|
-
} from '@tuturuuu/utils/text-diff';
|
|
47
|
-
import { getDescriptionText } from '@tuturuuu/utils/text-helper';
|
|
48
|
-
import Image from 'next/image';
|
|
49
|
-
import { useCallback, useMemo, useState } from 'react';
|
|
50
|
-
|
|
51
|
-
type DiffViewMode = 'unified' | 'split';
|
|
52
|
-
type DiffGranularity = 'line' | 'word';
|
|
53
|
-
|
|
54
|
-
/** Number of context lines to show around changes */
|
|
55
|
-
const CONTEXT_LINES = 3;
|
|
56
|
-
|
|
57
|
-
export interface DescriptionDiffViewerProps {
|
|
58
|
-
oldValue: unknown;
|
|
59
|
-
newValue: unknown;
|
|
60
|
-
t: (
|
|
61
|
-
key: string,
|
|
62
|
-
options?: { defaultValue?: string; count?: number }
|
|
63
|
-
) => string;
|
|
64
|
-
/** Trigger button variant */
|
|
65
|
-
triggerVariant?: 'button' | 'inline';
|
|
66
|
-
/** Optional custom trigger element */
|
|
67
|
-
trigger?: React.ReactNode;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
interface ProcessedLine {
|
|
71
|
-
content: string;
|
|
72
|
-
type: 'added' | 'removed' | 'unchanged';
|
|
73
|
-
lineNumber: { old?: number; new?: number };
|
|
74
|
-
originalIndex: number;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
interface CollapsedBlock {
|
|
78
|
-
type: 'collapsed';
|
|
79
|
-
id: string;
|
|
80
|
-
count: number;
|
|
81
|
-
startIndex: number;
|
|
82
|
-
endIndex: number;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
type DiffDisplayItem = ProcessedLine | CollapsedBlock;
|
|
86
|
-
|
|
87
|
-
/**
|
|
88
|
-
* Process diff into individual lines with line numbers
|
|
89
|
-
*/
|
|
90
|
-
function processDiffToLines(diff: DiffChange[]): ProcessedLine[] {
|
|
91
|
-
const lines: ProcessedLine[] = [];
|
|
92
|
-
let oldLineNum = 1;
|
|
93
|
-
let newLineNum = 1;
|
|
94
|
-
let originalIndex = 0;
|
|
95
|
-
|
|
96
|
-
for (const change of diff) {
|
|
97
|
-
const changeLines = change.value.split('\n');
|
|
98
|
-
// Remove trailing empty line from split
|
|
99
|
-
if (changeLines[changeLines.length - 1] === '') {
|
|
100
|
-
changeLines.pop();
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
for (const line of changeLines) {
|
|
104
|
-
if (change.type === 'unchanged') {
|
|
105
|
-
lines.push({
|
|
106
|
-
content: line,
|
|
107
|
-
type: 'unchanged',
|
|
108
|
-
lineNumber: { old: oldLineNum++, new: newLineNum++ },
|
|
109
|
-
originalIndex: originalIndex++,
|
|
110
|
-
});
|
|
111
|
-
} else if (change.type === 'removed') {
|
|
112
|
-
lines.push({
|
|
113
|
-
content: line,
|
|
114
|
-
type: 'removed',
|
|
115
|
-
lineNumber: { old: oldLineNum++ },
|
|
116
|
-
originalIndex: originalIndex++,
|
|
117
|
-
});
|
|
118
|
-
} else if (change.type === 'added') {
|
|
119
|
-
lines.push({
|
|
120
|
-
content: line,
|
|
121
|
-
type: 'added',
|
|
122
|
-
lineNumber: { new: newLineNum++ },
|
|
123
|
-
originalIndex: originalIndex++,
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
return lines;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* Collapse unchanged lines that are far from changes, keeping context around changes
|
|
134
|
-
*/
|
|
135
|
-
function collapseUnchangedLines(
|
|
136
|
-
lines: ProcessedLine[],
|
|
137
|
-
contextLines: number,
|
|
138
|
-
expandedBlocks: Set<string>
|
|
139
|
-
): DiffDisplayItem[] {
|
|
140
|
-
if (lines.length === 0) return [];
|
|
141
|
-
|
|
142
|
-
// Find indices of all changed lines
|
|
143
|
-
const changedIndices = lines
|
|
144
|
-
.map((line, idx) => (line.type !== 'unchanged' ? idx : -1))
|
|
145
|
-
.filter((idx) => idx !== -1);
|
|
146
|
-
|
|
147
|
-
// If no changes, show a collapsed indicator for all lines
|
|
148
|
-
if (changedIndices.length === 0) {
|
|
149
|
-
const blockId = 'block-0';
|
|
150
|
-
if (expandedBlocks.has(blockId)) {
|
|
151
|
-
return lines;
|
|
152
|
-
}
|
|
153
|
-
return lines.length > 0
|
|
154
|
-
? [
|
|
155
|
-
{
|
|
156
|
-
type: 'collapsed' as const,
|
|
157
|
-
id: blockId,
|
|
158
|
-
count: lines.length,
|
|
159
|
-
startIndex: 0,
|
|
160
|
-
endIndex: lines.length - 1,
|
|
161
|
-
},
|
|
162
|
-
]
|
|
163
|
-
: [];
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
// Mark which lines should be visible (within context of a change)
|
|
167
|
-
const visibleLines = new Set<number>();
|
|
168
|
-
for (const changeIdx of changedIndices) {
|
|
169
|
-
for (
|
|
170
|
-
let i = Math.max(0, changeIdx - contextLines);
|
|
171
|
-
i <= Math.min(lines.length - 1, changeIdx + contextLines);
|
|
172
|
-
i++
|
|
173
|
-
) {
|
|
174
|
-
visibleLines.add(i);
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
// Build result with collapsed blocks
|
|
179
|
-
const result: DiffDisplayItem[] = [];
|
|
180
|
-
let collapsedStartIdx = -1;
|
|
181
|
-
let collapsedCount = 0;
|
|
182
|
-
let blockCounter = 0;
|
|
183
|
-
|
|
184
|
-
for (let i = 0; i < lines.length; i++) {
|
|
185
|
-
if (visibleLines.has(i)) {
|
|
186
|
-
if (collapsedCount > 0) {
|
|
187
|
-
const blockId = `block-${blockCounter++}`;
|
|
188
|
-
if (expandedBlocks.has(blockId)) {
|
|
189
|
-
for (let j = collapsedStartIdx; j < i; j++) {
|
|
190
|
-
result.push(lines[j]!);
|
|
191
|
-
}
|
|
192
|
-
} else {
|
|
193
|
-
result.push({
|
|
194
|
-
type: 'collapsed',
|
|
195
|
-
id: blockId,
|
|
196
|
-
count: collapsedCount,
|
|
197
|
-
startIndex: collapsedStartIdx,
|
|
198
|
-
endIndex: i - 1,
|
|
199
|
-
});
|
|
200
|
-
}
|
|
201
|
-
collapsedCount = 0;
|
|
202
|
-
collapsedStartIdx = -1;
|
|
203
|
-
}
|
|
204
|
-
result.push(lines[i]!);
|
|
205
|
-
} else {
|
|
206
|
-
if (collapsedStartIdx === -1) {
|
|
207
|
-
collapsedStartIdx = i;
|
|
208
|
-
}
|
|
209
|
-
collapsedCount++;
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
if (collapsedCount > 0) {
|
|
214
|
-
const blockId = `block-${blockCounter}`;
|
|
215
|
-
if (expandedBlocks.has(blockId)) {
|
|
216
|
-
for (let j = collapsedStartIdx; j < lines.length; j++) {
|
|
217
|
-
result.push(lines[j]!);
|
|
218
|
-
}
|
|
219
|
-
} else {
|
|
220
|
-
result.push({
|
|
221
|
-
type: 'collapsed',
|
|
222
|
-
id: blockId,
|
|
223
|
-
count: collapsedCount,
|
|
224
|
-
startIndex: collapsedStartIdx,
|
|
225
|
-
endIndex: lines.length - 1,
|
|
226
|
-
});
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
return result;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
export function DescriptionDiffViewer({
|
|
234
|
-
oldValue,
|
|
235
|
-
newValue,
|
|
236
|
-
t,
|
|
237
|
-
triggerVariant = 'button',
|
|
238
|
-
trigger,
|
|
239
|
-
}: DescriptionDiffViewerProps) {
|
|
240
|
-
const [viewMode, setViewMode] = useState<DiffViewMode>('unified');
|
|
241
|
-
const [granularity, setGranularity] = useState<DiffGranularity>('word');
|
|
242
|
-
const [expandedBlocks, setExpandedBlocks] = useState<Set<string>>(new Set());
|
|
243
|
-
|
|
244
|
-
const toggleBlock = useCallback((blockId: string) => {
|
|
245
|
-
setExpandedBlocks((prev) => {
|
|
246
|
-
const next = new Set(prev);
|
|
247
|
-
if (next.has(blockId)) {
|
|
248
|
-
next.delete(blockId);
|
|
249
|
-
} else {
|
|
250
|
-
next.add(blockId);
|
|
251
|
-
}
|
|
252
|
-
return next;
|
|
253
|
-
});
|
|
254
|
-
}, []);
|
|
255
|
-
|
|
256
|
-
const oldText = useMemo(
|
|
257
|
-
() => getDescriptionText(oldValue as string),
|
|
258
|
-
[oldValue]
|
|
259
|
-
);
|
|
260
|
-
const newText = useMemo(
|
|
261
|
-
() => getDescriptionText(newValue as string),
|
|
262
|
-
[newValue]
|
|
263
|
-
);
|
|
264
|
-
|
|
265
|
-
const lineDiff = useMemo(
|
|
266
|
-
() => computeLineDiff(oldText, newText),
|
|
267
|
-
[oldText, newText]
|
|
268
|
-
);
|
|
269
|
-
const wordDiff = useMemo(
|
|
270
|
-
() => computeWordDiff(oldText, newText),
|
|
271
|
-
[oldText, newText]
|
|
272
|
-
);
|
|
273
|
-
const diff = granularity === 'word' ? wordDiff : lineDiff;
|
|
274
|
-
const stats = useMemo(() => getDiffStats(lineDiff), [lineDiff]);
|
|
275
|
-
|
|
276
|
-
const processedLines = useMemo(() => processDiffToLines(diff), [diff]);
|
|
277
|
-
const minimizedDiff = useMemo(
|
|
278
|
-
() => collapseUnchangedLines(processedLines, CONTEXT_LINES, expandedBlocks),
|
|
279
|
-
[processedLines, expandedBlocks]
|
|
280
|
-
);
|
|
281
|
-
|
|
282
|
-
const hasTextChanges = lineDiff.some((d) => d.type !== 'unchanged');
|
|
283
|
-
|
|
284
|
-
const hasRawValueChanges = useMemo(() => {
|
|
285
|
-
if (!oldValue && !newValue) return false;
|
|
286
|
-
if (!oldValue || !newValue) return true;
|
|
287
|
-
try {
|
|
288
|
-
const oldStr =
|
|
289
|
-
typeof oldValue === 'string' ? oldValue : JSON.stringify(oldValue);
|
|
290
|
-
const newStr =
|
|
291
|
-
typeof newValue === 'string' ? newValue : JSON.stringify(newValue);
|
|
292
|
-
return oldStr !== newStr;
|
|
293
|
-
} catch {
|
|
294
|
-
return oldValue !== newValue;
|
|
295
|
-
}
|
|
296
|
-
}, [oldValue, newValue]);
|
|
297
|
-
|
|
298
|
-
// Compute node-level diff for media changes
|
|
299
|
-
const nodeDiff = useMemo<NodeDiffSummary>(() => {
|
|
300
|
-
const oldContent = parseJsonContent(oldValue);
|
|
301
|
-
const newContent = parseJsonContent(newValue);
|
|
302
|
-
return computeNodeDiff(oldContent, newContent);
|
|
303
|
-
}, [oldValue, newValue]);
|
|
304
|
-
|
|
305
|
-
if (!hasTextChanges && !hasRawValueChanges && nodeDiff.totalChanges === 0) {
|
|
306
|
-
return null;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
const defaultTrigger =
|
|
310
|
-
triggerVariant === 'inline' ? (
|
|
311
|
-
<button
|
|
312
|
-
type="button"
|
|
313
|
-
className="inline-flex items-center gap-1.5 rounded-md px-2 py-1 text-dynamic-blue text-xs transition-colors hover:bg-dynamic-blue/10"
|
|
314
|
-
>
|
|
315
|
-
<Eye className="h-3 w-3" />
|
|
316
|
-
{t('view_changes', { defaultValue: 'View changes' })}
|
|
317
|
-
</button>
|
|
318
|
-
) : (
|
|
319
|
-
<Button
|
|
320
|
-
variant="outline"
|
|
321
|
-
size="sm"
|
|
322
|
-
className="h-7 gap-1.5 px-2.5 text-xs"
|
|
323
|
-
>
|
|
324
|
-
<Eye className="h-3.5 w-3.5" />
|
|
325
|
-
{t('view_changes', { defaultValue: 'View changes' })}
|
|
326
|
-
</Button>
|
|
327
|
-
);
|
|
328
|
-
|
|
329
|
-
const noVisibleChanges = !hasTextChanges && hasRawValueChanges;
|
|
330
|
-
|
|
331
|
-
return (
|
|
332
|
-
<Dialog>
|
|
333
|
-
<DialogTrigger asChild>{trigger || defaultTrigger}</DialogTrigger>
|
|
334
|
-
<DialogContent
|
|
335
|
-
className="flex max-h-[90vh] w-[95vw] max-w-4xl flex-col gap-0 overflow-hidden p-0 md:max-w-5xl lg:max-w-6xl"
|
|
336
|
-
showCloseButton={false}
|
|
337
|
-
>
|
|
338
|
-
{/* Header */}
|
|
339
|
-
<DialogHeader className="border-b px-3 py-2 sm:px-4 sm:py-3">
|
|
340
|
-
<div className="flex flex-col gap-2 sm:flex-row sm:items-center sm:justify-between sm:gap-4">
|
|
341
|
-
<DialogTitle className="text-sm sm:text-base">
|
|
342
|
-
{t('description_changes', {
|
|
343
|
-
defaultValue: 'Description Changes',
|
|
344
|
-
})}
|
|
345
|
-
</DialogTitle>
|
|
346
|
-
{!noVisibleChanges && (
|
|
347
|
-
<div className="flex w-full items-center justify-center gap-1 sm:w-auto sm:justify-start">
|
|
348
|
-
{/* Granularity toggle */}
|
|
349
|
-
<ToggleGroup
|
|
350
|
-
type="single"
|
|
351
|
-
value={granularity}
|
|
352
|
-
onValueChange={(v) =>
|
|
353
|
-
v && setGranularity(v as DiffGranularity)
|
|
354
|
-
}
|
|
355
|
-
className="h-7 sm:h-8"
|
|
356
|
-
>
|
|
357
|
-
<ToggleGroupItem
|
|
358
|
-
value="word"
|
|
359
|
-
aria-label={t('word_diff', { defaultValue: 'Word' })}
|
|
360
|
-
className="h-6 gap-1 px-1.5 text-xs sm:h-7 sm:gap-1.5 sm:px-2.5"
|
|
361
|
-
>
|
|
362
|
-
<Type className="h-3 w-3 sm:h-3.5 sm:w-3.5" />
|
|
363
|
-
{t('word_diff', { defaultValue: 'Word' })}
|
|
364
|
-
</ToggleGroupItem>
|
|
365
|
-
<ToggleGroupItem
|
|
366
|
-
value="line"
|
|
367
|
-
aria-label={t('line_diff', { defaultValue: 'Line' })}
|
|
368
|
-
className="h-6 gap-1 px-1.5 text-xs sm:h-7 sm:gap-1.5 sm:px-2.5"
|
|
369
|
-
>
|
|
370
|
-
<WrapText className="h-3 w-3 sm:h-3.5 sm:w-3.5" />
|
|
371
|
-
{t('line_diff', { defaultValue: 'Line' })}
|
|
372
|
-
</ToggleGroupItem>
|
|
373
|
-
</ToggleGroup>
|
|
374
|
-
|
|
375
|
-
{/* View mode toggle - only show on sm+ screens */}
|
|
376
|
-
<Separator
|
|
377
|
-
orientation="vertical"
|
|
378
|
-
className="mx-0.5 hidden h-4 sm:mx-1 sm:block sm:h-5"
|
|
379
|
-
/>
|
|
380
|
-
|
|
381
|
-
<ToggleGroup
|
|
382
|
-
type="single"
|
|
383
|
-
value={viewMode}
|
|
384
|
-
onValueChange={(v) => v && setViewMode(v as DiffViewMode)}
|
|
385
|
-
className="hidden h-8 sm:flex"
|
|
386
|
-
>
|
|
387
|
-
<ToggleGroupItem
|
|
388
|
-
value="unified"
|
|
389
|
-
aria-label={t('unified_view', { defaultValue: 'Unified' })}
|
|
390
|
-
className="h-7 gap-1.5 px-2.5 text-xs"
|
|
391
|
-
>
|
|
392
|
-
<Rows2 className="h-3.5 w-3.5" />
|
|
393
|
-
{t('unified_view', { defaultValue: 'Unified' })}
|
|
394
|
-
</ToggleGroupItem>
|
|
395
|
-
<ToggleGroupItem
|
|
396
|
-
value="split"
|
|
397
|
-
aria-label={t('split_view', { defaultValue: 'Split' })}
|
|
398
|
-
className="h-7 gap-1.5 px-2.5 text-xs"
|
|
399
|
-
>
|
|
400
|
-
<Columns2 className="h-3.5 w-3.5" />
|
|
401
|
-
{t('split_view', { defaultValue: 'Split' })}
|
|
402
|
-
</ToggleGroupItem>
|
|
403
|
-
</ToggleGroup>
|
|
404
|
-
</div>
|
|
405
|
-
)}
|
|
406
|
-
</div>
|
|
407
|
-
</DialogHeader>
|
|
408
|
-
|
|
409
|
-
{noVisibleChanges ? (
|
|
410
|
-
<div className="flex flex-1 flex-col items-center justify-center gap-4 p-8">
|
|
411
|
-
<div className="flex h-14 w-14 items-center justify-center rounded-full bg-muted">
|
|
412
|
-
<FileText className="h-7 w-7 text-muted-foreground" />
|
|
413
|
-
</div>
|
|
414
|
-
<div className="max-w-sm space-y-1.5 text-center">
|
|
415
|
-
<p className="font-medium">
|
|
416
|
-
{t('no_visible_changes', {
|
|
417
|
-
defaultValue: 'No visible text changes',
|
|
418
|
-
})}
|
|
419
|
-
</p>
|
|
420
|
-
<p className="text-muted-foreground text-sm">
|
|
421
|
-
{t('no_visible_changes_description', {
|
|
422
|
-
defaultValue:
|
|
423
|
-
'The description was modified but the text content appears the same. This may be due to formatting or structural changes.',
|
|
424
|
-
})}
|
|
425
|
-
</p>
|
|
426
|
-
</div>
|
|
427
|
-
</div>
|
|
428
|
-
) : (
|
|
429
|
-
<>
|
|
430
|
-
{/* Stats bar */}
|
|
431
|
-
<div className="flex items-center justify-between border-b bg-muted/30 px-3 py-1.5 sm:px-4 sm:py-2">
|
|
432
|
-
<div className="flex items-center gap-2 sm:gap-3">
|
|
433
|
-
<Badge
|
|
434
|
-
variant="outline"
|
|
435
|
-
className="gap-1 border-dynamic-green/30 bg-dynamic-green/10 px-1.5 py-0.5 text-dynamic-green text-xs sm:gap-1.5 sm:px-2.5 sm:py-0.5"
|
|
436
|
-
>
|
|
437
|
-
<Plus className="h-3 w-3" />
|
|
438
|
-
{stats.added}{' '}
|
|
439
|
-
<span className="xs:inline hidden">
|
|
440
|
-
{t('lines_added', { defaultValue: 'added' })}
|
|
441
|
-
</span>
|
|
442
|
-
</Badge>
|
|
443
|
-
<Badge
|
|
444
|
-
variant="outline"
|
|
445
|
-
className="gap-1 border-dynamic-red/30 bg-dynamic-red/10 px-1.5 py-0.5 text-dynamic-red text-xs sm:gap-1.5 sm:px-2.5 sm:py-0.5"
|
|
446
|
-
>
|
|
447
|
-
<Minus className="h-3 w-3" />
|
|
448
|
-
{stats.removed}{' '}
|
|
449
|
-
<span className="xs:inline hidden">
|
|
450
|
-
{t('lines_removed', { defaultValue: 'removed' })}
|
|
451
|
-
</span>
|
|
452
|
-
</Badge>
|
|
453
|
-
</div>
|
|
454
|
-
{expandedBlocks.size > 0 && (
|
|
455
|
-
<Button
|
|
456
|
-
variant="ghost"
|
|
457
|
-
size="sm"
|
|
458
|
-
className="h-6 gap-1 px-1.5 text-muted-foreground text-xs sm:h-7 sm:gap-1.5 sm:px-2"
|
|
459
|
-
onClick={() => setExpandedBlocks(new Set())}
|
|
460
|
-
>
|
|
461
|
-
<FoldVertical className="h-3 w-3 sm:h-3.5 sm:w-3.5" />
|
|
462
|
-
<span className="hidden sm:inline">
|
|
463
|
-
{t('condense', { defaultValue: 'Condense' })}
|
|
464
|
-
</span>
|
|
465
|
-
</Button>
|
|
466
|
-
)}
|
|
467
|
-
</div>
|
|
468
|
-
|
|
469
|
-
{/* Diff view */}
|
|
470
|
-
<div className="min-h-0 flex-1 overflow-auto">
|
|
471
|
-
<div className="space-y-3 p-2 sm:space-y-4 sm:p-4">
|
|
472
|
-
{/* Media changes section (images, videos, etc.) */}
|
|
473
|
-
{nodeDiff.hasMediaChanges && (
|
|
474
|
-
<MediaChangesSection nodeDiff={nodeDiff} t={t} />
|
|
475
|
-
)}
|
|
476
|
-
|
|
477
|
-
{/* Text diff section */}
|
|
478
|
-
{hasTextChanges && (
|
|
479
|
-
<>
|
|
480
|
-
{nodeDiff.hasMediaChanges && (
|
|
481
|
-
<div className="flex items-center gap-2 pt-2">
|
|
482
|
-
<div className="h-px flex-1 bg-border" />
|
|
483
|
-
<span className="text-muted-foreground text-xs">
|
|
484
|
-
{t('text_changes', { defaultValue: 'Text Changes' })}
|
|
485
|
-
</span>
|
|
486
|
-
<div className="h-px flex-1 bg-border" />
|
|
487
|
-
</div>
|
|
488
|
-
)}
|
|
489
|
-
{granularity === 'word' ? (
|
|
490
|
-
<WordDiffView
|
|
491
|
-
diff={wordDiff}
|
|
492
|
-
oldText={oldText}
|
|
493
|
-
newText={newText}
|
|
494
|
-
viewMode={viewMode}
|
|
495
|
-
t={t}
|
|
496
|
-
expandedBlocks={expandedBlocks}
|
|
497
|
-
onToggleBlock={toggleBlock}
|
|
498
|
-
/>
|
|
499
|
-
) : viewMode === 'unified' ? (
|
|
500
|
-
<MinimizedUnifiedDiffView
|
|
501
|
-
items={minimizedDiff}
|
|
502
|
-
t={t}
|
|
503
|
-
onToggleBlock={toggleBlock}
|
|
504
|
-
expandedBlocks={expandedBlocks}
|
|
505
|
-
/>
|
|
506
|
-
) : (
|
|
507
|
-
<MinimizedSplitDiffView
|
|
508
|
-
items={minimizedDiff}
|
|
509
|
-
t={t}
|
|
510
|
-
onToggleBlock={toggleBlock}
|
|
511
|
-
expandedBlocks={expandedBlocks}
|
|
512
|
-
/>
|
|
513
|
-
)}
|
|
514
|
-
</>
|
|
515
|
-
)}
|
|
516
|
-
</div>
|
|
517
|
-
</div>
|
|
518
|
-
</>
|
|
519
|
-
)}
|
|
520
|
-
</DialogContent>
|
|
521
|
-
</Dialog>
|
|
522
|
-
);
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
function MinimizedUnifiedDiffView({
|
|
526
|
-
items,
|
|
527
|
-
t,
|
|
528
|
-
onToggleBlock,
|
|
529
|
-
expandedBlocks,
|
|
530
|
-
}: {
|
|
531
|
-
items: DiffDisplayItem[];
|
|
532
|
-
t: (
|
|
533
|
-
key: string,
|
|
534
|
-
options?: { defaultValue?: string; count?: number }
|
|
535
|
-
) => string;
|
|
536
|
-
onToggleBlock: (blockId: string) => void;
|
|
537
|
-
expandedBlocks: Set<string>;
|
|
538
|
-
}) {
|
|
539
|
-
return (
|
|
540
|
-
<div className="overflow-hidden rounded-lg border bg-card">
|
|
541
|
-
{items.map((item) => {
|
|
542
|
-
if ('id' in item && item.type === 'collapsed') {
|
|
543
|
-
return (
|
|
544
|
-
<CollapsedLinesIndicator
|
|
545
|
-
key={item.id}
|
|
546
|
-
blockId={item.id}
|
|
547
|
-
count={item.count}
|
|
548
|
-
t={t}
|
|
549
|
-
onToggle={onToggleBlock}
|
|
550
|
-
isExpanded={expandedBlocks.has(item.id)}
|
|
551
|
-
/>
|
|
552
|
-
);
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
const line = item as ProcessedLine;
|
|
556
|
-
if (line.content === '' && line.type === 'unchanged') {
|
|
557
|
-
return (
|
|
558
|
-
<div
|
|
559
|
-
key={`line-${line.originalIndex}`}
|
|
560
|
-
className="flex min-h-6 border-border/50 border-b last:border-b-0"
|
|
561
|
-
>
|
|
562
|
-
<LineNumber value={line.lineNumber.old || line.lineNumber.new} />
|
|
563
|
-
<div className="flex-1 px-3 py-0.5 font-mono text-muted-foreground text-sm">
|
|
564
|
-
{' '}
|
|
565
|
-
</div>
|
|
566
|
-
</div>
|
|
567
|
-
);
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
return (
|
|
571
|
-
<div
|
|
572
|
-
key={`line-${line.originalIndex}`}
|
|
573
|
-
className={cn(
|
|
574
|
-
'flex min-h-6 border-border/50 border-b last:border-b-0',
|
|
575
|
-
line.type === 'added' && 'bg-dynamic-green/5',
|
|
576
|
-
line.type === 'removed' && 'bg-dynamic-red/5'
|
|
577
|
-
)}
|
|
578
|
-
>
|
|
579
|
-
<LineNumber
|
|
580
|
-
value={line.lineNumber.old || line.lineNumber.new}
|
|
581
|
-
type={line.type}
|
|
582
|
-
/>
|
|
583
|
-
<div
|
|
584
|
-
className={cn(
|
|
585
|
-
'flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm',
|
|
586
|
-
line.type === 'added' && 'text-dynamic-green',
|
|
587
|
-
line.type === 'removed' && 'text-dynamic-red',
|
|
588
|
-
line.type === 'unchanged' && 'text-foreground/80'
|
|
589
|
-
)}
|
|
590
|
-
>
|
|
591
|
-
<span className="w-4 shrink-0 select-none text-center opacity-60">
|
|
592
|
-
{line.type === 'added' && '+'}
|
|
593
|
-
{line.type === 'removed' && '-'}
|
|
594
|
-
{line.type === 'unchanged' && ' '}
|
|
595
|
-
</span>
|
|
596
|
-
<span
|
|
597
|
-
className={cn(
|
|
598
|
-
'whitespace-pre-wrap break-all',
|
|
599
|
-
line.type === 'removed' && 'line-through'
|
|
600
|
-
)}
|
|
601
|
-
>
|
|
602
|
-
{line.content || ' '}
|
|
603
|
-
</span>
|
|
604
|
-
</div>
|
|
605
|
-
</div>
|
|
606
|
-
);
|
|
607
|
-
})}
|
|
608
|
-
</div>
|
|
609
|
-
);
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
function MinimizedSplitDiffView({
|
|
613
|
-
items,
|
|
614
|
-
t,
|
|
615
|
-
onToggleBlock,
|
|
616
|
-
expandedBlocks,
|
|
617
|
-
}: {
|
|
618
|
-
items: DiffDisplayItem[];
|
|
619
|
-
t: (
|
|
620
|
-
key: string,
|
|
621
|
-
options?: { defaultValue?: string; count?: number }
|
|
622
|
-
) => string;
|
|
623
|
-
onToggleBlock: (blockId: string) => void;
|
|
624
|
-
expandedBlocks: Set<string>;
|
|
625
|
-
}) {
|
|
626
|
-
const pairs = useMemo(() => {
|
|
627
|
-
const result: Array<
|
|
628
|
-
| {
|
|
629
|
-
type: 'line';
|
|
630
|
-
left: ProcessedLine | null;
|
|
631
|
-
right: ProcessedLine | null;
|
|
632
|
-
key: string;
|
|
633
|
-
}
|
|
634
|
-
| { type: 'collapsed'; id: string; count: number }
|
|
635
|
-
> = [];
|
|
636
|
-
|
|
637
|
-
let i = 0;
|
|
638
|
-
while (i < items.length) {
|
|
639
|
-
const item = items[i];
|
|
640
|
-
|
|
641
|
-
if (!item) {
|
|
642
|
-
i++;
|
|
643
|
-
continue;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
if ('id' in item && item.type === 'collapsed') {
|
|
647
|
-
result.push({ type: 'collapsed', id: item.id, count: item.count });
|
|
648
|
-
i++;
|
|
649
|
-
continue;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
const line = item as ProcessedLine;
|
|
653
|
-
|
|
654
|
-
if (line.type === 'unchanged') {
|
|
655
|
-
result.push({
|
|
656
|
-
type: 'line',
|
|
657
|
-
left: line,
|
|
658
|
-
right: line,
|
|
659
|
-
key: `line-${line.originalIndex}`,
|
|
660
|
-
});
|
|
661
|
-
i++;
|
|
662
|
-
} else if (line.type === 'removed') {
|
|
663
|
-
const next = items[i + 1];
|
|
664
|
-
if (next && !('id' in next) && next.type === 'added') {
|
|
665
|
-
result.push({
|
|
666
|
-
type: 'line',
|
|
667
|
-
left: line,
|
|
668
|
-
right: next,
|
|
669
|
-
key: `line-${line.originalIndex}-${next.originalIndex}`,
|
|
670
|
-
});
|
|
671
|
-
i += 2;
|
|
672
|
-
} else {
|
|
673
|
-
result.push({
|
|
674
|
-
type: 'line',
|
|
675
|
-
left: line,
|
|
676
|
-
right: null,
|
|
677
|
-
key: `line-${line.originalIndex}`,
|
|
678
|
-
});
|
|
679
|
-
i++;
|
|
680
|
-
}
|
|
681
|
-
} else if (line.type === 'added') {
|
|
682
|
-
result.push({
|
|
683
|
-
type: 'line',
|
|
684
|
-
left: null,
|
|
685
|
-
right: line,
|
|
686
|
-
key: `line-${line.originalIndex}`,
|
|
687
|
-
});
|
|
688
|
-
i++;
|
|
689
|
-
} else {
|
|
690
|
-
i++;
|
|
691
|
-
}
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
return result;
|
|
695
|
-
}, [items]);
|
|
696
|
-
|
|
697
|
-
return (
|
|
698
|
-
<div className="overflow-hidden rounded-lg border bg-card">
|
|
699
|
-
{/* Headers */}
|
|
700
|
-
<div className="grid grid-cols-2 border-b bg-muted/50">
|
|
701
|
-
<div className="border-r px-3 py-2 font-medium text-muted-foreground text-xs">
|
|
702
|
-
{t('old_version', { defaultValue: 'Previous' })}
|
|
703
|
-
</div>
|
|
704
|
-
<div className="px-3 py-2 font-medium text-muted-foreground text-xs">
|
|
705
|
-
{t('new_version', { defaultValue: 'Current' })}
|
|
706
|
-
</div>
|
|
707
|
-
</div>
|
|
708
|
-
|
|
709
|
-
{/* Diff rows */}
|
|
710
|
-
{pairs.map((pair) => {
|
|
711
|
-
if (pair.type === 'collapsed') {
|
|
712
|
-
return (
|
|
713
|
-
<CollapsedLinesIndicator
|
|
714
|
-
key={pair.id}
|
|
715
|
-
blockId={pair.id}
|
|
716
|
-
count={pair.count}
|
|
717
|
-
t={t}
|
|
718
|
-
onToggle={onToggleBlock}
|
|
719
|
-
isExpanded={expandedBlocks.has(pair.id)}
|
|
720
|
-
/>
|
|
721
|
-
);
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
return (
|
|
725
|
-
<SplitDiffRow key={pair.key} left={pair.left} right={pair.right} />
|
|
726
|
-
);
|
|
727
|
-
})}
|
|
728
|
-
</div>
|
|
729
|
-
);
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
function LineNumber({
|
|
733
|
-
value,
|
|
734
|
-
type,
|
|
735
|
-
}: {
|
|
736
|
-
value?: number;
|
|
737
|
-
type?: 'added' | 'removed' | 'unchanged';
|
|
738
|
-
}) {
|
|
739
|
-
return (
|
|
740
|
-
<div
|
|
741
|
-
className={cn(
|
|
742
|
-
'w-12 shrink-0 select-none border-r px-2 py-0.5 text-right font-mono text-xs',
|
|
743
|
-
type === 'added' &&
|
|
744
|
-
'border-dynamic-green/20 bg-dynamic-green/10 text-dynamic-green/60',
|
|
745
|
-
type === 'removed' &&
|
|
746
|
-
'border-dynamic-red/20 bg-dynamic-red/10 text-dynamic-red/60',
|
|
747
|
-
!type && 'bg-muted/50 text-muted-foreground/60'
|
|
748
|
-
)}
|
|
749
|
-
>
|
|
750
|
-
{value || ''}
|
|
751
|
-
</div>
|
|
752
|
-
);
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
function CollapsedLinesIndicator({
|
|
756
|
-
blockId,
|
|
757
|
-
count,
|
|
758
|
-
t,
|
|
759
|
-
onToggle,
|
|
760
|
-
}: {
|
|
761
|
-
blockId: string;
|
|
762
|
-
count: number;
|
|
763
|
-
t: (
|
|
764
|
-
key: string,
|
|
765
|
-
options?: { defaultValue?: string; count?: number }
|
|
766
|
-
) => string;
|
|
767
|
-
onToggle: (blockId: string) => void;
|
|
768
|
-
isExpanded: boolean;
|
|
769
|
-
}) {
|
|
770
|
-
const label =
|
|
771
|
-
count === 1
|
|
772
|
-
? t('line_hidden', { defaultValue: '1 unchanged line', count })
|
|
773
|
-
: t('lines_hidden', {
|
|
774
|
-
defaultValue: `${count} unchanged lines`,
|
|
775
|
-
count,
|
|
776
|
-
});
|
|
777
|
-
|
|
778
|
-
return (
|
|
779
|
-
<button
|
|
780
|
-
type="button"
|
|
781
|
-
onClick={() => onToggle(blockId)}
|
|
782
|
-
className="group flex w-full items-center justify-center gap-2 border-y bg-muted/30 px-4 py-1.5 text-muted-foreground text-xs transition-colors hover:bg-muted/50"
|
|
783
|
-
>
|
|
784
|
-
<div className="h-px flex-1 bg-border" />
|
|
785
|
-
<span className="flex items-center gap-1.5">
|
|
786
|
-
<ChevronsUpDown className="h-3 w-3" />
|
|
787
|
-
{label}
|
|
788
|
-
</span>
|
|
789
|
-
<div className="h-px flex-1 bg-border" />
|
|
790
|
-
</button>
|
|
791
|
-
);
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
function SplitDiffRow({
|
|
795
|
-
left,
|
|
796
|
-
right,
|
|
797
|
-
}: {
|
|
798
|
-
left: ProcessedLine | null;
|
|
799
|
-
right: ProcessedLine | null;
|
|
800
|
-
}) {
|
|
801
|
-
return (
|
|
802
|
-
<div className="grid grid-cols-2 border-border/50 border-b last:border-b-0">
|
|
803
|
-
{/* Left side (old) */}
|
|
804
|
-
<div
|
|
805
|
-
className={cn(
|
|
806
|
-
'flex min-h-7 border-r',
|
|
807
|
-
left?.type === 'removed' && 'bg-dynamic-red/5',
|
|
808
|
-
!left && 'bg-muted/20'
|
|
809
|
-
)}
|
|
810
|
-
>
|
|
811
|
-
{left && (
|
|
812
|
-
<>
|
|
813
|
-
<LineNumber
|
|
814
|
-
value={left.lineNumber.old}
|
|
815
|
-
type={left.type === 'removed' ? 'removed' : undefined}
|
|
816
|
-
/>
|
|
817
|
-
<div
|
|
818
|
-
className={cn(
|
|
819
|
-
'flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm',
|
|
820
|
-
left.type === 'removed' && 'text-dynamic-red',
|
|
821
|
-
left.type === 'unchanged' && 'text-foreground/80'
|
|
822
|
-
)}
|
|
823
|
-
>
|
|
824
|
-
{left.type === 'removed' && (
|
|
825
|
-
<span className="w-3 shrink-0 select-none text-center opacity-60">
|
|
826
|
-
-
|
|
827
|
-
</span>
|
|
828
|
-
)}
|
|
829
|
-
<span
|
|
830
|
-
className={cn(
|
|
831
|
-
'whitespace-pre-wrap break-all',
|
|
832
|
-
left.type === 'removed' && 'line-through'
|
|
833
|
-
)}
|
|
834
|
-
>
|
|
835
|
-
{left.content || ' '}
|
|
836
|
-
</span>
|
|
837
|
-
</div>
|
|
838
|
-
</>
|
|
839
|
-
)}
|
|
840
|
-
</div>
|
|
841
|
-
|
|
842
|
-
{/* Right side (new) */}
|
|
843
|
-
<div
|
|
844
|
-
className={cn(
|
|
845
|
-
'flex min-h-7',
|
|
846
|
-
right?.type === 'added' && 'bg-dynamic-green/5',
|
|
847
|
-
!right && 'bg-muted/20'
|
|
848
|
-
)}
|
|
849
|
-
>
|
|
850
|
-
{right && (
|
|
851
|
-
<>
|
|
852
|
-
<LineNumber
|
|
853
|
-
value={right.lineNumber.new}
|
|
854
|
-
type={right.type === 'added' ? 'added' : undefined}
|
|
855
|
-
/>
|
|
856
|
-
<div
|
|
857
|
-
className={cn(
|
|
858
|
-
'flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm',
|
|
859
|
-
right.type === 'added' && 'text-dynamic-green',
|
|
860
|
-
right.type === 'unchanged' && 'text-foreground/80'
|
|
861
|
-
)}
|
|
862
|
-
>
|
|
863
|
-
{right.type === 'added' && (
|
|
864
|
-
<span className="w-3 shrink-0 select-none text-center opacity-60">
|
|
865
|
-
+
|
|
866
|
-
</span>
|
|
867
|
-
)}
|
|
868
|
-
<span className="whitespace-pre-wrap break-all">
|
|
869
|
-
{right.content || ' '}
|
|
870
|
-
</span>
|
|
871
|
-
</div>
|
|
872
|
-
</>
|
|
873
|
-
)}
|
|
874
|
-
</div>
|
|
875
|
-
</div>
|
|
876
|
-
);
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
// Word diff types and helpers
|
|
880
|
-
|
|
881
|
-
interface WordDiffLine {
|
|
882
|
-
lineIndex: number;
|
|
883
|
-
hasChanges: boolean;
|
|
884
|
-
segments: Array<{ type: 'added' | 'removed' | 'unchanged'; value: string }>;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
function processWordDiffToLines(diff: DiffChange[]): WordDiffLine[] {
|
|
888
|
-
const lines: WordDiffLine[] = [];
|
|
889
|
-
let currentLineIndex = 0;
|
|
890
|
-
let currentLineSegments: WordDiffLine['segments'] = [];
|
|
891
|
-
let currentLineHasChanges = false;
|
|
892
|
-
|
|
893
|
-
for (const change of diff) {
|
|
894
|
-
const parts = change.value.split('\n');
|
|
895
|
-
|
|
896
|
-
parts.forEach((part, partIndex) => {
|
|
897
|
-
if (part.length > 0 || partIndex === 0) {
|
|
898
|
-
currentLineSegments.push({ type: change.type, value: part });
|
|
899
|
-
if (change.type !== 'unchanged') {
|
|
900
|
-
currentLineHasChanges = true;
|
|
901
|
-
}
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
if (partIndex < parts.length - 1) {
|
|
905
|
-
lines.push({
|
|
906
|
-
lineIndex: currentLineIndex,
|
|
907
|
-
hasChanges: currentLineHasChanges,
|
|
908
|
-
segments: currentLineSegments,
|
|
909
|
-
});
|
|
910
|
-
currentLineIndex++;
|
|
911
|
-
currentLineSegments = [];
|
|
912
|
-
currentLineHasChanges = false;
|
|
913
|
-
}
|
|
914
|
-
});
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
if (currentLineSegments.length > 0) {
|
|
918
|
-
lines.push({
|
|
919
|
-
lineIndex: currentLineIndex,
|
|
920
|
-
hasChanges: currentLineHasChanges,
|
|
921
|
-
segments: currentLineSegments,
|
|
922
|
-
});
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
return lines;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
interface WordDiffDisplayItem {
|
|
929
|
-
type: 'line' | 'collapsed';
|
|
930
|
-
line?: WordDiffLine;
|
|
931
|
-
id?: string;
|
|
932
|
-
count?: number;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
function collapseUnchangedWordLines(
|
|
936
|
-
lines: WordDiffLine[],
|
|
937
|
-
contextLines: number,
|
|
938
|
-
expandedBlocks: Set<string>
|
|
939
|
-
): WordDiffDisplayItem[] {
|
|
940
|
-
if (lines.length === 0) return [];
|
|
941
|
-
|
|
942
|
-
const changedIndices = lines
|
|
943
|
-
.map((line, idx) => (line.hasChanges ? idx : -1))
|
|
944
|
-
.filter((idx) => idx !== -1);
|
|
945
|
-
|
|
946
|
-
if (changedIndices.length === 0) {
|
|
947
|
-
const blockId = 'word-block-0';
|
|
948
|
-
if (expandedBlocks.has(blockId)) {
|
|
949
|
-
return lines.map((line) => ({ type: 'line' as const, line }));
|
|
950
|
-
}
|
|
951
|
-
return lines.length > 0
|
|
952
|
-
? [{ type: 'collapsed' as const, id: blockId, count: lines.length }]
|
|
953
|
-
: [];
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
const visibleLines = new Set<number>();
|
|
957
|
-
for (const changeIdx of changedIndices) {
|
|
958
|
-
for (
|
|
959
|
-
let i = Math.max(0, changeIdx - contextLines);
|
|
960
|
-
i <= Math.min(lines.length - 1, changeIdx + contextLines);
|
|
961
|
-
i++
|
|
962
|
-
) {
|
|
963
|
-
visibleLines.add(i);
|
|
964
|
-
}
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
const result: WordDiffDisplayItem[] = [];
|
|
968
|
-
let collapsedStartIdx = -1;
|
|
969
|
-
let collapsedCount = 0;
|
|
970
|
-
let blockCounter = 0;
|
|
971
|
-
|
|
972
|
-
for (let i = 0; i < lines.length; i++) {
|
|
973
|
-
if (visibleLines.has(i)) {
|
|
974
|
-
if (collapsedCount > 0) {
|
|
975
|
-
const blockId = `word-block-${blockCounter++}`;
|
|
976
|
-
if (expandedBlocks.has(blockId)) {
|
|
977
|
-
for (let j = collapsedStartIdx; j < i; j++) {
|
|
978
|
-
result.push({ type: 'line', line: lines[j] });
|
|
979
|
-
}
|
|
980
|
-
} else {
|
|
981
|
-
result.push({
|
|
982
|
-
type: 'collapsed',
|
|
983
|
-
id: blockId,
|
|
984
|
-
count: collapsedCount,
|
|
985
|
-
});
|
|
986
|
-
}
|
|
987
|
-
collapsedCount = 0;
|
|
988
|
-
collapsedStartIdx = -1;
|
|
989
|
-
}
|
|
990
|
-
result.push({ type: 'line', line: lines[i] });
|
|
991
|
-
} else {
|
|
992
|
-
if (collapsedStartIdx === -1) {
|
|
993
|
-
collapsedStartIdx = i;
|
|
994
|
-
}
|
|
995
|
-
collapsedCount++;
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
if (collapsedCount > 0) {
|
|
1000
|
-
const blockId = `word-block-${blockCounter}`;
|
|
1001
|
-
if (expandedBlocks.has(blockId)) {
|
|
1002
|
-
for (let j = collapsedStartIdx; j < lines.length; j++) {
|
|
1003
|
-
result.push({ type: 'line', line: lines[j] });
|
|
1004
|
-
}
|
|
1005
|
-
} else {
|
|
1006
|
-
result.push({ type: 'collapsed', id: blockId, count: collapsedCount });
|
|
1007
|
-
}
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
return result;
|
|
1011
|
-
}
|
|
1012
|
-
|
|
1013
|
-
interface WordDiffViewProps {
|
|
1014
|
-
diff: DiffChange[];
|
|
1015
|
-
oldText: string;
|
|
1016
|
-
newText: string;
|
|
1017
|
-
viewMode: DiffViewMode;
|
|
1018
|
-
t: (
|
|
1019
|
-
key: string,
|
|
1020
|
-
options?: { defaultValue?: string; count?: number }
|
|
1021
|
-
) => string;
|
|
1022
|
-
expandedBlocks: Set<string>;
|
|
1023
|
-
onToggleBlock: (blockId: string) => void;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
function WordDiffView({
|
|
1027
|
-
diff,
|
|
1028
|
-
oldText,
|
|
1029
|
-
newText,
|
|
1030
|
-
viewMode,
|
|
1031
|
-
t,
|
|
1032
|
-
expandedBlocks,
|
|
1033
|
-
onToggleBlock,
|
|
1034
|
-
}: WordDiffViewProps) {
|
|
1035
|
-
const wordDiffLines = useMemo(() => processWordDiffToLines(diff), [diff]);
|
|
1036
|
-
|
|
1037
|
-
const displayItems = useMemo(
|
|
1038
|
-
() =>
|
|
1039
|
-
collapseUnchangedWordLines(wordDiffLines, CONTEXT_LINES, expandedBlocks),
|
|
1040
|
-
[wordDiffLines, expandedBlocks]
|
|
1041
|
-
);
|
|
1042
|
-
|
|
1043
|
-
if (viewMode === 'split') {
|
|
1044
|
-
return (
|
|
1045
|
-
<div className="overflow-hidden rounded-lg border bg-card">
|
|
1046
|
-
{/* Headers */}
|
|
1047
|
-
<div className="grid grid-cols-2 border-b bg-muted/50">
|
|
1048
|
-
<div className="border-r px-3 py-2 font-medium text-muted-foreground text-xs">
|
|
1049
|
-
{t('old_version', { defaultValue: 'Previous' })}
|
|
1050
|
-
</div>
|
|
1051
|
-
<div className="px-3 py-2 font-medium text-muted-foreground text-xs">
|
|
1052
|
-
{t('new_version', { defaultValue: 'Current' })}
|
|
1053
|
-
</div>
|
|
1054
|
-
</div>
|
|
1055
|
-
|
|
1056
|
-
{displayItems.map((item) => {
|
|
1057
|
-
if (item.type === 'collapsed') {
|
|
1058
|
-
return (
|
|
1059
|
-
<CollapsedLinesIndicator
|
|
1060
|
-
key={item.id}
|
|
1061
|
-
blockId={item.id!}
|
|
1062
|
-
count={item.count!}
|
|
1063
|
-
t={t}
|
|
1064
|
-
onToggle={onToggleBlock}
|
|
1065
|
-
isExpanded={expandedBlocks.has(item.id!)}
|
|
1066
|
-
/>
|
|
1067
|
-
);
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
const line = item.line!;
|
|
1071
|
-
return (
|
|
1072
|
-
<WordDiffSplitRow
|
|
1073
|
-
key={`line-${line.lineIndex}`}
|
|
1074
|
-
line={line}
|
|
1075
|
-
lineIndex={line.lineIndex}
|
|
1076
|
-
/>
|
|
1077
|
-
);
|
|
1078
|
-
})}
|
|
1079
|
-
|
|
1080
|
-
{!oldText && !newText && (
|
|
1081
|
-
<div className="py-8 text-center text-muted-foreground italic">
|
|
1082
|
-
{t('value.empty', { defaultValue: 'Empty' })}
|
|
1083
|
-
</div>
|
|
1084
|
-
)}
|
|
1085
|
-
</div>
|
|
1086
|
-
);
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
// Unified view
|
|
1090
|
-
return (
|
|
1091
|
-
<div className="overflow-hidden rounded-lg border bg-card">
|
|
1092
|
-
{displayItems.map((item) => {
|
|
1093
|
-
if (item.type === 'collapsed') {
|
|
1094
|
-
return (
|
|
1095
|
-
<CollapsedLinesIndicator
|
|
1096
|
-
key={item.id}
|
|
1097
|
-
blockId={item.id!}
|
|
1098
|
-
count={item.count!}
|
|
1099
|
-
t={t}
|
|
1100
|
-
onToggle={onToggleBlock}
|
|
1101
|
-
isExpanded={expandedBlocks.has(item.id!)}
|
|
1102
|
-
/>
|
|
1103
|
-
);
|
|
1104
|
-
}
|
|
1105
|
-
|
|
1106
|
-
const line = item.line!;
|
|
1107
|
-
const hasAdditions = line.segments.some((s) => s.type === 'added');
|
|
1108
|
-
const hasRemovals = line.segments.some((s) => s.type === 'removed');
|
|
1109
|
-
|
|
1110
|
-
return (
|
|
1111
|
-
<div
|
|
1112
|
-
key={`line-${line.lineIndex}`}
|
|
1113
|
-
className={cn(
|
|
1114
|
-
'flex min-h-6 border-border/50 border-b last:border-b-0',
|
|
1115
|
-
line.hasChanges && 'bg-muted/20'
|
|
1116
|
-
)}
|
|
1117
|
-
>
|
|
1118
|
-
<LineNumber
|
|
1119
|
-
value={line.lineIndex + 1}
|
|
1120
|
-
type={
|
|
1121
|
-
hasRemovals ? 'removed' : hasAdditions ? 'added' : undefined
|
|
1122
|
-
}
|
|
1123
|
-
/>
|
|
1124
|
-
<div className="flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm">
|
|
1125
|
-
<span className="w-4 shrink-0 select-none text-center opacity-60">
|
|
1126
|
-
{line.hasChanges ? '*' : ' '}
|
|
1127
|
-
</span>
|
|
1128
|
-
<span className="whitespace-pre-wrap break-all">
|
|
1129
|
-
{line.segments.map((seg, segIdx) => (
|
|
1130
|
-
<span
|
|
1131
|
-
key={segIdx}
|
|
1132
|
-
className={cn(
|
|
1133
|
-
seg.type === 'added' &&
|
|
1134
|
-
'rounded-sm bg-dynamic-green/20 text-dynamic-green',
|
|
1135
|
-
seg.type === 'removed' &&
|
|
1136
|
-
'rounded-sm bg-dynamic-red/20 text-dynamic-red line-through'
|
|
1137
|
-
)}
|
|
1138
|
-
>
|
|
1139
|
-
{seg.value}
|
|
1140
|
-
</span>
|
|
1141
|
-
))}
|
|
1142
|
-
</span>
|
|
1143
|
-
</div>
|
|
1144
|
-
</div>
|
|
1145
|
-
);
|
|
1146
|
-
})}
|
|
1147
|
-
|
|
1148
|
-
{!oldText && !newText && (
|
|
1149
|
-
<div className="py-8 text-center text-muted-foreground italic">
|
|
1150
|
-
{t('value.empty', { defaultValue: 'Empty' })}
|
|
1151
|
-
</div>
|
|
1152
|
-
)}
|
|
1153
|
-
</div>
|
|
1154
|
-
);
|
|
1155
|
-
}
|
|
1156
|
-
|
|
1157
|
-
function WordDiffSplitRow({
|
|
1158
|
-
line,
|
|
1159
|
-
lineIndex,
|
|
1160
|
-
}: {
|
|
1161
|
-
line: WordDiffLine;
|
|
1162
|
-
lineIndex: number;
|
|
1163
|
-
}) {
|
|
1164
|
-
const leftSegments = line.segments.filter((s) => s.type !== 'added');
|
|
1165
|
-
const rightSegments = line.segments.filter((s) => s.type !== 'removed');
|
|
1166
|
-
|
|
1167
|
-
const hasRemovals = line.segments.some((s) => s.type === 'removed');
|
|
1168
|
-
const hasAdditions = line.segments.some((s) => s.type === 'added');
|
|
1169
|
-
|
|
1170
|
-
return (
|
|
1171
|
-
<div className="grid grid-cols-2 border-border/50 border-b last:border-b-0">
|
|
1172
|
-
{/* Left side (old) */}
|
|
1173
|
-
<div
|
|
1174
|
-
className={cn(
|
|
1175
|
-
'flex min-h-7 border-r',
|
|
1176
|
-
hasRemovals && 'bg-dynamic-red/5'
|
|
1177
|
-
)}
|
|
1178
|
-
>
|
|
1179
|
-
<LineNumber
|
|
1180
|
-
value={lineIndex + 1}
|
|
1181
|
-
type={hasRemovals ? 'removed' : undefined}
|
|
1182
|
-
/>
|
|
1183
|
-
<div
|
|
1184
|
-
className={cn(
|
|
1185
|
-
'flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm',
|
|
1186
|
-
!line.hasChanges && 'text-foreground/80'
|
|
1187
|
-
)}
|
|
1188
|
-
>
|
|
1189
|
-
{hasRemovals && (
|
|
1190
|
-
<span className="w-3 shrink-0 select-none text-center text-dynamic-red/60">
|
|
1191
|
-
-
|
|
1192
|
-
</span>
|
|
1193
|
-
)}
|
|
1194
|
-
<span className="whitespace-pre-wrap break-all">
|
|
1195
|
-
{leftSegments.map((seg, idx) => (
|
|
1196
|
-
<span
|
|
1197
|
-
key={idx}
|
|
1198
|
-
className={cn(
|
|
1199
|
-
seg.type === 'removed' &&
|
|
1200
|
-
'rounded-sm bg-dynamic-red/20 text-dynamic-red line-through'
|
|
1201
|
-
)}
|
|
1202
|
-
>
|
|
1203
|
-
{seg.value}
|
|
1204
|
-
</span>
|
|
1205
|
-
))}
|
|
1206
|
-
</span>
|
|
1207
|
-
</div>
|
|
1208
|
-
</div>
|
|
1209
|
-
|
|
1210
|
-
{/* Right side (new) */}
|
|
1211
|
-
<div className={cn('flex min-h-7', hasAdditions && 'bg-dynamic-green/5')}>
|
|
1212
|
-
<LineNumber
|
|
1213
|
-
value={lineIndex + 1}
|
|
1214
|
-
type={hasAdditions ? 'added' : undefined}
|
|
1215
|
-
/>
|
|
1216
|
-
<div
|
|
1217
|
-
className={cn(
|
|
1218
|
-
'flex flex-1 items-start gap-2 px-3 py-0.5 font-mono text-sm',
|
|
1219
|
-
!line.hasChanges && 'text-foreground/80'
|
|
1220
|
-
)}
|
|
1221
|
-
>
|
|
1222
|
-
{hasAdditions && (
|
|
1223
|
-
<span className="w-3 shrink-0 select-none text-center text-dynamic-green/60">
|
|
1224
|
-
+
|
|
1225
|
-
</span>
|
|
1226
|
-
)}
|
|
1227
|
-
<span className="whitespace-pre-wrap break-all">
|
|
1228
|
-
{rightSegments.map((seg, idx) => (
|
|
1229
|
-
<span
|
|
1230
|
-
key={idx}
|
|
1231
|
-
className={cn(
|
|
1232
|
-
seg.type === 'added' &&
|
|
1233
|
-
'rounded-sm bg-dynamic-green/20 text-dynamic-green'
|
|
1234
|
-
)}
|
|
1235
|
-
>
|
|
1236
|
-
{seg.value}
|
|
1237
|
-
</span>
|
|
1238
|
-
))}
|
|
1239
|
-
</span>
|
|
1240
|
-
</div>
|
|
1241
|
-
</div>
|
|
1242
|
-
</div>
|
|
1243
|
-
);
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
// ============================================================================
|
|
1247
|
-
// MEDIA CHANGES SECTION - Shows image/video/mention changes with thumbnails
|
|
1248
|
-
// ============================================================================
|
|
1249
|
-
|
|
1250
|
-
interface MediaChangesSectionProps {
|
|
1251
|
-
nodeDiff: NodeDiffSummary;
|
|
1252
|
-
t: (
|
|
1253
|
-
key: string,
|
|
1254
|
-
options?: { defaultValue?: string; count?: number }
|
|
1255
|
-
) => string;
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
function MediaChangesSection({ nodeDiff, t }: MediaChangesSectionProps) {
|
|
1259
|
-
const [isExpanded, setIsExpanded] = useState(true);
|
|
1260
|
-
const { added, removed, modified } = nodeDiff;
|
|
1261
|
-
|
|
1262
|
-
// Filter to only show media nodes (images, videos, youtube)
|
|
1263
|
-
const mediaAdded = added.filter((d) =>
|
|
1264
|
-
['image', 'imageResize', 'video', 'youtube'].includes(d.nodeType)
|
|
1265
|
-
);
|
|
1266
|
-
const mediaRemoved = removed.filter((d) =>
|
|
1267
|
-
['image', 'imageResize', 'video', 'youtube'].includes(d.nodeType)
|
|
1268
|
-
);
|
|
1269
|
-
const mediaModified = modified.filter((d) =>
|
|
1270
|
-
['image', 'imageResize', 'video', 'youtube'].includes(d.nodeType)
|
|
1271
|
-
);
|
|
1272
|
-
|
|
1273
|
-
const totalCount =
|
|
1274
|
-
mediaAdded.length + mediaRemoved.length + mediaModified.length;
|
|
1275
|
-
|
|
1276
|
-
if (totalCount === 0) {
|
|
1277
|
-
return null;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
return (
|
|
1281
|
-
<div className="overflow-hidden rounded-lg border bg-card">
|
|
1282
|
-
{/* Collapsible Header */}
|
|
1283
|
-
<button
|
|
1284
|
-
type="button"
|
|
1285
|
-
onClick={() => setIsExpanded(!isExpanded)}
|
|
1286
|
-
className="flex w-full items-center gap-1.5 bg-muted/50 px-2 py-1.5 text-left transition-colors hover:bg-muted/70 sm:gap-2 sm:px-3 sm:py-2"
|
|
1287
|
-
>
|
|
1288
|
-
{isExpanded ? (
|
|
1289
|
-
<ChevronDown className="h-3.5 w-3.5 text-muted-foreground sm:h-4 sm:w-4" />
|
|
1290
|
-
) : (
|
|
1291
|
-
<ChevronRight className="h-3.5 w-3.5 text-muted-foreground sm:h-4 sm:w-4" />
|
|
1292
|
-
)}
|
|
1293
|
-
<ImageIcon className="h-3.5 w-3.5 text-muted-foreground sm:h-4 sm:w-4" />
|
|
1294
|
-
<span className="font-medium text-xs sm:text-sm">
|
|
1295
|
-
{t('media_changes', { defaultValue: 'Media Changes' })}
|
|
1296
|
-
</span>
|
|
1297
|
-
<Badge variant="secondary" className="ml-auto text-xs">
|
|
1298
|
-
{totalCount}
|
|
1299
|
-
</Badge>
|
|
1300
|
-
</button>
|
|
1301
|
-
|
|
1302
|
-
{/* Collapsible Content */}
|
|
1303
|
-
{isExpanded && (
|
|
1304
|
-
<div className="divide-y border-t">
|
|
1305
|
-
{/* Removed items */}
|
|
1306
|
-
{mediaRemoved.map((diff, idx) => (
|
|
1307
|
-
<MediaChangeRow
|
|
1308
|
-
key={`removed-${idx}`}
|
|
1309
|
-
diff={diff}
|
|
1310
|
-
changeType="removed"
|
|
1311
|
-
t={t}
|
|
1312
|
-
/>
|
|
1313
|
-
))}
|
|
1314
|
-
|
|
1315
|
-
{/* Added items */}
|
|
1316
|
-
{mediaAdded.map((diff, idx) => (
|
|
1317
|
-
<MediaChangeRow
|
|
1318
|
-
key={`added-${idx}`}
|
|
1319
|
-
diff={diff}
|
|
1320
|
-
changeType="added"
|
|
1321
|
-
t={t}
|
|
1322
|
-
/>
|
|
1323
|
-
))}
|
|
1324
|
-
|
|
1325
|
-
{/* Modified items */}
|
|
1326
|
-
{mediaModified.map((diff, idx) => (
|
|
1327
|
-
<MediaChangeRow
|
|
1328
|
-
key={`modified-${idx}`}
|
|
1329
|
-
diff={diff}
|
|
1330
|
-
changeType="modified"
|
|
1331
|
-
t={t}
|
|
1332
|
-
/>
|
|
1333
|
-
))}
|
|
1334
|
-
</div>
|
|
1335
|
-
)}
|
|
1336
|
-
</div>
|
|
1337
|
-
);
|
|
1338
|
-
}
|
|
1339
|
-
|
|
1340
|
-
interface MediaChangeRowProps {
|
|
1341
|
-
diff: NodeDiffResult;
|
|
1342
|
-
changeType: 'added' | 'removed' | 'modified';
|
|
1343
|
-
t: (
|
|
1344
|
-
key: string,
|
|
1345
|
-
options?: { defaultValue?: string; count?: number }
|
|
1346
|
-
) => string;
|
|
1347
|
-
}
|
|
1348
|
-
|
|
1349
|
-
function MediaChangeRow({ diff, changeType, t }: MediaChangeRowProps) {
|
|
1350
|
-
const [imageError, setImageError] = useState(false);
|
|
1351
|
-
const [showPreview, setShowPreview] = useState(false);
|
|
1352
|
-
|
|
1353
|
-
const node = changeType === 'removed' ? diff.oldNode : diff.newNode;
|
|
1354
|
-
const imageSrc = node ? getNodeImageSrc(node) : null;
|
|
1355
|
-
const isImage = diff.nodeType === 'image' || diff.nodeType === 'imageResize';
|
|
1356
|
-
const isVideo = diff.nodeType === 'video';
|
|
1357
|
-
const isYoutube = diff.nodeType === 'youtube';
|
|
1358
|
-
|
|
1359
|
-
// Get video source for preview
|
|
1360
|
-
const videoSrc = isVideo ? node?.attrs?.src : null;
|
|
1361
|
-
const youtubeSrc = isYoutube
|
|
1362
|
-
? node?.attrs?.src || node?.attrs?.videoId
|
|
1363
|
-
: null;
|
|
1364
|
-
|
|
1365
|
-
const getIcon = () => {
|
|
1366
|
-
if (isVideo) return <Video className="h-4 w-4" />;
|
|
1367
|
-
if (isYoutube) return <Youtube className="h-4 w-4" />;
|
|
1368
|
-
return <ImageIcon className="h-4 w-4" />;
|
|
1369
|
-
};
|
|
1370
|
-
|
|
1371
|
-
const getLabel = () => {
|
|
1372
|
-
if (changeType === 'modified') {
|
|
1373
|
-
return t('media_modified', { defaultValue: 'Modified' });
|
|
1374
|
-
}
|
|
1375
|
-
if (changeType === 'added') {
|
|
1376
|
-
if (isImage) return t('image_added', { defaultValue: 'Image added' });
|
|
1377
|
-
if (isVideo) return t('video_added', { defaultValue: 'Video added' });
|
|
1378
|
-
if (isYoutube)
|
|
1379
|
-
return t('youtube_added', { defaultValue: 'YouTube added' });
|
|
1380
|
-
return t('media_added', { defaultValue: 'Added' });
|
|
1381
|
-
}
|
|
1382
|
-
// removed
|
|
1383
|
-
if (isImage) return t('image_removed', { defaultValue: 'Image removed' });
|
|
1384
|
-
if (isVideo) return t('video_removed', { defaultValue: 'Video removed' });
|
|
1385
|
-
if (isYoutube)
|
|
1386
|
-
return t('youtube_removed', { defaultValue: 'YouTube removed' });
|
|
1387
|
-
return t('media_removed', { defaultValue: 'Removed' });
|
|
1388
|
-
};
|
|
1389
|
-
|
|
1390
|
-
const canPreview =
|
|
1391
|
-
(isImage && imageSrc && !imageError) || videoSrc || youtubeSrc;
|
|
1392
|
-
|
|
1393
|
-
return (
|
|
1394
|
-
<>
|
|
1395
|
-
<div
|
|
1396
|
-
className={cn(
|
|
1397
|
-
'flex items-center gap-2 px-2 py-1.5 sm:gap-3 sm:px-3 sm:py-2',
|
|
1398
|
-
changeType === 'added' && 'bg-dynamic-green/5',
|
|
1399
|
-
changeType === 'removed' && 'bg-dynamic-red/5',
|
|
1400
|
-
changeType === 'modified' && 'bg-dynamic-yellow/5'
|
|
1401
|
-
)}
|
|
1402
|
-
>
|
|
1403
|
-
{/* Change indicator */}
|
|
1404
|
-
<div
|
|
1405
|
-
className={cn(
|
|
1406
|
-
'flex h-4 w-4 shrink-0 items-center justify-center rounded-full font-medium text-xs sm:h-5 sm:w-5',
|
|
1407
|
-
changeType === 'added' && 'bg-dynamic-green/20 text-dynamic-green',
|
|
1408
|
-
changeType === 'removed' && 'bg-dynamic-red/20 text-dynamic-red',
|
|
1409
|
-
changeType === 'modified' &&
|
|
1410
|
-
'bg-dynamic-yellow/20 text-dynamic-yellow'
|
|
1411
|
-
)}
|
|
1412
|
-
>
|
|
1413
|
-
{changeType === 'added' && (
|
|
1414
|
-
<Plus className="h-2.5 w-2.5 sm:h-3 sm:w-3" />
|
|
1415
|
-
)}
|
|
1416
|
-
{changeType === 'removed' && (
|
|
1417
|
-
<Minus className="h-2.5 w-2.5 sm:h-3 sm:w-3" />
|
|
1418
|
-
)}
|
|
1419
|
-
{changeType === 'modified' && (
|
|
1420
|
-
<Pen className="h-2.5 w-2.5 sm:h-3 sm:w-3" />
|
|
1421
|
-
)}
|
|
1422
|
-
</div>
|
|
1423
|
-
|
|
1424
|
-
{/* Thumbnail - clickable for preview */}
|
|
1425
|
-
<button
|
|
1426
|
-
type="button"
|
|
1427
|
-
onClick={() => canPreview && setShowPreview(true)}
|
|
1428
|
-
disabled={!canPreview}
|
|
1429
|
-
className={cn(
|
|
1430
|
-
'relative h-10 w-10 shrink-0 overflow-hidden rounded-md border-2 transition-transform sm:h-12 sm:w-12',
|
|
1431
|
-
changeType === 'added' && 'border-dynamic-green/30',
|
|
1432
|
-
changeType === 'removed' && 'border-dynamic-red/30 opacity-60',
|
|
1433
|
-
changeType === 'modified' && 'border-dynamic-yellow/30',
|
|
1434
|
-
canPreview &&
|
|
1435
|
-
'cursor-pointer hover:scale-105 hover:ring-2 hover:ring-primary/50'
|
|
1436
|
-
)}
|
|
1437
|
-
>
|
|
1438
|
-
{isImage && imageSrc && !imageError ? (
|
|
1439
|
-
<Image
|
|
1440
|
-
src={imageSrc}
|
|
1441
|
-
alt={diff.displayLabel}
|
|
1442
|
-
height={48}
|
|
1443
|
-
width={48}
|
|
1444
|
-
className="h-full w-full object-cover"
|
|
1445
|
-
onError={() => setImageError(true)}
|
|
1446
|
-
loading="lazy"
|
|
1447
|
-
/>
|
|
1448
|
-
) : (
|
|
1449
|
-
<div className="flex h-full w-full items-center justify-center bg-muted text-muted-foreground">
|
|
1450
|
-
{getIcon()}
|
|
1451
|
-
</div>
|
|
1452
|
-
)}
|
|
1453
|
-
{canPreview && (
|
|
1454
|
-
<div className="absolute inset-0 flex items-center justify-center bg-black/0 opacity-0 transition-opacity hover:bg-black/20 hover:opacity-100">
|
|
1455
|
-
<Eye className="h-4 w-4 text-white" />
|
|
1456
|
-
</div>
|
|
1457
|
-
)}
|
|
1458
|
-
</button>
|
|
1459
|
-
|
|
1460
|
-
{/* Label and details */}
|
|
1461
|
-
<div className="min-w-0 flex-1">
|
|
1462
|
-
<div className="flex items-center gap-2">
|
|
1463
|
-
<span
|
|
1464
|
-
className={cn(
|
|
1465
|
-
'font-medium text-[10px] sm:text-xs',
|
|
1466
|
-
changeType === 'added' && 'text-dynamic-green',
|
|
1467
|
-
changeType === 'removed' && 'text-dynamic-red',
|
|
1468
|
-
changeType === 'modified' && 'text-dynamic-yellow'
|
|
1469
|
-
)}
|
|
1470
|
-
>
|
|
1471
|
-
{getLabel()}
|
|
1472
|
-
</span>
|
|
1473
|
-
</div>
|
|
1474
|
-
<p className="truncate text-foreground/80 text-xs sm:text-sm">
|
|
1475
|
-
{diff.displayLabel}
|
|
1476
|
-
</p>
|
|
1477
|
-
|
|
1478
|
-
{/* Show attribute changes for modified items - hidden on small screens */}
|
|
1479
|
-
{changeType === 'modified' && diff.attributeChanges && (
|
|
1480
|
-
<div className="mt-1 hidden flex-wrap gap-1 sm:flex">
|
|
1481
|
-
{diff.attributeChanges.slice(0, 3).map((change, idx) => (
|
|
1482
|
-
<span
|
|
1483
|
-
key={idx}
|
|
1484
|
-
className="inline-flex items-center gap-1 rounded bg-muted px-1.5 py-0.5 text-muted-foreground text-xs"
|
|
1485
|
-
>
|
|
1486
|
-
<span className="font-medium">{change.key}:</span>
|
|
1487
|
-
<span className="line-through opacity-60">
|
|
1488
|
-
{formatAttrValue(change.oldValue)}
|
|
1489
|
-
</span>
|
|
1490
|
-
<span>→</span>
|
|
1491
|
-
<span>{formatAttrValue(change.newValue)}</span>
|
|
1492
|
-
</span>
|
|
1493
|
-
))}
|
|
1494
|
-
{diff.attributeChanges.length > 3 && (
|
|
1495
|
-
<span className="inline-flex items-center rounded bg-muted px-1.5 py-0.5 text-muted-foreground text-xs">
|
|
1496
|
-
+{diff.attributeChanges.length - 3} more
|
|
1497
|
-
</span>
|
|
1498
|
-
)}
|
|
1499
|
-
</div>
|
|
1500
|
-
)}
|
|
1501
|
-
</div>
|
|
1502
|
-
</div>
|
|
1503
|
-
|
|
1504
|
-
{/* Full-screen preview dialog */}
|
|
1505
|
-
{showPreview && canPreview && (
|
|
1506
|
-
<MediaPreviewDialog
|
|
1507
|
-
isOpen={showPreview}
|
|
1508
|
-
onClose={() => setShowPreview(false)}
|
|
1509
|
-
src={imageSrc || videoSrc || youtubeSrc || ''}
|
|
1510
|
-
type={isImage ? 'image' : isVideo ? 'video' : 'youtube'}
|
|
1511
|
-
label={diff.displayLabel}
|
|
1512
|
-
t={t}
|
|
1513
|
-
/>
|
|
1514
|
-
)}
|
|
1515
|
-
</>
|
|
1516
|
-
);
|
|
1517
|
-
}
|
|
1518
|
-
|
|
1519
|
-
// ============================================================================
|
|
1520
|
-
// MEDIA PREVIEW DIALOG - Full-screen preview for media items
|
|
1521
|
-
// ============================================================================
|
|
1522
|
-
|
|
1523
|
-
interface MediaPreviewDialogProps {
|
|
1524
|
-
isOpen: boolean;
|
|
1525
|
-
onClose: () => void;
|
|
1526
|
-
src: string;
|
|
1527
|
-
type: 'image' | 'video' | 'youtube';
|
|
1528
|
-
label: string;
|
|
1529
|
-
t: (
|
|
1530
|
-
key: string,
|
|
1531
|
-
options?: { defaultValue?: string; count?: number }
|
|
1532
|
-
) => string;
|
|
1533
|
-
}
|
|
1534
|
-
|
|
1535
|
-
function MediaPreviewDialog({
|
|
1536
|
-
isOpen,
|
|
1537
|
-
onClose,
|
|
1538
|
-
src,
|
|
1539
|
-
type,
|
|
1540
|
-
label,
|
|
1541
|
-
t,
|
|
1542
|
-
}: MediaPreviewDialogProps) {
|
|
1543
|
-
const [imageError, setImageError] = useState(false);
|
|
1544
|
-
|
|
1545
|
-
if (!isOpen) return null;
|
|
1546
|
-
|
|
1547
|
-
// Extract YouTube video ID from URL
|
|
1548
|
-
const getYoutubeEmbedUrl = (url: string) => {
|
|
1549
|
-
try {
|
|
1550
|
-
// Handle various YouTube URL formats
|
|
1551
|
-
const urlObj = new URL(url);
|
|
1552
|
-
let videoId = urlObj.searchParams.get('v');
|
|
1553
|
-
if (!videoId) {
|
|
1554
|
-
// Handle youtu.be or embed URLs
|
|
1555
|
-
const pathParts = urlObj.pathname.split('/').filter(Boolean);
|
|
1556
|
-
videoId = pathParts[pathParts.length - 1] || null;
|
|
1557
|
-
}
|
|
1558
|
-
return videoId ? `https://www.youtube.com/embed/${videoId}` : url;
|
|
1559
|
-
} catch {
|
|
1560
|
-
// If it's just a video ID, use it directly
|
|
1561
|
-
return `https://www.youtube.com/embed/${src}`;
|
|
1562
|
-
}
|
|
1563
|
-
};
|
|
1564
|
-
|
|
1565
|
-
return (
|
|
1566
|
-
<Dialog open={isOpen} onOpenChange={onClose}>
|
|
1567
|
-
<DialogContent
|
|
1568
|
-
className="flex h-[95vh] max-h-[95vh] w-[98vw] max-w-4xl flex-col gap-0 overflow-hidden p-0 sm:h-[90vh] sm:max-h-[90vh] sm:w-[95vw] md:max-w-5xl lg:max-w-6xl xl:max-w-7xl 2xl:max-w-[90vw]"
|
|
1569
|
-
showCloseButton={false}
|
|
1570
|
-
>
|
|
1571
|
-
{/* Header */}
|
|
1572
|
-
<DialogHeader className="flex-row items-center justify-between border-b px-2 py-2 sm:px-4 sm:py-3">
|
|
1573
|
-
<DialogTitle className="flex items-center gap-1.5 text-sm sm:gap-2 sm:text-base">
|
|
1574
|
-
{type === 'image' && (
|
|
1575
|
-
<ImageIcon className="h-3.5 w-3.5 sm:h-4 sm:w-4" />
|
|
1576
|
-
)}
|
|
1577
|
-
{type === 'video' && (
|
|
1578
|
-
<Video className="h-3.5 w-3.5 sm:h-4 sm:w-4" />
|
|
1579
|
-
)}
|
|
1580
|
-
{type === 'youtube' && (
|
|
1581
|
-
<Youtube className="h-3.5 w-3.5 sm:h-4 sm:w-4" />
|
|
1582
|
-
)}
|
|
1583
|
-
<span className="xs:inline hidden">
|
|
1584
|
-
{t('media_preview', { defaultValue: 'Media Preview' })}
|
|
1585
|
-
</span>
|
|
1586
|
-
</DialogTitle>
|
|
1587
|
-
<Button
|
|
1588
|
-
variant="ghost"
|
|
1589
|
-
size="icon"
|
|
1590
|
-
onClick={onClose}
|
|
1591
|
-
className="h-7 w-7 sm:h-8 sm:w-8"
|
|
1592
|
-
>
|
|
1593
|
-
<X className="h-4 w-4" />
|
|
1594
|
-
<span className="sr-only">
|
|
1595
|
-
{t('close_preview', { defaultValue: 'Close preview' })}
|
|
1596
|
-
</span>
|
|
1597
|
-
</Button>
|
|
1598
|
-
</DialogHeader>
|
|
1599
|
-
|
|
1600
|
-
{/* Preview content */}
|
|
1601
|
-
<div className="flex flex-1 items-center justify-center overflow-auto bg-black/5 p-2 sm:p-4">
|
|
1602
|
-
{type === 'image' && !imageError && (
|
|
1603
|
-
<Image
|
|
1604
|
-
src={src}
|
|
1605
|
-
alt={label}
|
|
1606
|
-
height={512}
|
|
1607
|
-
width={512}
|
|
1608
|
-
className="max-h-full max-w-full rounded-lg object-contain shadow-lg"
|
|
1609
|
-
onError={() => setImageError(true)}
|
|
1610
|
-
/>
|
|
1611
|
-
)}
|
|
1612
|
-
{type === 'image' && imageError && (
|
|
1613
|
-
<div className="flex flex-col items-center gap-4 text-muted-foreground">
|
|
1614
|
-
<ImageIcon className="h-12 w-12 sm:h-16 sm:w-16" />
|
|
1615
|
-
<p className="text-xs sm:text-sm">Failed to load image</p>
|
|
1616
|
-
</div>
|
|
1617
|
-
)}
|
|
1618
|
-
{type === 'video' && (
|
|
1619
|
-
<video
|
|
1620
|
-
src={src}
|
|
1621
|
-
controls
|
|
1622
|
-
className="max-h-full max-w-full rounded-lg shadow-lg"
|
|
1623
|
-
>
|
|
1624
|
-
Your browser does not support the video tag.
|
|
1625
|
-
</video>
|
|
1626
|
-
)}
|
|
1627
|
-
{type === 'youtube' && (
|
|
1628
|
-
<iframe
|
|
1629
|
-
src={getYoutubeEmbedUrl(src)}
|
|
1630
|
-
title={label}
|
|
1631
|
-
className="aspect-video h-auto w-full max-w-4xl rounded-lg shadow-lg"
|
|
1632
|
-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
|
1633
|
-
referrerPolicy="strict-origin-when-cross-origin"
|
|
1634
|
-
allowFullScreen
|
|
1635
|
-
/>
|
|
1636
|
-
)}
|
|
1637
|
-
</div>
|
|
1638
|
-
|
|
1639
|
-
{/* Footer with label */}
|
|
1640
|
-
<div className="border-t bg-muted/30 px-2 py-1.5 sm:px-4 sm:py-2">
|
|
1641
|
-
<p className="truncate text-center text-muted-foreground text-xs sm:text-sm">
|
|
1642
|
-
{label}
|
|
1643
|
-
</p>
|
|
1644
|
-
</div>
|
|
1645
|
-
</DialogContent>
|
|
1646
|
-
</Dialog>
|
|
1647
|
-
);
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
|
-
/**
|
|
1651
|
-
* Format attribute value for display
|
|
1652
|
-
*/
|
|
1653
|
-
function formatAttrValue(value: unknown): string {
|
|
1654
|
-
if (value === null || value === undefined) return 'none';
|
|
1655
|
-
if (typeof value === 'string') {
|
|
1656
|
-
return value.length > 20 ? `${value.slice(0, 17)}...` : value;
|
|
1657
|
-
}
|
|
1658
|
-
if (typeof value === 'number') {
|
|
1659
|
-
// Round to 2 decimal places if needed
|
|
1660
|
-
const rounded = Math.round(value * 100) / 100;
|
|
1661
|
-
return String(rounded);
|
|
1662
|
-
}
|
|
1663
|
-
if (typeof value === 'boolean') return value ? 'yes' : 'no';
|
|
1664
|
-
return JSON.stringify(value).slice(0, 20);
|
|
1665
|
-
}
|