@tuturuuu/ui 0.0.4 → 0.1.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 +8 -0
- package/README.md +2 -2
- package/biome.json +5 -0
- package/components.json +1 -1
- package/jsr.json +9 -9
- package/package.json +422 -92
- package/postcss.config.mjs +1 -1
- package/src/components/ui/__tests__/avatar.test.tsx +53 -0
- package/src/components/ui/accordion.tsx +4 -4
- package/src/components/ui/alert-dialog.tsx +8 -6
- package/src/components/ui/alert.tsx +2 -2
- package/src/components/ui/avatar.tsx +6 -3
- package/src/components/ui/badge.tsx +6 -4
- package/src/components/ui/breadcrumb.tsx +3 -4
- package/src/components/ui/button.tsx +3 -3
- package/src/components/ui/calendar-app/calendar-client-page.tsx +69 -0
- package/src/components/ui/calendar-app/calendar-page-shell.tsx +59 -0
- package/src/components/ui/calendar-app/components/actions-dropdown.tsx +269 -0
- package/src/components/ui/calendar-app/components/auto-schedule-comprehensive-dialog.tsx +220 -0
- package/src/components/ui/calendar-app/components/calendar-connections-manager.tsx +2 -0
- package/src/components/ui/calendar-app/components/calendar-connections-unified.tsx +1433 -0
- package/src/components/ui/calendar-app/components/calendar-connections.tsx +843 -0
- package/src/components/ui/calendar-app/components/calendar-header-actions.tsx +67 -0
- package/src/components/ui/calendar-app/components/calendar-types.ts +46 -0
- package/src/components/ui/calendar-app/components/connected-accounts-dialog.tsx +353 -0
- package/src/components/ui/calendar-app/components/e2ee-status-badge.tsx +237 -0
- package/src/components/ui/calendar-app/components/experimental-feature-dialog.tsx +56 -0
- package/src/components/ui/calendar-app/components/habits-panel.tsx +332 -0
- package/src/components/ui/calendar-app/components/priority-dropdown.tsx +113 -0
- package/src/components/ui/calendar-app/components/priority-view.tsx +939 -0
- package/src/components/ui/calendar-app/components/quick-calendar-toggle.tsx +1 -0
- package/src/components/ui/calendar-app/components/quick-task-dialog.tsx +335 -0
- package/src/components/ui/calendar-app/components/quick-task-timer.tsx +112 -0
- package/src/components/ui/calendar-app/components/require-workspace-timezone-dialog.tsx +415 -0
- package/src/components/ui/calendar-app/components/scheduling-dialog.tsx +660 -0
- package/src/components/ui/calendar-app/components/sidebar/calendar-sidebar.tsx +128 -0
- package/src/components/ui/calendar-app/components/sidebar/index.tsx +1 -0
- package/src/components/ui/calendar-app/components/smart-schedule-button.tsx +117 -0
- package/src/components/ui/calendar-app/components/smart-schedule-preview-dialog.tsx +845 -0
- package/src/components/ui/calendar-app/components/smart-schedule-preview-panel.tsx +941 -0
- package/src/components/ui/calendar-app/components/sync-debug-panel.tsx +708 -0
- package/src/components/ui/calendar-app/components/task-fetcher.ts +51 -0
- package/src/components/ui/calendar-app/components/task-form.tsx +132 -0
- package/src/components/ui/calendar-app/components/task-list-form.tsx +84 -0
- package/src/components/ui/calendar-app/components/task-scheduler-panel.tsx +490 -0
- package/src/components/ui/calendar-app/components/tasks-sidebar-content.tsx +232 -0
- package/src/components/ui/calendar-app/components/tasks-sidebar.tsx +143 -0
- package/src/components/ui/calendar-app/components/test-event-generator-button.tsx +94 -0
- package/src/components/ui/calendar-app/components/time-tracker/components/active-session-card.tsx +113 -0
- package/src/components/ui/calendar-app/components/time-tracker/components/index.ts +3 -0
- package/src/components/ui/calendar-app/components/time-tracker/components/session-card.tsx +153 -0
- package/src/components/ui/calendar-app/components/time-tracker/components/stats-cards.tsx +58 -0
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/create-task-dialog.tsx +190 -0
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/delete-session-dialog.tsx +52 -0
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/edit-session-dialog.tsx +173 -0
- package/src/components/ui/calendar-app/components/time-tracker/dialogs/index.ts +3 -0
- package/src/components/ui/calendar-app/components/time-tracker/hooks/index.ts +2 -0
- package/src/components/ui/calendar-app/components/time-tracker/hooks/use-sessions.ts +191 -0
- package/src/components/ui/calendar-app/components/time-tracker/hooks/use-time-tracker.ts +408 -0
- package/src/components/ui/calendar-app/components/time-tracker/index.tsx +902 -0
- package/src/components/ui/calendar-app/components/time-tracker/tabs/history-tab.tsx +28 -0
- package/src/components/ui/calendar-app/components/time-tracker/tabs/index.ts +2 -0
- package/src/components/ui/calendar-app/components/time-tracker/tabs/recent-sessions-tab.tsx +173 -0
- package/src/components/ui/calendar-app/components/time-tracker/time-tracker-trigger.tsx +50 -0
- package/src/components/ui/calendar-app/components/time-tracker/utils/category-colors.ts +38 -0
- package/src/components/ui/calendar-app/components/time-tracker/utils/format-time.ts +26 -0
- package/src/components/ui/calendar-app/components/time-tracker/utils/index.ts +2 -0
- package/src/components/ui/calendar-app/components/time-tracker.tsx +2040 -0
- package/src/components/ui/calendar-app/hooks/index.ts +9 -0
- package/src/components/ui/calendar-app/hooks/use-calendar-settings.ts +130 -0
- package/src/components/ui/calendar-app/hooks/use-e2ee.ts +283 -0
- package/src/components/ui/calendar.tsx +212 -64
- package/src/components/ui/card.tsx +3 -3
- package/src/components/ui/carousel.tsx +6 -5
- package/src/components/ui/chart.tsx +76 -24
- package/src/components/ui/chat/ai-message-markdown.tsx +59 -0
- package/src/components/ui/chat/ai-message-parts.tsx +176 -0
- package/src/components/ui/chat/ai-message-render-registry.tsx +203 -0
- package/src/components/ui/chat/ai-message-render-utils.ts +220 -0
- package/src/components/ui/chat/ai-message-tool-part.tsx +433 -0
- package/src/components/ui/chat/ai-message-tool-utils.ts +138 -0
- package/src/components/ui/chat/chat-agent-details-external-thread-panel.test.tsx +134 -0
- package/src/components/ui/chat/chat-agent-details-external-thread-panel.tsx +204 -0
- package/src/components/ui/chat/chat-agent-details-operations-panel.tsx +187 -0
- package/src/components/ui/chat/chat-agent-details-setup-panel.tsx +297 -0
- package/src/components/ui/chat/chat-agent-details-sidebar.test.tsx +136 -0
- package/src/components/ui/chat/chat-agent-details-sidebar.tsx +327 -0
- package/src/components/ui/chat/chat-agent-details-utils.test.ts +161 -0
- package/src/components/ui/chat/chat-agent-details-utils.tsx +280 -0
- package/src/components/ui/chat/chat-ai-credit-source-picker.tsx +210 -0
- package/src/components/ui/chat/chat-ai-details-panels.tsx +421 -0
- package/src/components/ui/chat/chat-ai-details-sidebar.tsx +206 -0
- package/src/components/ui/chat/chat-ai-models.test.ts +37 -0
- package/src/components/ui/chat/chat-ai-models.ts +23 -0
- package/src/components/ui/chat/chat-shared-content-sidebar.tsx +209 -0
- package/src/components/ui/chat/chat-sidebar-groups.test.ts +64 -0
- package/src/components/ui/chat/chat-sidebar-items.tsx +195 -0
- package/src/components/ui/chat/chat-sidebar-panel.tsx +183 -0
- package/src/components/ui/chat/chat-sidebar.tsx +505 -0
- package/src/components/ui/chat/chat-utils.test.ts +280 -0
- package/src/components/ui/chat/chat-workspace-header.tsx +429 -0
- package/src/components/ui/chat/chat-workspace.tsx +575 -0
- package/src/components/ui/chat/conversation-type-selector.tsx +51 -0
- package/src/components/ui/chat/create-conversation-dialog.test.tsx +89 -0
- package/src/components/ui/chat/create-conversation-dialog.tsx +377 -0
- package/src/components/ui/chat/directory-user-picker.tsx +160 -0
- package/src/components/ui/chat/friend-request-items.tsx +124 -0
- package/src/components/ui/chat/friend-requests-button.tsx +243 -0
- package/src/components/ui/chat/friend-requests-panel.tsx +116 -0
- package/src/components/ui/chat/hooks-ai.ts +73 -0
- package/src/components/ui/chat/hooks-attachments.ts +83 -0
- package/src/components/ui/chat/hooks-conversations.ts +205 -0
- package/src/components/ui/chat/hooks-directory.ts +45 -0
- package/src/components/ui/chat/hooks-friends.ts +74 -0
- package/src/components/ui/chat/hooks-messages.test.tsx +67 -0
- package/src/components/ui/chat/hooks-messages.ts +707 -0
- package/src/components/ui/chat/hooks-realtime.ts +157 -0
- package/src/components/ui/chat/hooks-shared-content.ts +56 -0
- package/src/components/ui/chat/hooks.ts +9 -0
- package/src/components/ui/chat/message-attachment-button.tsx +188 -0
- package/src/components/ui/chat/message-attachment-preview-dialog.tsx +141 -0
- package/src/components/ui/chat/message-bubble.tsx +372 -0
- package/src/components/ui/chat/message-composer.tsx +213 -0
- package/src/components/ui/chat/message-links.tsx +193 -0
- package/src/components/ui/chat/message-list.tsx +318 -0
- package/src/components/ui/chat/message-markdown.tsx +112 -0
- package/src/components/ui/chat/message-youtube.ts +48 -0
- package/src/components/ui/chat/query-keys.ts +48 -0
- package/src/components/ui/chat/utils.ts +284 -0
- package/src/components/ui/checkbox.tsx +24 -8
- package/src/components/ui/codeblock.tsx +7 -7
- package/src/components/ui/color-picker.tsx +9 -8
- package/src/components/ui/command.tsx +19 -11
- package/src/components/ui/context-menu.tsx +10 -10
- package/src/components/ui/currency-input.tsx +464 -0
- package/src/components/ui/custom/__tests__/facebook-mockup.test.tsx +291 -0
- package/src/components/ui/custom/__tests__/report-preview-pagination.test.ts +189 -0
- package/src/components/ui/custom/__tests__/report-preview.test.tsx +201 -0
- package/src/components/ui/custom/__tests__/settings-dialog-shell.test.tsx +144 -0
- package/src/components/ui/custom/__tests__/tuturuuu-logo.test.ts +10 -0
- package/src/components/ui/custom/autosize-textarea.tsx +3 -2
- package/src/components/ui/custom/calendar/core.tsx +11 -3
- package/src/components/ui/custom/calendar/day-cell.tsx +58 -44
- package/src/components/ui/custom/calendar/month-header.tsx +5 -7
- package/src/components/ui/custom/calendar/month-view.tsx +21 -9
- package/src/components/ui/custom/calendar/year-calendar.tsx +51 -10
- package/src/components/ui/custom/calendar/year-view.tsx +9 -5
- package/src/components/ui/custom/combobox.tsx +357 -89
- package/src/components/ui/custom/common-footer.tsx +89 -39
- package/src/components/ui/custom/compared-date-range-picker.tsx +478 -261
- package/src/components/ui/custom/data-pagination.tsx +446 -0
- package/src/components/ui/custom/date-input.tsx +4 -7
- package/src/components/ui/custom/education/certificates/certificate-viewer.tsx +98 -0
- package/src/components/ui/custom/education/certificates/download-button-pdf.tsx +82 -0
- package/src/components/ui/custom/education/certificates/types.ts +25 -0
- package/src/components/ui/custom/education/courses/course-card-view.tsx +252 -0
- package/src/components/ui/custom/education/courses/course-form.tsx +248 -0
- package/src/components/ui/custom/education/courses/course-header.tsx +38 -0
- package/src/components/ui/custom/education/courses/course-pagination.tsx +62 -0
- package/src/components/ui/custom/education/courses/course-row-actions.tsx +130 -0
- package/src/components/ui/custom/education/modules/content-section.tsx +73 -0
- package/src/components/ui/custom/education/modules/course-module-form.tsx +234 -0
- package/src/components/ui/custom/education/modules/course-module-row-actions.tsx +126 -0
- package/src/components/ui/custom/education/modules/link-button.tsx +66 -0
- package/src/components/ui/custom/education/modules/module-toggle.tsx +115 -0
- package/src/components/ui/custom/education/modules/resources/delete-resource.tsx +46 -0
- package/src/components/ui/custom/education/modules/resources/file-display.tsx +84 -0
- package/src/components/ui/custom/education/modules/resources/file-upload-form.tsx +544 -0
- package/src/components/ui/custom/education/modules/resources/pdf-viewer.tsx +119 -0
- package/src/components/ui/custom/education/modules/youtube/delete-link-button.tsx +62 -0
- package/src/components/ui/custom/education/modules/youtube/embed.tsx +20 -0
- package/src/components/ui/custom/education/modules/youtube/form.tsx +112 -0
- package/src/components/ui/custom/education/shell/education-content-surface.tsx +31 -0
- package/src/components/ui/custom/education/shell/education-kpi-strip.tsx +48 -0
- package/src/components/ui/custom/education/shell/education-page-header.tsx +56 -0
- package/src/components/ui/custom/empty-card.tsx +2 -2
- package/src/components/ui/custom/facebook-mockup/defaults.ts +81 -0
- package/src/components/ui/custom/facebook-mockup/facebook-mockup.tsx +313 -0
- package/src/components/ui/custom/facebook-mockup/form.tsx +629 -0
- package/src/components/ui/custom/facebook-mockup/image-upload-field.tsx +111 -0
- package/src/components/ui/custom/facebook-mockup/preview.tsx +760 -0
- package/src/components/ui/custom/facebook-mockup/types.ts +44 -0
- package/src/components/ui/custom/feature-summary.tsx +61 -7
- package/src/components/ui/custom/file-uploader.tsx +18 -15
- package/src/components/ui/custom/get-started-button.tsx +33 -0
- package/src/components/ui/custom/get-started-gradient-button.tsx +23 -0
- package/src/components/ui/custom/gradient-headline.tsx +25 -0
- package/src/components/ui/custom/icon-picker/icon-options.ts +24240 -0
- package/src/components/ui/custom/icon-picker/icon-picker.tsx +608 -0
- package/src/components/ui/custom/icon-picker/index.ts +45 -0
- package/src/components/ui/custom/icon-picker/types.ts +133 -0
- package/src/components/ui/custom/input-field.tsx +3 -1
- package/src/components/ui/custom/language-dropdown-item.tsx +55 -0
- package/src/components/ui/custom/language-dropdown-wrapper.tsx +34 -0
- package/src/components/ui/custom/language-toggle.tsx +43 -0
- package/src/components/ui/custom/language-wrapper.tsx +23 -0
- package/src/components/ui/custom/lead-generation-preview.tsx +310 -0
- package/src/components/ui/custom/loading-indicator.tsx +3 -0
- package/src/components/ui/custom/loading.tsx +8 -0
- package/src/components/ui/custom/logo-title.tsx +20 -0
- package/src/components/ui/custom/missed-entry/image-upload-section.tsx +192 -0
- package/src/components/ui/custom/modifiable-dialog-trigger.tsx +13 -7
- package/src/components/ui/custom/month-picker.tsx +8 -8
- package/src/components/ui/custom/nav-link.tsx +474 -0
- package/src/components/ui/custom/nav.tsx +86 -0
- package/src/components/ui/custom/navigation.tsx +192 -0
- package/src/components/ui/custom/notification-popover-client.tsx +758 -0
- package/src/components/ui/custom/production-indicator.tsx +22 -0
- package/src/components/ui/custom/qr/color.tsx +36 -0
- package/src/components/ui/custom/qr/display.tsx +82 -0
- package/src/components/ui/custom/qr/formats.tsx +52 -0
- package/src/components/ui/custom/qr/image-upload.tsx +440 -0
- package/src/components/ui/custom/qr/qr.tsx +170 -0
- package/src/components/ui/custom/qr/styles.tsx +133 -0
- package/src/components/ui/custom/qr/workspace-title.tsx +47 -0
- package/src/components/ui/custom/report-preview-pagination.ts +579 -0
- package/src/components/ui/custom/report-preview.tsx +745 -126
- package/src/components/ui/custom/search-bar.tsx +8 -12
- package/src/components/ui/custom/select-field.tsx +5 -3
- package/src/components/ui/custom/settings/appearance-settings.tsx +129 -0
- package/src/components/ui/custom/settings/lunar-calendar-settings.tsx +36 -0
- package/src/components/ui/custom/settings/sidebar-settings.tsx +135 -0
- package/src/components/ui/custom/settings/task-settings.tsx +236 -0
- package/src/components/ui/custom/settings-dialog-shell.tsx +481 -0
- package/src/components/ui/custom/settings-item-tab.tsx +29 -0
- package/src/components/ui/custom/sidebar-context.tsx +148 -0
- package/src/components/ui/custom/sidebar-footer-actions.tsx +337 -0
- package/src/components/ui/custom/staff-toolbar.tsx +16 -0
- package/src/components/ui/custom/structure.tsx +213 -0
- package/src/components/ui/custom/system-language-dropdown-item.tsx +46 -0
- package/src/components/ui/custom/system-language-wrapper.tsx +15 -0
- package/src/components/ui/custom/tables/custom-data-table.tsx +130 -0
- package/src/components/ui/custom/tables/data-table-column-header.tsx +9 -7
- package/src/components/ui/custom/tables/data-table-create-button.tsx +2 -2
- package/src/components/ui/custom/tables/data-table-faceted-filter.tsx +5 -5
- package/src/components/ui/custom/tables/data-table-pagination.tsx +69 -91
- package/src/components/ui/custom/tables/data-table-refresh-button.tsx +2 -2
- package/src/components/ui/custom/tables/data-table-toolbar.tsx +42 -19
- package/src/components/ui/custom/tables/data-table-view-options.tsx +27 -15
- package/src/components/ui/custom/tables/data-table.tsx +150 -56
- package/src/components/ui/custom/tailwind-indicator.tsx +14 -0
- package/src/components/ui/custom/theme-dropdown-items.tsx +90 -0
- package/src/components/ui/custom/theme-toggle.tsx +35 -0
- package/src/components/ui/custom/tuturuuu-logo.tsx +16 -0
- package/src/components/ui/custom/uploaded-files-card.tsx +1 -0
- package/src/components/ui/custom/user-filters.tsx +487 -0
- package/src/components/ui/custom/version-badge.test.tsx +102 -0
- package/src/components/ui/custom/version-badge.tsx +169 -0
- package/src/components/ui/custom/view-toggle.tsx +63 -0
- package/src/components/ui/custom/workspace-access/adapters.test.ts +31 -0
- package/src/components/ui/custom/workspace-access/adapters.ts +169 -0
- package/src/components/ui/custom/workspace-access/index.ts +32 -0
- package/src/components/ui/custom/workspace-access/member-filter-utils.test.ts +175 -0
- package/src/components/ui/custom/workspace-access/member-filter-utils.ts +190 -0
- package/src/components/ui/custom/workspace-access/types.ts +150 -0
- package/src/components/ui/custom/workspace-access/workspace-access-client-pages.tsx +26 -0
- package/src/components/ui/custom/workspace-access/workspace-access-default-role-card.tsx +92 -0
- package/src/components/ui/custom/workspace-access/workspace-access-invite-dialog.tsx +102 -0
- package/src/components/ui/custom/workspace-access/workspace-access-labels.ts +53 -0
- package/src/components/ui/custom/workspace-access/workspace-access-member-row.tsx +249 -0
- package/src/components/ui/custom/workspace-access/workspace-access-members.tsx +84 -0
- package/src/components/ui/custom/workspace-access/workspace-access-page-header.tsx +72 -0
- package/src/components/ui/custom/workspace-access/workspace-access-page.tsx +388 -0
- package/src/components/ui/custom/workspace-access/workspace-access-people-filters.tsx +200 -0
- package/src/components/ui/custom/workspace-access/workspace-access-permission-checklist.tsx +87 -0
- package/src/components/ui/custom/workspace-access/workspace-access-permission-preview.tsx +35 -0
- package/src/components/ui/custom/workspace-access/workspace-access-role-editor-dialog.tsx +180 -0
- package/src/components/ui/custom/workspace-access/workspace-access-role-editor-labels.ts +33 -0
- package/src/components/ui/custom/workspace-access/workspace-access-roles.tsx +171 -0
- package/src/components/ui/custom/workspace-access/workspace-access-tabs-toolbar.tsx +71 -0
- package/src/components/ui/custom/workspace-select.tsx +849 -0
- package/src/components/ui/custom/workspace-wrapper.tsx +142 -0
- package/src/components/ui/date-time-picker.tsx +706 -0
- package/src/components/ui/dialog.tsx +23 -14
- package/src/components/ui/diff-viewer.tsx +921 -0
- package/src/components/ui/drawer.tsx +5 -5
- package/src/components/ui/dropdown-menu.tsx +18 -10
- package/src/components/ui/finance/analytics/analytics-date-controls.tsx +173 -0
- package/src/components/ui/finance/analytics/analytics-page.test.tsx +182 -0
- package/src/components/ui/finance/analytics/analytics-page.tsx +296 -0
- package/src/components/ui/finance/analytics/balance-trend-chart.tsx +288 -0
- package/src/components/ui/finance/analytics/category-spending-chart.test.tsx +75 -0
- package/src/components/ui/finance/analytics/category-spending-chart.tsx +213 -0
- package/src/components/ui/finance/analytics/income-expense-chart-utils.ts +52 -0
- package/src/components/ui/finance/analytics/income-expense-chart.tsx +242 -0
- package/src/components/ui/finance/analytics/income-expense-view-mode-control.tsx +37 -0
- package/src/components/ui/finance/analytics/spending-trends-chart.tsx +156 -0
- package/src/components/ui/finance/budgets/budget-alerts.test.tsx +133 -0
- package/src/components/ui/finance/budgets/budget-alerts.tsx +111 -0
- package/src/components/ui/finance/budgets/budget-card.test.tsx +72 -0
- package/src/components/ui/finance/budgets/budget-card.tsx +233 -0
- package/src/components/ui/finance/budgets/budgets-page.test.tsx +56 -0
- package/src/components/ui/finance/budgets/budgets-page.tsx +179 -0
- package/src/components/ui/finance/budgets/form-fields.tsx +304 -0
- package/src/components/ui/finance/budgets/form-schema.ts +39 -0
- package/src/components/ui/finance/budgets/form.tsx +141 -0
- package/src/components/ui/finance/categories-tags-tabs.tsx +80 -0
- package/src/components/ui/finance/debts/debt-loan-card.test.tsx +75 -0
- package/src/components/ui/finance/debts/debt-loan-card.tsx +212 -0
- package/src/components/ui/finance/debts/debt-loan-detail-cards.test.tsx +89 -0
- package/src/components/ui/finance/debts/debt-loan-detail-cards.tsx +207 -0
- package/src/components/ui/finance/debts/debt-loan-detail-page.tsx +301 -0
- package/src/components/ui/finance/debts/debt-loan-form-schema.ts +30 -0
- package/src/components/ui/finance/debts/debt-loan-form.tsx +394 -0
- package/src/components/ui/finance/debts/debt-loan-list.tsx +58 -0
- package/src/components/ui/finance/debts/debt-loan-summary.tsx +94 -0
- package/src/components/ui/finance/debts/debts-page.test.tsx +97 -0
- package/src/components/ui/finance/debts/debts-page.tsx +230 -0
- package/src/components/ui/finance/debts/index.ts +6 -0
- package/src/components/ui/finance/debts/query-invalidation.test.ts +62 -0
- package/src/components/ui/finance/debts/query-invalidation.ts +44 -0
- package/src/components/ui/finance/finance-layout.tsx +98 -0
- package/src/components/ui/finance/finance-overview-metrics.tsx +120 -0
- package/src/components/ui/finance/finance-page.tsx +169 -0
- package/src/components/ui/finance/finance-route-context.tsx +50 -0
- package/src/components/ui/finance/invoices/attendance-calendar.tsx +247 -0
- package/src/components/ui/finance/invoices/charts/invoice-totals-chart.test.tsx +67 -0
- package/src/components/ui/finance/invoices/charts/invoice-totals-chart.tsx +868 -0
- package/src/components/ui/finance/invoices/columns.test.tsx +66 -0
- package/src/components/ui/finance/invoices/columns.tsx +365 -0
- package/src/components/ui/finance/invoices/components/invoice-blocked-state.tsx +30 -0
- package/src/components/ui/finance/invoices/components/invoice-checkout-summary.tsx +120 -0
- package/src/components/ui/finance/invoices/components/invoice-content-editor.tsx +71 -0
- package/src/components/ui/finance/invoices/components/invoice-customer-select-card.tsx +342 -0
- package/src/components/ui/finance/invoices/components/invoice-payment-settings.tsx +216 -0
- package/src/components/ui/finance/invoices/components/invoice-user-history-accordion.tsx +219 -0
- package/src/components/ui/finance/invoices/components/subscription-attendance-summary.tsx +272 -0
- package/src/components/ui/finance/invoices/components/subscription-group-selector.tsx +346 -0
- package/src/components/ui/finance/invoices/create-promotion-dialog.tsx +67 -0
- package/src/components/ui/finance/invoices/export-dialog-content.tsx +492 -0
- package/src/components/ui/finance/invoices/hooks/use-best-promotion-selection.ts +119 -0
- package/src/components/ui/finance/invoices/hooks/use-invoice-analytics.ts +79 -0
- package/src/components/ui/finance/invoices/hooks/use-invoice-rounding.ts +33 -0
- package/src/components/ui/finance/invoices/hooks/use-invoice-subtotal.ts +13 -0
- package/src/components/ui/finance/invoices/hooks/use-subscription-auto-selection.ts +412 -0
- package/src/components/ui/finance/invoices/hooks/use-subscription-invoice-content.ts +191 -0
- package/src/components/ui/finance/invoices/hooks.ts +878 -0
- package/src/components/ui/finance/invoices/internal-api.ts +466 -0
- package/src/components/ui/finance/invoices/invoice-analytics.tsx +167 -0
- package/src/components/ui/finance/invoices/invoice-page.tsx +468 -0
- package/src/components/ui/finance/invoices/invoice-visibility-format.test.ts +90 -0
- package/src/components/ui/finance/invoices/invoice-visibility-format.ts +67 -0
- package/src/components/ui/finance/invoices/invoiceId/compact-invoice-template.tsx +172 -0
- package/src/components/ui/finance/invoices/invoiceId/full-invoice-template.tsx +349 -0
- package/src/components/ui/finance/invoices/invoiceId/invoice-card.tsx +360 -0
- package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.test.tsx +227 -0
- package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.tsx +409 -0
- package/src/components/ui/finance/invoices/invoiceId/invoice-edit-form.tsx +161 -0
- package/src/components/ui/finance/invoices/invoiceId/product-card.tsx +90 -0
- package/src/components/ui/finance/invoices/invoiceId/promotion-card.tsx +76 -0
- package/src/components/ui/finance/invoices/invoices-table.tsx +284 -0
- package/src/components/ui/finance/invoices/new-invoice-page.tsx +215 -0
- package/src/components/ui/finance/invoices/pending-columns.tsx +308 -0
- package/src/components/ui/finance/invoices/pending-invoices-tab.tsx +43 -0
- package/src/components/ui/finance/invoices/pending-invoices-table.tsx +258 -0
- package/src/components/ui/finance/invoices/product-selection.test.tsx +78 -0
- package/src/components/ui/finance/invoices/product-selection.tsx +345 -0
- package/src/components/ui/finance/invoices/promotion-form.tsx +352 -0
- package/src/components/ui/finance/invoices/query-invalidation.ts +65 -0
- package/src/components/ui/finance/invoices/row-actions.tsx +148 -0
- package/src/components/ui/finance/invoices/standard-invoice.tsx +595 -0
- package/src/components/ui/finance/invoices/subscription-invoice.tsx +1009 -0
- package/src/components/ui/finance/invoices/types.ts +93 -0
- package/src/components/ui/finance/invoices/user-filter-wrapper.tsx +59 -0
- package/src/components/ui/finance/invoices/utils.test.ts +165 -0
- package/src/components/ui/finance/invoices/utils.ts +484 -0
- package/src/components/ui/finance/invoices/wallet-filter-wrapper.tsx +47 -0
- package/src/components/ui/finance/recurring/form-fields.tsx +142 -0
- package/src/components/ui/finance/recurring/form-schedule-fields.tsx +112 -0
- package/src/components/ui/finance/recurring/form-schema.ts +32 -0
- package/src/components/ui/finance/recurring/form.tsx +130 -0
- package/src/components/ui/finance/recurring/recurring-sections.tsx +141 -0
- package/src/components/ui/finance/recurring/recurring-transaction-card.tsx +152 -0
- package/src/components/ui/finance/recurring/recurring-transactions-page.test.tsx +87 -0
- package/src/components/ui/finance/recurring/recurring-transactions-page.tsx +154 -0
- package/src/components/ui/finance/recurring/upcoming-transaction-card.tsx +84 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-body.tsx +118 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-controls.tsx +146 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-legend.tsx +49 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-tooltip.tsx +109 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-types.ts +24 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart-utils.ts +207 -0
- package/src/components/ui/finance/shared/charts/category-breakdown-chart.tsx +263 -0
- package/src/components/ui/finance/shared/charts/daily-total-chart-client.tsx +384 -0
- package/src/components/ui/finance/shared/charts/daily-total-chart.tsx +299 -0
- package/src/components/ui/finance/shared/charts/monthly-total-chart-client.tsx +391 -0
- package/src/components/ui/finance/shared/charts/monthly-total-chart.tsx +296 -0
- package/src/components/ui/finance/shared/charts/use-finance-confidential-visibility.ts +5 -0
- package/src/components/ui/finance/shared/confidential-toggle.tsx +78 -0
- package/src/components/ui/finance/shared/create-dialog-feature-summary.tsx +23 -0
- package/src/components/ui/finance/shared/dashboard-header.tsx +19 -0
- package/src/components/ui/finance/shared/date-picker.tsx +74 -0
- package/src/components/ui/finance/shared/date-range-filter-wrapper.tsx +86 -0
- package/src/components/ui/finance/shared/date-range-picker.tsx +42 -0
- package/src/components/ui/finance/shared/empty-state.tsx +41 -0
- package/src/components/ui/finance/shared/filter.tsx +267 -0
- package/src/components/ui/finance/shared/finance-display-amount.tsx +25 -0
- package/src/components/ui/finance/shared/loaders/statistics.tsx +18 -0
- package/src/components/ui/finance/shared/loaders/table-skeleton.tsx +5 -0
- package/src/components/ui/finance/shared/metrics.tsx +69 -0
- package/src/components/ui/finance/shared/month-picker.tsx +177 -0
- package/src/components/ui/finance/shared/month-range-picker.tsx +50 -0
- package/src/components/ui/finance/shared/next-charts.tsx +77 -0
- package/src/components/ui/finance/shared/numbers-visibility-toggle.test.tsx +38 -0
- package/src/components/ui/finance/shared/numbers-visibility-toggle.tsx +43 -0
- package/src/components/ui/finance/shared/quick-actions.tsx +143 -0
- package/src/components/ui/finance/shared/use-finance-confidential-visibility.ts +68 -0
- package/src/components/ui/finance/shared/year-picker.tsx +178 -0
- package/src/components/ui/finance/shared/year-range-picker.tsx +50 -0
- package/src/components/ui/finance/statistics/card.tsx +195 -0
- package/src/components/ui/finance/statistics/expense.tsx +63 -0
- package/src/components/ui/finance/statistics/income.tsx +63 -0
- package/src/components/ui/finance/statistics/invoices.tsx +77 -0
- package/src/components/ui/finance/statistics/monthly-expense.tsx +63 -0
- package/src/components/ui/finance/statistics/monthly-income.tsx +63 -0
- package/src/components/ui/finance/statistics/total-balance.test.tsx +79 -0
- package/src/components/ui/finance/statistics/total-balance.tsx +64 -0
- package/src/components/ui/finance/statistics/transaction-categories.tsx +59 -0
- package/src/components/ui/finance/statistics/transactions.tsx +90 -0
- package/src/components/ui/finance/statistics/wallets.tsx +55 -0
- package/src/components/ui/finance/tags/tag-badge.tsx +36 -0
- package/src/components/ui/finance/tags/tag-manager.test.tsx +128 -0
- package/src/components/ui/finance/tags/tag-manager.tsx +646 -0
- package/src/components/ui/finance/transactions/TRANSACTIONS_UI_REVAMP.md +328 -0
- package/src/components/ui/finance/transactions/UI_IMPROVEMENTS.md +444 -0
- package/src/components/ui/finance/transactions/__tests__/export-utils.test.ts +167 -0
- package/src/components/ui/finance/transactions/categories/amount-filter-wrapper.tsx +55 -0
- package/src/components/ui/finance/transactions/categories/amount-filter.tsx +135 -0
- package/src/components/ui/finance/transactions/categories/categories-data-table.tsx +274 -0
- package/src/components/ui/finance/transactions/categories/columns.test.tsx +113 -0
- package/src/components/ui/finance/transactions/categories/columns.tsx +253 -0
- package/src/components/ui/finance/transactions/categories/form.tsx +388 -0
- package/src/components/ui/finance/transactions/categories/hooks.test.tsx +72 -0
- package/src/components/ui/finance/transactions/categories/hooks.ts +95 -0
- package/src/components/ui/finance/transactions/categories/row-actions.tsx +132 -0
- package/src/components/ui/finance/transactions/categories/transactions-categories-page.tsx +96 -0
- package/src/components/ui/finance/transactions/categories/type-filter-wrapper.tsx +39 -0
- package/src/components/ui/finance/transactions/categories/type-filter.tsx +148 -0
- package/src/components/ui/finance/transactions/category-filter-wrapper.tsx +41 -0
- package/src/components/ui/finance/transactions/category-filter.tsx +252 -0
- package/src/components/ui/finance/transactions/columns.test.tsx +119 -0
- package/src/components/ui/finance/transactions/columns.tsx +313 -0
- package/src/components/ui/finance/transactions/confidential-field.test.tsx +32 -0
- package/src/components/ui/finance/transactions/confidential-field.tsx +289 -0
- package/src/components/ui/finance/transactions/export-dialog-content.tsx +393 -0
- package/src/components/ui/finance/transactions/export-utils.ts +99 -0
- package/src/components/ui/finance/transactions/form-basic-tab.tsx +360 -0
- package/src/components/ui/finance/transactions/form-content-dialog.tsx +163 -0
- package/src/components/ui/finance/transactions/form-more-tab.tsx +203 -0
- package/src/components/ui/finance/transactions/form-schema.ts +52 -0
- package/src/components/ui/finance/transactions/form-types.ts +39 -0
- package/src/components/ui/finance/transactions/form-utils.tsx +60 -0
- package/src/components/ui/finance/transactions/form.test.tsx +151 -0
- package/src/components/ui/finance/transactions/form.tsx +942 -0
- package/src/components/ui/finance/transactions/hooks/use-filter-reset.ts +27 -0
- package/src/components/ui/finance/transactions/infinite-transactions-list.tsx +1127 -0
- package/src/components/ui/finance/transactions/internal-api.ts +148 -0
- package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.test.ts +16 -0
- package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.ts +17 -0
- package/src/components/ui/finance/transactions/money-lover-import-dialog.tsx +908 -0
- package/src/components/ui/finance/transactions/period-charts/activity-distribution-chart.tsx +315 -0
- package/src/components/ui/finance/transactions/period-charts/category-breakdown-dialog.tsx +820 -0
- package/src/components/ui/finance/transactions/period-charts/category-donut-chart.tsx +609 -0
- package/src/components/ui/finance/transactions/period-charts/index.ts +4 -0
- package/src/components/ui/finance/transactions/period-charts/period-breakdown-panel.tsx +492 -0
- package/src/components/ui/finance/transactions/query-invalidation.test.ts +91 -0
- package/src/components/ui/finance/transactions/query-invalidation.ts +116 -0
- package/src/components/ui/finance/transactions/row-actions.tsx +145 -0
- package/src/components/ui/finance/transactions/tag-filter-wrapper.tsx +40 -0
- package/src/components/ui/finance/transactions/tag-filter.test.tsx +49 -0
- package/src/components/ui/finance/transactions/tag-filter.tsx +171 -0
- package/src/components/ui/finance/transactions/transaction-attachments-field.tsx +787 -0
- package/src/components/ui/finance/transactions/transaction-card.tsx +576 -0
- package/src/components/ui/finance/transactions/transaction-edit-dialog.test.tsx +101 -0
- package/src/components/ui/finance/transactions/transaction-edit-dialog.tsx +947 -0
- package/src/components/ui/finance/transactions/transaction-statistics.test.tsx +58 -0
- package/src/components/ui/finance/transactions/transaction-statistics.tsx +280 -0
- package/src/components/ui/finance/transactions/transaction-type-filter-wrapper.tsx +40 -0
- package/src/components/ui/finance/transactions/transaction-type-filter.tsx +95 -0
- package/src/components/ui/finance/transactions/transactionId/bill.tsx +307 -0
- package/src/components/ui/finance/transactions/transactionId/objects.tsx +149 -0
- package/src/components/ui/finance/transactions/transactionId/row-actions.tsx +263 -0
- package/src/components/ui/finance/transactions/transactionId/transaction-details-client-page.tsx +334 -0
- package/src/components/ui/finance/transactions/transactionId/transaction-details-page.tsx +76 -0
- package/src/components/ui/finance/transactions/transactions-create-summary.tsx +56 -0
- package/src/components/ui/finance/transactions/transactions-infinite-page.tsx +213 -0
- package/src/components/ui/finance/transactions/transactions-page.tsx +116 -0
- package/src/components/ui/finance/transactions/transfer-fields.tsx +194 -0
- package/src/components/ui/finance/transactions/user-filter-wrapper.tsx +42 -0
- package/src/components/ui/finance/transactions/user-filter.test.tsx +66 -0
- package/src/components/ui/finance/transactions/user-filter.tsx +282 -0
- package/src/components/ui/finance/transactions/view-mode-toggle.tsx +124 -0
- package/src/components/ui/finance/transactions/wallet-filter-wrapper.tsx +41 -0
- package/src/components/ui/finance/transactions/wallet-filter.test.tsx +52 -0
- package/src/components/ui/finance/transactions/wallet-filter.tsx +204 -0
- package/src/components/ui/finance/wallets/columns.tsx +324 -0
- package/src/components/ui/finance/wallets/form.test.tsx +78 -0
- package/src/components/ui/finance/wallets/form.tsx +491 -0
- package/src/components/ui/finance/wallets/query-invalidation.ts +58 -0
- package/src/components/ui/finance/wallets/row-actions.tsx +166 -0
- package/src/components/ui/finance/wallets/wallet-form-schema.ts +63 -0
- package/src/components/ui/finance/wallets/wallet-icon-display.tsx +71 -0
- package/src/components/ui/finance/wallets/wallet-icon-image-picker.tsx +369 -0
- package/src/components/ui/finance/wallets/wallet-images.ts +180 -0
- package/src/components/ui/finance/wallets/walletId/credit-wallet-summary.tsx +265 -0
- package/src/components/ui/finance/wallets/walletId/interest/index.ts +18 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-chart.tsx +296 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-detection-banner.tsx +77 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-disable-dialog.tsx +55 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-hero.tsx +149 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-pending-deposits.tsx +185 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-projections.tsx +259 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-dialog.tsx +89 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-history.tsx +116 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-section.tsx +260 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-settings.tsx +427 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-setup-dialog.tsx +206 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-summary.tsx +244 -0
- package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-transparency.tsx +176 -0
- package/src/components/ui/finance/wallets/walletId/wallet-delete-button.test.tsx +78 -0
- package/src/components/ui/finance/wallets/walletId/wallet-delete-button.tsx +99 -0
- package/src/components/ui/finance/wallets/walletId/wallet-details-actions.tsx +119 -0
- package/src/components/ui/finance/wallets/walletId/wallet-details-amount.tsx +36 -0
- package/src/components/ui/finance/wallets/walletId/wallet-details-page.test.tsx +161 -0
- package/src/components/ui/finance/wallets/walletId/wallet-details-page.tsx +365 -0
- package/src/components/ui/finance/wallets/walletId/wallet-role-access-dialog.tsx +45 -0
- package/src/components/ui/finance/wallets/walletId/wallet-role-access.tsx +538 -0
- package/src/components/ui/finance/wallets/wallets-data-table.tsx +137 -0
- package/src/components/ui/finance/wallets/wallets-page.test.tsx +107 -0
- package/src/components/ui/finance/wallets/wallets-page.tsx +136 -0
- package/src/components/ui/form-required-indicator.tsx +31 -0
- package/src/components/ui/form.tsx +36 -13
- package/src/components/ui/hover-card.tsx +2 -2
- package/src/components/ui/input-otp.tsx +4 -4
- package/src/components/ui/input.tsx +2 -2
- package/src/components/ui/kbd.tsx +28 -0
- package/src/components/ui/label.tsx +2 -2
- package/src/components/ui/legacy/calendar/__tests__/event-utils.test.ts +247 -0
- package/src/components/ui/legacy/calendar/agenda-view.tsx +398 -0
- package/src/components/ui/legacy/calendar/all-day-event-bar.tsx +1033 -0
- package/src/components/ui/legacy/calendar/calendar-cell.tsx +1018 -0
- package/src/components/ui/legacy/calendar/calendar-column.tsx +31 -0
- package/src/components/ui/legacy/calendar/calendar-content.tsx +670 -0
- package/src/components/ui/legacy/calendar/calendar-header.tsx +195 -0
- package/src/components/ui/legacy/calendar/calendar-matrix.tsx +328 -0
- package/src/components/ui/legacy/calendar/calendar-settings-dialog.tsx +340 -0
- package/src/components/ui/legacy/calendar/calendar-view-with-trail.tsx +48 -0
- package/src/components/ui/legacy/calendar/calendar-view.tsx +28 -0
- package/src/components/ui/legacy/calendar/color-highlights.ts +55 -0
- package/src/components/ui/legacy/calendar/config.ts +8 -0
- package/src/components/ui/legacy/calendar/create-event-button.tsx +155 -0
- package/src/components/ui/legacy/calendar/day-title.tsx +68 -0
- package/src/components/ui/legacy/calendar/dynamic-island.tsx +245 -0
- package/src/components/ui/legacy/calendar/event-card.tsx +1430 -0
- package/src/components/ui/legacy/calendar/event-form-components.tsx +593 -0
- package/src/components/ui/legacy/calendar/event-modal.tsx +1544 -0
- package/src/components/ui/legacy/calendar/event-utils.ts +149 -0
- package/src/components/ui/legacy/calendar/location-timeline.tsx +1482 -0
- package/src/components/ui/legacy/calendar/month-calendar.tsx +986 -0
- package/src/components/ui/legacy/calendar/month-cell.tsx +33 -0
- package/src/components/ui/legacy/calendar/month-grid.tsx +105 -0
- package/src/components/ui/legacy/calendar/settings/analytics-charts.tsx +414 -0
- package/src/components/ui/legacy/calendar/settings/appearance-settings.tsx +218 -0
- package/src/components/ui/legacy/calendar/settings/calendar-sync-dashboard.tsx +217 -0
- package/src/components/ui/legacy/calendar/settings/category-color-settings.tsx +475 -0
- package/src/components/ui/legacy/calendar/settings/color-picker.tsx +177 -0
- package/src/components/ui/legacy/calendar/settings/google-calendar-settings.tsx +562 -0
- package/src/components/ui/legacy/calendar/settings/hour-settings.tsx +292 -0
- package/src/components/ui/legacy/calendar/settings/notification-settings.tsx +254 -0
- package/src/components/ui/legacy/calendar/settings/settings-context.tsx +257 -0
- package/src/components/ui/legacy/calendar/settings/smart-scheduling-settings.tsx +325 -0
- package/src/components/ui/legacy/calendar/settings/summary-cards.tsx +93 -0
- package/src/components/ui/legacy/calendar/settings/sync-logs-table.tsx +392 -0
- package/src/components/ui/legacy/calendar/settings/task-settings.tsx +330 -0
- package/src/components/ui/legacy/calendar/settings/time-range-picker.tsx +666 -0
- package/src/components/ui/legacy/calendar/settings/timezone-settings.tsx +580 -0
- package/src/components/ui/legacy/calendar/settings/types.ts +119 -0
- package/src/components/ui/legacy/calendar/settings-button.tsx +41 -0
- package/src/components/ui/legacy/calendar/smart-calendar.tsx +82 -0
- package/src/components/ui/legacy/calendar/time-indicator-line.tsx +61 -0
- package/src/components/ui/legacy/calendar/time-indicator-text.tsx +61 -0
- package/src/components/ui/legacy/calendar/time-indicator.tsx +19 -0
- package/src/components/ui/legacy/calendar/time-trail.tsx +52 -0
- package/src/components/ui/legacy/calendar/weekday-bar.tsx +78 -0
- package/src/components/ui/legacy/calendar/year-calendar.tsx +345 -0
- package/src/components/ui/legacy/meet/client-wrapper.tsx +74 -0
- package/src/components/ui/legacy/meet/create-plan-dialog.tsx +404 -0
- package/src/components/ui/legacy/meet/date-selector.tsx +46 -0
- package/src/components/ui/legacy/meet/edit-plan-dialog.tsx +501 -0
- package/src/components/ui/legacy/meet/experimental-notice.tsx +39 -0
- package/src/components/ui/legacy/meet/form.tsx +94 -0
- package/src/components/ui/legacy/meet/multiple-choice-vote.tsx +556 -0
- package/src/components/ui/legacy/meet/page.tsx +331 -0
- package/src/components/ui/legacy/meet/pagination.tsx +87 -0
- package/src/components/ui/legacy/meet/planId/account-badge.tsx +21 -0
- package/src/components/ui/legacy/meet/planId/agenda-details.tsx +131 -0
- package/src/components/ui/legacy/meet/planId/all-availabilities.tsx +105 -0
- package/src/components/ui/legacy/meet/planId/availability-planner.tsx +51 -0
- package/src/components/ui/legacy/meet/planId/confirm-button.tsx +53 -0
- package/src/components/ui/legacy/meet/planId/copy-link-button.tsx +218 -0
- package/src/components/ui/legacy/meet/planId/date-planner.tsx +243 -0
- package/src/components/ui/legacy/meet/planId/day-planner.tsx +78 -0
- package/src/components/ui/legacy/meet/planId/day-planners.tsx +151 -0
- package/src/components/ui/legacy/meet/planId/day-time.tsx +32 -0
- package/src/components/ui/legacy/meet/planId/download-as-png.tsx +16 -0
- package/src/components/ui/legacy/meet/planId/email-button.tsx +32 -0
- package/src/components/ui/legacy/meet/planId/logged-in-as-button.tsx +56 -0
- package/src/components/ui/legacy/meet/planId/page.tsx +236 -0
- package/src/components/ui/legacy/meet/planId/plan-details-client.tsx +205 -0
- package/src/components/ui/legacy/meet/planId/plan-login.tsx +342 -0
- package/src/components/ui/legacy/meet/planId/plan-user-filter-accordion.tsx +227 -0
- package/src/components/ui/legacy/meet/planId/plan-user-filter.tsx +68 -0
- package/src/components/ui/legacy/meet/planId/preview-day-time.tsx +303 -0
- package/src/components/ui/legacy/meet/planId/selectable-day-time.tsx +247 -0
- package/src/components/ui/legacy/meet/planId/show-qr-button.tsx +53 -0
- package/src/components/ui/legacy/meet/planId/sidebar-display.tsx +68 -0
- package/src/components/ui/legacy/meet/planId/sticky-bottom-indicator.tsx +28 -0
- package/src/components/ui/legacy/meet/planId/time-column.tsx +57 -0
- package/src/components/ui/legacy/meet/planId/unified-availability.tsx +93 -0
- package/src/components/ui/legacy/meet/planId/utility-buttons.tsx +54 -0
- package/src/components/ui/legacy/meet/plans-grid.tsx +192 -0
- package/src/components/ui/legacy/meet/plans-list-view.tsx +148 -0
- package/src/components/ui/legacy/meet/plans-loading-skeleton.tsx +61 -0
- package/src/components/ui/legacy/meet/time-selector.tsx +67 -0
- package/src/components/ui/legacy/meet/timezone-selector.tsx +72 -0
- package/src/components/ui/legacy/meet/user-time.tsx +7 -0
- package/src/components/ui/legacy/meet/view-toggle.tsx +44 -0
- package/src/components/ui/legacy/polls/poll-display.tsx +388 -0
- package/src/components/ui/legacy/polls/where-tu-meet.tsx +80 -0
- package/src/components/ui/markdown.tsx +2 -2
- package/src/components/ui/menubar.tsx +11 -11
- package/src/components/ui/navbar.tsx +150 -0
- package/src/components/ui/navigation-menu.tsx +9 -9
- package/src/components/ui/pagination.tsx +4 -5
- package/src/components/ui/popover.tsx +2 -2
- package/src/components/ui/progress.tsx +15 -4
- package/src/components/ui/radio-group.tsx +3 -3
- package/src/components/ui/report-problem-dialog.tsx +980 -0
- package/src/components/ui/resizable.tsx +35 -13
- package/src/components/ui/scroll-area.tsx +3 -3
- package/src/components/ui/select.tsx +9 -8
- package/src/components/ui/separator.tsx +2 -2
- package/src/components/ui/sheet.tsx +13 -11
- package/src/components/ui/sidebar.tsx +18 -17
- package/src/components/ui/slider.tsx +3 -3
- package/src/components/ui/sonner.tsx +2 -2
- package/src/components/ui/sticky-bottom-bar.tsx +51 -0
- package/src/components/ui/switch.tsx +2 -2
- package/src/components/ui/table.tsx +2 -2
- package/src/components/ui/tabs.tsx +3 -3
- package/src/components/ui/text-editor/__tests__/content-migration.test.ts +757 -0
- package/src/components/ui/text-editor/__tests__/extensions-integration.test.ts +131 -0
- package/src/components/ui/text-editor/__tests__/extensions.test.ts +69 -0
- package/src/components/ui/text-editor/__tests__/image-extension.test.ts +799 -0
- package/src/components/ui/text-editor/__tests__/inline-task-conversion.test.tsx +46 -0
- package/src/components/ui/text-editor/__tests__/keyboard.test.ts +176 -0
- package/src/components/ui/text-editor/__tests__/list-converter-extension.test.ts +51 -0
- package/src/components/ui/text-editor/__tests__/markdown-paste-extension.test.ts +266 -0
- package/src/components/ui/text-editor/__tests__/media-utils.test.ts +425 -0
- package/src/components/ui/text-editor/__tests__/task-mention-checkbox.test.ts +251 -0
- package/src/components/ui/text-editor/__tests__/task-mention-chip.test.tsx +279 -0
- package/src/components/ui/text-editor/__tests__/text-replacements.test.ts +39 -0
- package/src/components/ui/text-editor/__tests__/upload-placeholder.test.ts +279 -0
- package/src/components/ui/text-editor/__tests__/video-extension.test.ts +711 -0
- package/src/components/ui/text-editor/content-migration.ts +199 -0
- package/src/components/ui/text-editor/draggable-node-container.tsx +164 -0
- package/src/components/ui/text-editor/editor.tsx +707 -0
- package/src/components/ui/text-editor/extensions.ts +232 -0
- package/src/components/ui/text-editor/image-extension.ts +907 -0
- package/src/components/ui/text-editor/keyboard.ts +58 -0
- package/src/components/ui/text-editor/list-converter-extension.ts +55 -0
- package/src/components/ui/text-editor/list-item-extension.ts +13 -0
- package/src/components/ui/text-editor/list-item-view.tsx +17 -0
- package/src/components/ui/text-editor/markdown-paste-extension.ts +610 -0
- package/src/components/ui/text-editor/media-utils.ts +198 -0
- package/src/components/ui/text-editor/mention-extension.tsx +604 -0
- package/src/components/ui/text-editor/node-drag-extension.ts +300 -0
- package/src/components/ui/text-editor/task-item-checkbox-extension.ts +32 -0
- package/src/components/ui/text-editor/task-item-checkbox-view.tsx +227 -0
- package/src/components/ui/text-editor/task-item-checkbox.ts +100 -0
- package/src/components/ui/text-editor/task-mention-chip.tsx +1375 -0
- package/src/components/ui/text-editor/task-mention-resolution.ts +235 -0
- package/src/components/ui/text-editor/task-summary-popover.tsx +360 -0
- package/src/components/ui/text-editor/text-replacements.ts +65 -0
- package/src/components/ui/text-editor/text-shortcuts-extension.ts +60 -0
- package/src/components/ui/text-editor/tool-bar.tsx +1294 -0
- package/src/components/ui/text-editor/types.ts +1 -0
- package/src/components/ui/text-editor/upload-errors.ts +93 -0
- package/src/components/ui/text-editor/upload-placeholder.ts +124 -0
- package/src/components/ui/text-editor/video-extension.ts +435 -0
- package/src/components/ui/textarea.tsx +2 -2
- package/src/components/ui/time-picker-input.tsx +6 -6
- package/src/components/ui/time-picker-utils.tsx +2 -2
- package/src/components/ui/time-tracker/types.ts +112 -0
- package/src/components/ui/toast.tsx +9 -9
- package/src/components/ui/toaster.tsx +10 -14
- package/src/components/ui/toggle-group.tsx +2 -2
- package/src/components/ui/toggle.tsx +2 -2
- package/src/components/ui/tooltip.tsx +3 -3
- package/src/components/ui/tu-do/boards/__tests__/quick-create-board-dialog.test.tsx +52 -0
- package/src/components/ui/tu-do/boards/__tests__/task-board-form.test.tsx +130 -0
- package/src/components/ui/tu-do/boards/__tests__/workspace-projects-client-page.test.tsx +100 -0
- package/src/components/ui/tu-do/boards/analytics/GanttChart.tsx +419 -0
- package/src/components/ui/tu-do/boards/analytics/GanttControls.tsx +123 -0
- package/src/components/ui/tu-do/boards/analytics/GanttHeader.tsx +48 -0
- package/src/components/ui/tu-do/boards/analytics/GanttTimeline.tsx +355 -0
- package/src/components/ui/tu-do/boards/analytics/StatusDistribution.tsx +130 -0
- package/src/components/ui/tu-do/boards/analytics/TaskCreationAnalytics.tsx +285 -0
- package/src/components/ui/tu-do/boards/analytics/TaskDetailCard.tsx +270 -0
- package/src/components/ui/tu-do/boards/analytics/TaskGroup.tsx +282 -0
- package/src/components/ui/tu-do/boards/analytics/TaskWorkflowAnalytics.tsx +280 -0
- package/src/components/ui/tu-do/boards/board-selector.tsx +301 -0
- package/src/components/ui/tu-do/boards/board-share-dialog.tsx +280 -0
- package/src/components/ui/tu-do/boards/boardId/__tests__/list-actions.test.tsx +199 -0
- package/src/components/ui/tu-do/boards/boardId/board-column-initial-load.test.ts +38 -0
- package/src/components/ui/tu-do/boards/boardId/board-column.tsx +755 -0
- package/src/components/ui/tu-do/boards/boardId/board-text-utils.test.ts +24 -0
- package/src/components/ui/tu-do/boards/boardId/board-text-utils.ts +11 -0
- package/src/components/ui/tu-do/boards/boardId/enhanced-task-list.tsx +536 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/__tests__/bulk-mutations-move.test.tsx +176 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-bar.tsx +94 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-menu.tsx +689 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-custom-date-dialog.tsx +82 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-delete-dialog.tsx +58 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-clear-delete.ts +471 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-move.ts +657 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-assignees.ts +429 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-labels.ts +294 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-projects.ts +316 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations.ts +12 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-updates.ts +499 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-i18n.ts +524 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-types.ts +34 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-utils.ts +60 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operations.ts +312 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-personal-external-move.ts +132 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/data/kanban-deadline-query.ts +42 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-applied-sets.ts +79 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-bulk-resources.ts +58 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/data/use-filtered-resources.ts +54 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/__tests__/column-reorder.test.ts +63 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/auto-scroll.ts +86 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/column-reorder.ts +62 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/drag-preview.tsx +98 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/kanban-sort-helpers.ts +76 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-cache.ts +325 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.test.ts +67 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.ts +94 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-order.ts +156 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.test.ts +37 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.ts +42 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.test.ts +318 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.ts +260 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-types.ts +39 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.test.ts +686 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.ts +1503 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/kanban-constants.ts +43 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-column-width.ts +30 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.test.tsx +383 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.tsx +228 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-panels.tsx +221 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.test.ts +267 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.ts +112 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-skeleton.tsx +45 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-keyboard-shortcuts.ts +137 -0
- package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-multi-select.ts +119 -0
- package/src/components/ui/tu-do/boards/boardId/kanban.tsx +495 -0
- package/src/components/ui/tu-do/boards/boardId/list-actions.tsx +522 -0
- package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-estimation-menu.test.tsx +261 -0
- package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-menus.test.tsx +491 -0
- package/src/components/ui/tu-do/boards/boardId/menus/index.ts +11 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-assignees-menu.tsx +176 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-blocking-menu.tsx +304 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-due-date-menu.tsx +180 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-estimation-menu.tsx +103 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-labels-menu.tsx +134 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-move-menu.tsx +66 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-parent-menu.tsx +228 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-picker-popover.tsx +300 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-priority-menu.tsx +176 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-projects-menu.tsx +143 -0
- package/src/components/ui/tu-do/boards/boardId/menus/task-related-menu.tsx +242 -0
- package/src/components/ui/tu-do/boards/boardId/status-grouped-board.tsx +533 -0
- package/src/components/ui/tu-do/boards/boardId/status-section.tsx +274 -0
- package/src/components/ui/tu-do/boards/boardId/task-actions.tsx +675 -0
- package/src/components/ui/tu-do/boards/boardId/task-board-server-page.tsx +41 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardCheckbox.tsx +47 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardDates.tsx +106 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardHeader.tsx +97 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardMetadata.tsx +152 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/measured-task-card.tsx +109 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.test.ts +61 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.ts +87 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-label-options.ts +24 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.test.ts +41 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.ts +14 -0
- package/src/components/ui/tu-do/boards/boardId/task-card/task-card.tsx +2543 -0
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/BoardEstimationConfigDialog.tsx +499 -0
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskCustomDateDialog.tsx +109 -0
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskDeleteDialog.tsx +96 -0
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewLabelDialog.tsx +178 -0
- package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewProjectDialog.tsx +127 -0
- package/src/components/ui/tu-do/boards/boardId/task-filter.tsx +986 -0
- package/src/components/ui/tu-do/boards/boardId/task-form.tsx +498 -0
- package/src/components/ui/tu-do/boards/boardId/task-list-drag-preview.test.ts +101 -0
- package/src/components/ui/tu-do/boards/boardId/task-list-form.tsx +91 -0
- package/src/components/ui/tu-do/boards/boardId/task-list.tsx +513 -0
- package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.test.ts +64 -0
- package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.ts +31 -0
- package/src/components/ui/tu-do/boards/boardId/task.tsx +2 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/task-edit-dialog.tsx +109 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-display.ts +94 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-grid.tsx +380 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-task-row.tsx +350 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-toolbar.tsx +347 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.test.ts +134 -0
- package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.ts +468 -0
- package/src/components/ui/tu-do/boards/boardId/timeline-board.test.tsx +217 -0
- package/src/components/ui/tu-do/boards/boardId/timeline-board.tsx +793 -0
- package/src/components/ui/tu-do/boards/boards-list-skeleton.tsx +62 -0
- package/src/components/ui/tu-do/boards/columns.tsx +159 -0
- package/src/components/ui/tu-do/boards/copy-board-dialog.tsx +156 -0
- package/src/components/ui/tu-do/boards/enhanced-boards-view.tsx +347 -0
- package/src/components/ui/tu-do/boards/form.tsx +264 -0
- package/src/components/ui/tu-do/boards/quick-create-board-dialog.tsx +75 -0
- package/src/components/ui/tu-do/boards/row-actions.tsx +397 -0
- package/src/components/ui/tu-do/boards/workspace-projects-client-page.tsx +182 -0
- package/src/components/ui/tu-do/boards/workspace-projects-page.tsx +155 -0
- package/src/components/ui/tu-do/cycles/task-cycles-client.tsx +744 -0
- package/src/components/ui/tu-do/cycles/task-cycles-page.tsx +103 -0
- package/src/components/ui/tu-do/drafts/draft-card.tsx +204 -0
- package/src/components/ui/tu-do/drafts/draft-convert-dialog.tsx +197 -0
- package/src/components/ui/tu-do/drafts/drafts-page.tsx +105 -0
- package/src/components/ui/tu-do/drafts/task-drafts-page.tsx +90 -0
- package/src/components/ui/tu-do/estimates/client.tsx +292 -0
- package/src/components/ui/tu-do/estimates/edit-estimation-dialog.tsx +374 -0
- package/src/components/ui/tu-do/estimates/task-estimates-page.tsx +57 -0
- package/src/components/ui/tu-do/estimates/use-task-estimates.ts +319 -0
- package/src/components/ui/tu-do/habits/client.tsx +260 -0
- package/src/components/ui/tu-do/habits/habit-card.tsx +183 -0
- package/src/components/ui/tu-do/habits/habit-form-dialog.tsx +701 -0
- package/src/components/ui/tu-do/habits/habits-page.tsx +27 -0
- package/src/components/ui/tu-do/hooks/__tests__/useDraftPersistence.test.ts +494 -0
- package/src/components/ui/tu-do/hooks/__tests__/useTaskDialog.test.tsx +127 -0
- package/src/components/ui/tu-do/hooks/__tests__/useTaskDialogState.test.ts +217 -0
- package/src/components/ui/tu-do/hooks/__tests__/useTaskLabelManagement.test.tsx +524 -0
- package/src/components/ui/tu-do/hooks/useDraftPersistence.ts +199 -0
- package/src/components/ui/tu-do/hooks/useTaskCardRelationships.ts +340 -0
- package/src/components/ui/tu-do/hooks/useTaskDialog.ts +101 -0
- package/src/components/ui/tu-do/hooks/useTaskDialogState.ts +145 -0
- package/src/components/ui/tu-do/hooks/useTaskFormState.ts +206 -0
- package/src/components/ui/tu-do/hooks/useTaskKeyboardShortcuts.ts +58 -0
- package/src/components/ui/tu-do/hooks/useTaskLabelManagement.ts +416 -0
- package/src/components/ui/tu-do/hooks/useTaskProjectManagement.ts +461 -0
- package/src/components/ui/tu-do/initiatives/task-initiatives-client.tsx +921 -0
- package/src/components/ui/tu-do/initiatives/task-initiatives-page.tsx +116 -0
- package/src/components/ui/tu-do/labels/client.tsx +201 -0
- package/src/components/ui/tu-do/labels/components/delete-label-dialog.tsx +57 -0
- package/src/components/ui/tu-do/labels/components/label-card.tsx +86 -0
- package/src/components/ui/tu-do/labels/components/label-dialog.tsx +259 -0
- package/src/components/ui/tu-do/labels/components/label-list.tsx +83 -0
- package/src/components/ui/tu-do/labels/hooks/use-task-labels.ts +170 -0
- package/src/components/ui/tu-do/labels/task-labels-page.tsx +53 -0
- package/src/components/ui/tu-do/labels/types.ts +6 -0
- package/src/components/ui/tu-do/logs/columns.tsx +755 -0
- package/src/components/ui/tu-do/logs/logs-client.tsx +1006 -0
- package/src/components/ui/tu-do/logs/logs-timeline.tsx +2483 -0
- package/src/components/ui/tu-do/logs/task-logs-page.tsx +59 -0
- package/src/components/ui/tu-do/my-tasks/__tests__/my-tasks-content.test.tsx +408 -0
- package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-query.test.ts +469 -0
- package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-state.test.ts +1017 -0
- package/src/components/ui/tu-do/my-tasks/__tests__/use-task-context-actions.test.ts +516 -0
- package/src/components/ui/tu-do/my-tasks/ai-credit-indicator.tsx +143 -0
- package/src/components/ui/tu-do/my-tasks/board-selector-dialog.tsx +239 -0
- package/src/components/ui/tu-do/my-tasks/command-bar.tsx +1351 -0
- package/src/components/ui/tu-do/my-tasks/label-project-filter.tsx +194 -0
- package/src/components/ui/tu-do/my-tasks/my-task-context-menu.tsx +356 -0
- package/src/components/ui/tu-do/my-tasks/my-tasks-content.tsx +304 -0
- package/src/components/ui/tu-do/my-tasks/my-tasks-data-loader.tsx +17 -0
- package/src/components/ui/tu-do/my-tasks/my-tasks-filters.tsx +258 -0
- package/src/components/ui/tu-do/my-tasks/my-tasks-header.tsx +121 -0
- package/src/components/ui/tu-do/my-tasks/my-tasks-page.tsx +40 -0
- package/src/components/ui/tu-do/my-tasks/personal-placement-dialog.tsx +188 -0
- package/src/components/ui/tu-do/my-tasks/task-filter.tsx +235 -0
- package/src/components/ui/tu-do/my-tasks/task-list-with-completion.tsx +782 -0
- package/src/components/ui/tu-do/my-tasks/task-list.tsx +258 -0
- package/src/components/ui/tu-do/my-tasks/task-preview-dialog.tsx +1597 -0
- package/src/components/ui/tu-do/my-tasks/task-section.tsx +261 -0
- package/src/components/ui/tu-do/my-tasks/use-my-tasks-query.ts +140 -0
- package/src/components/ui/tu-do/my-tasks/use-my-tasks-state.ts +983 -0
- package/src/components/ui/tu-do/my-tasks/use-task-context-actions.ts +332 -0
- package/src/components/ui/tu-do/notes/note-edit-dialog.tsx +121 -0
- package/src/components/ui/tu-do/notes/note-list.tsx +799 -0
- package/src/components/ui/tu-do/notes/notes-content.tsx +178 -0
- package/src/components/ui/tu-do/notes/notes-page.tsx +27 -0
- package/src/components/ui/tu-do/projects/components/index.ts +11 -0
- package/src/components/ui/tu-do/projects/components/project-actions-menu.tsx +66 -0
- package/src/components/ui/tu-do/projects/components/project-badges.tsx +84 -0
- package/src/components/ui/tu-do/projects/components/project-filter-menu.tsx +170 -0
- package/src/components/ui/tu-do/projects/components/project-grid-card.tsx +182 -0
- package/src/components/ui/tu-do/projects/components/project-list-item.tsx +179 -0
- package/src/components/ui/tu-do/projects/components/project-metrics.tsx +87 -0
- package/src/components/ui/tu-do/projects/components/project-progress-meter.tsx +33 -0
- package/src/components/ui/tu-do/projects/components/project-sort-menu.tsx +71 -0
- package/src/components/ui/tu-do/projects/components/projects-empty-state.tsx +38 -0
- package/src/components/ui/tu-do/projects/components/projects-loading-state.tsx +26 -0
- package/src/components/ui/tu-do/projects/components/projects-toolbar.tsx +179 -0
- package/src/components/ui/tu-do/projects/dialogs/create-project-dialog.tsx +117 -0
- package/src/components/ui/tu-do/projects/dialogs/edit-project-dialog.tsx +125 -0
- package/src/components/ui/tu-do/projects/dialogs/index.ts +3 -0
- package/src/components/ui/tu-do/projects/dialogs/manage-tasks-dialog.tsx +205 -0
- package/src/components/ui/tu-do/projects/hooks/index.ts +2 -0
- package/src/components/ui/tu-do/projects/hooks/use-project-filters.ts +248 -0
- package/src/components/ui/tu-do/projects/hooks/use-task-projects.ts +238 -0
- package/src/components/ui/tu-do/projects/projectId/components/__tests__/tasks-tab-layout.test.tsx +163 -0
- package/src/components/ui/tu-do/projects/projectId/components/documents-tab.tsx +90 -0
- package/src/components/ui/tu-do/projects/projectId/components/index.ts +9 -0
- package/src/components/ui/tu-do/projects/projectId/components/overview/description-card.tsx +77 -0
- package/src/components/ui/tu-do/projects/projectId/components/overview/linked-documents-card.tsx +81 -0
- package/src/components/ui/tu-do/projects/projectId/components/overview/linked-tasks-card.tsx +85 -0
- package/src/components/ui/tu-do/projects/projectId/components/overview/updates-card.tsx +85 -0
- package/src/components/ui/tu-do/projects/projectId/components/overview-tab.tsx +35 -0
- package/src/components/ui/tu-do/projects/projectId/components/project-configuration.tsx +229 -0
- package/src/components/ui/tu-do/projects/projectId/components/project-header.tsx +115 -0
- package/src/components/ui/tu-do/projects/projectId/components/project-lead-selector.tsx +55 -0
- package/src/components/ui/tu-do/projects/projectId/components/project-overview-context.tsx +82 -0
- package/src/components/ui/tu-do/projects/projectId/components/project-sidebar.tsx +246 -0
- package/src/components/ui/tu-do/projects/projectId/components/tasks-tab.tsx +264 -0
- package/src/components/ui/tu-do/projects/projectId/components/update-card.tsx +162 -0
- package/src/components/ui/tu-do/projects/projectId/components/updates-tab.tsx +129 -0
- package/src/components/ui/tu-do/projects/projectId/dialogs/index.ts +1 -0
- package/src/components/ui/tu-do/projects/projectId/dialogs/link-task-dialog.tsx +114 -0
- package/src/components/ui/tu-do/projects/projectId/hooks/index.ts +4 -0
- package/src/components/ui/tu-do/projects/projectId/hooks/use-animation-variants.ts +68 -0
- package/src/components/ui/tu-do/projects/projectId/hooks/use-project-form.ts +214 -0
- package/src/components/ui/tu-do/projects/projectId/hooks/use-project-updates.ts +209 -0
- package/src/components/ui/tu-do/projects/projectId/hooks/use-task-linking.ts +101 -0
- package/src/components/ui/tu-do/projects/projectId/task-project-detail-page-client.tsx +85 -0
- package/src/components/ui/tu-do/projects/projectId/task-project-detail-page.tsx +78 -0
- package/src/components/ui/tu-do/projects/projectId/task-project-detail.tsx +365 -0
- package/src/components/ui/tu-do/projects/projectId/types.ts +50 -0
- package/src/components/ui/tu-do/projects/task-projects-client.tsx +226 -0
- package/src/components/ui/tu-do/projects/task-projects-page.tsx +97 -0
- package/src/components/ui/tu-do/projects/types.ts +59 -0
- package/src/components/ui/tu-do/providers/__tests__/task-dialog-provider.test.tsx +404 -0
- package/src/components/ui/tu-do/providers/task-dialog-provider.tsx +721 -0
- package/src/components/ui/tu-do/providers/workspace-presence-provider.tsx +88 -0
- package/src/components/ui/tu-do/shared/AccessibleButton.tsx +79 -0
- package/src/components/ui/tu-do/shared/__tests__/assignee-select.test.tsx +72 -0
- package/src/components/ui/tu-do/shared/__tests__/board-client.test.tsx +152 -0
- package/src/components/ui/tu-do/shared/__tests__/board-header.test.tsx +172 -0
- package/src/components/ui/tu-do/shared/__tests__/board-query-cache.test.ts +219 -0
- package/src/components/ui/tu-do/shared/__tests__/board-views.test.tsx +613 -0
- package/src/components/ui/tu-do/shared/__tests__/create-list-dialog.test.tsx +118 -0
- package/src/components/ui/tu-do/shared/__tests__/task-detail-page.test.tsx +170 -0
- package/src/components/ui/tu-do/shared/__tests__/task-dialog-manager.test.tsx +708 -0
- package/src/components/ui/tu-do/shared/__tests__/task-legacy-route-recovery.test.tsx +85 -0
- package/src/components/ui/tu-do/shared/__tests__/use-progressive-board-loader.test.tsx +588 -0
- package/src/components/ui/tu-do/shared/assignee-select.tsx +541 -0
- package/src/components/ui/tu-do/shared/board-broadcast-context.tsx +45 -0
- package/src/components/ui/tu-do/shared/board-client.tsx +268 -0
- package/src/components/ui/tu-do/shared/board-config-storage.ts +88 -0
- package/src/components/ui/tu-do/shared/board-header.tsx +1248 -0
- package/src/components/ui/tu-do/shared/board-layout-settings.tsx +1105 -0
- package/src/components/ui/tu-do/shared/board-query-cache.ts +157 -0
- package/src/components/ui/tu-do/shared/board-switcher.tsx +298 -0
- package/src/components/ui/tu-do/shared/board-user-presence-avatars.tsx +572 -0
- package/src/components/ui/tu-do/shared/board-views.tsx +847 -0
- package/src/components/ui/tu-do/shared/clear-menu-item.tsx +34 -0
- package/src/components/ui/tu-do/shared/create-list-dialog.tsx +401 -0
- package/src/components/ui/tu-do/shared/cursor-overlay-multi-wrapper.tsx +204 -0
- package/src/components/ui/tu-do/shared/cursor-overlay.tsx +78 -0
- package/src/components/ui/tu-do/shared/custom-date-picker/custom-date-picker-dialog.tsx +157 -0
- package/src/components/ui/tu-do/shared/description-overflow-warning-dialog.tsx +68 -0
- package/src/components/ui/tu-do/shared/edit-list-dialog.tsx +383 -0
- package/src/components/ui/tu-do/shared/empty-state-card.tsx +46 -0
- package/src/components/ui/tu-do/shared/estimation-mapping.test.ts +32 -0
- package/src/components/ui/tu-do/shared/estimation-mapping.ts +74 -0
- package/src/components/ui/tu-do/shared/estimation-utils.ts +54 -0
- package/src/components/ui/tu-do/shared/fade-setting-initializer.tsx +59 -0
- package/src/components/ui/tu-do/shared/label-chip.tsx +46 -0
- package/src/components/ui/tu-do/shared/list-view-context-menu.test.tsx +150 -0
- package/src/components/ui/tu-do/shared/list-view-sorting.test.ts +50 -0
- package/src/components/ui/tu-do/shared/list-view-sorting.ts +108 -0
- package/src/components/ui/tu-do/shared/list-view.tsx +987 -0
- package/src/components/ui/tu-do/shared/mention-system/__tests__/mention-system.test.ts +250 -0
- package/src/components/ui/tu-do/shared/mention-system/mention-menu.tsx +217 -0
- package/src/components/ui/tu-do/shared/mention-system/types.ts +141 -0
- package/src/components/ui/tu-do/shared/mention-system/use-mention-suggestions.ts +244 -0
- package/src/components/ui/tu-do/shared/progressive-loader-context.tsx +45 -0
- package/src/components/ui/tu-do/shared/recent-sidebar-events.ts +58 -0
- package/src/components/ui/tu-do/shared/recycle-bin-panel.tsx +603 -0
- package/src/components/ui/tu-do/shared/relationship-task-identifier.ts +14 -0
- package/src/components/ui/tu-do/shared/slash-commands/__tests__/slash-commands.test.ts +315 -0
- package/src/components/ui/tu-do/shared/slash-commands/definitions.ts +167 -0
- package/src/components/ui/tu-do/shared/slash-commands/slash-command-menu.tsx +114 -0
- package/src/components/ui/tu-do/shared/sync-warning-dialog.tsx +133 -0
- package/src/components/ui/tu-do/shared/task-board-errors.ts +19 -0
- package/src/components/ui/tu-do/shared/task-detail-page.tsx +176 -0
- package/src/components/ui/tu-do/shared/task-detail-server-page.tsx +37 -0
- package/src/components/ui/tu-do/shared/task-dialog-manager.tsx +557 -0
- package/src/components/ui/tu-do/shared/task-dialog-wrapper.tsx +28 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/mobile-floating-save-button.tsx +46 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/quick-settings-popover.tsx +164 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-description-editor.tsx +491 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-dialog-header.tsx +511 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-picker-panel.tsx +220 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-selector.tsx +127 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-trigger-styles.ts +69 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.test.tsx +140 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.tsx +163 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-suggestion-menus.tsx +148 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/constants.ts +18 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/context-menu-guard.test.ts +37 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/description-diff-viewer.tsx +1665 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/field-diff-viewer.tsx +715 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-close.test.ts +218 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-keyboard-shortcuts.test.ts +140 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-overrides.test.ts +412 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-realtime-sync.test.tsx +209 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-yjs-sync.test.ts +190 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-update-shared-task.test.ts +103 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/task-api.ts +127 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-editor-commands.ts +314 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-suggestion-menus.ts +503 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-change-detection.ts +175 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-data.ts +332 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dependencies.ts +773 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-close.ts +193 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-keyboard-shortcuts.ts +365 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-reset.ts +215 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-state.ts +307 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-mutations.ts +536 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-overrides.ts +122 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-realtime-sync.ts +252 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.test.tsx +149 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.ts +545 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-revert.ts +140 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.test.ts +206 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.ts +1450 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-snapshot.ts +59 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-yjs-sync.ts +224 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-update-shared-task.ts +55 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/personal-overrides-section.tsx +348 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/clickable-task-item.tsx +90 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/index.ts +4 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/subtask-action-buttons.tsx +140 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/tab-button.tsx +76 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/task-relationship-action-buttons.tsx +178 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/dependencies-section.tsx +129 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/index.ts +35 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/parent-section.tsx +65 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/related-section.tsx +76 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/subtasks-section.tsx +82 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/task-search-popover.tsx +229 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/types/task-relationships.types.ts +186 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/selective-revert-panel.tsx +320 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-activity-section.tsx +748 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-delete-dialog.tsx +104 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-dialog-actions.tsx +213 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-instances-section.tsx +173 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-properties-section.tsx +1895 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-relationships-properties.tsx +273 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/task-snapshot-dialog.tsx +162 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.test.ts +52 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.ts +134 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/types.ts +64 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.test.ts +58 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.ts +45 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.test.ts +98 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.ts +39 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils.test.ts +404 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/utils.ts +473 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog/yjs-prosemirror-compat.test.ts +65 -0
- package/src/components/ui/tu-do/shared/task-edit-dialog.tsx +2168 -0
- package/src/components/ui/tu-do/shared/task-estimation-display.tsx +52 -0
- package/src/components/ui/tu-do/shared/task-estimation-picker.tsx +223 -0
- package/src/components/ui/tu-do/shared/task-filter.types.ts +65 -0
- package/src/components/ui/tu-do/shared/task-label-selector.tsx +217 -0
- package/src/components/ui/tu-do/shared/task-labels-display.test.tsx +51 -0
- package/src/components/ui/tu-do/shared/task-labels-display.tsx +119 -0
- package/src/components/ui/tu-do/shared/task-legacy-route-recovery.tsx +72 -0
- package/src/components/ui/tu-do/shared/task-open-events.ts +94 -0
- package/src/components/ui/tu-do/shared/task-projects-display.tsx +80 -0
- package/src/components/ui/tu-do/shared/task-resource-search-field.tsx +49 -0
- package/src/components/ui/tu-do/shared/task-resource-search-filters.ts +27 -0
- package/src/components/ui/tu-do/shared/task-row-actions-menu.tsx +352 -0
- package/src/components/ui/tu-do/shared/task-share-dialog/components/share-link-settings.tsx +86 -0
- package/src/components/ui/tu-do/shared/task-share-dialog/components/shares-list.tsx +85 -0
- package/src/components/ui/tu-do/shared/task-share-dialog/hooks/use-task-sharing.ts +296 -0
- package/src/components/ui/tu-do/shared/task-share-dialog.tsx +144 -0
- package/src/components/ui/tu-do/shared/task-url.ts +56 -0
- package/src/components/ui/tu-do/shared/text-diff-viewer.tsx +55 -0
- package/src/components/ui/tu-do/shared/types.ts +14 -0
- package/src/components/ui/tu-do/shared/unsaved-changes-warning-dialog.tsx +71 -0
- package/src/components/ui/tu-do/shared/use-progressive-board-loader.ts +310 -0
- package/src/components/ui/tu-do/shared/user-avatar.tsx +46 -0
- package/src/components/ui/tu-do/shared/user-presence-avatars.tsx +415 -0
- package/src/components/ui/tu-do/shared/utils/translate-task-list-display-name.ts +28 -0
- package/src/components/ui/tu-do/tasks-route-context.tsx +50 -0
- package/src/components/ui/tu-do/templates/client.tsx +486 -0
- package/src/components/ui/tu-do/templates/marketplace/client.tsx +451 -0
- package/src/components/ui/tu-do/templates/marketplace/task-marketplace-page.tsx +169 -0
- package/src/components/ui/tu-do/templates/save-as-template-dialog.tsx +381 -0
- package/src/components/ui/tu-do/templates/task-templates-page.tsx +162 -0
- package/src/components/ui/tu-do/templates/templateId/client.tsx +659 -0
- package/src/components/ui/tu-do/templates/templateId/edit-template-dialog.tsx +300 -0
- package/src/components/ui/tu-do/templates/templateId/share-template-dialog.tsx +261 -0
- package/src/components/ui/tu-do/templates/templateId/task-template-detail-page-client.tsx +121 -0
- package/src/components/ui/tu-do/templates/templateId/task-template-detail-page.tsx +89 -0
- package/src/components/ui/tu-do/templates/templateId/use-template-dialog.tsx +165 -0
- package/src/components/ui/tu-do/templates/types.ts +53 -0
- package/src/components/ui/tu-do/utils/__tests__/label-colors.test.ts +43 -0
- package/src/components/ui/tu-do/utils/__tests__/taskColorUtils.test.ts +267 -0
- package/src/components/ui/tu-do/utils/__tests__/taskConstants.test.ts +178 -0
- package/src/components/ui/tu-do/utils/__tests__/taskDateUtils.test.ts +226 -0
- package/src/components/ui/tu-do/utils/__tests__/weekDateUtils.test.ts +182 -0
- package/src/components/ui/tu-do/utils/label-colors.test.ts +15 -0
- package/src/components/ui/tu-do/utils/label-colors.ts +59 -0
- package/src/components/ui/tu-do/utils/taskColorUtils.ts +116 -0
- package/src/components/ui/tu-do/utils/taskConstants.ts +102 -0
- package/src/components/ui/tu-do/utils/taskDateUtils.ts +81 -0
- package/src/components/ui/tu-do/utils/taskPriorityUtils.tsx +80 -0
- package/src/components/ui/tu-do/utils/weekDateUtils.ts +64 -0
- package/src/constants/boards.ts +9 -0
- package/src/declarations.d.ts +2 -0
- package/src/globals.css +609 -200
- package/src/gsap.ts +2 -0
- package/src/hooks/__tests__/supabase-provider.test.ts +346 -0
- package/src/hooks/__tests__/use-calendar-readonly.test.tsx +90 -0
- package/src/hooks/__tests__/use-forwarded-ref.test.tsx +127 -0
- package/src/hooks/__tests__/use-local-storage.test.tsx +243 -0
- package/src/hooks/__tests__/use-mobile.test.tsx +222 -0
- package/src/hooks/__tests__/use-notifications-subscription.test.tsx +163 -0
- package/src/hooks/__tests__/use-notifications.test.ts +59 -0
- package/src/hooks/__tests__/use-stable-array.test.tsx +214 -0
- package/src/hooks/__tests__/use-task-actions.test.tsx +1893 -0
- package/src/hooks/__tests__/use-workspace-presence.test.tsx +217 -0
- package/src/hooks/__tests__/useBoardRealtime.test.tsx +1156 -0
- package/src/hooks/supabase-provider.ts +725 -0
- package/src/hooks/task-actions-personal-external.ts +308 -0
- package/src/hooks/time-blocking-provider.tsx +756 -0
- package/src/hooks/use-ai-credits.ts +78 -0
- package/src/hooks/use-analytics-filters.ts +269 -0
- package/src/hooks/use-at-bottom.tsx +64 -0
- package/src/hooks/use-board-actions.ts +213 -0
- package/src/hooks/use-calendar-preferences.tsx +24 -0
- package/src/hooks/use-calendar-sync.tsx +1184 -0
- package/src/hooks/use-calendar.tsx +1972 -0
- package/src/hooks/use-callback-ref.ts +1 -1
- package/src/hooks/use-controllable-state.ts +3 -4
- package/src/hooks/use-copy-to-clipboard.ts +1 -3
- package/src/hooks/use-currency-formatter.ts +81 -0
- package/src/hooks/use-debounce.ts +15 -0
- package/src/hooks/use-dom-resolved-theme.ts +81 -0
- package/src/hooks/use-enter-submit.tsx +23 -0
- package/src/hooks/use-exchange-rates.ts +23 -0
- package/src/hooks/use-finance-transaction-preferences.ts +58 -0
- package/src/hooks/use-form.ts +8 -6
- package/src/hooks/use-interest-preferences.ts +104 -0
- package/src/hooks/use-local-storage.ts +42 -0
- package/src/hooks/use-notifications.ts +704 -0
- package/src/hooks/use-page-visibility.ts +27 -0
- package/src/hooks/use-popover-manager.tsx +98 -0
- package/src/hooks/use-semantic-task-search.ts +76 -0
- package/src/hooks/use-session-history-query.ts +1 -0
- package/src/hooks/use-stable-array.ts +23 -0
- package/src/hooks/use-task-actions.ts +1915 -0
- package/src/hooks/use-task-analytics.ts +354 -0
- package/src/hooks/use-toast.ts +2 -3
- package/src/hooks/use-user-config.ts +109 -0
- package/src/hooks/use-view-transition.ts +69 -0
- package/src/hooks/use-workspace-config.ts +49 -0
- package/src/hooks/use-workspace-currency.ts +26 -0
- package/src/hooks/use-workspace-members.ts +58 -0
- package/src/hooks/use-workspace-permission.ts +61 -0
- package/src/hooks/use-workspace-presence.ts +554 -0
- package/src/hooks/use-workspace-user.ts +33 -0
- package/src/hooks/use-yjs-collaboration.ts +297 -0
- package/src/hooks/useBoardRealtime.ts +372 -0
- package/src/hooks/useBoardRealtime.types.ts +45 -0
- package/src/hooks/useBoardRealtimeEventHandler.ts +332 -0
- package/src/hooks/useCursorTracking.ts +338 -0
- package/src/hooks/useHorizontalScroll.ts +215 -0
- package/src/hooks/usePresence.ts +272 -0
- package/src/hooks/useSearchParams.tsx +133 -0
- package/src/lib/__tests__/lunar-calendar.test.ts +137 -0
- package/src/lib/calendar/planning-query-client.ts +197 -0
- package/src/lib/calendar/preview-engine.ts +14 -0
- package/src/lib/calendar-settings-resolver.ts +200 -0
- package/src/lib/lunar-calendar.ts +71 -0
- package/src/lib/template-background.ts +159 -0
- package/src/lib/workspace-actions.ts +457 -0
- package/src/utils/__tests__/label-colors.test.ts +219 -0
- package/src/utils/__tests__/priority-styles.test.ts +78 -0
- package/src/utils/label-colors.ts +4 -0
- package/src/utils/priority-styles.ts +42 -0
- package/src/xlsx.ts +3 -0
- package/tsconfig.json +3 -11
- package/tsconfig.typecheck.json +9 -0
- package/vendor/xlsx-0.20.3.tgz +0 -0
- package/vitest.config.ts +42 -0
- package/vitest.setup.ts +37 -0
- package/eslint.config.mjs +0 -20
- package/rollup.config.js +0 -40
- package/src/components/ui/icons.tsx +0 -506
- package/src/components/ui/tag-input.tsx +0 -141
- /package/src/hooks/{use-mobile.tsx → use-mobile.ts} +0 -0
|
@@ -0,0 +1,1033 @@
|
|
|
1
|
+
import { Calendar, ChevronDown, ChevronUp } from '@tuturuuu/icons';
|
|
2
|
+
import type { CalendarEvent } from '@tuturuuu/types/primitives/calendar-event';
|
|
3
|
+
import { useCalendar } from '@tuturuuu/ui/hooks/use-calendar';
|
|
4
|
+
import { useCalendarSync } from '@tuturuuu/ui/hooks/use-calendar-sync';
|
|
5
|
+
import { getEventStyles } from '@tuturuuu/utils/color-helper';
|
|
6
|
+
import { cn } from '@tuturuuu/utils/format';
|
|
7
|
+
import dayjs from 'dayjs';
|
|
8
|
+
import isBetween from 'dayjs/plugin/isBetween';
|
|
9
|
+
import isSameOrAfter from 'dayjs/plugin/isSameOrAfter';
|
|
10
|
+
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore';
|
|
11
|
+
import timezone from 'dayjs/plugin/timezone';
|
|
12
|
+
import Image from 'next/image';
|
|
13
|
+
import React, { useCallback, useMemo, useRef, useState } from 'react';
|
|
14
|
+
import { MIN_COLUMN_WIDTH } from './config';
|
|
15
|
+
import { getLocationType, LocationTimeline } from './location-timeline';
|
|
16
|
+
import { useCalendarSettings } from './settings/settings-context';
|
|
17
|
+
|
|
18
|
+
dayjs.extend(isBetween);
|
|
19
|
+
dayjs.extend(isSameOrAfter);
|
|
20
|
+
dayjs.extend(isSameOrBefore);
|
|
21
|
+
dayjs.extend(timezone);
|
|
22
|
+
|
|
23
|
+
const MAX_EVENTS_DISPLAY = 2;
|
|
24
|
+
|
|
25
|
+
// Define types for better type safety
|
|
26
|
+
interface EventSpan {
|
|
27
|
+
event: CalendarEvent;
|
|
28
|
+
startIndex: number;
|
|
29
|
+
endIndex: number;
|
|
30
|
+
span: number;
|
|
31
|
+
// Add indicators for cut-off events
|
|
32
|
+
isCutOffStart: boolean; // Event starts before visible range
|
|
33
|
+
isCutOffEnd: boolean; // Event ends after visible range
|
|
34
|
+
actualStartDate: dayjs.Dayjs; // Actual start date of the event
|
|
35
|
+
actualEndDate: dayjs.Dayjs; // Actual end date of the event
|
|
36
|
+
row: number; // Add row property for proper stacking
|
|
37
|
+
// For merged events
|
|
38
|
+
isMerged?: boolean;
|
|
39
|
+
mergedEventIds?: string[];
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
interface EventLayout {
|
|
43
|
+
spans: EventSpan[];
|
|
44
|
+
maxVisibleEventsPerDay: number;
|
|
45
|
+
eventsByDay: EventSpan[][];
|
|
46
|
+
locationSpansFromMerge: EventSpan[];
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Drag state interface
|
|
50
|
+
interface DragState {
|
|
51
|
+
isDragging: boolean;
|
|
52
|
+
draggedEvent: CalendarEvent | null;
|
|
53
|
+
draggedEventSpan: EventSpan | null;
|
|
54
|
+
startX: number;
|
|
55
|
+
startY: number;
|
|
56
|
+
currentX: number;
|
|
57
|
+
currentY: number;
|
|
58
|
+
targetDateIndex: number | null;
|
|
59
|
+
originalDateIndex: number;
|
|
60
|
+
// Add preview span for better visual feedback
|
|
61
|
+
previewSpan: {
|
|
62
|
+
startIndex: number;
|
|
63
|
+
span: number;
|
|
64
|
+
row: number;
|
|
65
|
+
} | null;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// 1. Extract EventContent component for shared rendering
|
|
69
|
+
const EventContent = ({ event }: { event: CalendarEvent }) => (
|
|
70
|
+
<>
|
|
71
|
+
{typeof event.google_event_id === 'string' &&
|
|
72
|
+
event.google_event_id.trim() !== '' && (
|
|
73
|
+
<Image
|
|
74
|
+
src="/media/google-calendar-icon.png"
|
|
75
|
+
alt="Google Calendar"
|
|
76
|
+
className="mr-1 inline-block h-[1.25em] w-[1.25em] align-middle opacity-80 dark:opacity-90"
|
|
77
|
+
title="Synced from Google Calendar"
|
|
78
|
+
data-testid="google-calendar-logo"
|
|
79
|
+
width={18}
|
|
80
|
+
height={18}
|
|
81
|
+
/>
|
|
82
|
+
)}
|
|
83
|
+
<span className="truncate">{event.title}</span>
|
|
84
|
+
</>
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
export const AllDayEventBar = ({ dates }: { dates: Date[] }) => {
|
|
88
|
+
const { openModal, updateEvent, addEvent, deleteEvent } = useCalendar();
|
|
89
|
+
const { allDayEvents } = useCalendarSync();
|
|
90
|
+
const { settings } = useCalendarSettings();
|
|
91
|
+
const showWeekends = settings.appearance.showWeekends;
|
|
92
|
+
const tz = settings?.timezone?.timezone;
|
|
93
|
+
const [expandedDates, setExpandedDates] = useState<string[]>([]);
|
|
94
|
+
|
|
95
|
+
// Drag and drop state
|
|
96
|
+
const [dragState, setDragState] = useState<DragState>({
|
|
97
|
+
isDragging: false,
|
|
98
|
+
draggedEvent: null,
|
|
99
|
+
draggedEventSpan: null,
|
|
100
|
+
startX: 0,
|
|
101
|
+
startY: 0,
|
|
102
|
+
currentX: 0,
|
|
103
|
+
currentY: 0,
|
|
104
|
+
targetDateIndex: null,
|
|
105
|
+
originalDateIndex: -1,
|
|
106
|
+
previewSpan: null,
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
// Use ref to store the current drag state for stable handlers
|
|
110
|
+
const dragStateRef = useRef<DragState>(dragState);
|
|
111
|
+
dragStateRef.current = dragState;
|
|
112
|
+
|
|
113
|
+
// Refs for drag handling
|
|
114
|
+
const containerRef = useRef<HTMLDivElement>(null);
|
|
115
|
+
const dragPreviewRef = useRef<HTMLDivElement>(null);
|
|
116
|
+
|
|
117
|
+
// Add refs for drag threshold and timer
|
|
118
|
+
const dragStartPos = useRef<{ x: number; y: number } | null>(null);
|
|
119
|
+
const dragInitiated = useRef(false);
|
|
120
|
+
const longPressTimer = useRef<NodeJS.Timeout | null>(null);
|
|
121
|
+
const DRAG_THRESHOLD = 5; // px
|
|
122
|
+
const LONG_PRESS_DURATION = 250; // ms
|
|
123
|
+
|
|
124
|
+
// Constants for layout
|
|
125
|
+
const EVENT_LEFT_OFFSET = 4; // 4px offset from left edge
|
|
126
|
+
/** Height of the LocationTimeline strip in rem. Used to offset regular events when location events are present. */
|
|
127
|
+
const LOCATION_TIMELINE_HEIGHT_REM = 1.5;
|
|
128
|
+
|
|
129
|
+
// Filter out weekend days if showWeekends is false
|
|
130
|
+
const visibleDates = showWeekends
|
|
131
|
+
? dates
|
|
132
|
+
: dates.filter((date) => {
|
|
133
|
+
const day =
|
|
134
|
+
tz === 'auto' ? dayjs(date).day() : dayjs(date).tz(tz).day();
|
|
135
|
+
return day !== 0 && day !== 6; // 0 = Sunday, 6 = Saturday
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
// Stable drag event handlers using refs
|
|
139
|
+
const handleDragStart = useCallback(
|
|
140
|
+
(e: React.MouseEvent, eventSpan: EventSpan) => {
|
|
141
|
+
// Don't allow dragging if there are no visible dates or only one date
|
|
142
|
+
if (visibleDates.length <= 1) return;
|
|
143
|
+
|
|
144
|
+
e.preventDefault();
|
|
145
|
+
e.stopPropagation();
|
|
146
|
+
|
|
147
|
+
const rect = containerRef.current?.getBoundingClientRect();
|
|
148
|
+
if (!rect) return;
|
|
149
|
+
|
|
150
|
+
// Calculate initial preview span
|
|
151
|
+
const previewSpan = {
|
|
152
|
+
startIndex: eventSpan.startIndex,
|
|
153
|
+
span: eventSpan.span,
|
|
154
|
+
row: eventSpan.row,
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
setDragState({
|
|
158
|
+
isDragging: true,
|
|
159
|
+
draggedEvent: eventSpan.event,
|
|
160
|
+
draggedEventSpan: eventSpan,
|
|
161
|
+
startX: e.clientX,
|
|
162
|
+
startY: e.clientY,
|
|
163
|
+
currentX: e.clientX,
|
|
164
|
+
currentY: e.clientY,
|
|
165
|
+
targetDateIndex: eventSpan.startIndex,
|
|
166
|
+
originalDateIndex: eventSpan.startIndex,
|
|
167
|
+
previewSpan,
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
// Set cursor and prevent text selection
|
|
171
|
+
document.body.style.cursor = 'grabbing';
|
|
172
|
+
document.body.classList.add('select-none');
|
|
173
|
+
},
|
|
174
|
+
[visibleDates.length]
|
|
175
|
+
);
|
|
176
|
+
|
|
177
|
+
// Stable drag move handler
|
|
178
|
+
const handleDragMove = useCallback(
|
|
179
|
+
(e: MouseEvent) => {
|
|
180
|
+
const currentDragState = dragStateRef.current;
|
|
181
|
+
if (
|
|
182
|
+
!currentDragState.isDragging ||
|
|
183
|
+
!containerRef.current ||
|
|
184
|
+
!currentDragState.draggedEventSpan
|
|
185
|
+
)
|
|
186
|
+
return;
|
|
187
|
+
|
|
188
|
+
const rect = containerRef.current.getBoundingClientRect();
|
|
189
|
+
const relativeX = e.clientX - rect.left;
|
|
190
|
+
|
|
191
|
+
// Calculate which date column we're over
|
|
192
|
+
const columnWidth = rect.width / visibleDates.length;
|
|
193
|
+
const targetDateIndex = Math.floor(relativeX / columnWidth);
|
|
194
|
+
const clampedTargetIndex = Math.max(
|
|
195
|
+
0,
|
|
196
|
+
Math.min(targetDateIndex, visibleDates.length - 1)
|
|
197
|
+
);
|
|
198
|
+
|
|
199
|
+
// Calculate new preview span based on target position
|
|
200
|
+
const originalSpan = currentDragState.draggedEventSpan.span;
|
|
201
|
+
const newStartIndex = clampedTargetIndex;
|
|
202
|
+
const newEndIndex = Math.min(
|
|
203
|
+
newStartIndex + originalSpan - 1,
|
|
204
|
+
visibleDates.length - 1
|
|
205
|
+
);
|
|
206
|
+
const adjustedSpan = newEndIndex - newStartIndex + 1;
|
|
207
|
+
|
|
208
|
+
const previewSpan = {
|
|
209
|
+
startIndex: newStartIndex,
|
|
210
|
+
span: adjustedSpan,
|
|
211
|
+
row: currentDragState.draggedEventSpan.row,
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
setDragState((prev) => ({
|
|
215
|
+
...prev,
|
|
216
|
+
currentX: e.clientX,
|
|
217
|
+
currentY: e.clientY,
|
|
218
|
+
targetDateIndex: clampedTargetIndex,
|
|
219
|
+
previewSpan,
|
|
220
|
+
}));
|
|
221
|
+
},
|
|
222
|
+
[visibleDates.length]
|
|
223
|
+
);
|
|
224
|
+
|
|
225
|
+
// Stable drag end handler
|
|
226
|
+
const handleDragEnd = useCallback(async () => {
|
|
227
|
+
const currentDragState = dragStateRef.current;
|
|
228
|
+
if (
|
|
229
|
+
!currentDragState.isDragging ||
|
|
230
|
+
!currentDragState.draggedEvent ||
|
|
231
|
+
!currentDragState.draggedEventSpan
|
|
232
|
+
)
|
|
233
|
+
return;
|
|
234
|
+
|
|
235
|
+
const targetDateIndex = currentDragState.targetDateIndex;
|
|
236
|
+
const originalDateIndex = currentDragState.originalDateIndex;
|
|
237
|
+
|
|
238
|
+
// Only validate originalDateIndex (targetDateIndex is always clamped)
|
|
239
|
+
if (originalDateIndex < 0 || originalDateIndex >= visibleDates.length) {
|
|
240
|
+
console.warn('Invalid original date index for drag operation');
|
|
241
|
+
return;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// Helper for dayjs + timezone
|
|
245
|
+
const getDayjsDate = (d: string | Date) =>
|
|
246
|
+
tz === 'auto' ? dayjs(d) : dayjs(d).tz(tz);
|
|
247
|
+
|
|
248
|
+
// Reset drag state and cursor
|
|
249
|
+
setDragState({
|
|
250
|
+
isDragging: false,
|
|
251
|
+
draggedEvent: null,
|
|
252
|
+
draggedEventSpan: null,
|
|
253
|
+
startX: 0,
|
|
254
|
+
startY: 0,
|
|
255
|
+
currentX: 0,
|
|
256
|
+
currentY: 0,
|
|
257
|
+
targetDateIndex: null,
|
|
258
|
+
originalDateIndex: -1,
|
|
259
|
+
previewSpan: null,
|
|
260
|
+
});
|
|
261
|
+
|
|
262
|
+
document.body.style.cursor = '';
|
|
263
|
+
document.body.classList.remove('select-none');
|
|
264
|
+
|
|
265
|
+
// If dropped on the same date or invalid target, do nothing
|
|
266
|
+
if (targetDateIndex === null || targetDateIndex === originalDateIndex) {
|
|
267
|
+
return;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
try {
|
|
271
|
+
// Use helper for all dayjs conversions
|
|
272
|
+
const originalStartDate = getDayjsDate(
|
|
273
|
+
visibleDates[originalDateIndex] ?? new Date()
|
|
274
|
+
);
|
|
275
|
+
const targetStartDate = getDayjsDate(
|
|
276
|
+
visibleDates[targetDateIndex] ?? new Date()
|
|
277
|
+
);
|
|
278
|
+
const daysDiff = targetStartDate.diff(originalStartDate, 'day');
|
|
279
|
+
const currentStart = getDayjsDate(currentDragState.draggedEvent.start_at);
|
|
280
|
+
const currentEnd = getDayjsDate(currentDragState.draggedEvent.end_at);
|
|
281
|
+
const newStart = currentStart.add(daysDiff, 'day');
|
|
282
|
+
const newEnd = currentEnd.add(daysDiff, 'day');
|
|
283
|
+
|
|
284
|
+
if (typeof updateEvent === 'function') {
|
|
285
|
+
await updateEvent(currentDragState.draggedEvent.id, {
|
|
286
|
+
start_at: newStart.toISOString(),
|
|
287
|
+
end_at: newEnd.toISOString(),
|
|
288
|
+
});
|
|
289
|
+
} else {
|
|
290
|
+
console.warn('updateEvent function not available');
|
|
291
|
+
}
|
|
292
|
+
} catch (error) {
|
|
293
|
+
console.error('Failed to update event:', error);
|
|
294
|
+
}
|
|
295
|
+
}, [visibleDates, tz, updateEvent]);
|
|
296
|
+
|
|
297
|
+
// Set up global mouse event listeners with stable handlers
|
|
298
|
+
React.useEffect(() => {
|
|
299
|
+
if (dragState.isDragging) {
|
|
300
|
+
document.addEventListener('mousemove', handleDragMove);
|
|
301
|
+
document.addEventListener('mouseup', handleDragEnd);
|
|
302
|
+
|
|
303
|
+
return () => {
|
|
304
|
+
document.removeEventListener('mousemove', handleDragMove);
|
|
305
|
+
document.removeEventListener('mouseup', handleDragEnd);
|
|
306
|
+
};
|
|
307
|
+
}
|
|
308
|
+
}, [dragState.isDragging, handleDragMove, handleDragEnd]);
|
|
309
|
+
|
|
310
|
+
// Process events to determine their spans across visible dates
|
|
311
|
+
const eventLayout = useMemo((): EventLayout => {
|
|
312
|
+
const spans: EventSpan[] = [];
|
|
313
|
+
const eventsByDay: EventSpan[][] = Array(visibleDates.length)
|
|
314
|
+
.fill(null)
|
|
315
|
+
.map(() => []);
|
|
316
|
+
|
|
317
|
+
// First pass: create event spans without row assignment
|
|
318
|
+
const tempSpans: Omit<EventSpan, 'row'>[] = [];
|
|
319
|
+
|
|
320
|
+
// Process each all-day event
|
|
321
|
+
allDayEvents.forEach((event) => {
|
|
322
|
+
const eventStart =
|
|
323
|
+
tz === 'auto' ? dayjs(event.start_at) : dayjs(event.start_at).tz(tz);
|
|
324
|
+
const eventEnd =
|
|
325
|
+
tz === 'auto' ? dayjs(event.end_at) : dayjs(event.end_at).tz(tz);
|
|
326
|
+
|
|
327
|
+
// Find the start and end indices within our visible dates
|
|
328
|
+
let startIndex = -1;
|
|
329
|
+
let endIndex = -1;
|
|
330
|
+
|
|
331
|
+
// First pass: find any overlap with visible dates
|
|
332
|
+
const firstVisibleDate =
|
|
333
|
+
tz === 'auto' ? dayjs(visibleDates[0]) : dayjs(visibleDates[0]).tz(tz);
|
|
334
|
+
const lastVisibleDate =
|
|
335
|
+
tz === 'auto'
|
|
336
|
+
? dayjs(visibleDates[visibleDates.length - 1])
|
|
337
|
+
: dayjs(visibleDates[visibleDates.length - 1]).tz(tz);
|
|
338
|
+
|
|
339
|
+
// Check if event overlaps with our visible date range at all
|
|
340
|
+
// Event overlaps if: event_start < visible_end AND event_end > visible_start
|
|
341
|
+
const eventOverlaps =
|
|
342
|
+
eventStart.isBefore(lastVisibleDate.add(1, 'day'), 'day') &&
|
|
343
|
+
eventEnd.isAfter(firstVisibleDate, 'day');
|
|
344
|
+
|
|
345
|
+
// Debug logging for multi-day events
|
|
346
|
+
const eventDurationDays = eventEnd.diff(eventStart, 'day');
|
|
347
|
+
if (eventDurationDays > 0) {
|
|
348
|
+
console.log('Multi-day event processing:', {
|
|
349
|
+
title: event.title,
|
|
350
|
+
eventStart: eventStart.format('YYYY-MM-DD'),
|
|
351
|
+
eventEnd: eventEnd.format('YYYY-MM-DD'),
|
|
352
|
+
durationDays: eventDurationDays,
|
|
353
|
+
isActuallyMultiDay: eventDurationDays > 1,
|
|
354
|
+
firstVisibleDate: firstVisibleDate.format('YYYY-MM-DD'),
|
|
355
|
+
lastVisibleDate: lastVisibleDate.format('YYYY-MM-DD'),
|
|
356
|
+
eventOverlaps,
|
|
357
|
+
wouldShowCutOffStart:
|
|
358
|
+
eventDurationDays > 1 &&
|
|
359
|
+
eventStart.isBefore(firstVisibleDate, 'day'),
|
|
360
|
+
wouldShowCutOffEnd:
|
|
361
|
+
eventDurationDays > 1 &&
|
|
362
|
+
eventEnd.isAfter(lastVisibleDate.add(1, 'day'), 'day'),
|
|
363
|
+
});
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
if (!eventOverlaps) {
|
|
367
|
+
return; // Skip this event if it doesn't overlap with visible dates
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
// Improved logic for multi-day events
|
|
371
|
+
// Start index: first visible date that overlaps with the event
|
|
372
|
+
if (eventStart.isSameOrBefore(firstVisibleDate, 'day')) {
|
|
373
|
+
// Event starts before or on the first visible date
|
|
374
|
+
startIndex = 0;
|
|
375
|
+
} else {
|
|
376
|
+
// Find the first visible date that matches the event start
|
|
377
|
+
for (let i = 0; i < visibleDates.length; i++) {
|
|
378
|
+
const currentDate =
|
|
379
|
+
tz === 'auto'
|
|
380
|
+
? dayjs(visibleDates[i])
|
|
381
|
+
: dayjs(visibleDates[i]).tz(tz);
|
|
382
|
+
if (
|
|
383
|
+
currentDate.isSameOrAfter(eventStart, 'day') &&
|
|
384
|
+
currentDate.isBefore(eventEnd, 'day')
|
|
385
|
+
) {
|
|
386
|
+
startIndex = i;
|
|
387
|
+
break;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// End index: last visible date that overlaps with the event
|
|
393
|
+
if (eventEnd.isAfter(lastVisibleDate.add(1, 'day'), 'day')) {
|
|
394
|
+
// Event ends after the last visible date
|
|
395
|
+
endIndex = visibleDates.length - 1;
|
|
396
|
+
} else {
|
|
397
|
+
// Find the last visible date that the event covers
|
|
398
|
+
for (let i = visibleDates.length - 1; i >= 0; i--) {
|
|
399
|
+
const currentDate =
|
|
400
|
+
tz === 'auto'
|
|
401
|
+
? dayjs(visibleDates[i])
|
|
402
|
+
: dayjs(visibleDates[i]).tz(tz);
|
|
403
|
+
if (
|
|
404
|
+
currentDate.isBefore(eventEnd, 'day') &&
|
|
405
|
+
currentDate.isSameOrAfter(eventStart, 'day')
|
|
406
|
+
) {
|
|
407
|
+
endIndex = i;
|
|
408
|
+
break;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
// Include events that have at least one day visible in our date range
|
|
414
|
+
if (startIndex !== -1 && endIndex !== -1) {
|
|
415
|
+
const span = endIndex - startIndex + 1;
|
|
416
|
+
|
|
417
|
+
// Fix: Proper cut-off logic for all-day events
|
|
418
|
+
// For all-day events, end_at is typically start of next day (exclusive)
|
|
419
|
+
// So we need to check actual duration, not just date comparison
|
|
420
|
+
const actualDurationDays = eventEnd.diff(eventStart, 'day');
|
|
421
|
+
const isActuallyMultiDay = actualDurationDays > 1;
|
|
422
|
+
|
|
423
|
+
// Only show cut-off indicators for events that actually span multiple days
|
|
424
|
+
// AND are cut off by the visible range
|
|
425
|
+
const isCutOffStart =
|
|
426
|
+
isActuallyMultiDay && eventStart.isBefore(firstVisibleDate, 'day');
|
|
427
|
+
const isCutOffEnd =
|
|
428
|
+
isActuallyMultiDay &&
|
|
429
|
+
eventEnd.isAfter(lastVisibleDate.add(1, 'day'), 'day');
|
|
430
|
+
|
|
431
|
+
const eventSpan: Omit<EventSpan, 'row'> = {
|
|
432
|
+
event,
|
|
433
|
+
startIndex,
|
|
434
|
+
endIndex,
|
|
435
|
+
span,
|
|
436
|
+
// Add indicators for cut-off events
|
|
437
|
+
isCutOffStart,
|
|
438
|
+
isCutOffEnd,
|
|
439
|
+
actualStartDate: eventStart,
|
|
440
|
+
actualEndDate: eventEnd,
|
|
441
|
+
};
|
|
442
|
+
|
|
443
|
+
tempSpans.push(eventSpan);
|
|
444
|
+
}
|
|
445
|
+
});
|
|
446
|
+
|
|
447
|
+
// Second pass: Merge consecutive SINGLE-DAY events with same title and color
|
|
448
|
+
// Optimized O(n log n) approach: group by mergeKey, sort groups, linear scan per group
|
|
449
|
+
const mergedTempSpans: Omit<EventSpan, 'row'>[] = [];
|
|
450
|
+
|
|
451
|
+
// Group single-day spans by mergeKey; multi-day events go directly to output
|
|
452
|
+
const groups = new Map<string, Omit<EventSpan, 'row'>[]>();
|
|
453
|
+
|
|
454
|
+
for (const span of tempSpans) {
|
|
455
|
+
if (span.span !== 1) {
|
|
456
|
+
// Multi-day events - don't merge, just add directly
|
|
457
|
+
mergedTempSpans.push(span);
|
|
458
|
+
continue;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
const mergeKey = `${(span.event.title ?? '').toLowerCase().trim()}|${span.event.color ?? 'BLUE'}`;
|
|
462
|
+
const group = groups.get(mergeKey) ?? [];
|
|
463
|
+
group.push(span);
|
|
464
|
+
groups.set(mergeKey, group);
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
// Process each group with linear merge
|
|
468
|
+
for (const [, group] of groups) {
|
|
469
|
+
// Sort by startIndex (O(k log k) per group, where k is group size)
|
|
470
|
+
group.sort((a, b) => a.startIndex - b.startIndex);
|
|
471
|
+
|
|
472
|
+
let currentMerged: Omit<EventSpan, 'row'> | null = null;
|
|
473
|
+
let mergedIds: string[] = [];
|
|
474
|
+
|
|
475
|
+
for (const span of group) {
|
|
476
|
+
if (!currentMerged) {
|
|
477
|
+
// Start a new potential merge chain
|
|
478
|
+
currentMerged = { ...span };
|
|
479
|
+
mergedIds = [span.event.id];
|
|
480
|
+
} else if (span.startIndex === currentMerged.endIndex + 1) {
|
|
481
|
+
// Adjacent - extend the merge
|
|
482
|
+
currentMerged.endIndex = span.endIndex;
|
|
483
|
+
currentMerged.span =
|
|
484
|
+
currentMerged.endIndex - currentMerged.startIndex + 1;
|
|
485
|
+
currentMerged.isCutOffEnd =
|
|
486
|
+
currentMerged.isCutOffEnd || span.isCutOffEnd;
|
|
487
|
+
currentMerged.actualEndDate = currentMerged.actualEndDate.isAfter(
|
|
488
|
+
span.actualEndDate
|
|
489
|
+
)
|
|
490
|
+
? currentMerged.actualEndDate
|
|
491
|
+
: span.actualEndDate;
|
|
492
|
+
mergedIds.push(span.event.id);
|
|
493
|
+
} else {
|
|
494
|
+
// Gap - push current merged span and start a new one
|
|
495
|
+
if (mergedIds.length > 1) {
|
|
496
|
+
currentMerged.isMerged = true;
|
|
497
|
+
currentMerged.mergedEventIds = mergedIds;
|
|
498
|
+
}
|
|
499
|
+
mergedTempSpans.push(currentMerged);
|
|
500
|
+
currentMerged = { ...span };
|
|
501
|
+
mergedIds = [span.event.id];
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
// Push the final merged span from this group
|
|
506
|
+
if (currentMerged) {
|
|
507
|
+
if (mergedIds.length > 1) {
|
|
508
|
+
currentMerged.isMerged = true;
|
|
509
|
+
currentMerged.mergedEventIds = mergedIds;
|
|
510
|
+
}
|
|
511
|
+
mergedTempSpans.push(currentMerged);
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
// Sort final output by startIndex for consistent ordering
|
|
516
|
+
mergedTempSpans.sort((a, b) => a.startIndex - b.startIndex);
|
|
517
|
+
|
|
518
|
+
// Third pass: assign rows (ONLY for non-location events)
|
|
519
|
+
// Location events will be rendered separately as a compact timeline strip
|
|
520
|
+
// Extract location spans before filtering them out for row assignment
|
|
521
|
+
const locationSpansFromMerge = mergedTempSpans
|
|
522
|
+
.filter((span) => getLocationType(span.event.title ?? '') !== null)
|
|
523
|
+
.map((span) => ({ ...span, row: 0 })); // Give them row 0 as placeholder
|
|
524
|
+
|
|
525
|
+
const nonLocationSpans = mergedTempSpans.filter(
|
|
526
|
+
(span) => getLocationType(span.event.title ?? '') === null
|
|
527
|
+
);
|
|
528
|
+
|
|
529
|
+
// Sort: 1) by span length (longer events first for better packing), 2) by start date
|
|
530
|
+
const sortedTempSpans = nonLocationSpans.sort((a, b) => {
|
|
531
|
+
// Longer events first (they need to claim their full row first)
|
|
532
|
+
const spanDiff = b.span - a.span;
|
|
533
|
+
if (spanDiff !== 0) return spanDiff;
|
|
534
|
+
|
|
535
|
+
// Then by start date
|
|
536
|
+
return a.actualStartDate.diff(b.actualStartDate);
|
|
537
|
+
});
|
|
538
|
+
|
|
539
|
+
// Track occupied rows for each day
|
|
540
|
+
const occupiedRows: boolean[][] = Array(visibleDates.length)
|
|
541
|
+
.fill(null)
|
|
542
|
+
.map(() => []);
|
|
543
|
+
|
|
544
|
+
// Assign rows to events
|
|
545
|
+
sortedTempSpans.forEach((tempSpan) => {
|
|
546
|
+
// Find the first available row that works for all days this event spans
|
|
547
|
+
let row = 0;
|
|
548
|
+
let rowFound = false;
|
|
549
|
+
|
|
550
|
+
while (!rowFound) {
|
|
551
|
+
// Check if this row is available for all days the event spans
|
|
552
|
+
let canUseRow = true;
|
|
553
|
+
for (
|
|
554
|
+
let dayIndex = tempSpan.startIndex;
|
|
555
|
+
dayIndex <= tempSpan.endIndex;
|
|
556
|
+
dayIndex++
|
|
557
|
+
) {
|
|
558
|
+
if (occupiedRows[dayIndex]?.[row]) {
|
|
559
|
+
canUseRow = false;
|
|
560
|
+
break;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
if (canUseRow) {
|
|
565
|
+
// Mark this row as occupied for all days the event spans
|
|
566
|
+
for (
|
|
567
|
+
let dayIndex = tempSpan.startIndex;
|
|
568
|
+
dayIndex <= tempSpan.endIndex;
|
|
569
|
+
dayIndex++
|
|
570
|
+
) {
|
|
571
|
+
if (!occupiedRows[dayIndex]) {
|
|
572
|
+
occupiedRows[dayIndex] = [];
|
|
573
|
+
}
|
|
574
|
+
occupiedRows[dayIndex]![row] = true;
|
|
575
|
+
}
|
|
576
|
+
rowFound = true;
|
|
577
|
+
} else {
|
|
578
|
+
row++;
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
// Create the final event span with row assignment
|
|
583
|
+
const eventSpan: EventSpan = {
|
|
584
|
+
...tempSpan,
|
|
585
|
+
row,
|
|
586
|
+
};
|
|
587
|
+
|
|
588
|
+
spans.push(eventSpan);
|
|
589
|
+
|
|
590
|
+
// Add this event to each day it spans
|
|
591
|
+
for (let i = tempSpan.startIndex; i <= tempSpan.endIndex; i++) {
|
|
592
|
+
eventsByDay[i]?.push(eventSpan);
|
|
593
|
+
}
|
|
594
|
+
});
|
|
595
|
+
|
|
596
|
+
// Calculate max visible events per day for layout purposes
|
|
597
|
+
let maxVisibleEventsPerDay = 0;
|
|
598
|
+
eventsByDay.forEach((dayEvents, dayIndex) => {
|
|
599
|
+
const dateKey =
|
|
600
|
+
tz === 'auto'
|
|
601
|
+
? dayjs(visibleDates[dayIndex]).format('YYYY-MM-DD')
|
|
602
|
+
: dayjs(visibleDates[dayIndex]).tz(tz).format('YYYY-MM-DD');
|
|
603
|
+
|
|
604
|
+
const shouldShowAll = dayEvents.length === MAX_EVENTS_DISPLAY + 1;
|
|
605
|
+
const isExpanded = expandedDates.includes(dateKey) || shouldShowAll;
|
|
606
|
+
const visibleCount = isExpanded
|
|
607
|
+
? dayEvents.length
|
|
608
|
+
: Math.min(dayEvents.length, MAX_EVENTS_DISPLAY);
|
|
609
|
+
|
|
610
|
+
maxVisibleEventsPerDay = Math.max(maxVisibleEventsPerDay, visibleCount);
|
|
611
|
+
});
|
|
612
|
+
|
|
613
|
+
return {
|
|
614
|
+
spans,
|
|
615
|
+
maxVisibleEventsPerDay,
|
|
616
|
+
eventsByDay,
|
|
617
|
+
locationSpansFromMerge,
|
|
618
|
+
};
|
|
619
|
+
}, [allDayEvents, visibleDates, tz, expandedDates]);
|
|
620
|
+
|
|
621
|
+
// Extract location events (Home/Office) for compact timeline display
|
|
622
|
+
// Deduplicate: only show one location event per day cell (first one wins)
|
|
623
|
+
const locationSpans = useMemo(() => {
|
|
624
|
+
const allLocationSpans = eventLayout.locationSpansFromMerge || [];
|
|
625
|
+
|
|
626
|
+
// Track which day indices have been claimed by a location event
|
|
627
|
+
const claimedDays = new Set<number>();
|
|
628
|
+
const deduplicatedSpans: EventSpan[] = [];
|
|
629
|
+
|
|
630
|
+
// Sort by start index to process in order
|
|
631
|
+
const sortedSpans = [...allLocationSpans].sort(
|
|
632
|
+
(a, b) => a.startIndex - b.startIndex
|
|
633
|
+
);
|
|
634
|
+
|
|
635
|
+
for (const span of sortedSpans) {
|
|
636
|
+
// Check if any day in this span is already claimed
|
|
637
|
+
let hasConflict = false;
|
|
638
|
+
for (let day = span.startIndex; day <= span.endIndex; day++) {
|
|
639
|
+
if (claimedDays.has(day)) {
|
|
640
|
+
hasConflict = true;
|
|
641
|
+
break;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
if (!hasConflict) {
|
|
646
|
+
// Claim all days for this span
|
|
647
|
+
for (let day = span.startIndex; day <= span.endIndex; day++) {
|
|
648
|
+
claimedDays.add(day);
|
|
649
|
+
}
|
|
650
|
+
deduplicatedSpans.push(span);
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
return deduplicatedSpans;
|
|
655
|
+
}, [eventLayout.locationSpansFromMerge]);
|
|
656
|
+
|
|
657
|
+
// Get non-location spans for regular event display
|
|
658
|
+
const regularSpans = useMemo(() => {
|
|
659
|
+
return eventLayout.spans.filter(
|
|
660
|
+
(span) => getLocationType(span.event.title ?? '') === null
|
|
661
|
+
);
|
|
662
|
+
}, [eventLayout.spans]);
|
|
663
|
+
|
|
664
|
+
// Get unique events for a specific date (for expansion logic)
|
|
665
|
+
const getUniqueEventsForDate = (dateIndex: number): EventSpan[] => {
|
|
666
|
+
return eventLayout.eventsByDay[dateIndex] ?? [];
|
|
667
|
+
};
|
|
668
|
+
|
|
669
|
+
// Check if we have any all-day events to display
|
|
670
|
+
if (eventLayout.spans.length === 0) {
|
|
671
|
+
return null;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
const toggleDateExpansion = (dateKey: string) => {
|
|
675
|
+
setExpandedDates((prev) =>
|
|
676
|
+
prev.includes(dateKey)
|
|
677
|
+
? prev.filter((d) => d !== dateKey)
|
|
678
|
+
: [...prev, dateKey]
|
|
679
|
+
);
|
|
680
|
+
};
|
|
681
|
+
|
|
682
|
+
// Calculate dynamic height based on visible events
|
|
683
|
+
const barHeight = Math.max(1.9, eventLayout.maxVisibleEventsPerDay * 1.75);
|
|
684
|
+
|
|
685
|
+
// Enhanced mouse and touch handlers
|
|
686
|
+
const handleEventMouseDown = (e: React.MouseEvent, eventSpan: EventSpan) => {
|
|
687
|
+
if (visibleDates.length <= 1) return;
|
|
688
|
+
e.preventDefault();
|
|
689
|
+
e.stopPropagation();
|
|
690
|
+
dragStartPos.current = { x: e.clientX, y: e.clientY };
|
|
691
|
+
dragInitiated.current = false;
|
|
692
|
+
|
|
693
|
+
const onMouseMove = (moveEvent: MouseEvent) => {
|
|
694
|
+
if (!dragStartPos.current) return;
|
|
695
|
+
const dx = moveEvent.clientX - dragStartPos.current.x;
|
|
696
|
+
const dy = moveEvent.clientY - dragStartPos.current.y;
|
|
697
|
+
if (
|
|
698
|
+
!dragInitiated.current &&
|
|
699
|
+
Math.sqrt(dx * dx + dy * dy) > DRAG_THRESHOLD
|
|
700
|
+
) {
|
|
701
|
+
dragInitiated.current = true;
|
|
702
|
+
handleDragStart(e, eventSpan);
|
|
703
|
+
}
|
|
704
|
+
// If drag already started, let handleDragMove do its job
|
|
705
|
+
};
|
|
706
|
+
const onMouseUp = () => {
|
|
707
|
+
document.removeEventListener('mousemove', onMouseMove);
|
|
708
|
+
document.removeEventListener('mouseup', onMouseUp);
|
|
709
|
+
if (!dragInitiated.current) {
|
|
710
|
+
// Treat as click (open modal)
|
|
711
|
+
openModal(eventSpan.event.id, 'all-day');
|
|
712
|
+
}
|
|
713
|
+
dragStartPos.current = null;
|
|
714
|
+
dragInitiated.current = false;
|
|
715
|
+
};
|
|
716
|
+
document.addEventListener('mousemove', onMouseMove);
|
|
717
|
+
document.addEventListener('mouseup', onMouseUp);
|
|
718
|
+
};
|
|
719
|
+
|
|
720
|
+
const handleEventTouchStart = (e: React.TouchEvent, eventSpan: EventSpan) => {
|
|
721
|
+
if (visibleDates.length <= 1) return;
|
|
722
|
+
if (e.touches.length !== 1) return;
|
|
723
|
+
const touch = e.touches[0];
|
|
724
|
+
if (!touch) return;
|
|
725
|
+
dragStartPos.current = { x: touch.clientX, y: touch.clientY };
|
|
726
|
+
dragInitiated.current = false;
|
|
727
|
+
// Start long-press timer
|
|
728
|
+
longPressTimer.current = setTimeout(() => {
|
|
729
|
+
dragInitiated.current = true;
|
|
730
|
+
handleDragStart(
|
|
731
|
+
{
|
|
732
|
+
...e,
|
|
733
|
+
clientX: touch.clientX,
|
|
734
|
+
clientY: touch.clientY,
|
|
735
|
+
preventDefault: () => {},
|
|
736
|
+
stopPropagation: () => {},
|
|
737
|
+
} as any,
|
|
738
|
+
eventSpan
|
|
739
|
+
);
|
|
740
|
+
}, LONG_PRESS_DURATION);
|
|
741
|
+
|
|
742
|
+
const onTouchMove = (moveEvent: TouchEvent) => {
|
|
743
|
+
if (!dragStartPos.current) return;
|
|
744
|
+
const moveTouch = moveEvent.touches[0];
|
|
745
|
+
if (!moveTouch) return;
|
|
746
|
+
const dx = moveTouch.clientX - dragStartPos.current.x;
|
|
747
|
+
const dy = moveTouch.clientY - dragStartPos.current.y;
|
|
748
|
+
if (
|
|
749
|
+
!dragInitiated.current &&
|
|
750
|
+
Math.sqrt(dx * dx + dy * dy) > DRAG_THRESHOLD
|
|
751
|
+
) {
|
|
752
|
+
// Cancel long-press, treat as scroll
|
|
753
|
+
if (longPressTimer.current) clearTimeout(longPressTimer.current);
|
|
754
|
+
longPressTimer.current = null;
|
|
755
|
+
dragStartPos.current = null;
|
|
756
|
+
dragInitiated.current = false;
|
|
757
|
+
document.removeEventListener('touchmove', onTouchMove);
|
|
758
|
+
document.removeEventListener('touchend', onTouchEnd);
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
const onTouchEnd = () => {
|
|
762
|
+
if (longPressTimer.current) clearTimeout(longPressTimer.current);
|
|
763
|
+
longPressTimer.current = null;
|
|
764
|
+
document.removeEventListener('touchmove', onTouchMove);
|
|
765
|
+
document.removeEventListener('touchend', onTouchEnd);
|
|
766
|
+
if (!dragInitiated.current) {
|
|
767
|
+
// Treat as tap (open modal)
|
|
768
|
+
openModal(eventSpan.event.id, 'all-day');
|
|
769
|
+
}
|
|
770
|
+
dragStartPos.current = null;
|
|
771
|
+
dragInitiated.current = false;
|
|
772
|
+
};
|
|
773
|
+
document.addEventListener('touchmove', onTouchMove);
|
|
774
|
+
document.addEventListener('touchend', onTouchEnd);
|
|
775
|
+
};
|
|
776
|
+
|
|
777
|
+
return (
|
|
778
|
+
<div className="flex">
|
|
779
|
+
{/* Label column */}
|
|
780
|
+
<div className="flex w-16 items-center justify-center border-b border-l bg-muted/30 p-2 font-medium">
|
|
781
|
+
<Calendar className="h-4 w-4 text-muted-foreground" />
|
|
782
|
+
</div>
|
|
783
|
+
|
|
784
|
+
{/* All-day event columns with relative positioning for spanning events */}
|
|
785
|
+
<div
|
|
786
|
+
ref={containerRef}
|
|
787
|
+
className={cn('relative flex-1 overflow-hidden border-b')}
|
|
788
|
+
style={{
|
|
789
|
+
minWidth: `${visibleDates.length * MIN_COLUMN_WIDTH}px`,
|
|
790
|
+
height: `${barHeight}rem`,
|
|
791
|
+
}}
|
|
792
|
+
>
|
|
793
|
+
{/* Grid background for date columns - this maintains proper borders */}
|
|
794
|
+
<div
|
|
795
|
+
className={cn('grid h-full')}
|
|
796
|
+
style={{
|
|
797
|
+
gridTemplateColumns: `repeat(${visibleDates.length}, minmax(0, 1fr))`,
|
|
798
|
+
}}
|
|
799
|
+
>
|
|
800
|
+
{visibleDates.map((date, dateIndex) => {
|
|
801
|
+
const dateKey =
|
|
802
|
+
tz === 'auto'
|
|
803
|
+
? dayjs(date).format('YYYY-MM-DD')
|
|
804
|
+
: dayjs(date).tz(tz).format('YYYY-MM-DD');
|
|
805
|
+
|
|
806
|
+
const dateEvents = getUniqueEventsForDate(dateIndex);
|
|
807
|
+
const shouldShowAll = dateEvents.length === MAX_EVENTS_DISPLAY + 1;
|
|
808
|
+
const isExpanded = expandedDates.includes(dateKey) || shouldShowAll;
|
|
809
|
+
const hiddenCount =
|
|
810
|
+
!isExpanded && !shouldShowAll
|
|
811
|
+
? Math.max(0, dateEvents.length - MAX_EVENTS_DISPLAY)
|
|
812
|
+
: 0;
|
|
813
|
+
|
|
814
|
+
// Check if this column is a drop target
|
|
815
|
+
const isDropTarget =
|
|
816
|
+
dragState.isDragging && dragState.targetDateIndex === dateIndex;
|
|
817
|
+
const isOriginalColumn =
|
|
818
|
+
dragState.isDragging && dragState.originalDateIndex === dateIndex;
|
|
819
|
+
|
|
820
|
+
return (
|
|
821
|
+
<div
|
|
822
|
+
key={`all-day-column-${dateKey}`}
|
|
823
|
+
className={cn(
|
|
824
|
+
'group flex h-full flex-col justify-start border-l transition-colors duration-200 last:border-r',
|
|
825
|
+
// Drop zone visual feedback
|
|
826
|
+
isDropTarget &&
|
|
827
|
+
!isOriginalColumn &&
|
|
828
|
+
'border-blue-300 bg-blue-100 dark:border-blue-700 dark:bg-blue-900/30',
|
|
829
|
+
isOriginalColumn &&
|
|
830
|
+
'border-red-300 bg-red-100 dark:border-red-700 dark:bg-red-900/30',
|
|
831
|
+
// Normal hover state (only when not dragging)
|
|
832
|
+
!dragState.isDragging && 'hover:bg-muted/20'
|
|
833
|
+
)}
|
|
834
|
+
>
|
|
835
|
+
{/* Show/hide expansion button */}
|
|
836
|
+
{hiddenCount > 0 && (
|
|
837
|
+
<div
|
|
838
|
+
className="flex cursor-pointer items-center justify-center rounded-sm px-2 py-1 font-medium text-muted-foreground text-xs transition-colors hover:bg-muted/40"
|
|
839
|
+
onClick={() => toggleDateExpansion(dateKey)}
|
|
840
|
+
style={{
|
|
841
|
+
position: 'absolute',
|
|
842
|
+
top: `${MAX_EVENTS_DISPLAY * 1.7}rem`,
|
|
843
|
+
left: `${(dateIndex * 100) / visibleDates.length}%`,
|
|
844
|
+
width: `${100 / visibleDates.length}%`,
|
|
845
|
+
zIndex: 10,
|
|
846
|
+
}}
|
|
847
|
+
>
|
|
848
|
+
<ChevronDown className="mr-1 h-3 w-3" />
|
|
849
|
+
{hiddenCount} more
|
|
850
|
+
</div>
|
|
851
|
+
)}
|
|
852
|
+
|
|
853
|
+
{isExpanded &&
|
|
854
|
+
!shouldShowAll &&
|
|
855
|
+
dateEvents.length > MAX_EVENTS_DISPLAY && (
|
|
856
|
+
<div
|
|
857
|
+
className="flex cursor-pointer items-center justify-center rounded-sm px-2 py-1 font-medium text-muted-foreground text-xs transition-colors hover:bg-muted/40"
|
|
858
|
+
onClick={() => toggleDateExpansion(dateKey)}
|
|
859
|
+
style={{
|
|
860
|
+
position: 'absolute',
|
|
861
|
+
top: `${dateEvents.length * 1.7}rem`,
|
|
862
|
+
left: `${(dateIndex * 100) / visibleDates.length}%`,
|
|
863
|
+
width: `${100 / visibleDates.length}%`,
|
|
864
|
+
zIndex: 10,
|
|
865
|
+
}}
|
|
866
|
+
>
|
|
867
|
+
<ChevronUp className="mr-1 h-3 w-3" />
|
|
868
|
+
Show less
|
|
869
|
+
</div>
|
|
870
|
+
)}
|
|
871
|
+
</div>
|
|
872
|
+
);
|
|
873
|
+
})}
|
|
874
|
+
</div>
|
|
875
|
+
|
|
876
|
+
{/* Drag preview span - shows where the event will be placed */}
|
|
877
|
+
{dragState.isDragging &&
|
|
878
|
+
dragState.previewSpan &&
|
|
879
|
+
dragState.draggedEvent && (
|
|
880
|
+
<div
|
|
881
|
+
className={cn(
|
|
882
|
+
'absolute rounded-sm border-2 border-dashed transition-all duration-150',
|
|
883
|
+
'border-blue-400 bg-blue-100/60 dark:border-blue-600 dark:bg-blue-900/30',
|
|
884
|
+
'pointer-events-none'
|
|
885
|
+
)}
|
|
886
|
+
style={{
|
|
887
|
+
left: `calc(${(dragState.previewSpan.startIndex * 100) / visibleDates.length}% + ${EVENT_LEFT_OFFSET}px)`,
|
|
888
|
+
width: `calc(${(dragState.previewSpan.span * 100) / visibleDates.length}% - ${EVENT_LEFT_OFFSET * 2}px)`,
|
|
889
|
+
top: `${dragState.previewSpan.row * 1.6 + 0.25}rem`,
|
|
890
|
+
height: '1.35rem',
|
|
891
|
+
zIndex: 8,
|
|
892
|
+
}}
|
|
893
|
+
/>
|
|
894
|
+
)}
|
|
895
|
+
|
|
896
|
+
{/* Absolute positioned spanning events */}
|
|
897
|
+
{/* Location timeline strip at the top */}
|
|
898
|
+
<LocationTimeline
|
|
899
|
+
visibleDates={visibleDates}
|
|
900
|
+
locationSpans={locationSpans}
|
|
901
|
+
tz={tz}
|
|
902
|
+
addEvent={addEvent}
|
|
903
|
+
updateEvent={updateEvent}
|
|
904
|
+
openModal={openModal}
|
|
905
|
+
deleteEvent={deleteEvent}
|
|
906
|
+
/>
|
|
907
|
+
|
|
908
|
+
{/* Absolute positioned spanning events */}
|
|
909
|
+
{regularSpans.map((eventSpan) => {
|
|
910
|
+
const { event, startIndex, span, row, isCutOffStart, isCutOffEnd } =
|
|
911
|
+
eventSpan;
|
|
912
|
+
const { bg, border, text } = getEventStyles(event.color || 'BLUE');
|
|
913
|
+
|
|
914
|
+
// Use the assigned row directly instead of calculating it
|
|
915
|
+
const eventRow = row;
|
|
916
|
+
|
|
917
|
+
// Check if this event should be visible based on expansion state
|
|
918
|
+
const shouldHideEvent = visibleDates.some((date, dateIndex) => {
|
|
919
|
+
if (dateIndex < startIndex || dateIndex > startIndex + span - 1)
|
|
920
|
+
return false;
|
|
921
|
+
|
|
922
|
+
const dateKey =
|
|
923
|
+
tz === 'auto'
|
|
924
|
+
? dayjs(date).format('YYYY-MM-DD')
|
|
925
|
+
: dayjs(date).tz(tz).format('YYYY-MM-DD');
|
|
926
|
+
|
|
927
|
+
const dateEvents = getUniqueEventsForDate(dateIndex);
|
|
928
|
+
const shouldShowAll = dateEvents.length === MAX_EVENTS_DISPLAY + 1;
|
|
929
|
+
const isExpanded = expandedDates.includes(dateKey) || shouldShowAll;
|
|
930
|
+
const visibleCount = isExpanded
|
|
931
|
+
? dateEvents.length
|
|
932
|
+
: Math.min(dateEvents.length, MAX_EVENTS_DISPLAY);
|
|
933
|
+
|
|
934
|
+
return eventRow >= visibleCount;
|
|
935
|
+
});
|
|
936
|
+
|
|
937
|
+
if (shouldHideEvent) return null;
|
|
938
|
+
|
|
939
|
+
// Check if this event is currently being dragged
|
|
940
|
+
const isDraggedEvent =
|
|
941
|
+
dragState.isDragging && dragState.draggedEvent?.id === event.id;
|
|
942
|
+
|
|
943
|
+
// Calculate top offset based on location strip presence
|
|
944
|
+
const topOffset =
|
|
945
|
+
locationSpans.length > 0 ? LOCATION_TIMELINE_HEIGHT_REM : 0;
|
|
946
|
+
|
|
947
|
+
return (
|
|
948
|
+
<div
|
|
949
|
+
key={`spanning-event-${event.id}`}
|
|
950
|
+
className={cn(
|
|
951
|
+
'absolute flex items-center rounded-sm border-l-2 px-2 py-1 font-semibold text-xs transition-all duration-200',
|
|
952
|
+
// Cursor changes based on drag state
|
|
953
|
+
dragState.isDragging
|
|
954
|
+
? 'cursor-grabbing'
|
|
955
|
+
: 'cursor-grab hover:cursor-grab',
|
|
956
|
+
// Visual feedback for dragging
|
|
957
|
+
isDraggedEvent && 'scale-95 opacity-30',
|
|
958
|
+
// Normal styling
|
|
959
|
+
bg,
|
|
960
|
+
border,
|
|
961
|
+
text,
|
|
962
|
+
// Special styling for cut-off events
|
|
963
|
+
(isCutOffStart || isCutOffEnd) && 'border-dashed'
|
|
964
|
+
)}
|
|
965
|
+
style={{
|
|
966
|
+
left: `calc(${(startIndex * 100) / visibleDates.length}% + ${EVENT_LEFT_OFFSET}px)`,
|
|
967
|
+
width: `calc(${(span * 100) / visibleDates.length}% - ${EVENT_LEFT_OFFSET * 2}px)`,
|
|
968
|
+
top: `${eventRow * 1.6 + 0.25 + topOffset}rem`,
|
|
969
|
+
height: '1.35rem',
|
|
970
|
+
zIndex: isDraggedEvent ? 10 : 5,
|
|
971
|
+
}}
|
|
972
|
+
onClick={() => {
|
|
973
|
+
// Only open modal if not dragging (locked events can still be clicked to edit)
|
|
974
|
+
if (!dragState.isDragging) {
|
|
975
|
+
openModal(event.id, 'all-day');
|
|
976
|
+
}
|
|
977
|
+
}}
|
|
978
|
+
onMouseDown={(e) => handleEventMouseDown(e, eventSpan)}
|
|
979
|
+
onTouchStart={(e) => handleEventTouchStart(e, eventSpan)}
|
|
980
|
+
>
|
|
981
|
+
{/* Cut-off indicator for events that start before visible range */}
|
|
982
|
+
{isCutOffStart && (
|
|
983
|
+
<span
|
|
984
|
+
className="mr-1 text-xs opacity-75"
|
|
985
|
+
title="Event continues from previous days"
|
|
986
|
+
>
|
|
987
|
+
←
|
|
988
|
+
</span>
|
|
989
|
+
)}
|
|
990
|
+
{/* Use shared EventContent component */}
|
|
991
|
+
<EventContent event={event} />
|
|
992
|
+
{/* Cut-off indicator for events that end after visible range */}
|
|
993
|
+
{isCutOffEnd && (
|
|
994
|
+
<span
|
|
995
|
+
className="ml-1 text-xs opacity-75"
|
|
996
|
+
title="Event continues to next days"
|
|
997
|
+
>
|
|
998
|
+
→
|
|
999
|
+
</span>
|
|
1000
|
+
)}
|
|
1001
|
+
</div>
|
|
1002
|
+
);
|
|
1003
|
+
})}
|
|
1004
|
+
</div>
|
|
1005
|
+
|
|
1006
|
+
{/* Enhanced drag preview with better positioning */}
|
|
1007
|
+
{dragState.isDragging && dragState.draggedEvent && (
|
|
1008
|
+
<div
|
|
1009
|
+
ref={dragPreviewRef}
|
|
1010
|
+
className={cn(
|
|
1011
|
+
'pointer-events-none fixed z-50 truncate rounded-sm border-l-2 px-2 py-1 font-semibold text-xs shadow-xl',
|
|
1012
|
+
'transform backdrop-blur-sm transition-none',
|
|
1013
|
+
getEventStyles(dragState.draggedEvent.color || 'BLUE').bg,
|
|
1014
|
+
getEventStyles(dragState.draggedEvent.color || 'BLUE').border,
|
|
1015
|
+
getEventStyles(dragState.draggedEvent.color || 'BLUE').text,
|
|
1016
|
+
'opacity-90'
|
|
1017
|
+
)}
|
|
1018
|
+
style={{
|
|
1019
|
+
left: `${dragState.currentX + 15}px`,
|
|
1020
|
+
top: `${dragState.currentY - 20}px`,
|
|
1021
|
+
height: '1.35rem',
|
|
1022
|
+
minWidth: '120px',
|
|
1023
|
+
maxWidth: '250px',
|
|
1024
|
+
transform: 'rotate(-2deg)',
|
|
1025
|
+
}}
|
|
1026
|
+
>
|
|
1027
|
+
{/* Use shared EventContent component */}
|
|
1028
|
+
<EventContent event={dragState.draggedEvent} />
|
|
1029
|
+
</div>
|
|
1030
|
+
)}
|
|
1031
|
+
</div>
|
|
1032
|
+
);
|
|
1033
|
+
};
|