@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,1544 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { zodResolver } from '@hookform/resolvers/zod';
|
|
4
|
+
import { calendarEventsSchema } from '@tuturuuu/ai/calendar/events';
|
|
5
|
+
import { useObject } from '@tuturuuu/ai/object/core';
|
|
6
|
+
import {
|
|
7
|
+
AlertCircle,
|
|
8
|
+
Brain,
|
|
9
|
+
Calendar as CalendarIcon,
|
|
10
|
+
Check,
|
|
11
|
+
ChevronLeft,
|
|
12
|
+
ChevronRight,
|
|
13
|
+
Clock,
|
|
14
|
+
FileText,
|
|
15
|
+
Image as ImageIcon,
|
|
16
|
+
Info,
|
|
17
|
+
Loader2,
|
|
18
|
+
Lock,
|
|
19
|
+
MapPin,
|
|
20
|
+
Mic,
|
|
21
|
+
Sparkles,
|
|
22
|
+
StopCircle,
|
|
23
|
+
Trash2,
|
|
24
|
+
Unlock,
|
|
25
|
+
X,
|
|
26
|
+
} from '@tuturuuu/icons';
|
|
27
|
+
import type { CalendarEvent } from '@tuturuuu/types/primitives/calendar-event';
|
|
28
|
+
import type { SupportedColor } from '@tuturuuu/types/primitives/SupportedColors';
|
|
29
|
+
import { Badge } from '@tuturuuu/ui/badge';
|
|
30
|
+
import { Button } from '@tuturuuu/ui/button';
|
|
31
|
+
import {
|
|
32
|
+
Dialog,
|
|
33
|
+
DialogContent,
|
|
34
|
+
DialogDescription,
|
|
35
|
+
DialogHeader,
|
|
36
|
+
DialogTitle,
|
|
37
|
+
} from '@tuturuuu/ui/dialog';
|
|
38
|
+
import {
|
|
39
|
+
Form,
|
|
40
|
+
FormControl,
|
|
41
|
+
FormDescription,
|
|
42
|
+
FormField,
|
|
43
|
+
FormItem,
|
|
44
|
+
FormLabel,
|
|
45
|
+
FormMessage,
|
|
46
|
+
} from '@tuturuuu/ui/form';
|
|
47
|
+
import { useCalendar } from '@tuturuuu/ui/hooks/use-calendar';
|
|
48
|
+
import { useForm } from '@tuturuuu/ui/hooks/use-form';
|
|
49
|
+
import { useToast } from '@tuturuuu/ui/hooks/use-toast';
|
|
50
|
+
import { ScrollArea } from '@tuturuuu/ui/scroll-area';
|
|
51
|
+
import { Separator } from '@tuturuuu/ui/separator';
|
|
52
|
+
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@tuturuuu/ui/tabs';
|
|
53
|
+
import {
|
|
54
|
+
createAllDayEvent,
|
|
55
|
+
isAllDayEvent,
|
|
56
|
+
} from '@tuturuuu/utils/calendar-utils';
|
|
57
|
+
import { getEventStyles } from '@tuturuuu/utils/color-helper';
|
|
58
|
+
import { cn } from '@tuturuuu/utils/format';
|
|
59
|
+
import { format } from 'date-fns';
|
|
60
|
+
import dayjs from 'dayjs';
|
|
61
|
+
import ts from 'dayjs/plugin/timezone';
|
|
62
|
+
import utc from 'dayjs/plugin/utc';
|
|
63
|
+
import Image from 'next/image';
|
|
64
|
+
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
65
|
+
import { z } from 'zod';
|
|
66
|
+
import { Alert, AlertDescription, AlertTitle } from '../../alert';
|
|
67
|
+
import { AutosizeTextarea } from '../../custom/autosize-textarea';
|
|
68
|
+
import {
|
|
69
|
+
COLOR_OPTIONS,
|
|
70
|
+
DateError,
|
|
71
|
+
EventColorPicker,
|
|
72
|
+
EventDateTimePicker,
|
|
73
|
+
EventDescriptionInput,
|
|
74
|
+
EventLocationInput,
|
|
75
|
+
EventTitleInput,
|
|
76
|
+
EventToggleSwitch,
|
|
77
|
+
OverlapWarning,
|
|
78
|
+
} from './event-form-components';
|
|
79
|
+
import { useCalendarSettings } from './settings/settings-context';
|
|
80
|
+
|
|
81
|
+
dayjs.extend(ts);
|
|
82
|
+
dayjs.extend(utc);
|
|
83
|
+
|
|
84
|
+
const AIFormSchema = z.object({
|
|
85
|
+
prompt: z.string().min(1, 'Please enter a prompt to generate an event'),
|
|
86
|
+
timezone: z
|
|
87
|
+
.string()
|
|
88
|
+
.default(() => Intl.DateTimeFormat().resolvedOptions().timeZone),
|
|
89
|
+
smart_scheduling: z.boolean().default(true),
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
export function EventModal() {
|
|
93
|
+
const { toast } = useToast();
|
|
94
|
+
const startPickerRef = useRef<HTMLButtonElement>(null);
|
|
95
|
+
const endPickerRef = useRef<HTMLButtonElement>(null);
|
|
96
|
+
|
|
97
|
+
const {
|
|
98
|
+
activeEvent,
|
|
99
|
+
isModalOpen,
|
|
100
|
+
closeModal,
|
|
101
|
+
addEvent,
|
|
102
|
+
updateEvent,
|
|
103
|
+
deleteEvent,
|
|
104
|
+
getEvents,
|
|
105
|
+
defaultNewEventTab,
|
|
106
|
+
} = useCalendar();
|
|
107
|
+
const { settings } = useCalendarSettings();
|
|
108
|
+
|
|
109
|
+
const tz = settings?.timezone?.timezone;
|
|
110
|
+
|
|
111
|
+
// State for manual event creation/editing
|
|
112
|
+
const [event, setEvent] = useState<Partial<CalendarEvent>>({
|
|
113
|
+
title: '',
|
|
114
|
+
description: '',
|
|
115
|
+
start_at: new Date().toISOString(),
|
|
116
|
+
end_at: new Date(Date.now() + 60 * 60 * 1000).toISOString(), // Default to 1 hour
|
|
117
|
+
color: 'BLUE',
|
|
118
|
+
location: '',
|
|
119
|
+
locked: false,
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
// State for AI event generation
|
|
123
|
+
const [generatedEvents, setGeneratedEvents] =
|
|
124
|
+
useState<Partial<CalendarEvent>[]>();
|
|
125
|
+
const [currentEventIndex, setCurrentEventIndex] = useState(0);
|
|
126
|
+
const [userTimezone] = useState(
|
|
127
|
+
Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
128
|
+
);
|
|
129
|
+
|
|
130
|
+
// Get the current event being previewed
|
|
131
|
+
const generatedEvent = generatedEvents?.[currentEventIndex];
|
|
132
|
+
|
|
133
|
+
// Determine if we're editing an existing event
|
|
134
|
+
const isEditing = !!(activeEvent?.id && activeEvent.id !== 'new');
|
|
135
|
+
|
|
136
|
+
// Shared state
|
|
137
|
+
const [activeTab, setActiveTab] = useState<'manual' | 'ai' | 'preview'>(
|
|
138
|
+
isEditing ? 'manual' : defaultNewEventTab // Default tab for new events
|
|
139
|
+
);
|
|
140
|
+
const [isAllDay, setIsAllDay] = useState(false);
|
|
141
|
+
const [isSaving, setIsSaving] = useState(false);
|
|
142
|
+
const [isDeleting, setIsDeleting] = useState(false);
|
|
143
|
+
const [dateError, setDateError] = useState<string | null>(null);
|
|
144
|
+
const [overlappingEvents, setOverlappingEvents] = useState<CalendarEvent[]>(
|
|
145
|
+
[]
|
|
146
|
+
);
|
|
147
|
+
const [showOverlapWarning, setShowOverlapWarning] = useState(false);
|
|
148
|
+
const [aiSuggestions, setAiSuggestions] = useState<string[]>([]);
|
|
149
|
+
|
|
150
|
+
// Store previous time values for toggling all-day
|
|
151
|
+
const [prevTimes, setPrevTimes] = useState<{
|
|
152
|
+
timed: { start: string | null; end: string | null };
|
|
153
|
+
allday: { start: string | null; end: string | null };
|
|
154
|
+
}>({ timed: { start: null, end: null }, allday: { start: null, end: null } });
|
|
155
|
+
|
|
156
|
+
// AI form
|
|
157
|
+
const aiForm = useForm({
|
|
158
|
+
resolver: zodResolver(AIFormSchema),
|
|
159
|
+
defaultValues: {
|
|
160
|
+
prompt: '',
|
|
161
|
+
timezone: userTimezone,
|
|
162
|
+
smart_scheduling: true,
|
|
163
|
+
},
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
// AI generation
|
|
167
|
+
const { object, submit, error, isLoading } = useObject({
|
|
168
|
+
api: '/api/v1/calendar/events/generate',
|
|
169
|
+
schema: calendarEventsSchema,
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
// Function to check for overlapping events
|
|
173
|
+
const checkForOverlaps = useCallback(
|
|
174
|
+
(eventToCheck: Partial<CalendarEvent>) => {
|
|
175
|
+
if (!eventToCheck.start_at || !eventToCheck.end_at) return;
|
|
176
|
+
|
|
177
|
+
const allEvents = getEvents();
|
|
178
|
+
const eventStart = new Date(eventToCheck.start_at);
|
|
179
|
+
const eventEnd = new Date(eventToCheck.end_at);
|
|
180
|
+
|
|
181
|
+
// Find events that overlap with this event
|
|
182
|
+
const overlaps = allEvents.filter((existingEvent) => {
|
|
183
|
+
// Skip comparing with the current event being edited
|
|
184
|
+
if (existingEvent.id === activeEvent?.id) return false;
|
|
185
|
+
|
|
186
|
+
const existingStart = new Date(existingEvent.start_at);
|
|
187
|
+
const existingEnd = new Date(existingEvent.end_at);
|
|
188
|
+
|
|
189
|
+
// Check if the events are on the same day
|
|
190
|
+
const isSameDay =
|
|
191
|
+
existingStart.getDate() === eventStart.getDate() &&
|
|
192
|
+
existingStart.getMonth() === eventStart.getMonth() &&
|
|
193
|
+
existingStart.getFullYear() === eventStart.getFullYear();
|
|
194
|
+
|
|
195
|
+
if (!isSameDay) return false;
|
|
196
|
+
|
|
197
|
+
// Check for time overlap
|
|
198
|
+
return !(existingEnd <= eventStart || existingStart >= eventEnd);
|
|
199
|
+
});
|
|
200
|
+
|
|
201
|
+
setOverlappingEvents(overlaps);
|
|
202
|
+
setShowOverlapWarning(overlaps.length > 0);
|
|
203
|
+
},
|
|
204
|
+
[activeEvent, getEvents]
|
|
205
|
+
);
|
|
206
|
+
|
|
207
|
+
// Handle AI-generated events
|
|
208
|
+
useEffect(() => {
|
|
209
|
+
if (object?.events && !isLoading) {
|
|
210
|
+
// Process the generated events
|
|
211
|
+
const processedEvents = (object.events || []) as Partial<CalendarEvent>[];
|
|
212
|
+
|
|
213
|
+
setGeneratedEvents(processedEvents);
|
|
214
|
+
setCurrentEventIndex(0);
|
|
215
|
+
|
|
216
|
+
// Find overlapping events for the first event
|
|
217
|
+
if (processedEvents.length > 0 && aiForm.getValues().smart_scheduling) {
|
|
218
|
+
const firstEvent = processedEvents[0];
|
|
219
|
+
if (firstEvent?.start_at && firstEvent.end_at) {
|
|
220
|
+
checkForOverlaps(firstEvent as Partial<CalendarEvent>);
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
setActiveTab('preview');
|
|
225
|
+
}
|
|
226
|
+
}, [object, isLoading, aiForm, checkForOverlaps]);
|
|
227
|
+
|
|
228
|
+
// Reset form when modal opens/closes or active event changes
|
|
229
|
+
useEffect(() => {
|
|
230
|
+
if (activeEvent) {
|
|
231
|
+
// Clean the event data to only include valid CalendarEvent fields
|
|
232
|
+
const cleanEventData: Partial<CalendarEvent> = {
|
|
233
|
+
id: activeEvent.id,
|
|
234
|
+
title: activeEvent.title || '',
|
|
235
|
+
description: activeEvent.description || '',
|
|
236
|
+
start_at: activeEvent.start_at,
|
|
237
|
+
end_at: activeEvent.end_at,
|
|
238
|
+
color: activeEvent.color || 'BLUE',
|
|
239
|
+
location: activeEvent.location || '',
|
|
240
|
+
locked: activeEvent.locked || false,
|
|
241
|
+
ws_id: activeEvent.ws_id,
|
|
242
|
+
google_event_id: activeEvent.google_event_id,
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
setEvent(cleanEventData);
|
|
246
|
+
|
|
247
|
+
// Only check for all-day if this is an existing event (not a new one)
|
|
248
|
+
if (activeEvent.id !== 'new') {
|
|
249
|
+
setIsAllDay(isAllDayEvent(cleanEventData as CalendarEvent));
|
|
250
|
+
} else {
|
|
251
|
+
// For new events, always start with isAllDay as false
|
|
252
|
+
setIsAllDay(false);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
// Check for overlapping events
|
|
256
|
+
checkForOverlaps(cleanEventData);
|
|
257
|
+
|
|
258
|
+
// Set active tab to manual when editing an existing event
|
|
259
|
+
setActiveTab(isEditing ? 'manual' : defaultNewEventTab);
|
|
260
|
+
} else {
|
|
261
|
+
// Set default values for new event
|
|
262
|
+
const now = new Date();
|
|
263
|
+
const oneHourLater = new Date(now.getTime() + 60 * 60 * 1000);
|
|
264
|
+
|
|
265
|
+
const newEvent = {
|
|
266
|
+
title: '',
|
|
267
|
+
description: '',
|
|
268
|
+
start_at: now.toISOString(),
|
|
269
|
+
end_at: oneHourLater.toISOString(),
|
|
270
|
+
color: 'BLUE' as SupportedColor,
|
|
271
|
+
location: '',
|
|
272
|
+
locked: false,
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
setEvent(newEvent);
|
|
276
|
+
setIsAllDay(false);
|
|
277
|
+
|
|
278
|
+
// Reset AI form
|
|
279
|
+
aiForm.reset();
|
|
280
|
+
setGeneratedEvents([]);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// Clear any error messages
|
|
284
|
+
setDateError(null);
|
|
285
|
+
}, [activeEvent, checkForOverlaps, aiForm, defaultNewEventTab, isEditing]);
|
|
286
|
+
|
|
287
|
+
// Handle manual event save
|
|
288
|
+
const handleManualSave = async () => {
|
|
289
|
+
if (!event.start_at || !event.end_at) return;
|
|
290
|
+
|
|
291
|
+
const startDate = new Date(event.start_at);
|
|
292
|
+
const endDate = new Date(event.end_at);
|
|
293
|
+
|
|
294
|
+
if (endDate <= startDate) {
|
|
295
|
+
setDateError('End date must be after start date');
|
|
296
|
+
return;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
setDateError(null);
|
|
300
|
+
setIsSaving(true);
|
|
301
|
+
|
|
302
|
+
try {
|
|
303
|
+
// Clean event data to only include fields that should be updated
|
|
304
|
+
const eventData: Partial<CalendarEvent> = {
|
|
305
|
+
title: event.title || '',
|
|
306
|
+
description: event.description || '',
|
|
307
|
+
start_at: event.start_at,
|
|
308
|
+
end_at: event.end_at,
|
|
309
|
+
color: event.color || 'BLUE',
|
|
310
|
+
location: event.location || '',
|
|
311
|
+
locked: event.locked || false,
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
if (activeEvent?.id === 'new') {
|
|
315
|
+
await addEvent(eventData as Omit<CalendarEvent, 'id'>);
|
|
316
|
+
} else if (activeEvent?.id) {
|
|
317
|
+
// For multi-day events, always use the original event ID
|
|
318
|
+
// The activeEvent should already contain the original event from the database
|
|
319
|
+
const eventId = activeEvent.id;
|
|
320
|
+
|
|
321
|
+
if (eventId && eventId !== 'new') {
|
|
322
|
+
await updateEvent(eventId, eventData);
|
|
323
|
+
} else {
|
|
324
|
+
throw new Error('Invalid event ID');
|
|
325
|
+
}
|
|
326
|
+
} else {
|
|
327
|
+
throw new Error('No event to save');
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
closeModal();
|
|
331
|
+
} catch (_) {
|
|
332
|
+
toast({
|
|
333
|
+
title: 'Error',
|
|
334
|
+
description: 'Failed to save or sync event. Please try again.',
|
|
335
|
+
variant: 'destructive',
|
|
336
|
+
});
|
|
337
|
+
} finally {
|
|
338
|
+
setIsSaving(false);
|
|
339
|
+
}
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
// Handle AI event generation
|
|
343
|
+
const handleGenerateEvent = async (values: z.infer<typeof AIFormSchema>) => {
|
|
344
|
+
try {
|
|
345
|
+
// Include timezone in the prompt for accurate time conversion
|
|
346
|
+
const promptWithTimezone = `${values.prompt}\n\nUser timezone: ${values.timezone}`;
|
|
347
|
+
|
|
348
|
+
// Get existing events for smart scheduling
|
|
349
|
+
const existingEvents = values.smart_scheduling ? getEvents() : [];
|
|
350
|
+
|
|
351
|
+
// Generate helpful suggestions based on the prompt
|
|
352
|
+
const suggestions = [
|
|
353
|
+
'Consider adding a buffer time before/after these events',
|
|
354
|
+
'These events might benefit from reminder notifications',
|
|
355
|
+
'Based on your schedule, early morning might be better for focus',
|
|
356
|
+
'Consider adding meeting agenda or preparation notes',
|
|
357
|
+
];
|
|
358
|
+
|
|
359
|
+
// Add category-based suggestions
|
|
360
|
+
if (settings?.categoryColors?.categories.length > 0) {
|
|
361
|
+
const categoryNames = settings.categoryColors.categories
|
|
362
|
+
.map((cat) => cat.name)
|
|
363
|
+
.join(', ');
|
|
364
|
+
suggestions.push(
|
|
365
|
+
`You have categories set up: ${categoryNames}. Events will be colored based on these categories.`
|
|
366
|
+
);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
setAiSuggestions(suggestions.slice(0, 3)); // Show up to 3 relevant suggestions
|
|
370
|
+
|
|
371
|
+
// Format categories for the AI request
|
|
372
|
+
const formattedCategories = settings?.categoryColors?.categories.map(
|
|
373
|
+
(category) => ({
|
|
374
|
+
name: category.name,
|
|
375
|
+
color: category.color.toLowerCase(),
|
|
376
|
+
})
|
|
377
|
+
);
|
|
378
|
+
|
|
379
|
+
submit({
|
|
380
|
+
prompt: promptWithTimezone,
|
|
381
|
+
current_time: new Date().toISOString(),
|
|
382
|
+
smart_scheduling: values.smart_scheduling,
|
|
383
|
+
existing_events: values.smart_scheduling ? existingEvents : undefined,
|
|
384
|
+
categories: formattedCategories,
|
|
385
|
+
});
|
|
386
|
+
} catch (_) {
|
|
387
|
+
toast({
|
|
388
|
+
title: 'Error generating events',
|
|
389
|
+
description: 'Please try again with a different prompt',
|
|
390
|
+
variant: 'destructive',
|
|
391
|
+
});
|
|
392
|
+
}
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
// Handle AI event save
|
|
396
|
+
const handleAISave = async () => {
|
|
397
|
+
if (generatedEvents?.length === 0) return;
|
|
398
|
+
|
|
399
|
+
setIsSaving(true);
|
|
400
|
+
try {
|
|
401
|
+
const eventsToSave = generatedEvents;
|
|
402
|
+
const savedEvents: CalendarEvent[] = [];
|
|
403
|
+
const failedEvents: Array<{ event: CalendarEvent; error: unknown }> = [];
|
|
404
|
+
|
|
405
|
+
// Save each event individually
|
|
406
|
+
for (const eventData of eventsToSave || []) {
|
|
407
|
+
try {
|
|
408
|
+
const calendarEvent: Omit<CalendarEvent, 'id'> = {
|
|
409
|
+
title: eventData.title || 'New Event',
|
|
410
|
+
description: eventData.description || '',
|
|
411
|
+
start_at: eventData.start_at || '',
|
|
412
|
+
end_at: eventData.end_at || '',
|
|
413
|
+
color: eventData.color || 'BLUE',
|
|
414
|
+
location: eventData.location || '',
|
|
415
|
+
locked: eventData.locked || false,
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
const savedEvent = await addEvent(calendarEvent);
|
|
419
|
+
if (savedEvent) savedEvents.push(savedEvent);
|
|
420
|
+
} catch (error) {
|
|
421
|
+
failedEvents.push({ event: eventData as CalendarEvent, error });
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// Show success notification
|
|
426
|
+
if (savedEvents.length > 0) {
|
|
427
|
+
toast({
|
|
428
|
+
title: 'Success',
|
|
429
|
+
description: `${savedEvents.length}/${eventsToSave?.length || 0} event${savedEvents.length > 1 ? 's' : ''} saved`,
|
|
430
|
+
});
|
|
431
|
+
closeModal();
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
// If there are failed events, show an error notification
|
|
435
|
+
if (failedEvents.length > 0) {
|
|
436
|
+
toast({
|
|
437
|
+
title: 'Warning',
|
|
438
|
+
description: `${failedEvents.length} event${failedEvents.length > 1 ? 's' : ''} failed to save`,
|
|
439
|
+
variant: 'destructive',
|
|
440
|
+
});
|
|
441
|
+
}
|
|
442
|
+
} catch (_) {
|
|
443
|
+
toast({
|
|
444
|
+
title: 'Error',
|
|
445
|
+
description: 'Failed to save or sync AI-generated events.',
|
|
446
|
+
variant: 'destructive',
|
|
447
|
+
});
|
|
448
|
+
} finally {
|
|
449
|
+
setIsSaving(false);
|
|
450
|
+
}
|
|
451
|
+
};
|
|
452
|
+
|
|
453
|
+
// Handle event deletion
|
|
454
|
+
const handleDelete = async () => {
|
|
455
|
+
if (isRecording) {
|
|
456
|
+
stopRecording();
|
|
457
|
+
}
|
|
458
|
+
if (!activeEvent?.id) return;
|
|
459
|
+
|
|
460
|
+
setIsDeleting(true);
|
|
461
|
+
try {
|
|
462
|
+
// For split events, use the original ID
|
|
463
|
+
const originalId = activeEvent.id;
|
|
464
|
+
|
|
465
|
+
// Make sure originalId is not undefined
|
|
466
|
+
if (originalId) {
|
|
467
|
+
await deleteEvent(originalId);
|
|
468
|
+
}
|
|
469
|
+
closeModal();
|
|
470
|
+
} catch (_) {
|
|
471
|
+
toast({
|
|
472
|
+
title: 'Error',
|
|
473
|
+
description: 'Failed to delete event. Please try again.',
|
|
474
|
+
variant: 'destructive',
|
|
475
|
+
});
|
|
476
|
+
} finally {
|
|
477
|
+
setIsDeleting(false);
|
|
478
|
+
}
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
// Handle start date change
|
|
482
|
+
const handleStartDateChange = (date: Date | undefined) => {
|
|
483
|
+
if (!date) return;
|
|
484
|
+
|
|
485
|
+
setEvent((prev) => {
|
|
486
|
+
const newStartDate = tz === 'auto' ? dayjs(date) : dayjs(date).tz(tz);
|
|
487
|
+
const endDate =
|
|
488
|
+
tz === 'auto'
|
|
489
|
+
? dayjs(prev.end_at || '')
|
|
490
|
+
: dayjs(prev.end_at || '').tz(tz);
|
|
491
|
+
const newEvent = { ...prev, start_at: date.toISOString() };
|
|
492
|
+
|
|
493
|
+
if (isAllDay) {
|
|
494
|
+
// For all-day, keep end_at as is if it's after or equal to start_at + 1 day, otherwise set to start + 1 day
|
|
495
|
+
newEvent.start_at = newStartDate.startOf('day').toISOString();
|
|
496
|
+
let newEnd = dayjs(prev.end_at).isValid()
|
|
497
|
+
? dayjs(prev.end_at)
|
|
498
|
+
: newStartDate.startOf('day').add(1, 'day');
|
|
499
|
+
if (!newEnd.isAfter(newStartDate.startOf('day'))) {
|
|
500
|
+
newEnd = newStartDate.startOf('day').add(1, 'day');
|
|
501
|
+
}
|
|
502
|
+
newEvent.end_at = newEnd.toISOString();
|
|
503
|
+
} else {
|
|
504
|
+
// If end time is before or equal to new start time, set end time to 1 hour after start
|
|
505
|
+
if (!endDate.isAfter(newStartDate)) {
|
|
506
|
+
const plusOneHour = newStartDate.add(1, 'hour');
|
|
507
|
+
if (plusOneHour.date() !== newStartDate.date()) {
|
|
508
|
+
newEvent.end_at = plusOneHour.toISOString();
|
|
509
|
+
} else {
|
|
510
|
+
newEvent.end_at = plusOneHour.toISOString();
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
// Only show error if end <= start
|
|
516
|
+
if (
|
|
517
|
+
dayjs(newEvent.end_at).isSame(dayjs(newEvent.start_at)) ||
|
|
518
|
+
dayjs(newEvent.end_at).isBefore(dayjs(newEvent.start_at))
|
|
519
|
+
) {
|
|
520
|
+
setDateError('End time must be after start time.');
|
|
521
|
+
} else {
|
|
522
|
+
setDateError(null);
|
|
523
|
+
}
|
|
524
|
+
return newEvent;
|
|
525
|
+
});
|
|
526
|
+
};
|
|
527
|
+
|
|
528
|
+
// Handle end date change
|
|
529
|
+
const handleEndDateChange = (date: Date | undefined) => {
|
|
530
|
+
if (!date) return;
|
|
531
|
+
|
|
532
|
+
setEvent((prev) => {
|
|
533
|
+
let newEndDate = tz === 'auto' ? dayjs(date) : dayjs(date).tz(tz);
|
|
534
|
+
const startDate =
|
|
535
|
+
tz === 'auto'
|
|
536
|
+
? dayjs(prev.start_at || '')
|
|
537
|
+
: dayjs(prev.start_at || '').tz(tz);
|
|
538
|
+
const newEvent = { ...prev };
|
|
539
|
+
|
|
540
|
+
if (isAllDay) {
|
|
541
|
+
// For all-day, set end_at to the start of the day after the selected end date
|
|
542
|
+
let newEnd = newEndDate.startOf('day').add(1, 'day');
|
|
543
|
+
// Ensure end is not before or equal to start
|
|
544
|
+
if (!newEnd.isAfter(startDate.startOf('day'))) {
|
|
545
|
+
newEnd = startDate.startOf('day').add(1, 'day');
|
|
546
|
+
}
|
|
547
|
+
newEvent.end_at = newEnd.toISOString();
|
|
548
|
+
// Don't change start_at here
|
|
549
|
+
} else {
|
|
550
|
+
// If end is not after start, increment end date by one day and set the entered time
|
|
551
|
+
if (!newEndDate.isAfter(startDate)) {
|
|
552
|
+
// Use the time from the user's input, but increment the date by one day
|
|
553
|
+
newEndDate = newEndDate.add(1, 'day');
|
|
554
|
+
}
|
|
555
|
+
// If end is after start, accept as is
|
|
556
|
+
newEvent.end_at = newEndDate.toISOString();
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
if (!dayjs(newEvent.end_at).isAfter(dayjs(newEvent.start_at))) {
|
|
560
|
+
setDateError('End time must be after start time.');
|
|
561
|
+
} else {
|
|
562
|
+
setDateError(null);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
return newEvent;
|
|
566
|
+
});
|
|
567
|
+
};
|
|
568
|
+
|
|
569
|
+
// Handle all-day toggle
|
|
570
|
+
const handleAllDayChange = (checked: boolean) => {
|
|
571
|
+
setEvent((prev) => {
|
|
572
|
+
const startDate =
|
|
573
|
+
tz === 'auto' ? dayjs(prev.start_at) : dayjs(prev.start_at).tz(tz);
|
|
574
|
+
// Backup previous times before updating
|
|
575
|
+
const timedBackup = prevTimes.timed;
|
|
576
|
+
const alldayBackup = prevTimes.allday;
|
|
577
|
+
if (checked) {
|
|
578
|
+
setPrevTimes((old) => ({
|
|
579
|
+
...old,
|
|
580
|
+
timed: { start: prev.start_at || null, end: prev.end_at || null },
|
|
581
|
+
}));
|
|
582
|
+
// Restore previous all-day range if it exists
|
|
583
|
+
if (alldayBackup.start && alldayBackup.end) {
|
|
584
|
+
return {
|
|
585
|
+
...prev,
|
|
586
|
+
start_at: alldayBackup.start,
|
|
587
|
+
end_at: alldayBackup.end,
|
|
588
|
+
};
|
|
589
|
+
}
|
|
590
|
+
// Use the new createAllDayEvent helper for proper timezone handling
|
|
591
|
+
const { start_at, end_at } = createAllDayEvent(
|
|
592
|
+
startDate.toDate(),
|
|
593
|
+
tz,
|
|
594
|
+
1 // 1 day duration
|
|
595
|
+
);
|
|
596
|
+
return {
|
|
597
|
+
...prev,
|
|
598
|
+
start_at,
|
|
599
|
+
end_at,
|
|
600
|
+
};
|
|
601
|
+
} else {
|
|
602
|
+
setPrevTimes((old) => ({
|
|
603
|
+
...old,
|
|
604
|
+
allday: { start: prev.start_at || null, end: prev.end_at || null },
|
|
605
|
+
}));
|
|
606
|
+
// Restore previous timed range if it exists
|
|
607
|
+
if (timedBackup.start && timedBackup.end) {
|
|
608
|
+
return {
|
|
609
|
+
...prev,
|
|
610
|
+
start_at: timedBackup.start,
|
|
611
|
+
end_at: timedBackup.end,
|
|
612
|
+
};
|
|
613
|
+
}
|
|
614
|
+
const newStart =
|
|
615
|
+
tz === 'auto'
|
|
616
|
+
? dayjs().startOf('hour')
|
|
617
|
+
: dayjs().startOf('hour').tz(tz);
|
|
618
|
+
const newEnd = newStart.add(1, 'hour');
|
|
619
|
+
return {
|
|
620
|
+
...prev,
|
|
621
|
+
start_at: newStart.toISOString(),
|
|
622
|
+
end_at: newEnd.toISOString(),
|
|
623
|
+
};
|
|
624
|
+
}
|
|
625
|
+
});
|
|
626
|
+
setIsAllDay((prev) => !prev);
|
|
627
|
+
};
|
|
628
|
+
|
|
629
|
+
const [isRecording, setIsRecording] = useState(false);
|
|
630
|
+
const [isProcessingAudio, setIsProcessingAudio] = useState(false);
|
|
631
|
+
const [isProcessingImage, setIsProcessingImage] = useState(false);
|
|
632
|
+
const mediaRecorder = useRef<MediaRecorder | null>(null);
|
|
633
|
+
const mediaStream = useRef<MediaStream | null>(null);
|
|
634
|
+
const audioChunks = useRef<Blob[]>([]);
|
|
635
|
+
const fileInputRef = useRef<HTMLInputElement>(null);
|
|
636
|
+
|
|
637
|
+
const startRecording = async () => {
|
|
638
|
+
setIsRecording(true);
|
|
639
|
+
try {
|
|
640
|
+
const stream = await navigator.mediaDevices.getUserMedia({ audio: true });
|
|
641
|
+
mediaStream.current = stream;
|
|
642
|
+
mediaRecorder.current = new MediaRecorder(stream, {
|
|
643
|
+
mimeType: 'audio/webm',
|
|
644
|
+
});
|
|
645
|
+
|
|
646
|
+
mediaRecorder.current.ondataavailable = (event) => {
|
|
647
|
+
if (event.data.size > 0) {
|
|
648
|
+
audioChunks.current.push(event.data);
|
|
649
|
+
}
|
|
650
|
+
};
|
|
651
|
+
|
|
652
|
+
mediaRecorder.current.onstop = async () => {
|
|
653
|
+
if (audioChunks.current.length === 0) {
|
|
654
|
+
setIsRecording(false);
|
|
655
|
+
setIsProcessingAudio(false);
|
|
656
|
+
return;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
const audioBlob = new Blob(audioChunks.current, { type: 'audio/webm' });
|
|
660
|
+
const reader = new FileReader();
|
|
661
|
+
|
|
662
|
+
reader.readAsDataURL(audioBlob);
|
|
663
|
+
reader.onloadend = async () => {
|
|
664
|
+
const base64Audio = reader.result?.toString().split(',')[1];
|
|
665
|
+
|
|
666
|
+
if (!base64Audio) {
|
|
667
|
+
setIsProcessingAudio(false);
|
|
668
|
+
return;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
sendAudioToServer(base64Audio);
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
// Cleanup
|
|
675
|
+
revokeMediaPermissions();
|
|
676
|
+
audioChunks.current = [];
|
|
677
|
+
};
|
|
678
|
+
|
|
679
|
+
mediaRecorder.current.start();
|
|
680
|
+
} catch (_) {
|
|
681
|
+
setIsRecording(false);
|
|
682
|
+
}
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
const triggerImageUpload = () => {
|
|
686
|
+
fileInputRef.current?.click();
|
|
687
|
+
};
|
|
688
|
+
|
|
689
|
+
const stopRecording = () => {
|
|
690
|
+
setIsRecording(false);
|
|
691
|
+
setIsProcessingAudio(true);
|
|
692
|
+
if (mediaRecorder.current && mediaRecorder.current.state !== 'inactive') {
|
|
693
|
+
mediaRecorder.current.stop();
|
|
694
|
+
} else {
|
|
695
|
+
revokeMediaPermissions();
|
|
696
|
+
setIsProcessingAudio(false);
|
|
697
|
+
}
|
|
698
|
+
};
|
|
699
|
+
|
|
700
|
+
const revokeMediaPermissions = () => {
|
|
701
|
+
if (mediaStream.current) {
|
|
702
|
+
mediaStream.current.getTracks().forEach((track) => {
|
|
703
|
+
track.stop();
|
|
704
|
+
});
|
|
705
|
+
mediaStream.current = null;
|
|
706
|
+
}
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
const sendAudioToServer = async (base64Audio: string) => {
|
|
710
|
+
try {
|
|
711
|
+
const response = await fetch('/api/v1/calendar/audio', {
|
|
712
|
+
method: 'POST',
|
|
713
|
+
headers: { 'Content-Type': 'application/json' },
|
|
714
|
+
body: JSON.stringify({ base64Audio }),
|
|
715
|
+
});
|
|
716
|
+
|
|
717
|
+
const result = await response.json();
|
|
718
|
+
if (result.text) {
|
|
719
|
+
aiForm.setValue('prompt', result.text);
|
|
720
|
+
} else {
|
|
721
|
+
toast({
|
|
722
|
+
title: 'Transcription Error',
|
|
723
|
+
description: result.error || 'Failed to transcribe audio',
|
|
724
|
+
variant: 'destructive',
|
|
725
|
+
});
|
|
726
|
+
}
|
|
727
|
+
} catch (_) {
|
|
728
|
+
toast({
|
|
729
|
+
title: 'API Error',
|
|
730
|
+
description: 'Failed to process audio recording',
|
|
731
|
+
variant: 'destructive',
|
|
732
|
+
});
|
|
733
|
+
} finally {
|
|
734
|
+
setIsProcessingAudio(false);
|
|
735
|
+
}
|
|
736
|
+
};
|
|
737
|
+
|
|
738
|
+
const handleUploadImage = async (
|
|
739
|
+
event: React.ChangeEvent<HTMLInputElement>
|
|
740
|
+
) => {
|
|
741
|
+
const file = event.target.files?.[0]; // image file from input
|
|
742
|
+
if (!file) return;
|
|
743
|
+
|
|
744
|
+
setIsProcessingImage(true);
|
|
745
|
+
const reader = new FileReader();
|
|
746
|
+
reader.readAsDataURL(file);
|
|
747
|
+
reader.onloadend = async () => {
|
|
748
|
+
const base64Image = reader.result?.toString().split(',')[1]; // convert to base64
|
|
749
|
+
if (!base64Image) {
|
|
750
|
+
setIsProcessingImage(false);
|
|
751
|
+
return;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
try {
|
|
755
|
+
const response = await fetch('/api/v1/calendar/image', {
|
|
756
|
+
// send to API
|
|
757
|
+
method: 'POST',
|
|
758
|
+
headers: { 'Content-Type': 'application/json' },
|
|
759
|
+
body: JSON.stringify({ base64Image }),
|
|
760
|
+
});
|
|
761
|
+
|
|
762
|
+
const result = await response.json();
|
|
763
|
+
if (result.text) {
|
|
764
|
+
aiForm.setValue('prompt', result.text);
|
|
765
|
+
} else {
|
|
766
|
+
toast({
|
|
767
|
+
title: 'Image Processing Error',
|
|
768
|
+
description: result.error || 'Failed to extract text from image',
|
|
769
|
+
variant: 'destructive',
|
|
770
|
+
});
|
|
771
|
+
}
|
|
772
|
+
} catch (_) {
|
|
773
|
+
toast({
|
|
774
|
+
title: 'API Error',
|
|
775
|
+
description: 'Failed to process uploaded image',
|
|
776
|
+
variant: 'destructive',
|
|
777
|
+
});
|
|
778
|
+
} finally {
|
|
779
|
+
setIsProcessingImage(false);
|
|
780
|
+
if (fileInputRef.current) {
|
|
781
|
+
fileInputRef.current.value = '';
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
|
|
787
|
+
// Handle navigation between multiple events in preview
|
|
788
|
+
const goToNextEvent = () => {
|
|
789
|
+
if (currentEventIndex < (generatedEvents?.length || 0) - 1) {
|
|
790
|
+
const nextIndex = currentEventIndex + 1;
|
|
791
|
+
setCurrentEventIndex(nextIndex);
|
|
792
|
+
if (aiForm.getValues().smart_scheduling) {
|
|
793
|
+
const nextEvent = generatedEvents?.[nextIndex];
|
|
794
|
+
if (nextEvent?.start_at && nextEvent.end_at) {
|
|
795
|
+
checkForOverlaps(nextEvent as Partial<CalendarEvent>);
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
};
|
|
800
|
+
|
|
801
|
+
const goToPreviousEvent = () => {
|
|
802
|
+
if (currentEventIndex > 0) {
|
|
803
|
+
const prevIndex = currentEventIndex - 1;
|
|
804
|
+
setCurrentEventIndex(prevIndex);
|
|
805
|
+
if (aiForm.getValues().smart_scheduling) {
|
|
806
|
+
const prevEvent = generatedEvents?.[prevIndex];
|
|
807
|
+
if (prevEvent?.start_at && prevEvent.end_at) {
|
|
808
|
+
checkForOverlaps(prevEvent as Partial<CalendarEvent>);
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
};
|
|
813
|
+
|
|
814
|
+
// function to open Google Maps with the entered address
|
|
815
|
+
const openGoogleMaps = (address: string) => {
|
|
816
|
+
if (address) {
|
|
817
|
+
const encodedAddress = encodeURIComponent(address);
|
|
818
|
+
window.open(
|
|
819
|
+
`https://www.google.com/maps/search/?api=1&query=${encodedAddress}`,
|
|
820
|
+
'_blank'
|
|
821
|
+
);
|
|
822
|
+
}
|
|
823
|
+
};
|
|
824
|
+
|
|
825
|
+
// Handle lock toggle
|
|
826
|
+
const handleLockToggle = async (checked: boolean) => {
|
|
827
|
+
if (!activeEvent?.id) return;
|
|
828
|
+
|
|
829
|
+
setIsSaving(true);
|
|
830
|
+
try {
|
|
831
|
+
const originalId = activeEvent.id;
|
|
832
|
+
|
|
833
|
+
const updatedEvent = await updateEvent(originalId, {
|
|
834
|
+
...event,
|
|
835
|
+
locked: checked,
|
|
836
|
+
});
|
|
837
|
+
|
|
838
|
+
if (!updatedEvent) {
|
|
839
|
+
throw new Error('Failed to update event lock status');
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
setEvent(updatedEvent);
|
|
843
|
+
toast({
|
|
844
|
+
title: 'Success',
|
|
845
|
+
description: `Event ${checked ? 'locked' : 'unlocked'} successfully`,
|
|
846
|
+
});
|
|
847
|
+
} catch (_) {
|
|
848
|
+
toast({
|
|
849
|
+
title: 'Error',
|
|
850
|
+
description: 'Failed to update event lock status',
|
|
851
|
+
variant: 'destructive',
|
|
852
|
+
});
|
|
853
|
+
// Revert the toggle if update fails
|
|
854
|
+
setEvent((prev) => ({ ...prev, locked: !checked }));
|
|
855
|
+
} finally {
|
|
856
|
+
setIsSaving(false);
|
|
857
|
+
}
|
|
858
|
+
};
|
|
859
|
+
|
|
860
|
+
return (
|
|
861
|
+
<Dialog open={isModalOpen} onOpenChange={(open) => !open && closeModal()}>
|
|
862
|
+
<DialogContent className="max-h-[90vh] max-w-3xl overflow-hidden p-0">
|
|
863
|
+
<DialogHeader className="border-b px-6 pt-6 pb-4">
|
|
864
|
+
<DialogTitle className="flex items-center gap-2 font-semibold text-xl">
|
|
865
|
+
<span>{isEditing ? 'Edit Event' : 'Create Event'}</span>
|
|
866
|
+
{event.google_event_id &&
|
|
867
|
+
typeof event.google_event_id === 'string' &&
|
|
868
|
+
event.google_event_id.trim() !== '' && (
|
|
869
|
+
<div className="ml-3 flex items-center gap-2 rounded-md border bg-blue-50 px-3 py-1 text-sm dark:bg-blue-950/30">
|
|
870
|
+
<Image
|
|
871
|
+
src="/media/google-calendar-icon.png"
|
|
872
|
+
alt="Google Calendar"
|
|
873
|
+
className="inline-block h-4.5 w-4.5 align-middle"
|
|
874
|
+
title="Synced from Google Calendar"
|
|
875
|
+
data-testid="google-calendar-logo"
|
|
876
|
+
width={18}
|
|
877
|
+
height={18}
|
|
878
|
+
/>
|
|
879
|
+
<span className="font-medium text-xs">Google Calendar</span>
|
|
880
|
+
</div>
|
|
881
|
+
)}
|
|
882
|
+
</DialogTitle>
|
|
883
|
+
<DialogDescription>
|
|
884
|
+
{isEditing
|
|
885
|
+
? 'Make changes to your existing event'
|
|
886
|
+
: 'Add a new event to your calendar'}
|
|
887
|
+
</DialogDescription>
|
|
888
|
+
</DialogHeader>
|
|
889
|
+
|
|
890
|
+
<Tabs
|
|
891
|
+
value={activeTab}
|
|
892
|
+
onValueChange={(value) => setActiveTab(value as 'manual' | 'ai')}
|
|
893
|
+
className="flex h-[calc(90vh-140px)] flex-col"
|
|
894
|
+
>
|
|
895
|
+
<TabsList className="justify-start gap-2 bg-transparent px-6 pt-4 pb-0">
|
|
896
|
+
<TabsTrigger
|
|
897
|
+
value="manual"
|
|
898
|
+
className="rounded-t-md rounded-b-none border-b-0 px-4 py-2 data-[state=active]:border data-[state=active]:border-b-0 data-[state=active]:bg-background data-[state=active]:shadow-sm"
|
|
899
|
+
>
|
|
900
|
+
<CalendarIcon className="mr-2 h-4 w-4" />
|
|
901
|
+
Quick Entry
|
|
902
|
+
</TabsTrigger>
|
|
903
|
+
<TabsTrigger
|
|
904
|
+
value="ai"
|
|
905
|
+
className="rounded-t-md rounded-b-none border-b-0 px-4 py-2 data-[state=active]:border data-[state=active]:border-b-0 data-[state=active]:bg-background data-[state=active]:shadow-sm"
|
|
906
|
+
disabled={!!isEditing}
|
|
907
|
+
>
|
|
908
|
+
<Sparkles className="mr-2 h-4 w-4" />
|
|
909
|
+
AI Generate
|
|
910
|
+
</TabsTrigger>
|
|
911
|
+
</TabsList>
|
|
912
|
+
|
|
913
|
+
<div className="flex-1 overflow-hidden border-t">
|
|
914
|
+
{/* Manual Event Creation Tab */}
|
|
915
|
+
<TabsContent
|
|
916
|
+
value="manual"
|
|
917
|
+
className="h-full p-0 focus-visible:outline-none focus-visible:ring-0 data-[state=active]:flex data-[state=active]:flex-col"
|
|
918
|
+
style={{ display: activeTab === 'manual' ? 'flex' : 'none' }}
|
|
919
|
+
>
|
|
920
|
+
<div className="flex flex-1 flex-col overflow-hidden">
|
|
921
|
+
<ScrollArea className="h-[calc(90vh-250px)] flex-1">
|
|
922
|
+
<div className="space-y-3 p-4">
|
|
923
|
+
{/* Title */}
|
|
924
|
+
<EventTitleInput
|
|
925
|
+
value={event.title || ''}
|
|
926
|
+
onEnter={handleManualSave}
|
|
927
|
+
onChange={(value) => setEvent({ ...event, title: value })}
|
|
928
|
+
/>
|
|
929
|
+
|
|
930
|
+
{/* Date and Time Selection */}
|
|
931
|
+
<div className="space-y-2">
|
|
932
|
+
<div className="flex items-center justify-between">
|
|
933
|
+
<h3 className="font-medium text-sm">When</h3>
|
|
934
|
+
<EventToggleSwitch
|
|
935
|
+
id="all-day"
|
|
936
|
+
label="All Day"
|
|
937
|
+
checked={isAllDay}
|
|
938
|
+
onChange={handleAllDayChange}
|
|
939
|
+
/>
|
|
940
|
+
</div>
|
|
941
|
+
|
|
942
|
+
<div className="grid gap-3">
|
|
943
|
+
<EventDateTimePicker
|
|
944
|
+
label="Start"
|
|
945
|
+
value={new Date(event.start_at || new Date())}
|
|
946
|
+
onChange={handleStartDateChange}
|
|
947
|
+
showTimeSelect={!isAllDay}
|
|
948
|
+
scrollIntoViewOnOpen={true}
|
|
949
|
+
pickerButtonRef={startPickerRef}
|
|
950
|
+
/>
|
|
951
|
+
<EventDateTimePicker
|
|
952
|
+
label="End"
|
|
953
|
+
value={(() => {
|
|
954
|
+
// For all-day, display end_at - 1 day
|
|
955
|
+
if (isAllDay && event.end_at) {
|
|
956
|
+
const end = new Date(event.end_at);
|
|
957
|
+
end.setDate(end.getDate() - 1);
|
|
958
|
+
return end;
|
|
959
|
+
}
|
|
960
|
+
return new Date(event.end_at || new Date());
|
|
961
|
+
})()}
|
|
962
|
+
onChange={handleEndDateChange}
|
|
963
|
+
showTimeSelect={!isAllDay}
|
|
964
|
+
minDate={(() => {
|
|
965
|
+
// Allow selecting the same day as the start date
|
|
966
|
+
const start = new Date(
|
|
967
|
+
event.start_at || new Date()
|
|
968
|
+
);
|
|
969
|
+
return new Date(
|
|
970
|
+
start.getFullYear(),
|
|
971
|
+
start.getMonth(),
|
|
972
|
+
start.getDate()
|
|
973
|
+
);
|
|
974
|
+
})()}
|
|
975
|
+
minTime={(() => {
|
|
976
|
+
const start = new Date(
|
|
977
|
+
event.start_at || new Date()
|
|
978
|
+
);
|
|
979
|
+
const end = new Date(event.end_at || new Date());
|
|
980
|
+
// Only apply minTime if start and end are on the same day
|
|
981
|
+
if (
|
|
982
|
+
start.getFullYear() === end.getFullYear() &&
|
|
983
|
+
start.getMonth() === end.getMonth() &&
|
|
984
|
+
start.getDate() === end.getDate()
|
|
985
|
+
) {
|
|
986
|
+
return `${start.getHours().toString().padStart(2, '0')}:${start.getMinutes().toString().padStart(2, '0')}`;
|
|
987
|
+
}
|
|
988
|
+
return undefined;
|
|
989
|
+
})()}
|
|
990
|
+
scrollIntoViewOnOpen={true}
|
|
991
|
+
pickerButtonRef={endPickerRef}
|
|
992
|
+
/>
|
|
993
|
+
</div>
|
|
994
|
+
</div>
|
|
995
|
+
|
|
996
|
+
<Separator />
|
|
997
|
+
|
|
998
|
+
{/* Location and Description */}
|
|
999
|
+
<div className="space-y-2">
|
|
1000
|
+
<EventLocationInput
|
|
1001
|
+
value={event.location || ''}
|
|
1002
|
+
onChange={(value) =>
|
|
1003
|
+
setEvent({ ...event, location: value })
|
|
1004
|
+
}
|
|
1005
|
+
/>
|
|
1006
|
+
<EventDescriptionInput
|
|
1007
|
+
value={event.description || ''}
|
|
1008
|
+
onChange={(value) =>
|
|
1009
|
+
setEvent({ ...event, description: value })
|
|
1010
|
+
}
|
|
1011
|
+
/>
|
|
1012
|
+
|
|
1013
|
+
{/* Color and Options Row */}
|
|
1014
|
+
<div className="flex items-end justify-between gap-4">
|
|
1015
|
+
<EventColorPicker
|
|
1016
|
+
value={event.color || 'BLUE'}
|
|
1017
|
+
onChange={(value) =>
|
|
1018
|
+
setEvent({ ...event, color: value })
|
|
1019
|
+
}
|
|
1020
|
+
/>
|
|
1021
|
+
<button
|
|
1022
|
+
type="button"
|
|
1023
|
+
onClick={() => {
|
|
1024
|
+
const newLocked = !event.locked;
|
|
1025
|
+
if (isEditing) {
|
|
1026
|
+
handleLockToggle(newLocked);
|
|
1027
|
+
} else {
|
|
1028
|
+
setEvent((prev) => ({
|
|
1029
|
+
...prev,
|
|
1030
|
+
locked: newLocked,
|
|
1031
|
+
}));
|
|
1032
|
+
}
|
|
1033
|
+
}}
|
|
1034
|
+
className={cn(
|
|
1035
|
+
'mb-1 flex items-center gap-1.5 rounded-md border px-3 py-1.5 font-medium text-xs transition-colors',
|
|
1036
|
+
event.locked
|
|
1037
|
+
? 'border-dynamic-amber/30 bg-dynamic-amber/10 text-dynamic-amber'
|
|
1038
|
+
: 'border-border bg-background text-muted-foreground hover:bg-muted'
|
|
1039
|
+
)}
|
|
1040
|
+
title={
|
|
1041
|
+
event.locked
|
|
1042
|
+
? 'Locked: Auto-scheduling will not move this event'
|
|
1043
|
+
: 'Unlocked: Auto-scheduling may move this event'
|
|
1044
|
+
}
|
|
1045
|
+
>
|
|
1046
|
+
{event.locked ? (
|
|
1047
|
+
<Lock className="h-3.5 w-3.5" />
|
|
1048
|
+
) : (
|
|
1049
|
+
<Unlock className="h-3.5 w-3.5" />
|
|
1050
|
+
)}
|
|
1051
|
+
{event.locked ? 'Locked' : 'Unlocked'}
|
|
1052
|
+
</button>
|
|
1053
|
+
</div>
|
|
1054
|
+
</div>
|
|
1055
|
+
|
|
1056
|
+
{/* Warnings and Errors */}
|
|
1057
|
+
{(showOverlapWarning || dateError) && (
|
|
1058
|
+
<>
|
|
1059
|
+
<Separator />
|
|
1060
|
+
<div className="space-y-3">
|
|
1061
|
+
{showOverlapWarning && (
|
|
1062
|
+
<OverlapWarning
|
|
1063
|
+
overlappingEvents={overlappingEvents}
|
|
1064
|
+
/>
|
|
1065
|
+
)}
|
|
1066
|
+
{dateError && <DateError error={dateError} />}
|
|
1067
|
+
</div>
|
|
1068
|
+
</>
|
|
1069
|
+
)}
|
|
1070
|
+
</div>
|
|
1071
|
+
</ScrollArea>
|
|
1072
|
+
|
|
1073
|
+
{/* Action Buttons */}
|
|
1074
|
+
<div className="mt-auto border-t p-2">
|
|
1075
|
+
<div className="flex justify-between">
|
|
1076
|
+
{isEditing ? (
|
|
1077
|
+
<Button
|
|
1078
|
+
variant="destructive"
|
|
1079
|
+
onClick={handleDelete}
|
|
1080
|
+
disabled={isSaving || isDeleting}
|
|
1081
|
+
className="flex items-center gap-2"
|
|
1082
|
+
>
|
|
1083
|
+
{isDeleting ? (
|
|
1084
|
+
<>
|
|
1085
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1086
|
+
<span>Deleting...</span>
|
|
1087
|
+
</>
|
|
1088
|
+
) : (
|
|
1089
|
+
<>
|
|
1090
|
+
<Trash2 className="h-4 w-4" />
|
|
1091
|
+
<span>Delete</span>
|
|
1092
|
+
</>
|
|
1093
|
+
)}
|
|
1094
|
+
</Button>
|
|
1095
|
+
) : (
|
|
1096
|
+
<div />
|
|
1097
|
+
)}
|
|
1098
|
+
|
|
1099
|
+
<div className="flex gap-2">
|
|
1100
|
+
<Button
|
|
1101
|
+
onClick={handleManualSave}
|
|
1102
|
+
disabled={isSaving || isDeleting}
|
|
1103
|
+
className="flex items-center gap-2"
|
|
1104
|
+
>
|
|
1105
|
+
{isSaving ? (
|
|
1106
|
+
<>
|
|
1107
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1108
|
+
<span>Saving...</span>
|
|
1109
|
+
</>
|
|
1110
|
+
) : (
|
|
1111
|
+
<>
|
|
1112
|
+
<Check className="h-4 w-4" />
|
|
1113
|
+
<span>
|
|
1114
|
+
{isEditing ? 'Save Changes' : 'Create Event'}
|
|
1115
|
+
</span>
|
|
1116
|
+
</>
|
|
1117
|
+
)}
|
|
1118
|
+
</Button>
|
|
1119
|
+
</div>
|
|
1120
|
+
</div>
|
|
1121
|
+
</div>
|
|
1122
|
+
</div>
|
|
1123
|
+
</TabsContent>
|
|
1124
|
+
|
|
1125
|
+
{/* AI Event Generation Tab */}
|
|
1126
|
+
<TabsContent
|
|
1127
|
+
value="ai"
|
|
1128
|
+
className="h-full p-0 focus-visible:outline-none focus-visible:ring-0 data-[state=active]:flex data-[state=active]:flex-col"
|
|
1129
|
+
style={{ display: activeTab === 'ai' ? 'flex' : 'none' }}
|
|
1130
|
+
>
|
|
1131
|
+
<Form {...aiForm}>
|
|
1132
|
+
<form
|
|
1133
|
+
onSubmit={aiForm.handleSubmit(handleGenerateEvent)}
|
|
1134
|
+
className="flex h-full flex-1 flex-col"
|
|
1135
|
+
>
|
|
1136
|
+
<div className="flex flex-1 flex-col overflow-hidden">
|
|
1137
|
+
<ScrollArea className="h-[calc(90vh-250px)] flex-1">
|
|
1138
|
+
<div className="space-y-6 p-6">
|
|
1139
|
+
<FormField
|
|
1140
|
+
control={aiForm.control}
|
|
1141
|
+
name="prompt"
|
|
1142
|
+
render={({ field }) => (
|
|
1143
|
+
<FormItem>
|
|
1144
|
+
<FormLabel className="font-medium text-base">
|
|
1145
|
+
Describe your event
|
|
1146
|
+
</FormLabel>
|
|
1147
|
+
<FormControl>
|
|
1148
|
+
<div className="relative w-full">
|
|
1149
|
+
<AutosizeTextarea
|
|
1150
|
+
{...field}
|
|
1151
|
+
autoFocus
|
|
1152
|
+
placeholder="E.g., Schedule a team meeting next Monday at 2pm for 1 hour..."
|
|
1153
|
+
className="min-h-50 w-full resize-none rounded-md border border-input bg-background p-4 pr-20 text-base focus:outline-none focus:ring-1 focus:ring-ring"
|
|
1154
|
+
disabled={
|
|
1155
|
+
isLoading ||
|
|
1156
|
+
isRecording ||
|
|
1157
|
+
isProcessingAudio ||
|
|
1158
|
+
isProcessingImage
|
|
1159
|
+
}
|
|
1160
|
+
/>
|
|
1161
|
+
|
|
1162
|
+
{/* Record Button */}
|
|
1163
|
+
<div className="absolute right-2 bottom-2 flex items-center gap-1">
|
|
1164
|
+
<Button
|
|
1165
|
+
size="xs"
|
|
1166
|
+
type="button"
|
|
1167
|
+
variant={
|
|
1168
|
+
isRecording ? 'destructive' : 'default'
|
|
1169
|
+
}
|
|
1170
|
+
onClick={
|
|
1171
|
+
isRecording
|
|
1172
|
+
? stopRecording
|
|
1173
|
+
: startRecording
|
|
1174
|
+
}
|
|
1175
|
+
disabled={
|
|
1176
|
+
isProcessingAudio ||
|
|
1177
|
+
isProcessingImage ||
|
|
1178
|
+
isLoading
|
|
1179
|
+
}
|
|
1180
|
+
className="flex items-center rounded-md"
|
|
1181
|
+
>
|
|
1182
|
+
{isRecording ? (
|
|
1183
|
+
<StopCircle className="h-4 w-4" />
|
|
1184
|
+
) : isProcessingAudio ? (
|
|
1185
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1186
|
+
) : (
|
|
1187
|
+
<Mic className="h-4 w-4" />
|
|
1188
|
+
)}
|
|
1189
|
+
</Button>
|
|
1190
|
+
|
|
1191
|
+
{/* 📸 Image button */}
|
|
1192
|
+
<Button
|
|
1193
|
+
size="xs"
|
|
1194
|
+
type="button"
|
|
1195
|
+
variant="default"
|
|
1196
|
+
onClick={triggerImageUpload}
|
|
1197
|
+
disabled={
|
|
1198
|
+
isRecording ||
|
|
1199
|
+
isProcessingAudio ||
|
|
1200
|
+
isProcessingImage ||
|
|
1201
|
+
isLoading
|
|
1202
|
+
}
|
|
1203
|
+
className="flex items-center rounded-md"
|
|
1204
|
+
>
|
|
1205
|
+
{isProcessingImage ? (
|
|
1206
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1207
|
+
) : (
|
|
1208
|
+
<ImageIcon className="h-4 w-4" />
|
|
1209
|
+
)}
|
|
1210
|
+
</Button>
|
|
1211
|
+
<input
|
|
1212
|
+
type="file"
|
|
1213
|
+
ref={fileInputRef}
|
|
1214
|
+
accept="image/*"
|
|
1215
|
+
onChange={handleUploadImage}
|
|
1216
|
+
className="hidden"
|
|
1217
|
+
/>
|
|
1218
|
+
</div>
|
|
1219
|
+
</div>
|
|
1220
|
+
</FormControl>
|
|
1221
|
+
<FormDescription className="flex items-center gap-1 text-xs">
|
|
1222
|
+
<Info className="h-3 w-3" />
|
|
1223
|
+
Be as specific as possible for best results
|
|
1224
|
+
</FormDescription>
|
|
1225
|
+
<FormMessage />
|
|
1226
|
+
</FormItem>
|
|
1227
|
+
)}
|
|
1228
|
+
/>
|
|
1229
|
+
{isLoading && (
|
|
1230
|
+
<div className="flex items-center justify-center py-8">
|
|
1231
|
+
<div className="flex flex-col items-center gap-2">
|
|
1232
|
+
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
|
1233
|
+
<p className="text-muted-foreground text-sm">
|
|
1234
|
+
Creating your event...
|
|
1235
|
+
</p>
|
|
1236
|
+
</div>
|
|
1237
|
+
</div>
|
|
1238
|
+
)}
|
|
1239
|
+
{error && (
|
|
1240
|
+
<Alert variant="destructive">
|
|
1241
|
+
<AlertCircle className="h-4 w-4" />
|
|
1242
|
+
<AlertTitle>Error</AlertTitle>
|
|
1243
|
+
<AlertDescription>
|
|
1244
|
+
{error.message ||
|
|
1245
|
+
'Failed to generate event. Please try again.'}
|
|
1246
|
+
</AlertDescription>
|
|
1247
|
+
</Alert>
|
|
1248
|
+
)}
|
|
1249
|
+
</div>
|
|
1250
|
+
</ScrollArea>
|
|
1251
|
+
|
|
1252
|
+
{/* Action Buttons */}
|
|
1253
|
+
<div className="mt-auto border-t p-6">
|
|
1254
|
+
<div className="flex justify-between">
|
|
1255
|
+
<Button
|
|
1256
|
+
variant="outline"
|
|
1257
|
+
onClick={closeModal}
|
|
1258
|
+
disabled={isLoading}
|
|
1259
|
+
className="flex items-center gap-2"
|
|
1260
|
+
>
|
|
1261
|
+
<X className="h-4 w-4" />
|
|
1262
|
+
<span>Cancel</span>
|
|
1263
|
+
</Button>
|
|
1264
|
+
<Button
|
|
1265
|
+
type="submit"
|
|
1266
|
+
disabled={isLoading || !aiForm.watch('prompt')}
|
|
1267
|
+
className="flex items-center gap-2 bg-primary"
|
|
1268
|
+
>
|
|
1269
|
+
{isLoading ? (
|
|
1270
|
+
<>
|
|
1271
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1272
|
+
<span>Creating...</span>
|
|
1273
|
+
</>
|
|
1274
|
+
) : (
|
|
1275
|
+
<>
|
|
1276
|
+
<Sparkles className="h-4 w-4" />
|
|
1277
|
+
<span>Generate Event</span>
|
|
1278
|
+
</>
|
|
1279
|
+
)}
|
|
1280
|
+
</Button>
|
|
1281
|
+
</div>
|
|
1282
|
+
</div>
|
|
1283
|
+
</div>
|
|
1284
|
+
</form>
|
|
1285
|
+
</Form>
|
|
1286
|
+
</TabsContent>
|
|
1287
|
+
|
|
1288
|
+
{/* Preview Tab */}
|
|
1289
|
+
<TabsContent
|
|
1290
|
+
value="preview"
|
|
1291
|
+
className="h-full p-0 focus-visible:outline-none focus-visible:ring-0 data-[state=active]:flex data-[state=active]:flex-col"
|
|
1292
|
+
style={{ display: activeTab === 'preview' ? 'flex' : 'none' }}
|
|
1293
|
+
>
|
|
1294
|
+
<div className="flex flex-1 flex-col overflow-hidden">
|
|
1295
|
+
<ScrollArea className="h-[calc(90vh-250px)] flex-1">
|
|
1296
|
+
<div className="space-y-6 p-6">
|
|
1297
|
+
{/* AI Generated Event Preview */}
|
|
1298
|
+
<div className="rounded-lg border bg-muted/10 p-4">
|
|
1299
|
+
<div className="mb-3 flex items-center justify-between">
|
|
1300
|
+
<h3 className="flex items-center gap-2 font-medium text-base">
|
|
1301
|
+
<Sparkles className="h-4 w-4 text-primary" />
|
|
1302
|
+
AI Generated Event
|
|
1303
|
+
{(generatedEvents?.length || 0) > 1 ? 's' : ''}
|
|
1304
|
+
</h3>
|
|
1305
|
+
<div className="flex items-center gap-2">
|
|
1306
|
+
{(generatedEvents?.length || 0) > 1 && (
|
|
1307
|
+
<div className="flex items-center gap-1 text-muted-foreground text-xs">
|
|
1308
|
+
<span>{currentEventIndex + 1}</span>
|
|
1309
|
+
<span>/</span>
|
|
1310
|
+
<span>{generatedEvents?.length || 0}</span>
|
|
1311
|
+
</div>
|
|
1312
|
+
)}
|
|
1313
|
+
<Badge variant="outline" className="text-xs">
|
|
1314
|
+
Preview
|
|
1315
|
+
</Badge>
|
|
1316
|
+
</div>
|
|
1317
|
+
</div>
|
|
1318
|
+
|
|
1319
|
+
{generatedEvent && (
|
|
1320
|
+
<div className="space-y-4">
|
|
1321
|
+
<div className="mt-3 space-y-3 rounded-md border p-3">
|
|
1322
|
+
<div className="space-y-2">
|
|
1323
|
+
<h4 className="font-medium text-lg">
|
|
1324
|
+
{generatedEvent.title}
|
|
1325
|
+
</h4>
|
|
1326
|
+
<div className="flex flex-wrap gap-2 text-muted-foreground text-sm">
|
|
1327
|
+
<div className="flex items-center gap-1">
|
|
1328
|
+
<CalendarIcon className="h-3.5 w-3.5" />
|
|
1329
|
+
<span>
|
|
1330
|
+
{format(
|
|
1331
|
+
new Date(generatedEvent.start_at || ''),
|
|
1332
|
+
'PPP'
|
|
1333
|
+
)}
|
|
1334
|
+
</span>
|
|
1335
|
+
</div>
|
|
1336
|
+
<div className="flex items-center gap-1">
|
|
1337
|
+
<Clock className="h-3.5 w-3.5" />
|
|
1338
|
+
<span>
|
|
1339
|
+
{format(
|
|
1340
|
+
new Date(generatedEvent.start_at || ''),
|
|
1341
|
+
settings?.appearance?.timeFormat === '24h'
|
|
1342
|
+
? 'HH:mm'
|
|
1343
|
+
: 'h:mm a'
|
|
1344
|
+
)}{' '}
|
|
1345
|
+
-{' '}
|
|
1346
|
+
{format(
|
|
1347
|
+
new Date(generatedEvent.end_at || ''),
|
|
1348
|
+
settings?.appearance?.timeFormat === '24h'
|
|
1349
|
+
? 'HH:mm'
|
|
1350
|
+
: 'h:mm a'
|
|
1351
|
+
)}
|
|
1352
|
+
</span>
|
|
1353
|
+
</div>
|
|
1354
|
+
{generatedEvent.location && (
|
|
1355
|
+
<div className="flex items-center gap-1">
|
|
1356
|
+
<MapPin className="h-3.5 w-3.5" />
|
|
1357
|
+
<button
|
|
1358
|
+
type="button"
|
|
1359
|
+
onClick={() =>
|
|
1360
|
+
openGoogleMaps(
|
|
1361
|
+
generatedEvent.location || ''
|
|
1362
|
+
)
|
|
1363
|
+
}
|
|
1364
|
+
className="text-muted-foreground text-sm hover:text-primary hover:underline"
|
|
1365
|
+
title="Open in Google Maps"
|
|
1366
|
+
>
|
|
1367
|
+
{generatedEvent.location}
|
|
1368
|
+
</button>
|
|
1369
|
+
</div>
|
|
1370
|
+
)}
|
|
1371
|
+
</div>
|
|
1372
|
+
</div>
|
|
1373
|
+
|
|
1374
|
+
{generatedEvent.description && (
|
|
1375
|
+
<div className="space-y-1">
|
|
1376
|
+
<h5 className="font-medium text-sm">
|
|
1377
|
+
Description
|
|
1378
|
+
</h5>
|
|
1379
|
+
<p className="text-muted-foreground text-sm">
|
|
1380
|
+
{generatedEvent.description}
|
|
1381
|
+
</p>
|
|
1382
|
+
</div>
|
|
1383
|
+
)}
|
|
1384
|
+
|
|
1385
|
+
<Separator />
|
|
1386
|
+
|
|
1387
|
+
{/* Color indicator and category */}
|
|
1388
|
+
<div className="flex items-center gap-2">
|
|
1389
|
+
{generatedEvent.color &&
|
|
1390
|
+
(() => {
|
|
1391
|
+
const { bg, border, text } = getEventStyles(
|
|
1392
|
+
generatedEvent.color
|
|
1393
|
+
);
|
|
1394
|
+
return (
|
|
1395
|
+
<div
|
|
1396
|
+
className={`flex items-center gap-2 rounded-full border px-2 py-1 text-center ${bg} ${border}`}
|
|
1397
|
+
>
|
|
1398
|
+
<span
|
|
1399
|
+
className={`font-medium text-xs ${text}`}
|
|
1400
|
+
>
|
|
1401
|
+
{COLOR_OPTIONS.find(
|
|
1402
|
+
(c) =>
|
|
1403
|
+
c.value ===
|
|
1404
|
+
(generatedEvent.color
|
|
1405
|
+
? generatedEvent.color.toUpperCase()
|
|
1406
|
+
: 'BLUE')
|
|
1407
|
+
)?.name || 'Default'}
|
|
1408
|
+
</span>
|
|
1409
|
+
</div>
|
|
1410
|
+
);
|
|
1411
|
+
})()}
|
|
1412
|
+
</div>
|
|
1413
|
+
|
|
1414
|
+
{/* Event protection status */}
|
|
1415
|
+
<div className="flex items-center gap-2">
|
|
1416
|
+
<Unlock className="h-3.5 w-3.5 text-muted-foreground" />
|
|
1417
|
+
<span className="text-muted-foreground text-xs">
|
|
1418
|
+
Event will be created unlocked
|
|
1419
|
+
</span>
|
|
1420
|
+
</div>
|
|
1421
|
+
</div>
|
|
1422
|
+
</div>
|
|
1423
|
+
)}
|
|
1424
|
+
|
|
1425
|
+
{/* Navigation buttons for multiple events */}
|
|
1426
|
+
{(generatedEvents?.length || 0) > 1 && (
|
|
1427
|
+
<div className="mt-4 flex items-center justify-center gap-2">
|
|
1428
|
+
<Button
|
|
1429
|
+
variant="outline"
|
|
1430
|
+
size="sm"
|
|
1431
|
+
onClick={goToPreviousEvent}
|
|
1432
|
+
disabled={currentEventIndex === 0}
|
|
1433
|
+
className="h-8 w-8 p-0"
|
|
1434
|
+
>
|
|
1435
|
+
<ChevronLeft className="h-4 w-4" />
|
|
1436
|
+
</Button>
|
|
1437
|
+
<Button
|
|
1438
|
+
variant="outline"
|
|
1439
|
+
size="sm"
|
|
1440
|
+
onClick={goToNextEvent}
|
|
1441
|
+
disabled={
|
|
1442
|
+
currentEventIndex ===
|
|
1443
|
+
(generatedEvents?.length || 0) - 1
|
|
1444
|
+
}
|
|
1445
|
+
className="h-8 w-8 p-0"
|
|
1446
|
+
>
|
|
1447
|
+
<ChevronRight className="h-4 w-4" />
|
|
1448
|
+
</Button>
|
|
1449
|
+
</div>
|
|
1450
|
+
)}
|
|
1451
|
+
</div>
|
|
1452
|
+
|
|
1453
|
+
{/* AI Insights and Suggestions */}
|
|
1454
|
+
{aiSuggestions.length > 0 && (
|
|
1455
|
+
<div className="rounded-lg border bg-muted/10 p-4">
|
|
1456
|
+
<h3 className="mb-3 flex items-center gap-2 font-medium text-sm">
|
|
1457
|
+
<Brain className="h-4 w-4 text-primary" />
|
|
1458
|
+
AI Insights & Suggestions
|
|
1459
|
+
</h3>
|
|
1460
|
+
<ul className="space-y-2">
|
|
1461
|
+
{aiSuggestions.map((suggestion) => (
|
|
1462
|
+
<li
|
|
1463
|
+
key={suggestion}
|
|
1464
|
+
className="flex items-start gap-2 text-sm"
|
|
1465
|
+
>
|
|
1466
|
+
<div className="mt-0.5 text-primary">•</div>
|
|
1467
|
+
<span>{suggestion}</span>
|
|
1468
|
+
</li>
|
|
1469
|
+
))}
|
|
1470
|
+
</ul>
|
|
1471
|
+
</div>
|
|
1472
|
+
)}
|
|
1473
|
+
|
|
1474
|
+
{/* Warnings and Errors */}
|
|
1475
|
+
{showOverlapWarning && (
|
|
1476
|
+
<OverlapWarning overlappingEvents={overlappingEvents} />
|
|
1477
|
+
)}
|
|
1478
|
+
</div>
|
|
1479
|
+
</ScrollArea>
|
|
1480
|
+
|
|
1481
|
+
{/* Action Buttons */}
|
|
1482
|
+
<div className="mt-auto border-t p-6">
|
|
1483
|
+
<div className="flex justify-between">
|
|
1484
|
+
<div className="flex gap-2">
|
|
1485
|
+
<Button
|
|
1486
|
+
variant="outline"
|
|
1487
|
+
onClick={() => setActiveTab('ai')}
|
|
1488
|
+
className="flex items-center gap-2"
|
|
1489
|
+
>
|
|
1490
|
+
<ChevronLeft className="h-4 w-4" />
|
|
1491
|
+
<span>Back</span>
|
|
1492
|
+
</Button>
|
|
1493
|
+
<Button
|
|
1494
|
+
variant="outline"
|
|
1495
|
+
onClick={() => {
|
|
1496
|
+
// Transfer AI generated event to manual form
|
|
1497
|
+
if (generatedEvent) {
|
|
1498
|
+
setEvent({
|
|
1499
|
+
...generatedEvent,
|
|
1500
|
+
id: undefined, // Remove ID to create a new event
|
|
1501
|
+
});
|
|
1502
|
+
setActiveTab('manual');
|
|
1503
|
+
}
|
|
1504
|
+
}}
|
|
1505
|
+
className="flex items-center gap-2"
|
|
1506
|
+
>
|
|
1507
|
+
<FileText className="h-4 w-4" />
|
|
1508
|
+
<span>Edit Details</span>
|
|
1509
|
+
</Button>
|
|
1510
|
+
</div>
|
|
1511
|
+
<Button
|
|
1512
|
+
onClick={handleAISave}
|
|
1513
|
+
disabled={
|
|
1514
|
+
isSaving || (generatedEvents?.length || 0) === 0
|
|
1515
|
+
}
|
|
1516
|
+
className="flex items-center gap-2"
|
|
1517
|
+
>
|
|
1518
|
+
{isSaving ? (
|
|
1519
|
+
<>
|
|
1520
|
+
<Loader2 className="h-4 w-4 animate-spin" />
|
|
1521
|
+
<span>Saving...</span>
|
|
1522
|
+
</>
|
|
1523
|
+
) : (
|
|
1524
|
+
<>
|
|
1525
|
+
<Check className="h-4 w-4" />
|
|
1526
|
+
<span>
|
|
1527
|
+
Save{' '}
|
|
1528
|
+
{(generatedEvents?.length || 0) > 1
|
|
1529
|
+
? 'All Events'
|
|
1530
|
+
: 'Event'}
|
|
1531
|
+
</span>
|
|
1532
|
+
</>
|
|
1533
|
+
)}
|
|
1534
|
+
</Button>
|
|
1535
|
+
</div>
|
|
1536
|
+
</div>
|
|
1537
|
+
</div>
|
|
1538
|
+
</TabsContent>
|
|
1539
|
+
</div>
|
|
1540
|
+
</Tabs>
|
|
1541
|
+
</DialogContent>
|
|
1542
|
+
</Dialog>
|
|
1543
|
+
);
|
|
1544
|
+
}
|