@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.
Files changed (1208) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +2 -2
  3. package/biome.json +5 -0
  4. package/components.json +1 -1
  5. package/jsr.json +9 -9
  6. package/package.json +422 -92
  7. package/postcss.config.mjs +1 -1
  8. package/src/components/ui/__tests__/avatar.test.tsx +53 -0
  9. package/src/components/ui/accordion.tsx +4 -4
  10. package/src/components/ui/alert-dialog.tsx +8 -6
  11. package/src/components/ui/alert.tsx +2 -2
  12. package/src/components/ui/avatar.tsx +6 -3
  13. package/src/components/ui/badge.tsx +6 -4
  14. package/src/components/ui/breadcrumb.tsx +3 -4
  15. package/src/components/ui/button.tsx +3 -3
  16. package/src/components/ui/calendar-app/calendar-client-page.tsx +69 -0
  17. package/src/components/ui/calendar-app/calendar-page-shell.tsx +59 -0
  18. package/src/components/ui/calendar-app/components/actions-dropdown.tsx +269 -0
  19. package/src/components/ui/calendar-app/components/auto-schedule-comprehensive-dialog.tsx +220 -0
  20. package/src/components/ui/calendar-app/components/calendar-connections-manager.tsx +2 -0
  21. package/src/components/ui/calendar-app/components/calendar-connections-unified.tsx +1433 -0
  22. package/src/components/ui/calendar-app/components/calendar-connections.tsx +843 -0
  23. package/src/components/ui/calendar-app/components/calendar-header-actions.tsx +67 -0
  24. package/src/components/ui/calendar-app/components/calendar-types.ts +46 -0
  25. package/src/components/ui/calendar-app/components/connected-accounts-dialog.tsx +353 -0
  26. package/src/components/ui/calendar-app/components/e2ee-status-badge.tsx +237 -0
  27. package/src/components/ui/calendar-app/components/experimental-feature-dialog.tsx +56 -0
  28. package/src/components/ui/calendar-app/components/habits-panel.tsx +332 -0
  29. package/src/components/ui/calendar-app/components/priority-dropdown.tsx +113 -0
  30. package/src/components/ui/calendar-app/components/priority-view.tsx +939 -0
  31. package/src/components/ui/calendar-app/components/quick-calendar-toggle.tsx +1 -0
  32. package/src/components/ui/calendar-app/components/quick-task-dialog.tsx +335 -0
  33. package/src/components/ui/calendar-app/components/quick-task-timer.tsx +112 -0
  34. package/src/components/ui/calendar-app/components/require-workspace-timezone-dialog.tsx +415 -0
  35. package/src/components/ui/calendar-app/components/scheduling-dialog.tsx +660 -0
  36. package/src/components/ui/calendar-app/components/sidebar/calendar-sidebar.tsx +128 -0
  37. package/src/components/ui/calendar-app/components/sidebar/index.tsx +1 -0
  38. package/src/components/ui/calendar-app/components/smart-schedule-button.tsx +117 -0
  39. package/src/components/ui/calendar-app/components/smart-schedule-preview-dialog.tsx +845 -0
  40. package/src/components/ui/calendar-app/components/smart-schedule-preview-panel.tsx +941 -0
  41. package/src/components/ui/calendar-app/components/sync-debug-panel.tsx +708 -0
  42. package/src/components/ui/calendar-app/components/task-fetcher.ts +51 -0
  43. package/src/components/ui/calendar-app/components/task-form.tsx +132 -0
  44. package/src/components/ui/calendar-app/components/task-list-form.tsx +84 -0
  45. package/src/components/ui/calendar-app/components/task-scheduler-panel.tsx +490 -0
  46. package/src/components/ui/calendar-app/components/tasks-sidebar-content.tsx +232 -0
  47. package/src/components/ui/calendar-app/components/tasks-sidebar.tsx +143 -0
  48. package/src/components/ui/calendar-app/components/test-event-generator-button.tsx +94 -0
  49. package/src/components/ui/calendar-app/components/time-tracker/components/active-session-card.tsx +113 -0
  50. package/src/components/ui/calendar-app/components/time-tracker/components/index.ts +3 -0
  51. package/src/components/ui/calendar-app/components/time-tracker/components/session-card.tsx +153 -0
  52. package/src/components/ui/calendar-app/components/time-tracker/components/stats-cards.tsx +58 -0
  53. package/src/components/ui/calendar-app/components/time-tracker/dialogs/create-task-dialog.tsx +190 -0
  54. package/src/components/ui/calendar-app/components/time-tracker/dialogs/delete-session-dialog.tsx +52 -0
  55. package/src/components/ui/calendar-app/components/time-tracker/dialogs/edit-session-dialog.tsx +173 -0
  56. package/src/components/ui/calendar-app/components/time-tracker/dialogs/index.ts +3 -0
  57. package/src/components/ui/calendar-app/components/time-tracker/hooks/index.ts +2 -0
  58. package/src/components/ui/calendar-app/components/time-tracker/hooks/use-sessions.ts +191 -0
  59. package/src/components/ui/calendar-app/components/time-tracker/hooks/use-time-tracker.ts +408 -0
  60. package/src/components/ui/calendar-app/components/time-tracker/index.tsx +902 -0
  61. package/src/components/ui/calendar-app/components/time-tracker/tabs/history-tab.tsx +28 -0
  62. package/src/components/ui/calendar-app/components/time-tracker/tabs/index.ts +2 -0
  63. package/src/components/ui/calendar-app/components/time-tracker/tabs/recent-sessions-tab.tsx +173 -0
  64. package/src/components/ui/calendar-app/components/time-tracker/time-tracker-trigger.tsx +50 -0
  65. package/src/components/ui/calendar-app/components/time-tracker/utils/category-colors.ts +38 -0
  66. package/src/components/ui/calendar-app/components/time-tracker/utils/format-time.ts +26 -0
  67. package/src/components/ui/calendar-app/components/time-tracker/utils/index.ts +2 -0
  68. package/src/components/ui/calendar-app/components/time-tracker.tsx +2040 -0
  69. package/src/components/ui/calendar-app/hooks/index.ts +9 -0
  70. package/src/components/ui/calendar-app/hooks/use-calendar-settings.ts +130 -0
  71. package/src/components/ui/calendar-app/hooks/use-e2ee.ts +283 -0
  72. package/src/components/ui/calendar.tsx +212 -64
  73. package/src/components/ui/card.tsx +3 -3
  74. package/src/components/ui/carousel.tsx +6 -5
  75. package/src/components/ui/chart.tsx +76 -24
  76. package/src/components/ui/chat/ai-message-markdown.tsx +59 -0
  77. package/src/components/ui/chat/ai-message-parts.tsx +176 -0
  78. package/src/components/ui/chat/ai-message-render-registry.tsx +203 -0
  79. package/src/components/ui/chat/ai-message-render-utils.ts +220 -0
  80. package/src/components/ui/chat/ai-message-tool-part.tsx +433 -0
  81. package/src/components/ui/chat/ai-message-tool-utils.ts +138 -0
  82. package/src/components/ui/chat/chat-agent-details-external-thread-panel.test.tsx +134 -0
  83. package/src/components/ui/chat/chat-agent-details-external-thread-panel.tsx +204 -0
  84. package/src/components/ui/chat/chat-agent-details-operations-panel.tsx +187 -0
  85. package/src/components/ui/chat/chat-agent-details-setup-panel.tsx +297 -0
  86. package/src/components/ui/chat/chat-agent-details-sidebar.test.tsx +136 -0
  87. package/src/components/ui/chat/chat-agent-details-sidebar.tsx +327 -0
  88. package/src/components/ui/chat/chat-agent-details-utils.test.ts +161 -0
  89. package/src/components/ui/chat/chat-agent-details-utils.tsx +280 -0
  90. package/src/components/ui/chat/chat-ai-credit-source-picker.tsx +210 -0
  91. package/src/components/ui/chat/chat-ai-details-panels.tsx +421 -0
  92. package/src/components/ui/chat/chat-ai-details-sidebar.tsx +206 -0
  93. package/src/components/ui/chat/chat-ai-models.test.ts +37 -0
  94. package/src/components/ui/chat/chat-ai-models.ts +23 -0
  95. package/src/components/ui/chat/chat-shared-content-sidebar.tsx +209 -0
  96. package/src/components/ui/chat/chat-sidebar-groups.test.ts +64 -0
  97. package/src/components/ui/chat/chat-sidebar-items.tsx +195 -0
  98. package/src/components/ui/chat/chat-sidebar-panel.tsx +183 -0
  99. package/src/components/ui/chat/chat-sidebar.tsx +505 -0
  100. package/src/components/ui/chat/chat-utils.test.ts +280 -0
  101. package/src/components/ui/chat/chat-workspace-header.tsx +429 -0
  102. package/src/components/ui/chat/chat-workspace.tsx +575 -0
  103. package/src/components/ui/chat/conversation-type-selector.tsx +51 -0
  104. package/src/components/ui/chat/create-conversation-dialog.test.tsx +89 -0
  105. package/src/components/ui/chat/create-conversation-dialog.tsx +377 -0
  106. package/src/components/ui/chat/directory-user-picker.tsx +160 -0
  107. package/src/components/ui/chat/friend-request-items.tsx +124 -0
  108. package/src/components/ui/chat/friend-requests-button.tsx +243 -0
  109. package/src/components/ui/chat/friend-requests-panel.tsx +116 -0
  110. package/src/components/ui/chat/hooks-ai.ts +73 -0
  111. package/src/components/ui/chat/hooks-attachments.ts +83 -0
  112. package/src/components/ui/chat/hooks-conversations.ts +205 -0
  113. package/src/components/ui/chat/hooks-directory.ts +45 -0
  114. package/src/components/ui/chat/hooks-friends.ts +74 -0
  115. package/src/components/ui/chat/hooks-messages.test.tsx +67 -0
  116. package/src/components/ui/chat/hooks-messages.ts +707 -0
  117. package/src/components/ui/chat/hooks-realtime.ts +157 -0
  118. package/src/components/ui/chat/hooks-shared-content.ts +56 -0
  119. package/src/components/ui/chat/hooks.ts +9 -0
  120. package/src/components/ui/chat/message-attachment-button.tsx +188 -0
  121. package/src/components/ui/chat/message-attachment-preview-dialog.tsx +141 -0
  122. package/src/components/ui/chat/message-bubble.tsx +372 -0
  123. package/src/components/ui/chat/message-composer.tsx +213 -0
  124. package/src/components/ui/chat/message-links.tsx +193 -0
  125. package/src/components/ui/chat/message-list.tsx +318 -0
  126. package/src/components/ui/chat/message-markdown.tsx +112 -0
  127. package/src/components/ui/chat/message-youtube.ts +48 -0
  128. package/src/components/ui/chat/query-keys.ts +48 -0
  129. package/src/components/ui/chat/utils.ts +284 -0
  130. package/src/components/ui/checkbox.tsx +24 -8
  131. package/src/components/ui/codeblock.tsx +7 -7
  132. package/src/components/ui/color-picker.tsx +9 -8
  133. package/src/components/ui/command.tsx +19 -11
  134. package/src/components/ui/context-menu.tsx +10 -10
  135. package/src/components/ui/currency-input.tsx +464 -0
  136. package/src/components/ui/custom/__tests__/facebook-mockup.test.tsx +291 -0
  137. package/src/components/ui/custom/__tests__/report-preview-pagination.test.ts +189 -0
  138. package/src/components/ui/custom/__tests__/report-preview.test.tsx +201 -0
  139. package/src/components/ui/custom/__tests__/settings-dialog-shell.test.tsx +144 -0
  140. package/src/components/ui/custom/__tests__/tuturuuu-logo.test.ts +10 -0
  141. package/src/components/ui/custom/autosize-textarea.tsx +3 -2
  142. package/src/components/ui/custom/calendar/core.tsx +11 -3
  143. package/src/components/ui/custom/calendar/day-cell.tsx +58 -44
  144. package/src/components/ui/custom/calendar/month-header.tsx +5 -7
  145. package/src/components/ui/custom/calendar/month-view.tsx +21 -9
  146. package/src/components/ui/custom/calendar/year-calendar.tsx +51 -10
  147. package/src/components/ui/custom/calendar/year-view.tsx +9 -5
  148. package/src/components/ui/custom/combobox.tsx +357 -89
  149. package/src/components/ui/custom/common-footer.tsx +89 -39
  150. package/src/components/ui/custom/compared-date-range-picker.tsx +478 -261
  151. package/src/components/ui/custom/data-pagination.tsx +446 -0
  152. package/src/components/ui/custom/date-input.tsx +4 -7
  153. package/src/components/ui/custom/education/certificates/certificate-viewer.tsx +98 -0
  154. package/src/components/ui/custom/education/certificates/download-button-pdf.tsx +82 -0
  155. package/src/components/ui/custom/education/certificates/types.ts +25 -0
  156. package/src/components/ui/custom/education/courses/course-card-view.tsx +252 -0
  157. package/src/components/ui/custom/education/courses/course-form.tsx +248 -0
  158. package/src/components/ui/custom/education/courses/course-header.tsx +38 -0
  159. package/src/components/ui/custom/education/courses/course-pagination.tsx +62 -0
  160. package/src/components/ui/custom/education/courses/course-row-actions.tsx +130 -0
  161. package/src/components/ui/custom/education/modules/content-section.tsx +73 -0
  162. package/src/components/ui/custom/education/modules/course-module-form.tsx +234 -0
  163. package/src/components/ui/custom/education/modules/course-module-row-actions.tsx +126 -0
  164. package/src/components/ui/custom/education/modules/link-button.tsx +66 -0
  165. package/src/components/ui/custom/education/modules/module-toggle.tsx +115 -0
  166. package/src/components/ui/custom/education/modules/resources/delete-resource.tsx +46 -0
  167. package/src/components/ui/custom/education/modules/resources/file-display.tsx +84 -0
  168. package/src/components/ui/custom/education/modules/resources/file-upload-form.tsx +544 -0
  169. package/src/components/ui/custom/education/modules/resources/pdf-viewer.tsx +119 -0
  170. package/src/components/ui/custom/education/modules/youtube/delete-link-button.tsx +62 -0
  171. package/src/components/ui/custom/education/modules/youtube/embed.tsx +20 -0
  172. package/src/components/ui/custom/education/modules/youtube/form.tsx +112 -0
  173. package/src/components/ui/custom/education/shell/education-content-surface.tsx +31 -0
  174. package/src/components/ui/custom/education/shell/education-kpi-strip.tsx +48 -0
  175. package/src/components/ui/custom/education/shell/education-page-header.tsx +56 -0
  176. package/src/components/ui/custom/empty-card.tsx +2 -2
  177. package/src/components/ui/custom/facebook-mockup/defaults.ts +81 -0
  178. package/src/components/ui/custom/facebook-mockup/facebook-mockup.tsx +313 -0
  179. package/src/components/ui/custom/facebook-mockup/form.tsx +629 -0
  180. package/src/components/ui/custom/facebook-mockup/image-upload-field.tsx +111 -0
  181. package/src/components/ui/custom/facebook-mockup/preview.tsx +760 -0
  182. package/src/components/ui/custom/facebook-mockup/types.ts +44 -0
  183. package/src/components/ui/custom/feature-summary.tsx +61 -7
  184. package/src/components/ui/custom/file-uploader.tsx +18 -15
  185. package/src/components/ui/custom/get-started-button.tsx +33 -0
  186. package/src/components/ui/custom/get-started-gradient-button.tsx +23 -0
  187. package/src/components/ui/custom/gradient-headline.tsx +25 -0
  188. package/src/components/ui/custom/icon-picker/icon-options.ts +24240 -0
  189. package/src/components/ui/custom/icon-picker/icon-picker.tsx +608 -0
  190. package/src/components/ui/custom/icon-picker/index.ts +45 -0
  191. package/src/components/ui/custom/icon-picker/types.ts +133 -0
  192. package/src/components/ui/custom/input-field.tsx +3 -1
  193. package/src/components/ui/custom/language-dropdown-item.tsx +55 -0
  194. package/src/components/ui/custom/language-dropdown-wrapper.tsx +34 -0
  195. package/src/components/ui/custom/language-toggle.tsx +43 -0
  196. package/src/components/ui/custom/language-wrapper.tsx +23 -0
  197. package/src/components/ui/custom/lead-generation-preview.tsx +310 -0
  198. package/src/components/ui/custom/loading-indicator.tsx +3 -0
  199. package/src/components/ui/custom/loading.tsx +8 -0
  200. package/src/components/ui/custom/logo-title.tsx +20 -0
  201. package/src/components/ui/custom/missed-entry/image-upload-section.tsx +192 -0
  202. package/src/components/ui/custom/modifiable-dialog-trigger.tsx +13 -7
  203. package/src/components/ui/custom/month-picker.tsx +8 -8
  204. package/src/components/ui/custom/nav-link.tsx +474 -0
  205. package/src/components/ui/custom/nav.tsx +86 -0
  206. package/src/components/ui/custom/navigation.tsx +192 -0
  207. package/src/components/ui/custom/notification-popover-client.tsx +758 -0
  208. package/src/components/ui/custom/production-indicator.tsx +22 -0
  209. package/src/components/ui/custom/qr/color.tsx +36 -0
  210. package/src/components/ui/custom/qr/display.tsx +82 -0
  211. package/src/components/ui/custom/qr/formats.tsx +52 -0
  212. package/src/components/ui/custom/qr/image-upload.tsx +440 -0
  213. package/src/components/ui/custom/qr/qr.tsx +170 -0
  214. package/src/components/ui/custom/qr/styles.tsx +133 -0
  215. package/src/components/ui/custom/qr/workspace-title.tsx +47 -0
  216. package/src/components/ui/custom/report-preview-pagination.ts +579 -0
  217. package/src/components/ui/custom/report-preview.tsx +745 -126
  218. package/src/components/ui/custom/search-bar.tsx +8 -12
  219. package/src/components/ui/custom/select-field.tsx +5 -3
  220. package/src/components/ui/custom/settings/appearance-settings.tsx +129 -0
  221. package/src/components/ui/custom/settings/lunar-calendar-settings.tsx +36 -0
  222. package/src/components/ui/custom/settings/sidebar-settings.tsx +135 -0
  223. package/src/components/ui/custom/settings/task-settings.tsx +236 -0
  224. package/src/components/ui/custom/settings-dialog-shell.tsx +481 -0
  225. package/src/components/ui/custom/settings-item-tab.tsx +29 -0
  226. package/src/components/ui/custom/sidebar-context.tsx +148 -0
  227. package/src/components/ui/custom/sidebar-footer-actions.tsx +337 -0
  228. package/src/components/ui/custom/staff-toolbar.tsx +16 -0
  229. package/src/components/ui/custom/structure.tsx +213 -0
  230. package/src/components/ui/custom/system-language-dropdown-item.tsx +46 -0
  231. package/src/components/ui/custom/system-language-wrapper.tsx +15 -0
  232. package/src/components/ui/custom/tables/custom-data-table.tsx +130 -0
  233. package/src/components/ui/custom/tables/data-table-column-header.tsx +9 -7
  234. package/src/components/ui/custom/tables/data-table-create-button.tsx +2 -2
  235. package/src/components/ui/custom/tables/data-table-faceted-filter.tsx +5 -5
  236. package/src/components/ui/custom/tables/data-table-pagination.tsx +69 -91
  237. package/src/components/ui/custom/tables/data-table-refresh-button.tsx +2 -2
  238. package/src/components/ui/custom/tables/data-table-toolbar.tsx +42 -19
  239. package/src/components/ui/custom/tables/data-table-view-options.tsx +27 -15
  240. package/src/components/ui/custom/tables/data-table.tsx +150 -56
  241. package/src/components/ui/custom/tailwind-indicator.tsx +14 -0
  242. package/src/components/ui/custom/theme-dropdown-items.tsx +90 -0
  243. package/src/components/ui/custom/theme-toggle.tsx +35 -0
  244. package/src/components/ui/custom/tuturuuu-logo.tsx +16 -0
  245. package/src/components/ui/custom/uploaded-files-card.tsx +1 -0
  246. package/src/components/ui/custom/user-filters.tsx +487 -0
  247. package/src/components/ui/custom/version-badge.test.tsx +102 -0
  248. package/src/components/ui/custom/version-badge.tsx +169 -0
  249. package/src/components/ui/custom/view-toggle.tsx +63 -0
  250. package/src/components/ui/custom/workspace-access/adapters.test.ts +31 -0
  251. package/src/components/ui/custom/workspace-access/adapters.ts +169 -0
  252. package/src/components/ui/custom/workspace-access/index.ts +32 -0
  253. package/src/components/ui/custom/workspace-access/member-filter-utils.test.ts +175 -0
  254. package/src/components/ui/custom/workspace-access/member-filter-utils.ts +190 -0
  255. package/src/components/ui/custom/workspace-access/types.ts +150 -0
  256. package/src/components/ui/custom/workspace-access/workspace-access-client-pages.tsx +26 -0
  257. package/src/components/ui/custom/workspace-access/workspace-access-default-role-card.tsx +92 -0
  258. package/src/components/ui/custom/workspace-access/workspace-access-invite-dialog.tsx +102 -0
  259. package/src/components/ui/custom/workspace-access/workspace-access-labels.ts +53 -0
  260. package/src/components/ui/custom/workspace-access/workspace-access-member-row.tsx +249 -0
  261. package/src/components/ui/custom/workspace-access/workspace-access-members.tsx +84 -0
  262. package/src/components/ui/custom/workspace-access/workspace-access-page-header.tsx +72 -0
  263. package/src/components/ui/custom/workspace-access/workspace-access-page.tsx +388 -0
  264. package/src/components/ui/custom/workspace-access/workspace-access-people-filters.tsx +200 -0
  265. package/src/components/ui/custom/workspace-access/workspace-access-permission-checklist.tsx +87 -0
  266. package/src/components/ui/custom/workspace-access/workspace-access-permission-preview.tsx +35 -0
  267. package/src/components/ui/custom/workspace-access/workspace-access-role-editor-dialog.tsx +180 -0
  268. package/src/components/ui/custom/workspace-access/workspace-access-role-editor-labels.ts +33 -0
  269. package/src/components/ui/custom/workspace-access/workspace-access-roles.tsx +171 -0
  270. package/src/components/ui/custom/workspace-access/workspace-access-tabs-toolbar.tsx +71 -0
  271. package/src/components/ui/custom/workspace-select.tsx +849 -0
  272. package/src/components/ui/custom/workspace-wrapper.tsx +142 -0
  273. package/src/components/ui/date-time-picker.tsx +706 -0
  274. package/src/components/ui/dialog.tsx +23 -14
  275. package/src/components/ui/diff-viewer.tsx +921 -0
  276. package/src/components/ui/drawer.tsx +5 -5
  277. package/src/components/ui/dropdown-menu.tsx +18 -10
  278. package/src/components/ui/finance/analytics/analytics-date-controls.tsx +173 -0
  279. package/src/components/ui/finance/analytics/analytics-page.test.tsx +182 -0
  280. package/src/components/ui/finance/analytics/analytics-page.tsx +296 -0
  281. package/src/components/ui/finance/analytics/balance-trend-chart.tsx +288 -0
  282. package/src/components/ui/finance/analytics/category-spending-chart.test.tsx +75 -0
  283. package/src/components/ui/finance/analytics/category-spending-chart.tsx +213 -0
  284. package/src/components/ui/finance/analytics/income-expense-chart-utils.ts +52 -0
  285. package/src/components/ui/finance/analytics/income-expense-chart.tsx +242 -0
  286. package/src/components/ui/finance/analytics/income-expense-view-mode-control.tsx +37 -0
  287. package/src/components/ui/finance/analytics/spending-trends-chart.tsx +156 -0
  288. package/src/components/ui/finance/budgets/budget-alerts.test.tsx +133 -0
  289. package/src/components/ui/finance/budgets/budget-alerts.tsx +111 -0
  290. package/src/components/ui/finance/budgets/budget-card.test.tsx +72 -0
  291. package/src/components/ui/finance/budgets/budget-card.tsx +233 -0
  292. package/src/components/ui/finance/budgets/budgets-page.test.tsx +56 -0
  293. package/src/components/ui/finance/budgets/budgets-page.tsx +179 -0
  294. package/src/components/ui/finance/budgets/form-fields.tsx +304 -0
  295. package/src/components/ui/finance/budgets/form-schema.ts +39 -0
  296. package/src/components/ui/finance/budgets/form.tsx +141 -0
  297. package/src/components/ui/finance/categories-tags-tabs.tsx +80 -0
  298. package/src/components/ui/finance/debts/debt-loan-card.test.tsx +75 -0
  299. package/src/components/ui/finance/debts/debt-loan-card.tsx +212 -0
  300. package/src/components/ui/finance/debts/debt-loan-detail-cards.test.tsx +89 -0
  301. package/src/components/ui/finance/debts/debt-loan-detail-cards.tsx +207 -0
  302. package/src/components/ui/finance/debts/debt-loan-detail-page.tsx +301 -0
  303. package/src/components/ui/finance/debts/debt-loan-form-schema.ts +30 -0
  304. package/src/components/ui/finance/debts/debt-loan-form.tsx +394 -0
  305. package/src/components/ui/finance/debts/debt-loan-list.tsx +58 -0
  306. package/src/components/ui/finance/debts/debt-loan-summary.tsx +94 -0
  307. package/src/components/ui/finance/debts/debts-page.test.tsx +97 -0
  308. package/src/components/ui/finance/debts/debts-page.tsx +230 -0
  309. package/src/components/ui/finance/debts/index.ts +6 -0
  310. package/src/components/ui/finance/debts/query-invalidation.test.ts +62 -0
  311. package/src/components/ui/finance/debts/query-invalidation.ts +44 -0
  312. package/src/components/ui/finance/finance-layout.tsx +98 -0
  313. package/src/components/ui/finance/finance-overview-metrics.tsx +120 -0
  314. package/src/components/ui/finance/finance-page.tsx +169 -0
  315. package/src/components/ui/finance/finance-route-context.tsx +50 -0
  316. package/src/components/ui/finance/invoices/attendance-calendar.tsx +247 -0
  317. package/src/components/ui/finance/invoices/charts/invoice-totals-chart.test.tsx +67 -0
  318. package/src/components/ui/finance/invoices/charts/invoice-totals-chart.tsx +868 -0
  319. package/src/components/ui/finance/invoices/columns.test.tsx +66 -0
  320. package/src/components/ui/finance/invoices/columns.tsx +365 -0
  321. package/src/components/ui/finance/invoices/components/invoice-blocked-state.tsx +30 -0
  322. package/src/components/ui/finance/invoices/components/invoice-checkout-summary.tsx +120 -0
  323. package/src/components/ui/finance/invoices/components/invoice-content-editor.tsx +71 -0
  324. package/src/components/ui/finance/invoices/components/invoice-customer-select-card.tsx +342 -0
  325. package/src/components/ui/finance/invoices/components/invoice-payment-settings.tsx +216 -0
  326. package/src/components/ui/finance/invoices/components/invoice-user-history-accordion.tsx +219 -0
  327. package/src/components/ui/finance/invoices/components/subscription-attendance-summary.tsx +272 -0
  328. package/src/components/ui/finance/invoices/components/subscription-group-selector.tsx +346 -0
  329. package/src/components/ui/finance/invoices/create-promotion-dialog.tsx +67 -0
  330. package/src/components/ui/finance/invoices/export-dialog-content.tsx +492 -0
  331. package/src/components/ui/finance/invoices/hooks/use-best-promotion-selection.ts +119 -0
  332. package/src/components/ui/finance/invoices/hooks/use-invoice-analytics.ts +79 -0
  333. package/src/components/ui/finance/invoices/hooks/use-invoice-rounding.ts +33 -0
  334. package/src/components/ui/finance/invoices/hooks/use-invoice-subtotal.ts +13 -0
  335. package/src/components/ui/finance/invoices/hooks/use-subscription-auto-selection.ts +412 -0
  336. package/src/components/ui/finance/invoices/hooks/use-subscription-invoice-content.ts +191 -0
  337. package/src/components/ui/finance/invoices/hooks.ts +878 -0
  338. package/src/components/ui/finance/invoices/internal-api.ts +466 -0
  339. package/src/components/ui/finance/invoices/invoice-analytics.tsx +167 -0
  340. package/src/components/ui/finance/invoices/invoice-page.tsx +468 -0
  341. package/src/components/ui/finance/invoices/invoice-visibility-format.test.ts +90 -0
  342. package/src/components/ui/finance/invoices/invoice-visibility-format.ts +67 -0
  343. package/src/components/ui/finance/invoices/invoiceId/compact-invoice-template.tsx +172 -0
  344. package/src/components/ui/finance/invoices/invoiceId/full-invoice-template.tsx +349 -0
  345. package/src/components/ui/finance/invoices/invoiceId/invoice-card.tsx +360 -0
  346. package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.test.tsx +227 -0
  347. package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.tsx +409 -0
  348. package/src/components/ui/finance/invoices/invoiceId/invoice-edit-form.tsx +161 -0
  349. package/src/components/ui/finance/invoices/invoiceId/product-card.tsx +90 -0
  350. package/src/components/ui/finance/invoices/invoiceId/promotion-card.tsx +76 -0
  351. package/src/components/ui/finance/invoices/invoices-table.tsx +284 -0
  352. package/src/components/ui/finance/invoices/new-invoice-page.tsx +215 -0
  353. package/src/components/ui/finance/invoices/pending-columns.tsx +308 -0
  354. package/src/components/ui/finance/invoices/pending-invoices-tab.tsx +43 -0
  355. package/src/components/ui/finance/invoices/pending-invoices-table.tsx +258 -0
  356. package/src/components/ui/finance/invoices/product-selection.test.tsx +78 -0
  357. package/src/components/ui/finance/invoices/product-selection.tsx +345 -0
  358. package/src/components/ui/finance/invoices/promotion-form.tsx +352 -0
  359. package/src/components/ui/finance/invoices/query-invalidation.ts +65 -0
  360. package/src/components/ui/finance/invoices/row-actions.tsx +148 -0
  361. package/src/components/ui/finance/invoices/standard-invoice.tsx +595 -0
  362. package/src/components/ui/finance/invoices/subscription-invoice.tsx +1009 -0
  363. package/src/components/ui/finance/invoices/types.ts +93 -0
  364. package/src/components/ui/finance/invoices/user-filter-wrapper.tsx +59 -0
  365. package/src/components/ui/finance/invoices/utils.test.ts +165 -0
  366. package/src/components/ui/finance/invoices/utils.ts +484 -0
  367. package/src/components/ui/finance/invoices/wallet-filter-wrapper.tsx +47 -0
  368. package/src/components/ui/finance/recurring/form-fields.tsx +142 -0
  369. package/src/components/ui/finance/recurring/form-schedule-fields.tsx +112 -0
  370. package/src/components/ui/finance/recurring/form-schema.ts +32 -0
  371. package/src/components/ui/finance/recurring/form.tsx +130 -0
  372. package/src/components/ui/finance/recurring/recurring-sections.tsx +141 -0
  373. package/src/components/ui/finance/recurring/recurring-transaction-card.tsx +152 -0
  374. package/src/components/ui/finance/recurring/recurring-transactions-page.test.tsx +87 -0
  375. package/src/components/ui/finance/recurring/recurring-transactions-page.tsx +154 -0
  376. package/src/components/ui/finance/recurring/upcoming-transaction-card.tsx +84 -0
  377. package/src/components/ui/finance/shared/charts/category-breakdown-chart-body.tsx +118 -0
  378. package/src/components/ui/finance/shared/charts/category-breakdown-chart-controls.tsx +146 -0
  379. package/src/components/ui/finance/shared/charts/category-breakdown-chart-legend.tsx +49 -0
  380. package/src/components/ui/finance/shared/charts/category-breakdown-chart-tooltip.tsx +109 -0
  381. package/src/components/ui/finance/shared/charts/category-breakdown-chart-types.ts +24 -0
  382. package/src/components/ui/finance/shared/charts/category-breakdown-chart-utils.ts +207 -0
  383. package/src/components/ui/finance/shared/charts/category-breakdown-chart.tsx +263 -0
  384. package/src/components/ui/finance/shared/charts/daily-total-chart-client.tsx +384 -0
  385. package/src/components/ui/finance/shared/charts/daily-total-chart.tsx +299 -0
  386. package/src/components/ui/finance/shared/charts/monthly-total-chart-client.tsx +391 -0
  387. package/src/components/ui/finance/shared/charts/monthly-total-chart.tsx +296 -0
  388. package/src/components/ui/finance/shared/charts/use-finance-confidential-visibility.ts +5 -0
  389. package/src/components/ui/finance/shared/confidential-toggle.tsx +78 -0
  390. package/src/components/ui/finance/shared/create-dialog-feature-summary.tsx +23 -0
  391. package/src/components/ui/finance/shared/dashboard-header.tsx +19 -0
  392. package/src/components/ui/finance/shared/date-picker.tsx +74 -0
  393. package/src/components/ui/finance/shared/date-range-filter-wrapper.tsx +86 -0
  394. package/src/components/ui/finance/shared/date-range-picker.tsx +42 -0
  395. package/src/components/ui/finance/shared/empty-state.tsx +41 -0
  396. package/src/components/ui/finance/shared/filter.tsx +267 -0
  397. package/src/components/ui/finance/shared/finance-display-amount.tsx +25 -0
  398. package/src/components/ui/finance/shared/loaders/statistics.tsx +18 -0
  399. package/src/components/ui/finance/shared/loaders/table-skeleton.tsx +5 -0
  400. package/src/components/ui/finance/shared/metrics.tsx +69 -0
  401. package/src/components/ui/finance/shared/month-picker.tsx +177 -0
  402. package/src/components/ui/finance/shared/month-range-picker.tsx +50 -0
  403. package/src/components/ui/finance/shared/next-charts.tsx +77 -0
  404. package/src/components/ui/finance/shared/numbers-visibility-toggle.test.tsx +38 -0
  405. package/src/components/ui/finance/shared/numbers-visibility-toggle.tsx +43 -0
  406. package/src/components/ui/finance/shared/quick-actions.tsx +143 -0
  407. package/src/components/ui/finance/shared/use-finance-confidential-visibility.ts +68 -0
  408. package/src/components/ui/finance/shared/year-picker.tsx +178 -0
  409. package/src/components/ui/finance/shared/year-range-picker.tsx +50 -0
  410. package/src/components/ui/finance/statistics/card.tsx +195 -0
  411. package/src/components/ui/finance/statistics/expense.tsx +63 -0
  412. package/src/components/ui/finance/statistics/income.tsx +63 -0
  413. package/src/components/ui/finance/statistics/invoices.tsx +77 -0
  414. package/src/components/ui/finance/statistics/monthly-expense.tsx +63 -0
  415. package/src/components/ui/finance/statistics/monthly-income.tsx +63 -0
  416. package/src/components/ui/finance/statistics/total-balance.test.tsx +79 -0
  417. package/src/components/ui/finance/statistics/total-balance.tsx +64 -0
  418. package/src/components/ui/finance/statistics/transaction-categories.tsx +59 -0
  419. package/src/components/ui/finance/statistics/transactions.tsx +90 -0
  420. package/src/components/ui/finance/statistics/wallets.tsx +55 -0
  421. package/src/components/ui/finance/tags/tag-badge.tsx +36 -0
  422. package/src/components/ui/finance/tags/tag-manager.test.tsx +128 -0
  423. package/src/components/ui/finance/tags/tag-manager.tsx +646 -0
  424. package/src/components/ui/finance/transactions/TRANSACTIONS_UI_REVAMP.md +328 -0
  425. package/src/components/ui/finance/transactions/UI_IMPROVEMENTS.md +444 -0
  426. package/src/components/ui/finance/transactions/__tests__/export-utils.test.ts +167 -0
  427. package/src/components/ui/finance/transactions/categories/amount-filter-wrapper.tsx +55 -0
  428. package/src/components/ui/finance/transactions/categories/amount-filter.tsx +135 -0
  429. package/src/components/ui/finance/transactions/categories/categories-data-table.tsx +274 -0
  430. package/src/components/ui/finance/transactions/categories/columns.test.tsx +113 -0
  431. package/src/components/ui/finance/transactions/categories/columns.tsx +253 -0
  432. package/src/components/ui/finance/transactions/categories/form.tsx +388 -0
  433. package/src/components/ui/finance/transactions/categories/hooks.test.tsx +72 -0
  434. package/src/components/ui/finance/transactions/categories/hooks.ts +95 -0
  435. package/src/components/ui/finance/transactions/categories/row-actions.tsx +132 -0
  436. package/src/components/ui/finance/transactions/categories/transactions-categories-page.tsx +96 -0
  437. package/src/components/ui/finance/transactions/categories/type-filter-wrapper.tsx +39 -0
  438. package/src/components/ui/finance/transactions/categories/type-filter.tsx +148 -0
  439. package/src/components/ui/finance/transactions/category-filter-wrapper.tsx +41 -0
  440. package/src/components/ui/finance/transactions/category-filter.tsx +252 -0
  441. package/src/components/ui/finance/transactions/columns.test.tsx +119 -0
  442. package/src/components/ui/finance/transactions/columns.tsx +313 -0
  443. package/src/components/ui/finance/transactions/confidential-field.test.tsx +32 -0
  444. package/src/components/ui/finance/transactions/confidential-field.tsx +289 -0
  445. package/src/components/ui/finance/transactions/export-dialog-content.tsx +393 -0
  446. package/src/components/ui/finance/transactions/export-utils.ts +99 -0
  447. package/src/components/ui/finance/transactions/form-basic-tab.tsx +360 -0
  448. package/src/components/ui/finance/transactions/form-content-dialog.tsx +163 -0
  449. package/src/components/ui/finance/transactions/form-more-tab.tsx +203 -0
  450. package/src/components/ui/finance/transactions/form-schema.ts +52 -0
  451. package/src/components/ui/finance/transactions/form-types.ts +39 -0
  452. package/src/components/ui/finance/transactions/form-utils.tsx +60 -0
  453. package/src/components/ui/finance/transactions/form.test.tsx +151 -0
  454. package/src/components/ui/finance/transactions/form.tsx +942 -0
  455. package/src/components/ui/finance/transactions/hooks/use-filter-reset.ts +27 -0
  456. package/src/components/ui/finance/transactions/infinite-transactions-list.tsx +1127 -0
  457. package/src/components/ui/finance/transactions/internal-api.ts +148 -0
  458. package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.test.ts +16 -0
  459. package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.ts +17 -0
  460. package/src/components/ui/finance/transactions/money-lover-import-dialog.tsx +908 -0
  461. package/src/components/ui/finance/transactions/period-charts/activity-distribution-chart.tsx +315 -0
  462. package/src/components/ui/finance/transactions/period-charts/category-breakdown-dialog.tsx +820 -0
  463. package/src/components/ui/finance/transactions/period-charts/category-donut-chart.tsx +609 -0
  464. package/src/components/ui/finance/transactions/period-charts/index.ts +4 -0
  465. package/src/components/ui/finance/transactions/period-charts/period-breakdown-panel.tsx +492 -0
  466. package/src/components/ui/finance/transactions/query-invalidation.test.ts +91 -0
  467. package/src/components/ui/finance/transactions/query-invalidation.ts +116 -0
  468. package/src/components/ui/finance/transactions/row-actions.tsx +145 -0
  469. package/src/components/ui/finance/transactions/tag-filter-wrapper.tsx +40 -0
  470. package/src/components/ui/finance/transactions/tag-filter.test.tsx +49 -0
  471. package/src/components/ui/finance/transactions/tag-filter.tsx +171 -0
  472. package/src/components/ui/finance/transactions/transaction-attachments-field.tsx +787 -0
  473. package/src/components/ui/finance/transactions/transaction-card.tsx +576 -0
  474. package/src/components/ui/finance/transactions/transaction-edit-dialog.test.tsx +101 -0
  475. package/src/components/ui/finance/transactions/transaction-edit-dialog.tsx +947 -0
  476. package/src/components/ui/finance/transactions/transaction-statistics.test.tsx +58 -0
  477. package/src/components/ui/finance/transactions/transaction-statistics.tsx +280 -0
  478. package/src/components/ui/finance/transactions/transaction-type-filter-wrapper.tsx +40 -0
  479. package/src/components/ui/finance/transactions/transaction-type-filter.tsx +95 -0
  480. package/src/components/ui/finance/transactions/transactionId/bill.tsx +307 -0
  481. package/src/components/ui/finance/transactions/transactionId/objects.tsx +149 -0
  482. package/src/components/ui/finance/transactions/transactionId/row-actions.tsx +263 -0
  483. package/src/components/ui/finance/transactions/transactionId/transaction-details-client-page.tsx +334 -0
  484. package/src/components/ui/finance/transactions/transactionId/transaction-details-page.tsx +76 -0
  485. package/src/components/ui/finance/transactions/transactions-create-summary.tsx +56 -0
  486. package/src/components/ui/finance/transactions/transactions-infinite-page.tsx +213 -0
  487. package/src/components/ui/finance/transactions/transactions-page.tsx +116 -0
  488. package/src/components/ui/finance/transactions/transfer-fields.tsx +194 -0
  489. package/src/components/ui/finance/transactions/user-filter-wrapper.tsx +42 -0
  490. package/src/components/ui/finance/transactions/user-filter.test.tsx +66 -0
  491. package/src/components/ui/finance/transactions/user-filter.tsx +282 -0
  492. package/src/components/ui/finance/transactions/view-mode-toggle.tsx +124 -0
  493. package/src/components/ui/finance/transactions/wallet-filter-wrapper.tsx +41 -0
  494. package/src/components/ui/finance/transactions/wallet-filter.test.tsx +52 -0
  495. package/src/components/ui/finance/transactions/wallet-filter.tsx +204 -0
  496. package/src/components/ui/finance/wallets/columns.tsx +324 -0
  497. package/src/components/ui/finance/wallets/form.test.tsx +78 -0
  498. package/src/components/ui/finance/wallets/form.tsx +491 -0
  499. package/src/components/ui/finance/wallets/query-invalidation.ts +58 -0
  500. package/src/components/ui/finance/wallets/row-actions.tsx +166 -0
  501. package/src/components/ui/finance/wallets/wallet-form-schema.ts +63 -0
  502. package/src/components/ui/finance/wallets/wallet-icon-display.tsx +71 -0
  503. package/src/components/ui/finance/wallets/wallet-icon-image-picker.tsx +369 -0
  504. package/src/components/ui/finance/wallets/wallet-images.ts +180 -0
  505. package/src/components/ui/finance/wallets/walletId/credit-wallet-summary.tsx +265 -0
  506. package/src/components/ui/finance/wallets/walletId/interest/index.ts +18 -0
  507. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-chart.tsx +296 -0
  508. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-detection-banner.tsx +77 -0
  509. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-disable-dialog.tsx +55 -0
  510. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-hero.tsx +149 -0
  511. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-pending-deposits.tsx +185 -0
  512. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-projections.tsx +259 -0
  513. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-dialog.tsx +89 -0
  514. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-history.tsx +116 -0
  515. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-section.tsx +260 -0
  516. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-settings.tsx +427 -0
  517. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-setup-dialog.tsx +206 -0
  518. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-summary.tsx +244 -0
  519. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-transparency.tsx +176 -0
  520. package/src/components/ui/finance/wallets/walletId/wallet-delete-button.test.tsx +78 -0
  521. package/src/components/ui/finance/wallets/walletId/wallet-delete-button.tsx +99 -0
  522. package/src/components/ui/finance/wallets/walletId/wallet-details-actions.tsx +119 -0
  523. package/src/components/ui/finance/wallets/walletId/wallet-details-amount.tsx +36 -0
  524. package/src/components/ui/finance/wallets/walletId/wallet-details-page.test.tsx +161 -0
  525. package/src/components/ui/finance/wallets/walletId/wallet-details-page.tsx +365 -0
  526. package/src/components/ui/finance/wallets/walletId/wallet-role-access-dialog.tsx +45 -0
  527. package/src/components/ui/finance/wallets/walletId/wallet-role-access.tsx +538 -0
  528. package/src/components/ui/finance/wallets/wallets-data-table.tsx +137 -0
  529. package/src/components/ui/finance/wallets/wallets-page.test.tsx +107 -0
  530. package/src/components/ui/finance/wallets/wallets-page.tsx +136 -0
  531. package/src/components/ui/form-required-indicator.tsx +31 -0
  532. package/src/components/ui/form.tsx +36 -13
  533. package/src/components/ui/hover-card.tsx +2 -2
  534. package/src/components/ui/input-otp.tsx +4 -4
  535. package/src/components/ui/input.tsx +2 -2
  536. package/src/components/ui/kbd.tsx +28 -0
  537. package/src/components/ui/label.tsx +2 -2
  538. package/src/components/ui/legacy/calendar/__tests__/event-utils.test.ts +247 -0
  539. package/src/components/ui/legacy/calendar/agenda-view.tsx +398 -0
  540. package/src/components/ui/legacy/calendar/all-day-event-bar.tsx +1033 -0
  541. package/src/components/ui/legacy/calendar/calendar-cell.tsx +1018 -0
  542. package/src/components/ui/legacy/calendar/calendar-column.tsx +31 -0
  543. package/src/components/ui/legacy/calendar/calendar-content.tsx +670 -0
  544. package/src/components/ui/legacy/calendar/calendar-header.tsx +195 -0
  545. package/src/components/ui/legacy/calendar/calendar-matrix.tsx +328 -0
  546. package/src/components/ui/legacy/calendar/calendar-settings-dialog.tsx +340 -0
  547. package/src/components/ui/legacy/calendar/calendar-view-with-trail.tsx +48 -0
  548. package/src/components/ui/legacy/calendar/calendar-view.tsx +28 -0
  549. package/src/components/ui/legacy/calendar/color-highlights.ts +55 -0
  550. package/src/components/ui/legacy/calendar/config.ts +8 -0
  551. package/src/components/ui/legacy/calendar/create-event-button.tsx +155 -0
  552. package/src/components/ui/legacy/calendar/day-title.tsx +68 -0
  553. package/src/components/ui/legacy/calendar/dynamic-island.tsx +245 -0
  554. package/src/components/ui/legacy/calendar/event-card.tsx +1430 -0
  555. package/src/components/ui/legacy/calendar/event-form-components.tsx +593 -0
  556. package/src/components/ui/legacy/calendar/event-modal.tsx +1544 -0
  557. package/src/components/ui/legacy/calendar/event-utils.ts +149 -0
  558. package/src/components/ui/legacy/calendar/location-timeline.tsx +1482 -0
  559. package/src/components/ui/legacy/calendar/month-calendar.tsx +986 -0
  560. package/src/components/ui/legacy/calendar/month-cell.tsx +33 -0
  561. package/src/components/ui/legacy/calendar/month-grid.tsx +105 -0
  562. package/src/components/ui/legacy/calendar/settings/analytics-charts.tsx +414 -0
  563. package/src/components/ui/legacy/calendar/settings/appearance-settings.tsx +218 -0
  564. package/src/components/ui/legacy/calendar/settings/calendar-sync-dashboard.tsx +217 -0
  565. package/src/components/ui/legacy/calendar/settings/category-color-settings.tsx +475 -0
  566. package/src/components/ui/legacy/calendar/settings/color-picker.tsx +177 -0
  567. package/src/components/ui/legacy/calendar/settings/google-calendar-settings.tsx +562 -0
  568. package/src/components/ui/legacy/calendar/settings/hour-settings.tsx +292 -0
  569. package/src/components/ui/legacy/calendar/settings/notification-settings.tsx +254 -0
  570. package/src/components/ui/legacy/calendar/settings/settings-context.tsx +257 -0
  571. package/src/components/ui/legacy/calendar/settings/smart-scheduling-settings.tsx +325 -0
  572. package/src/components/ui/legacy/calendar/settings/summary-cards.tsx +93 -0
  573. package/src/components/ui/legacy/calendar/settings/sync-logs-table.tsx +392 -0
  574. package/src/components/ui/legacy/calendar/settings/task-settings.tsx +330 -0
  575. package/src/components/ui/legacy/calendar/settings/time-range-picker.tsx +666 -0
  576. package/src/components/ui/legacy/calendar/settings/timezone-settings.tsx +580 -0
  577. package/src/components/ui/legacy/calendar/settings/types.ts +119 -0
  578. package/src/components/ui/legacy/calendar/settings-button.tsx +41 -0
  579. package/src/components/ui/legacy/calendar/smart-calendar.tsx +82 -0
  580. package/src/components/ui/legacy/calendar/time-indicator-line.tsx +61 -0
  581. package/src/components/ui/legacy/calendar/time-indicator-text.tsx +61 -0
  582. package/src/components/ui/legacy/calendar/time-indicator.tsx +19 -0
  583. package/src/components/ui/legacy/calendar/time-trail.tsx +52 -0
  584. package/src/components/ui/legacy/calendar/weekday-bar.tsx +78 -0
  585. package/src/components/ui/legacy/calendar/year-calendar.tsx +345 -0
  586. package/src/components/ui/legacy/meet/client-wrapper.tsx +74 -0
  587. package/src/components/ui/legacy/meet/create-plan-dialog.tsx +404 -0
  588. package/src/components/ui/legacy/meet/date-selector.tsx +46 -0
  589. package/src/components/ui/legacy/meet/edit-plan-dialog.tsx +501 -0
  590. package/src/components/ui/legacy/meet/experimental-notice.tsx +39 -0
  591. package/src/components/ui/legacy/meet/form.tsx +94 -0
  592. package/src/components/ui/legacy/meet/multiple-choice-vote.tsx +556 -0
  593. package/src/components/ui/legacy/meet/page.tsx +331 -0
  594. package/src/components/ui/legacy/meet/pagination.tsx +87 -0
  595. package/src/components/ui/legacy/meet/planId/account-badge.tsx +21 -0
  596. package/src/components/ui/legacy/meet/planId/agenda-details.tsx +131 -0
  597. package/src/components/ui/legacy/meet/planId/all-availabilities.tsx +105 -0
  598. package/src/components/ui/legacy/meet/planId/availability-planner.tsx +51 -0
  599. package/src/components/ui/legacy/meet/planId/confirm-button.tsx +53 -0
  600. package/src/components/ui/legacy/meet/planId/copy-link-button.tsx +218 -0
  601. package/src/components/ui/legacy/meet/planId/date-planner.tsx +243 -0
  602. package/src/components/ui/legacy/meet/planId/day-planner.tsx +78 -0
  603. package/src/components/ui/legacy/meet/planId/day-planners.tsx +151 -0
  604. package/src/components/ui/legacy/meet/planId/day-time.tsx +32 -0
  605. package/src/components/ui/legacy/meet/planId/download-as-png.tsx +16 -0
  606. package/src/components/ui/legacy/meet/planId/email-button.tsx +32 -0
  607. package/src/components/ui/legacy/meet/planId/logged-in-as-button.tsx +56 -0
  608. package/src/components/ui/legacy/meet/planId/page.tsx +236 -0
  609. package/src/components/ui/legacy/meet/planId/plan-details-client.tsx +205 -0
  610. package/src/components/ui/legacy/meet/planId/plan-login.tsx +342 -0
  611. package/src/components/ui/legacy/meet/planId/plan-user-filter-accordion.tsx +227 -0
  612. package/src/components/ui/legacy/meet/planId/plan-user-filter.tsx +68 -0
  613. package/src/components/ui/legacy/meet/planId/preview-day-time.tsx +303 -0
  614. package/src/components/ui/legacy/meet/planId/selectable-day-time.tsx +247 -0
  615. package/src/components/ui/legacy/meet/planId/show-qr-button.tsx +53 -0
  616. package/src/components/ui/legacy/meet/planId/sidebar-display.tsx +68 -0
  617. package/src/components/ui/legacy/meet/planId/sticky-bottom-indicator.tsx +28 -0
  618. package/src/components/ui/legacy/meet/planId/time-column.tsx +57 -0
  619. package/src/components/ui/legacy/meet/planId/unified-availability.tsx +93 -0
  620. package/src/components/ui/legacy/meet/planId/utility-buttons.tsx +54 -0
  621. package/src/components/ui/legacy/meet/plans-grid.tsx +192 -0
  622. package/src/components/ui/legacy/meet/plans-list-view.tsx +148 -0
  623. package/src/components/ui/legacy/meet/plans-loading-skeleton.tsx +61 -0
  624. package/src/components/ui/legacy/meet/time-selector.tsx +67 -0
  625. package/src/components/ui/legacy/meet/timezone-selector.tsx +72 -0
  626. package/src/components/ui/legacy/meet/user-time.tsx +7 -0
  627. package/src/components/ui/legacy/meet/view-toggle.tsx +44 -0
  628. package/src/components/ui/legacy/polls/poll-display.tsx +388 -0
  629. package/src/components/ui/legacy/polls/where-tu-meet.tsx +80 -0
  630. package/src/components/ui/markdown.tsx +2 -2
  631. package/src/components/ui/menubar.tsx +11 -11
  632. package/src/components/ui/navbar.tsx +150 -0
  633. package/src/components/ui/navigation-menu.tsx +9 -9
  634. package/src/components/ui/pagination.tsx +4 -5
  635. package/src/components/ui/popover.tsx +2 -2
  636. package/src/components/ui/progress.tsx +15 -4
  637. package/src/components/ui/radio-group.tsx +3 -3
  638. package/src/components/ui/report-problem-dialog.tsx +980 -0
  639. package/src/components/ui/resizable.tsx +35 -13
  640. package/src/components/ui/scroll-area.tsx +3 -3
  641. package/src/components/ui/select.tsx +9 -8
  642. package/src/components/ui/separator.tsx +2 -2
  643. package/src/components/ui/sheet.tsx +13 -11
  644. package/src/components/ui/sidebar.tsx +18 -17
  645. package/src/components/ui/slider.tsx +3 -3
  646. package/src/components/ui/sonner.tsx +2 -2
  647. package/src/components/ui/sticky-bottom-bar.tsx +51 -0
  648. package/src/components/ui/switch.tsx +2 -2
  649. package/src/components/ui/table.tsx +2 -2
  650. package/src/components/ui/tabs.tsx +3 -3
  651. package/src/components/ui/text-editor/__tests__/content-migration.test.ts +757 -0
  652. package/src/components/ui/text-editor/__tests__/extensions-integration.test.ts +131 -0
  653. package/src/components/ui/text-editor/__tests__/extensions.test.ts +69 -0
  654. package/src/components/ui/text-editor/__tests__/image-extension.test.ts +799 -0
  655. package/src/components/ui/text-editor/__tests__/inline-task-conversion.test.tsx +46 -0
  656. package/src/components/ui/text-editor/__tests__/keyboard.test.ts +176 -0
  657. package/src/components/ui/text-editor/__tests__/list-converter-extension.test.ts +51 -0
  658. package/src/components/ui/text-editor/__tests__/markdown-paste-extension.test.ts +266 -0
  659. package/src/components/ui/text-editor/__tests__/media-utils.test.ts +425 -0
  660. package/src/components/ui/text-editor/__tests__/task-mention-checkbox.test.ts +251 -0
  661. package/src/components/ui/text-editor/__tests__/task-mention-chip.test.tsx +279 -0
  662. package/src/components/ui/text-editor/__tests__/text-replacements.test.ts +39 -0
  663. package/src/components/ui/text-editor/__tests__/upload-placeholder.test.ts +279 -0
  664. package/src/components/ui/text-editor/__tests__/video-extension.test.ts +711 -0
  665. package/src/components/ui/text-editor/content-migration.ts +199 -0
  666. package/src/components/ui/text-editor/draggable-node-container.tsx +164 -0
  667. package/src/components/ui/text-editor/editor.tsx +707 -0
  668. package/src/components/ui/text-editor/extensions.ts +232 -0
  669. package/src/components/ui/text-editor/image-extension.ts +907 -0
  670. package/src/components/ui/text-editor/keyboard.ts +58 -0
  671. package/src/components/ui/text-editor/list-converter-extension.ts +55 -0
  672. package/src/components/ui/text-editor/list-item-extension.ts +13 -0
  673. package/src/components/ui/text-editor/list-item-view.tsx +17 -0
  674. package/src/components/ui/text-editor/markdown-paste-extension.ts +610 -0
  675. package/src/components/ui/text-editor/media-utils.ts +198 -0
  676. package/src/components/ui/text-editor/mention-extension.tsx +604 -0
  677. package/src/components/ui/text-editor/node-drag-extension.ts +300 -0
  678. package/src/components/ui/text-editor/task-item-checkbox-extension.ts +32 -0
  679. package/src/components/ui/text-editor/task-item-checkbox-view.tsx +227 -0
  680. package/src/components/ui/text-editor/task-item-checkbox.ts +100 -0
  681. package/src/components/ui/text-editor/task-mention-chip.tsx +1375 -0
  682. package/src/components/ui/text-editor/task-mention-resolution.ts +235 -0
  683. package/src/components/ui/text-editor/task-summary-popover.tsx +360 -0
  684. package/src/components/ui/text-editor/text-replacements.ts +65 -0
  685. package/src/components/ui/text-editor/text-shortcuts-extension.ts +60 -0
  686. package/src/components/ui/text-editor/tool-bar.tsx +1294 -0
  687. package/src/components/ui/text-editor/types.ts +1 -0
  688. package/src/components/ui/text-editor/upload-errors.ts +93 -0
  689. package/src/components/ui/text-editor/upload-placeholder.ts +124 -0
  690. package/src/components/ui/text-editor/video-extension.ts +435 -0
  691. package/src/components/ui/textarea.tsx +2 -2
  692. package/src/components/ui/time-picker-input.tsx +6 -6
  693. package/src/components/ui/time-picker-utils.tsx +2 -2
  694. package/src/components/ui/time-tracker/types.ts +112 -0
  695. package/src/components/ui/toast.tsx +9 -9
  696. package/src/components/ui/toaster.tsx +10 -14
  697. package/src/components/ui/toggle-group.tsx +2 -2
  698. package/src/components/ui/toggle.tsx +2 -2
  699. package/src/components/ui/tooltip.tsx +3 -3
  700. package/src/components/ui/tu-do/boards/__tests__/quick-create-board-dialog.test.tsx +52 -0
  701. package/src/components/ui/tu-do/boards/__tests__/task-board-form.test.tsx +130 -0
  702. package/src/components/ui/tu-do/boards/__tests__/workspace-projects-client-page.test.tsx +100 -0
  703. package/src/components/ui/tu-do/boards/analytics/GanttChart.tsx +419 -0
  704. package/src/components/ui/tu-do/boards/analytics/GanttControls.tsx +123 -0
  705. package/src/components/ui/tu-do/boards/analytics/GanttHeader.tsx +48 -0
  706. package/src/components/ui/tu-do/boards/analytics/GanttTimeline.tsx +355 -0
  707. package/src/components/ui/tu-do/boards/analytics/StatusDistribution.tsx +130 -0
  708. package/src/components/ui/tu-do/boards/analytics/TaskCreationAnalytics.tsx +285 -0
  709. package/src/components/ui/tu-do/boards/analytics/TaskDetailCard.tsx +270 -0
  710. package/src/components/ui/tu-do/boards/analytics/TaskGroup.tsx +282 -0
  711. package/src/components/ui/tu-do/boards/analytics/TaskWorkflowAnalytics.tsx +280 -0
  712. package/src/components/ui/tu-do/boards/board-selector.tsx +301 -0
  713. package/src/components/ui/tu-do/boards/board-share-dialog.tsx +280 -0
  714. package/src/components/ui/tu-do/boards/boardId/__tests__/list-actions.test.tsx +199 -0
  715. package/src/components/ui/tu-do/boards/boardId/board-column-initial-load.test.ts +38 -0
  716. package/src/components/ui/tu-do/boards/boardId/board-column.tsx +755 -0
  717. package/src/components/ui/tu-do/boards/boardId/board-text-utils.test.ts +24 -0
  718. package/src/components/ui/tu-do/boards/boardId/board-text-utils.ts +11 -0
  719. package/src/components/ui/tu-do/boards/boardId/enhanced-task-list.tsx +536 -0
  720. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/__tests__/bulk-mutations-move.test.tsx +176 -0
  721. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-bar.tsx +94 -0
  722. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-menu.tsx +689 -0
  723. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-custom-date-dialog.tsx +82 -0
  724. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-delete-dialog.tsx +58 -0
  725. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-clear-delete.ts +471 -0
  726. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-move.ts +657 -0
  727. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-assignees.ts +429 -0
  728. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-labels.ts +294 -0
  729. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-projects.ts +316 -0
  730. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations.ts +12 -0
  731. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-updates.ts +499 -0
  732. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-i18n.ts +524 -0
  733. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-types.ts +34 -0
  734. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-utils.ts +60 -0
  735. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operations.ts +312 -0
  736. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-personal-external-move.ts +132 -0
  737. package/src/components/ui/tu-do/boards/boardId/kanban/data/kanban-deadline-query.ts +42 -0
  738. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-applied-sets.ts +79 -0
  739. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-bulk-resources.ts +58 -0
  740. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-filtered-resources.ts +54 -0
  741. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/__tests__/column-reorder.test.ts +63 -0
  742. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/auto-scroll.ts +86 -0
  743. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/column-reorder.ts +62 -0
  744. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/drag-preview.tsx +98 -0
  745. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/kanban-sort-helpers.ts +76 -0
  746. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-cache.ts +325 -0
  747. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.test.ts +67 -0
  748. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.ts +94 -0
  749. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-order.ts +156 -0
  750. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.test.ts +37 -0
  751. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.ts +42 -0
  752. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.test.ts +318 -0
  753. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.ts +260 -0
  754. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-types.ts +39 -0
  755. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.test.ts +686 -0
  756. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.ts +1503 -0
  757. package/src/components/ui/tu-do/boards/boardId/kanban/kanban-constants.ts +43 -0
  758. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-column-width.ts +30 -0
  759. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.test.tsx +383 -0
  760. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.tsx +228 -0
  761. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-panels.tsx +221 -0
  762. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.test.ts +267 -0
  763. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.ts +112 -0
  764. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-skeleton.tsx +45 -0
  765. package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-keyboard-shortcuts.ts +137 -0
  766. package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-multi-select.ts +119 -0
  767. package/src/components/ui/tu-do/boards/boardId/kanban.tsx +495 -0
  768. package/src/components/ui/tu-do/boards/boardId/list-actions.tsx +522 -0
  769. package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-estimation-menu.test.tsx +261 -0
  770. package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-menus.test.tsx +491 -0
  771. package/src/components/ui/tu-do/boards/boardId/menus/index.ts +11 -0
  772. package/src/components/ui/tu-do/boards/boardId/menus/task-assignees-menu.tsx +176 -0
  773. package/src/components/ui/tu-do/boards/boardId/menus/task-blocking-menu.tsx +304 -0
  774. package/src/components/ui/tu-do/boards/boardId/menus/task-due-date-menu.tsx +180 -0
  775. package/src/components/ui/tu-do/boards/boardId/menus/task-estimation-menu.tsx +103 -0
  776. package/src/components/ui/tu-do/boards/boardId/menus/task-labels-menu.tsx +134 -0
  777. package/src/components/ui/tu-do/boards/boardId/menus/task-move-menu.tsx +66 -0
  778. package/src/components/ui/tu-do/boards/boardId/menus/task-parent-menu.tsx +228 -0
  779. package/src/components/ui/tu-do/boards/boardId/menus/task-picker-popover.tsx +300 -0
  780. package/src/components/ui/tu-do/boards/boardId/menus/task-priority-menu.tsx +176 -0
  781. package/src/components/ui/tu-do/boards/boardId/menus/task-projects-menu.tsx +143 -0
  782. package/src/components/ui/tu-do/boards/boardId/menus/task-related-menu.tsx +242 -0
  783. package/src/components/ui/tu-do/boards/boardId/status-grouped-board.tsx +533 -0
  784. package/src/components/ui/tu-do/boards/boardId/status-section.tsx +274 -0
  785. package/src/components/ui/tu-do/boards/boardId/task-actions.tsx +675 -0
  786. package/src/components/ui/tu-do/boards/boardId/task-board-server-page.tsx +41 -0
  787. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardCheckbox.tsx +47 -0
  788. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardDates.tsx +106 -0
  789. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardHeader.tsx +97 -0
  790. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardMetadata.tsx +152 -0
  791. package/src/components/ui/tu-do/boards/boardId/task-card/measured-task-card.tsx +109 -0
  792. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.test.ts +61 -0
  793. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.ts +87 -0
  794. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-label-options.ts +24 -0
  795. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.test.ts +41 -0
  796. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.ts +14 -0
  797. package/src/components/ui/tu-do/boards/boardId/task-card/task-card.tsx +2543 -0
  798. package/src/components/ui/tu-do/boards/boardId/task-dialogs/BoardEstimationConfigDialog.tsx +499 -0
  799. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskCustomDateDialog.tsx +109 -0
  800. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskDeleteDialog.tsx +96 -0
  801. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewLabelDialog.tsx +178 -0
  802. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewProjectDialog.tsx +127 -0
  803. package/src/components/ui/tu-do/boards/boardId/task-filter.tsx +986 -0
  804. package/src/components/ui/tu-do/boards/boardId/task-form.tsx +498 -0
  805. package/src/components/ui/tu-do/boards/boardId/task-list-drag-preview.test.ts +101 -0
  806. package/src/components/ui/tu-do/boards/boardId/task-list-form.tsx +91 -0
  807. package/src/components/ui/tu-do/boards/boardId/task-list.tsx +513 -0
  808. package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.test.ts +64 -0
  809. package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.ts +31 -0
  810. package/src/components/ui/tu-do/boards/boardId/task.tsx +2 -0
  811. package/src/components/ui/tu-do/boards/boardId/timeline/task-edit-dialog.tsx +109 -0
  812. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-display.ts +94 -0
  813. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-grid.tsx +380 -0
  814. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-task-row.tsx +350 -0
  815. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-toolbar.tsx +347 -0
  816. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.test.ts +134 -0
  817. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.ts +468 -0
  818. package/src/components/ui/tu-do/boards/boardId/timeline-board.test.tsx +217 -0
  819. package/src/components/ui/tu-do/boards/boardId/timeline-board.tsx +793 -0
  820. package/src/components/ui/tu-do/boards/boards-list-skeleton.tsx +62 -0
  821. package/src/components/ui/tu-do/boards/columns.tsx +159 -0
  822. package/src/components/ui/tu-do/boards/copy-board-dialog.tsx +156 -0
  823. package/src/components/ui/tu-do/boards/enhanced-boards-view.tsx +347 -0
  824. package/src/components/ui/tu-do/boards/form.tsx +264 -0
  825. package/src/components/ui/tu-do/boards/quick-create-board-dialog.tsx +75 -0
  826. package/src/components/ui/tu-do/boards/row-actions.tsx +397 -0
  827. package/src/components/ui/tu-do/boards/workspace-projects-client-page.tsx +182 -0
  828. package/src/components/ui/tu-do/boards/workspace-projects-page.tsx +155 -0
  829. package/src/components/ui/tu-do/cycles/task-cycles-client.tsx +744 -0
  830. package/src/components/ui/tu-do/cycles/task-cycles-page.tsx +103 -0
  831. package/src/components/ui/tu-do/drafts/draft-card.tsx +204 -0
  832. package/src/components/ui/tu-do/drafts/draft-convert-dialog.tsx +197 -0
  833. package/src/components/ui/tu-do/drafts/drafts-page.tsx +105 -0
  834. package/src/components/ui/tu-do/drafts/task-drafts-page.tsx +90 -0
  835. package/src/components/ui/tu-do/estimates/client.tsx +292 -0
  836. package/src/components/ui/tu-do/estimates/edit-estimation-dialog.tsx +374 -0
  837. package/src/components/ui/tu-do/estimates/task-estimates-page.tsx +57 -0
  838. package/src/components/ui/tu-do/estimates/use-task-estimates.ts +319 -0
  839. package/src/components/ui/tu-do/habits/client.tsx +260 -0
  840. package/src/components/ui/tu-do/habits/habit-card.tsx +183 -0
  841. package/src/components/ui/tu-do/habits/habit-form-dialog.tsx +701 -0
  842. package/src/components/ui/tu-do/habits/habits-page.tsx +27 -0
  843. package/src/components/ui/tu-do/hooks/__tests__/useDraftPersistence.test.ts +494 -0
  844. package/src/components/ui/tu-do/hooks/__tests__/useTaskDialog.test.tsx +127 -0
  845. package/src/components/ui/tu-do/hooks/__tests__/useTaskDialogState.test.ts +217 -0
  846. package/src/components/ui/tu-do/hooks/__tests__/useTaskLabelManagement.test.tsx +524 -0
  847. package/src/components/ui/tu-do/hooks/useDraftPersistence.ts +199 -0
  848. package/src/components/ui/tu-do/hooks/useTaskCardRelationships.ts +340 -0
  849. package/src/components/ui/tu-do/hooks/useTaskDialog.ts +101 -0
  850. package/src/components/ui/tu-do/hooks/useTaskDialogState.ts +145 -0
  851. package/src/components/ui/tu-do/hooks/useTaskFormState.ts +206 -0
  852. package/src/components/ui/tu-do/hooks/useTaskKeyboardShortcuts.ts +58 -0
  853. package/src/components/ui/tu-do/hooks/useTaskLabelManagement.ts +416 -0
  854. package/src/components/ui/tu-do/hooks/useTaskProjectManagement.ts +461 -0
  855. package/src/components/ui/tu-do/initiatives/task-initiatives-client.tsx +921 -0
  856. package/src/components/ui/tu-do/initiatives/task-initiatives-page.tsx +116 -0
  857. package/src/components/ui/tu-do/labels/client.tsx +201 -0
  858. package/src/components/ui/tu-do/labels/components/delete-label-dialog.tsx +57 -0
  859. package/src/components/ui/tu-do/labels/components/label-card.tsx +86 -0
  860. package/src/components/ui/tu-do/labels/components/label-dialog.tsx +259 -0
  861. package/src/components/ui/tu-do/labels/components/label-list.tsx +83 -0
  862. package/src/components/ui/tu-do/labels/hooks/use-task-labels.ts +170 -0
  863. package/src/components/ui/tu-do/labels/task-labels-page.tsx +53 -0
  864. package/src/components/ui/tu-do/labels/types.ts +6 -0
  865. package/src/components/ui/tu-do/logs/columns.tsx +755 -0
  866. package/src/components/ui/tu-do/logs/logs-client.tsx +1006 -0
  867. package/src/components/ui/tu-do/logs/logs-timeline.tsx +2483 -0
  868. package/src/components/ui/tu-do/logs/task-logs-page.tsx +59 -0
  869. package/src/components/ui/tu-do/my-tasks/__tests__/my-tasks-content.test.tsx +408 -0
  870. package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-query.test.ts +469 -0
  871. package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-state.test.ts +1017 -0
  872. package/src/components/ui/tu-do/my-tasks/__tests__/use-task-context-actions.test.ts +516 -0
  873. package/src/components/ui/tu-do/my-tasks/ai-credit-indicator.tsx +143 -0
  874. package/src/components/ui/tu-do/my-tasks/board-selector-dialog.tsx +239 -0
  875. package/src/components/ui/tu-do/my-tasks/command-bar.tsx +1351 -0
  876. package/src/components/ui/tu-do/my-tasks/label-project-filter.tsx +194 -0
  877. package/src/components/ui/tu-do/my-tasks/my-task-context-menu.tsx +356 -0
  878. package/src/components/ui/tu-do/my-tasks/my-tasks-content.tsx +304 -0
  879. package/src/components/ui/tu-do/my-tasks/my-tasks-data-loader.tsx +17 -0
  880. package/src/components/ui/tu-do/my-tasks/my-tasks-filters.tsx +258 -0
  881. package/src/components/ui/tu-do/my-tasks/my-tasks-header.tsx +121 -0
  882. package/src/components/ui/tu-do/my-tasks/my-tasks-page.tsx +40 -0
  883. package/src/components/ui/tu-do/my-tasks/personal-placement-dialog.tsx +188 -0
  884. package/src/components/ui/tu-do/my-tasks/task-filter.tsx +235 -0
  885. package/src/components/ui/tu-do/my-tasks/task-list-with-completion.tsx +782 -0
  886. package/src/components/ui/tu-do/my-tasks/task-list.tsx +258 -0
  887. package/src/components/ui/tu-do/my-tasks/task-preview-dialog.tsx +1597 -0
  888. package/src/components/ui/tu-do/my-tasks/task-section.tsx +261 -0
  889. package/src/components/ui/tu-do/my-tasks/use-my-tasks-query.ts +140 -0
  890. package/src/components/ui/tu-do/my-tasks/use-my-tasks-state.ts +983 -0
  891. package/src/components/ui/tu-do/my-tasks/use-task-context-actions.ts +332 -0
  892. package/src/components/ui/tu-do/notes/note-edit-dialog.tsx +121 -0
  893. package/src/components/ui/tu-do/notes/note-list.tsx +799 -0
  894. package/src/components/ui/tu-do/notes/notes-content.tsx +178 -0
  895. package/src/components/ui/tu-do/notes/notes-page.tsx +27 -0
  896. package/src/components/ui/tu-do/projects/components/index.ts +11 -0
  897. package/src/components/ui/tu-do/projects/components/project-actions-menu.tsx +66 -0
  898. package/src/components/ui/tu-do/projects/components/project-badges.tsx +84 -0
  899. package/src/components/ui/tu-do/projects/components/project-filter-menu.tsx +170 -0
  900. package/src/components/ui/tu-do/projects/components/project-grid-card.tsx +182 -0
  901. package/src/components/ui/tu-do/projects/components/project-list-item.tsx +179 -0
  902. package/src/components/ui/tu-do/projects/components/project-metrics.tsx +87 -0
  903. package/src/components/ui/tu-do/projects/components/project-progress-meter.tsx +33 -0
  904. package/src/components/ui/tu-do/projects/components/project-sort-menu.tsx +71 -0
  905. package/src/components/ui/tu-do/projects/components/projects-empty-state.tsx +38 -0
  906. package/src/components/ui/tu-do/projects/components/projects-loading-state.tsx +26 -0
  907. package/src/components/ui/tu-do/projects/components/projects-toolbar.tsx +179 -0
  908. package/src/components/ui/tu-do/projects/dialogs/create-project-dialog.tsx +117 -0
  909. package/src/components/ui/tu-do/projects/dialogs/edit-project-dialog.tsx +125 -0
  910. package/src/components/ui/tu-do/projects/dialogs/index.ts +3 -0
  911. package/src/components/ui/tu-do/projects/dialogs/manage-tasks-dialog.tsx +205 -0
  912. package/src/components/ui/tu-do/projects/hooks/index.ts +2 -0
  913. package/src/components/ui/tu-do/projects/hooks/use-project-filters.ts +248 -0
  914. package/src/components/ui/tu-do/projects/hooks/use-task-projects.ts +238 -0
  915. package/src/components/ui/tu-do/projects/projectId/components/__tests__/tasks-tab-layout.test.tsx +163 -0
  916. package/src/components/ui/tu-do/projects/projectId/components/documents-tab.tsx +90 -0
  917. package/src/components/ui/tu-do/projects/projectId/components/index.ts +9 -0
  918. package/src/components/ui/tu-do/projects/projectId/components/overview/description-card.tsx +77 -0
  919. package/src/components/ui/tu-do/projects/projectId/components/overview/linked-documents-card.tsx +81 -0
  920. package/src/components/ui/tu-do/projects/projectId/components/overview/linked-tasks-card.tsx +85 -0
  921. package/src/components/ui/tu-do/projects/projectId/components/overview/updates-card.tsx +85 -0
  922. package/src/components/ui/tu-do/projects/projectId/components/overview-tab.tsx +35 -0
  923. package/src/components/ui/tu-do/projects/projectId/components/project-configuration.tsx +229 -0
  924. package/src/components/ui/tu-do/projects/projectId/components/project-header.tsx +115 -0
  925. package/src/components/ui/tu-do/projects/projectId/components/project-lead-selector.tsx +55 -0
  926. package/src/components/ui/tu-do/projects/projectId/components/project-overview-context.tsx +82 -0
  927. package/src/components/ui/tu-do/projects/projectId/components/project-sidebar.tsx +246 -0
  928. package/src/components/ui/tu-do/projects/projectId/components/tasks-tab.tsx +264 -0
  929. package/src/components/ui/tu-do/projects/projectId/components/update-card.tsx +162 -0
  930. package/src/components/ui/tu-do/projects/projectId/components/updates-tab.tsx +129 -0
  931. package/src/components/ui/tu-do/projects/projectId/dialogs/index.ts +1 -0
  932. package/src/components/ui/tu-do/projects/projectId/dialogs/link-task-dialog.tsx +114 -0
  933. package/src/components/ui/tu-do/projects/projectId/hooks/index.ts +4 -0
  934. package/src/components/ui/tu-do/projects/projectId/hooks/use-animation-variants.ts +68 -0
  935. package/src/components/ui/tu-do/projects/projectId/hooks/use-project-form.ts +214 -0
  936. package/src/components/ui/tu-do/projects/projectId/hooks/use-project-updates.ts +209 -0
  937. package/src/components/ui/tu-do/projects/projectId/hooks/use-task-linking.ts +101 -0
  938. package/src/components/ui/tu-do/projects/projectId/task-project-detail-page-client.tsx +85 -0
  939. package/src/components/ui/tu-do/projects/projectId/task-project-detail-page.tsx +78 -0
  940. package/src/components/ui/tu-do/projects/projectId/task-project-detail.tsx +365 -0
  941. package/src/components/ui/tu-do/projects/projectId/types.ts +50 -0
  942. package/src/components/ui/tu-do/projects/task-projects-client.tsx +226 -0
  943. package/src/components/ui/tu-do/projects/task-projects-page.tsx +97 -0
  944. package/src/components/ui/tu-do/projects/types.ts +59 -0
  945. package/src/components/ui/tu-do/providers/__tests__/task-dialog-provider.test.tsx +404 -0
  946. package/src/components/ui/tu-do/providers/task-dialog-provider.tsx +721 -0
  947. package/src/components/ui/tu-do/providers/workspace-presence-provider.tsx +88 -0
  948. package/src/components/ui/tu-do/shared/AccessibleButton.tsx +79 -0
  949. package/src/components/ui/tu-do/shared/__tests__/assignee-select.test.tsx +72 -0
  950. package/src/components/ui/tu-do/shared/__tests__/board-client.test.tsx +152 -0
  951. package/src/components/ui/tu-do/shared/__tests__/board-header.test.tsx +172 -0
  952. package/src/components/ui/tu-do/shared/__tests__/board-query-cache.test.ts +219 -0
  953. package/src/components/ui/tu-do/shared/__tests__/board-views.test.tsx +613 -0
  954. package/src/components/ui/tu-do/shared/__tests__/create-list-dialog.test.tsx +118 -0
  955. package/src/components/ui/tu-do/shared/__tests__/task-detail-page.test.tsx +170 -0
  956. package/src/components/ui/tu-do/shared/__tests__/task-dialog-manager.test.tsx +708 -0
  957. package/src/components/ui/tu-do/shared/__tests__/task-legacy-route-recovery.test.tsx +85 -0
  958. package/src/components/ui/tu-do/shared/__tests__/use-progressive-board-loader.test.tsx +588 -0
  959. package/src/components/ui/tu-do/shared/assignee-select.tsx +541 -0
  960. package/src/components/ui/tu-do/shared/board-broadcast-context.tsx +45 -0
  961. package/src/components/ui/tu-do/shared/board-client.tsx +268 -0
  962. package/src/components/ui/tu-do/shared/board-config-storage.ts +88 -0
  963. package/src/components/ui/tu-do/shared/board-header.tsx +1248 -0
  964. package/src/components/ui/tu-do/shared/board-layout-settings.tsx +1105 -0
  965. package/src/components/ui/tu-do/shared/board-query-cache.ts +157 -0
  966. package/src/components/ui/tu-do/shared/board-switcher.tsx +298 -0
  967. package/src/components/ui/tu-do/shared/board-user-presence-avatars.tsx +572 -0
  968. package/src/components/ui/tu-do/shared/board-views.tsx +847 -0
  969. package/src/components/ui/tu-do/shared/clear-menu-item.tsx +34 -0
  970. package/src/components/ui/tu-do/shared/create-list-dialog.tsx +401 -0
  971. package/src/components/ui/tu-do/shared/cursor-overlay-multi-wrapper.tsx +204 -0
  972. package/src/components/ui/tu-do/shared/cursor-overlay.tsx +78 -0
  973. package/src/components/ui/tu-do/shared/custom-date-picker/custom-date-picker-dialog.tsx +157 -0
  974. package/src/components/ui/tu-do/shared/description-overflow-warning-dialog.tsx +68 -0
  975. package/src/components/ui/tu-do/shared/edit-list-dialog.tsx +383 -0
  976. package/src/components/ui/tu-do/shared/empty-state-card.tsx +46 -0
  977. package/src/components/ui/tu-do/shared/estimation-mapping.test.ts +32 -0
  978. package/src/components/ui/tu-do/shared/estimation-mapping.ts +74 -0
  979. package/src/components/ui/tu-do/shared/estimation-utils.ts +54 -0
  980. package/src/components/ui/tu-do/shared/fade-setting-initializer.tsx +59 -0
  981. package/src/components/ui/tu-do/shared/label-chip.tsx +46 -0
  982. package/src/components/ui/tu-do/shared/list-view-context-menu.test.tsx +150 -0
  983. package/src/components/ui/tu-do/shared/list-view-sorting.test.ts +50 -0
  984. package/src/components/ui/tu-do/shared/list-view-sorting.ts +108 -0
  985. package/src/components/ui/tu-do/shared/list-view.tsx +987 -0
  986. package/src/components/ui/tu-do/shared/mention-system/__tests__/mention-system.test.ts +250 -0
  987. package/src/components/ui/tu-do/shared/mention-system/mention-menu.tsx +217 -0
  988. package/src/components/ui/tu-do/shared/mention-system/types.ts +141 -0
  989. package/src/components/ui/tu-do/shared/mention-system/use-mention-suggestions.ts +244 -0
  990. package/src/components/ui/tu-do/shared/progressive-loader-context.tsx +45 -0
  991. package/src/components/ui/tu-do/shared/recent-sidebar-events.ts +58 -0
  992. package/src/components/ui/tu-do/shared/recycle-bin-panel.tsx +603 -0
  993. package/src/components/ui/tu-do/shared/relationship-task-identifier.ts +14 -0
  994. package/src/components/ui/tu-do/shared/slash-commands/__tests__/slash-commands.test.ts +315 -0
  995. package/src/components/ui/tu-do/shared/slash-commands/definitions.ts +167 -0
  996. package/src/components/ui/tu-do/shared/slash-commands/slash-command-menu.tsx +114 -0
  997. package/src/components/ui/tu-do/shared/sync-warning-dialog.tsx +133 -0
  998. package/src/components/ui/tu-do/shared/task-board-errors.ts +19 -0
  999. package/src/components/ui/tu-do/shared/task-detail-page.tsx +176 -0
  1000. package/src/components/ui/tu-do/shared/task-detail-server-page.tsx +37 -0
  1001. package/src/components/ui/tu-do/shared/task-dialog-manager.tsx +557 -0
  1002. package/src/components/ui/tu-do/shared/task-dialog-wrapper.tsx +28 -0
  1003. package/src/components/ui/tu-do/shared/task-edit-dialog/components/mobile-floating-save-button.tsx +46 -0
  1004. package/src/components/ui/tu-do/shared/task-edit-dialog/components/quick-settings-popover.tsx +164 -0
  1005. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-description-editor.tsx +491 -0
  1006. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-dialog-header.tsx +511 -0
  1007. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-picker-panel.tsx +220 -0
  1008. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-selector.tsx +127 -0
  1009. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-trigger-styles.ts +69 -0
  1010. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.test.tsx +140 -0
  1011. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.tsx +163 -0
  1012. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-suggestion-menus.tsx +148 -0
  1013. package/src/components/ui/tu-do/shared/task-edit-dialog/constants.ts +18 -0
  1014. package/src/components/ui/tu-do/shared/task-edit-dialog/context-menu-guard.test.ts +37 -0
  1015. package/src/components/ui/tu-do/shared/task-edit-dialog/description-diff-viewer.tsx +1665 -0
  1016. package/src/components/ui/tu-do/shared/task-edit-dialog/field-diff-viewer.tsx +715 -0
  1017. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-close.test.ts +218 -0
  1018. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-keyboard-shortcuts.test.ts +140 -0
  1019. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-overrides.test.ts +412 -0
  1020. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-realtime-sync.test.tsx +209 -0
  1021. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-yjs-sync.test.ts +190 -0
  1022. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-update-shared-task.test.ts +103 -0
  1023. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/task-api.ts +127 -0
  1024. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-editor-commands.ts +314 -0
  1025. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-suggestion-menus.ts +503 -0
  1026. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-change-detection.ts +175 -0
  1027. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-data.ts +332 -0
  1028. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dependencies.ts +773 -0
  1029. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-close.ts +193 -0
  1030. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-keyboard-shortcuts.ts +365 -0
  1031. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-reset.ts +215 -0
  1032. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-state.ts +307 -0
  1033. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-mutations.ts +536 -0
  1034. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-overrides.ts +122 -0
  1035. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-realtime-sync.ts +252 -0
  1036. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.test.tsx +149 -0
  1037. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.ts +545 -0
  1038. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-revert.ts +140 -0
  1039. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.test.ts +206 -0
  1040. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.ts +1450 -0
  1041. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-snapshot.ts +59 -0
  1042. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-yjs-sync.ts +224 -0
  1043. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-update-shared-task.ts +55 -0
  1044. package/src/components/ui/tu-do/shared/task-edit-dialog/personal-overrides-section.tsx +348 -0
  1045. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/clickable-task-item.tsx +90 -0
  1046. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/index.ts +4 -0
  1047. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/subtask-action-buttons.tsx +140 -0
  1048. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/tab-button.tsx +76 -0
  1049. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/task-relationship-action-buttons.tsx +178 -0
  1050. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/dependencies-section.tsx +129 -0
  1051. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/index.ts +35 -0
  1052. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/parent-section.tsx +65 -0
  1053. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/related-section.tsx +76 -0
  1054. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/subtasks-section.tsx +82 -0
  1055. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/task-search-popover.tsx +229 -0
  1056. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/types/task-relationships.types.ts +186 -0
  1057. package/src/components/ui/tu-do/shared/task-edit-dialog/selective-revert-panel.tsx +320 -0
  1058. package/src/components/ui/tu-do/shared/task-edit-dialog/task-activity-section.tsx +748 -0
  1059. package/src/components/ui/tu-do/shared/task-edit-dialog/task-delete-dialog.tsx +104 -0
  1060. package/src/components/ui/tu-do/shared/task-edit-dialog/task-dialog-actions.tsx +213 -0
  1061. package/src/components/ui/tu-do/shared/task-edit-dialog/task-instances-section.tsx +173 -0
  1062. package/src/components/ui/tu-do/shared/task-edit-dialog/task-properties-section.tsx +1895 -0
  1063. package/src/components/ui/tu-do/shared/task-edit-dialog/task-relationships-properties.tsx +273 -0
  1064. package/src/components/ui/tu-do/shared/task-edit-dialog/task-snapshot-dialog.tsx +162 -0
  1065. package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.test.ts +52 -0
  1066. package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.ts +134 -0
  1067. package/src/components/ui/tu-do/shared/task-edit-dialog/types.ts +64 -0
  1068. package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.test.ts +58 -0
  1069. package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.ts +45 -0
  1070. package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.test.ts +98 -0
  1071. package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.ts +39 -0
  1072. package/src/components/ui/tu-do/shared/task-edit-dialog/utils.test.ts +404 -0
  1073. package/src/components/ui/tu-do/shared/task-edit-dialog/utils.ts +473 -0
  1074. package/src/components/ui/tu-do/shared/task-edit-dialog/yjs-prosemirror-compat.test.ts +65 -0
  1075. package/src/components/ui/tu-do/shared/task-edit-dialog.tsx +2168 -0
  1076. package/src/components/ui/tu-do/shared/task-estimation-display.tsx +52 -0
  1077. package/src/components/ui/tu-do/shared/task-estimation-picker.tsx +223 -0
  1078. package/src/components/ui/tu-do/shared/task-filter.types.ts +65 -0
  1079. package/src/components/ui/tu-do/shared/task-label-selector.tsx +217 -0
  1080. package/src/components/ui/tu-do/shared/task-labels-display.test.tsx +51 -0
  1081. package/src/components/ui/tu-do/shared/task-labels-display.tsx +119 -0
  1082. package/src/components/ui/tu-do/shared/task-legacy-route-recovery.tsx +72 -0
  1083. package/src/components/ui/tu-do/shared/task-open-events.ts +94 -0
  1084. package/src/components/ui/tu-do/shared/task-projects-display.tsx +80 -0
  1085. package/src/components/ui/tu-do/shared/task-resource-search-field.tsx +49 -0
  1086. package/src/components/ui/tu-do/shared/task-resource-search-filters.ts +27 -0
  1087. package/src/components/ui/tu-do/shared/task-row-actions-menu.tsx +352 -0
  1088. package/src/components/ui/tu-do/shared/task-share-dialog/components/share-link-settings.tsx +86 -0
  1089. package/src/components/ui/tu-do/shared/task-share-dialog/components/shares-list.tsx +85 -0
  1090. package/src/components/ui/tu-do/shared/task-share-dialog/hooks/use-task-sharing.ts +296 -0
  1091. package/src/components/ui/tu-do/shared/task-share-dialog.tsx +144 -0
  1092. package/src/components/ui/tu-do/shared/task-url.ts +56 -0
  1093. package/src/components/ui/tu-do/shared/text-diff-viewer.tsx +55 -0
  1094. package/src/components/ui/tu-do/shared/types.ts +14 -0
  1095. package/src/components/ui/tu-do/shared/unsaved-changes-warning-dialog.tsx +71 -0
  1096. package/src/components/ui/tu-do/shared/use-progressive-board-loader.ts +310 -0
  1097. package/src/components/ui/tu-do/shared/user-avatar.tsx +46 -0
  1098. package/src/components/ui/tu-do/shared/user-presence-avatars.tsx +415 -0
  1099. package/src/components/ui/tu-do/shared/utils/translate-task-list-display-name.ts +28 -0
  1100. package/src/components/ui/tu-do/tasks-route-context.tsx +50 -0
  1101. package/src/components/ui/tu-do/templates/client.tsx +486 -0
  1102. package/src/components/ui/tu-do/templates/marketplace/client.tsx +451 -0
  1103. package/src/components/ui/tu-do/templates/marketplace/task-marketplace-page.tsx +169 -0
  1104. package/src/components/ui/tu-do/templates/save-as-template-dialog.tsx +381 -0
  1105. package/src/components/ui/tu-do/templates/task-templates-page.tsx +162 -0
  1106. package/src/components/ui/tu-do/templates/templateId/client.tsx +659 -0
  1107. package/src/components/ui/tu-do/templates/templateId/edit-template-dialog.tsx +300 -0
  1108. package/src/components/ui/tu-do/templates/templateId/share-template-dialog.tsx +261 -0
  1109. package/src/components/ui/tu-do/templates/templateId/task-template-detail-page-client.tsx +121 -0
  1110. package/src/components/ui/tu-do/templates/templateId/task-template-detail-page.tsx +89 -0
  1111. package/src/components/ui/tu-do/templates/templateId/use-template-dialog.tsx +165 -0
  1112. package/src/components/ui/tu-do/templates/types.ts +53 -0
  1113. package/src/components/ui/tu-do/utils/__tests__/label-colors.test.ts +43 -0
  1114. package/src/components/ui/tu-do/utils/__tests__/taskColorUtils.test.ts +267 -0
  1115. package/src/components/ui/tu-do/utils/__tests__/taskConstants.test.ts +178 -0
  1116. package/src/components/ui/tu-do/utils/__tests__/taskDateUtils.test.ts +226 -0
  1117. package/src/components/ui/tu-do/utils/__tests__/weekDateUtils.test.ts +182 -0
  1118. package/src/components/ui/tu-do/utils/label-colors.test.ts +15 -0
  1119. package/src/components/ui/tu-do/utils/label-colors.ts +59 -0
  1120. package/src/components/ui/tu-do/utils/taskColorUtils.ts +116 -0
  1121. package/src/components/ui/tu-do/utils/taskConstants.ts +102 -0
  1122. package/src/components/ui/tu-do/utils/taskDateUtils.ts +81 -0
  1123. package/src/components/ui/tu-do/utils/taskPriorityUtils.tsx +80 -0
  1124. package/src/components/ui/tu-do/utils/weekDateUtils.ts +64 -0
  1125. package/src/constants/boards.ts +9 -0
  1126. package/src/declarations.d.ts +2 -0
  1127. package/src/globals.css +609 -200
  1128. package/src/gsap.ts +2 -0
  1129. package/src/hooks/__tests__/supabase-provider.test.ts +346 -0
  1130. package/src/hooks/__tests__/use-calendar-readonly.test.tsx +90 -0
  1131. package/src/hooks/__tests__/use-forwarded-ref.test.tsx +127 -0
  1132. package/src/hooks/__tests__/use-local-storage.test.tsx +243 -0
  1133. package/src/hooks/__tests__/use-mobile.test.tsx +222 -0
  1134. package/src/hooks/__tests__/use-notifications-subscription.test.tsx +163 -0
  1135. package/src/hooks/__tests__/use-notifications.test.ts +59 -0
  1136. package/src/hooks/__tests__/use-stable-array.test.tsx +214 -0
  1137. package/src/hooks/__tests__/use-task-actions.test.tsx +1893 -0
  1138. package/src/hooks/__tests__/use-workspace-presence.test.tsx +217 -0
  1139. package/src/hooks/__tests__/useBoardRealtime.test.tsx +1156 -0
  1140. package/src/hooks/supabase-provider.ts +725 -0
  1141. package/src/hooks/task-actions-personal-external.ts +308 -0
  1142. package/src/hooks/time-blocking-provider.tsx +756 -0
  1143. package/src/hooks/use-ai-credits.ts +78 -0
  1144. package/src/hooks/use-analytics-filters.ts +269 -0
  1145. package/src/hooks/use-at-bottom.tsx +64 -0
  1146. package/src/hooks/use-board-actions.ts +213 -0
  1147. package/src/hooks/use-calendar-preferences.tsx +24 -0
  1148. package/src/hooks/use-calendar-sync.tsx +1184 -0
  1149. package/src/hooks/use-calendar.tsx +1972 -0
  1150. package/src/hooks/use-callback-ref.ts +1 -1
  1151. package/src/hooks/use-controllable-state.ts +3 -4
  1152. package/src/hooks/use-copy-to-clipboard.ts +1 -3
  1153. package/src/hooks/use-currency-formatter.ts +81 -0
  1154. package/src/hooks/use-debounce.ts +15 -0
  1155. package/src/hooks/use-dom-resolved-theme.ts +81 -0
  1156. package/src/hooks/use-enter-submit.tsx +23 -0
  1157. package/src/hooks/use-exchange-rates.ts +23 -0
  1158. package/src/hooks/use-finance-transaction-preferences.ts +58 -0
  1159. package/src/hooks/use-form.ts +8 -6
  1160. package/src/hooks/use-interest-preferences.ts +104 -0
  1161. package/src/hooks/use-local-storage.ts +42 -0
  1162. package/src/hooks/use-notifications.ts +704 -0
  1163. package/src/hooks/use-page-visibility.ts +27 -0
  1164. package/src/hooks/use-popover-manager.tsx +98 -0
  1165. package/src/hooks/use-semantic-task-search.ts +76 -0
  1166. package/src/hooks/use-session-history-query.ts +1 -0
  1167. package/src/hooks/use-stable-array.ts +23 -0
  1168. package/src/hooks/use-task-actions.ts +1915 -0
  1169. package/src/hooks/use-task-analytics.ts +354 -0
  1170. package/src/hooks/use-toast.ts +2 -3
  1171. package/src/hooks/use-user-config.ts +109 -0
  1172. package/src/hooks/use-view-transition.ts +69 -0
  1173. package/src/hooks/use-workspace-config.ts +49 -0
  1174. package/src/hooks/use-workspace-currency.ts +26 -0
  1175. package/src/hooks/use-workspace-members.ts +58 -0
  1176. package/src/hooks/use-workspace-permission.ts +61 -0
  1177. package/src/hooks/use-workspace-presence.ts +554 -0
  1178. package/src/hooks/use-workspace-user.ts +33 -0
  1179. package/src/hooks/use-yjs-collaboration.ts +297 -0
  1180. package/src/hooks/useBoardRealtime.ts +372 -0
  1181. package/src/hooks/useBoardRealtime.types.ts +45 -0
  1182. package/src/hooks/useBoardRealtimeEventHandler.ts +332 -0
  1183. package/src/hooks/useCursorTracking.ts +338 -0
  1184. package/src/hooks/useHorizontalScroll.ts +215 -0
  1185. package/src/hooks/usePresence.ts +272 -0
  1186. package/src/hooks/useSearchParams.tsx +133 -0
  1187. package/src/lib/__tests__/lunar-calendar.test.ts +137 -0
  1188. package/src/lib/calendar/planning-query-client.ts +197 -0
  1189. package/src/lib/calendar/preview-engine.ts +14 -0
  1190. package/src/lib/calendar-settings-resolver.ts +200 -0
  1191. package/src/lib/lunar-calendar.ts +71 -0
  1192. package/src/lib/template-background.ts +159 -0
  1193. package/src/lib/workspace-actions.ts +457 -0
  1194. package/src/utils/__tests__/label-colors.test.ts +219 -0
  1195. package/src/utils/__tests__/priority-styles.test.ts +78 -0
  1196. package/src/utils/label-colors.ts +4 -0
  1197. package/src/utils/priority-styles.ts +42 -0
  1198. package/src/xlsx.ts +3 -0
  1199. package/tsconfig.json +3 -11
  1200. package/tsconfig.typecheck.json +9 -0
  1201. package/vendor/xlsx-0.20.3.tgz +0 -0
  1202. package/vitest.config.ts +42 -0
  1203. package/vitest.setup.ts +37 -0
  1204. package/eslint.config.mjs +0 -20
  1205. package/rollup.config.js +0 -40
  1206. package/src/components/ui/icons.tsx +0 -506
  1207. package/src/components/ui/tag-input.tsx +0 -141
  1208. /package/src/hooks/{use-mobile.tsx → use-mobile.ts} +0 -0
@@ -0,0 +1,2168 @@
1
+ 'use client';
2
+
3
+ import { useQuery, useQueryClient } from '@tanstack/react-query';
4
+ import type { Editor, JSONContent } from '@tiptap/react';
5
+ import {
6
+ checkWorkspacePermission,
7
+ createWorkspaceTask,
8
+ updateWorkspaceCalendarEvent,
9
+ uploadWorkspaceTaskFile,
10
+ } from '@tuturuuu/internal-api';
11
+ import type { Task } from '@tuturuuu/types/primitives/Task';
12
+ import type { TaskList } from '@tuturuuu/types/primitives/TaskList';
13
+ import { Dialog, DialogContent, DialogTitle } from '@tuturuuu/ui/dialog';
14
+ import { useYjsCollaboration } from '@tuturuuu/ui/hooks/use-yjs-collaboration';
15
+ import { toast } from '@tuturuuu/ui/sonner';
16
+ import { MAX_TASK_DESCRIPTION_LENGTH } from '@tuturuuu/utils/constants';
17
+ import { convertListItemToTask } from '@tuturuuu/utils/editor';
18
+ import {
19
+ getTicketIdentifier,
20
+ invalidateTaskCaches,
21
+ } from '@tuturuuu/utils/task-helper';
22
+ import {
23
+ convertJsonContentToYjsState,
24
+ convertYjsStateToJsonContent,
25
+ } from '@tuturuuu/utils/yjs-helper';
26
+ import dayjs from 'dayjs';
27
+ import { usePathname } from 'next/navigation';
28
+ import { useTranslations } from 'next-intl';
29
+ import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
30
+ import { BoardEstimationConfigDialog } from '../boards/boardId/task-dialogs/BoardEstimationConfigDialog';
31
+ import { TaskNewLabelDialog } from '../boards/boardId/task-dialogs/TaskNewLabelDialog';
32
+ import { TaskNewProjectDialog } from '../boards/boardId/task-dialogs/TaskNewProjectDialog';
33
+ import { useTaskDialogContext } from '../providers/task-dialog-provider';
34
+ import { useOptionalWorkspacePresenceContext } from '../providers/workspace-presence-provider';
35
+ import { getRandomNewLabelColor } from '../utils/taskConstants';
36
+ import {
37
+ type BoardBroadcastFn,
38
+ getActiveBroadcast,
39
+ } from './board-broadcast-context';
40
+ import { DescriptionOverflowWarningDialog } from './description-overflow-warning-dialog';
41
+ import { createInitialSuggestionState } from './mention-system/types';
42
+ import { SyncWarningDialog } from './sync-warning-dialog';
43
+ import { MobileFloatingSaveButton } from './task-edit-dialog/components/mobile-floating-save-button';
44
+ import { TaskDescriptionEditor } from './task-edit-dialog/components/task-description-editor';
45
+ import { TaskDialogHeader } from './task-edit-dialog/components/task-dialog-header';
46
+ import { TaskNameInput } from './task-edit-dialog/components/task-name-input';
47
+ import { TaskSuggestionMenus } from './task-edit-dialog/components/task-suggestion-menus';
48
+ import { NAME_UPDATE_DEBOUNCE_MS } from './task-edit-dialog/constants';
49
+ import { fetchWorkspaceTaskDescription } from './task-edit-dialog/hooks/task-api';
50
+ import { useEditorCommands } from './task-edit-dialog/hooks/use-editor-commands';
51
+ import { useSuggestionMenus } from './task-edit-dialog/hooks/use-suggestion-menus';
52
+ import { useTaskChangeDetection } from './task-edit-dialog/hooks/use-task-change-detection';
53
+ import {
54
+ type SharedTaskContext,
55
+ useTaskData,
56
+ } from './task-edit-dialog/hooks/use-task-data';
57
+ import { useTaskDependencies } from './task-edit-dialog/hooks/use-task-dependencies';
58
+ import { useTaskDialogClose } from './task-edit-dialog/hooks/use-task-dialog-close';
59
+ import { useTaskDialogKeyboardShortcuts } from './task-edit-dialog/hooks/use-task-dialog-keyboard-shortcuts';
60
+ import { useTaskFormReset } from './task-edit-dialog/hooks/use-task-form-reset';
61
+ import { useTaskFormState } from './task-edit-dialog/hooks/use-task-form-state';
62
+ import { useTaskMutations } from './task-edit-dialog/hooks/use-task-mutations';
63
+ import { useTaskRealtimeSync } from './task-edit-dialog/hooks/use-task-realtime-sync';
64
+ import { useTaskRelationships } from './task-edit-dialog/hooks/use-task-relationships';
65
+ import { useTaskSave } from './task-edit-dialog/hooks/use-task-save';
66
+ import { useTaskYjsSync } from './task-edit-dialog/hooks/use-task-yjs-sync';
67
+ import { PersonalOverridesSection } from './task-edit-dialog/personal-overrides-section';
68
+ import { TaskActivitySection } from './task-edit-dialog/task-activity-section';
69
+ import { TaskDeleteDialog } from './task-edit-dialog/task-delete-dialog';
70
+ import { TaskInstancesSection } from './task-edit-dialog/task-instances-section';
71
+ import { TaskPropertiesSection } from './task-edit-dialog/task-properties-section';
72
+ import { TaskRelationshipsProperties } from './task-edit-dialog/task-relationships-properties';
73
+ import type { WorkspaceTaskLabel } from './task-edit-dialog/types';
74
+ // Re-export relationship types
75
+ import type {
76
+ PendingRelationship,
77
+ PendingRelationshipType,
78
+ PendingTaskRelationships,
79
+ } from './task-edit-dialog/types/pending-relationship';
80
+ import { getSeededPendingTaskRelationships } from './task-edit-dialog/types/pending-relationship';
81
+ import {
82
+ getTaskDialogUserDisplayName,
83
+ normalizeTaskDialogCurrentUser,
84
+ type TaskDialogCurrentUser,
85
+ type TaskDialogUserIdentity,
86
+ } from './task-edit-dialog/user-display';
87
+ import {
88
+ broadcastTaskDescriptionUpsert,
89
+ clearDraft,
90
+ getDraftStorageKey,
91
+ getTaskDescriptionPercentLeft,
92
+ getTaskDescriptionStorageLength,
93
+ saveAndVerifyYjsDescriptionToDatabase,
94
+ saveYjsDescriptionToDatabase,
95
+ serializeTaskDescriptionContent,
96
+ shouldPreserveNativeContextMenu,
97
+ } from './task-edit-dialog/utils';
98
+ import {
99
+ resolveInlineTaskTargetList,
100
+ resolveInlineTaskTargetWorkspaceId,
101
+ } from './task-edit-dialog/utils/inline-task-target-list';
102
+ import { TaskShareDialog } from './task-share-dialog';
103
+ import type { TaskFilters } from './types';
104
+ import { UnsavedChangesWarningDialog } from './unsaved-changes-warning-dialog';
105
+
106
+ export {
107
+ type DialogHeaderInfo,
108
+ getTaskDialogHeaderInfo,
109
+ } from './task-edit-dialog/components/task-dialog-header';
110
+ export type { PendingRelationship, PendingRelationshipType, SharedTaskContext };
111
+
112
+ export interface TaskEditDialogProps {
113
+ wsId: string;
114
+ taskWsId?: string;
115
+ task?: Task;
116
+ boardId: string;
117
+ isOpen: boolean;
118
+ /** Present when opened via /shared/task/[shareCode] */
119
+ shareCode?: string;
120
+ /** Permission returned from shared-task API */
121
+ sharedPermission?: 'view' | 'edit';
122
+ availableLists?: TaskList[];
123
+ filters?: TaskFilters;
124
+ mode?: 'edit' | 'create';
125
+ collaborationMode?: boolean;
126
+ /** Whether realtime features (Yjs sync, presence avatars) are enabled - true for all tiers */
127
+ realtimeEnabled?: boolean;
128
+ isPersonalWorkspace?: boolean;
129
+ parentTaskId?: string;
130
+ parentTaskName?: string;
131
+ pendingRelationship?: PendingRelationship;
132
+ currentUser?: TaskDialogCurrentUser;
133
+ /** Pre-loaded data for shared task context - bypasses internal fetches when provided */
134
+ sharedContext?: SharedTaskContext;
135
+ /** Whether draft mode is enabled from user settings */
136
+ draftModeEnabled?: boolean;
137
+ /** When editing an existing draft, this is the draft ID */
138
+ draftId?: string;
139
+ onClose: () => void;
140
+ onUpdate: () => void;
141
+ onNavigateToTask?: (taskId: string) => Promise<void>;
142
+ onAddSubtask?: () => void;
143
+ onAddParentTask?: () => void;
144
+ onAddBlockingTask?: () => void;
145
+ onAddBlockedByTask?: () => void;
146
+ onAddRelatedTask?: () => void;
147
+ }
148
+
149
+ export function TaskEditDialog({
150
+ wsId,
151
+ taskWsId,
152
+ task,
153
+ boardId,
154
+ isOpen,
155
+ shareCode,
156
+ sharedPermission,
157
+ availableLists: propAvailableLists,
158
+ filters,
159
+ mode = 'edit',
160
+ collaborationMode = false,
161
+ realtimeEnabled = false,
162
+ isPersonalWorkspace = false,
163
+ parentTaskId,
164
+ parentTaskName,
165
+ pendingRelationship,
166
+ currentUser: propsCurrentUser,
167
+ sharedContext,
168
+ draftModeEnabled = false,
169
+ draftId,
170
+ onClose,
171
+ onUpdate,
172
+ onNavigateToTask,
173
+ onAddSubtask,
174
+ onAddParentTask,
175
+ onAddBlockingTask,
176
+ onAddBlockedByTask,
177
+ onAddRelatedTask,
178
+ }: TaskEditDialogProps) {
179
+ const isCreateMode = mode === 'create';
180
+ const effectiveTaskWsId = !isCreateMode ? (taskWsId ?? wsId) : wsId;
181
+ const pathname = usePathname();
182
+ const queryClient = useQueryClient();
183
+ const t = useTranslations('common');
184
+ const dialogT = useTranslations('ws-task-boards.dialog');
185
+ const { registerCloseRequestHandler } = useTaskDialogContext();
186
+
187
+ // Access workspace tier for tier-aware collaboration settings (null outside the provider)
188
+ const presenceCtx = useOptionalWorkspacePresenceContext();
189
+ const workspaceTier = presenceCtx?.tier ?? null;
190
+
191
+ // Disable editing if we are viewing via a shared link
192
+ // User requested: always disable editing for shared tasks, regardless of permission
193
+ const disabled = !!shareCode;
194
+
195
+ // Keep this permission query disabled when `disabled` shared-link mode is active
196
+ // (`enabled` becomes false) so `canManageTaskMedia` stays undefined while
197
+ // `isCheckingTaskMediaPermission` remains false for read-only visitors. That
198
+ // allows `imageUploadHandler` to stay unset for shared-link views without
199
+ // forcing a permission request that could re-enable upload affordances. The
200
+ // query only runs when `effectiveTaskWsId` exists and `disabled` is false.
201
+ const { data: canManageTaskMedia, isPending: isCheckingTaskMediaPermission } =
202
+ useQuery({
203
+ queryKey: [
204
+ 'workspace-permission',
205
+ effectiveTaskWsId,
206
+ 'manage_drive_tasks_directory',
207
+ ],
208
+ queryFn: async () => {
209
+ const result = await checkWorkspacePermission(
210
+ effectiveTaskWsId,
211
+ 'manage_drive_tasks_directory'
212
+ );
213
+ return result.hasPermission;
214
+ },
215
+ enabled: Boolean(effectiveTaskWsId) && !disabled,
216
+ staleTime: 5 * 60 * 1000,
217
+ });
218
+
219
+ // Core loading state
220
+ const [isLoading, setIsLoading] = useState(false);
221
+ const [isSaving, setIsSaving] = useState(false);
222
+
223
+ // Form state
224
+ const formState = useTaskFormState({
225
+ task,
226
+ boardId,
227
+ isOpen,
228
+ isCreateMode,
229
+ isSaving,
230
+ });
231
+
232
+ // Refs
233
+ const titleInputRef = useRef<HTMLInputElement>(null);
234
+ const editorRef = useRef<HTMLDivElement>(null);
235
+ const richTextEditorRef = useRef<HTMLDivElement>(null);
236
+ const lastCursorPositionRef = useRef<number | null>(null);
237
+ const targetEditorCursorRef = useRef<number | null>(null);
238
+ const flushEditorPendingRef = useRef<(() => JSONContent | null) | undefined>(
239
+ undefined
240
+ );
241
+ const nameUpdateTimerRef = useRef<ReturnType<typeof setTimeout> | null>(null);
242
+ const pendingNameRef = useRef<string | null>(null);
243
+ const quickDueRef = useRef<(days: number | null) => void>(() => {});
244
+ const updateEstimationRef = useRef<(points: number | null) => void>(() => {});
245
+ const handleConvertToTaskRef = useRef<(() => Promise<void>) | null>(null);
246
+ const descriptionRef = useRef<JSONContent | null>(formState.description);
247
+ const persistedDescriptionRef = useRef<string | null>(null);
248
+ const taskRealtimeBroadcastRef = useRef<BoardBroadcastFn | null>(null);
249
+
250
+ useEffect(() => {
251
+ descriptionRef.current = formState.description;
252
+ }, [formState.description]);
253
+
254
+ // User state
255
+ const [user, setUser] = useState<TaskDialogUserIdentity | null>(
256
+ propsCurrentUser ? normalizeTaskDialogCurrentUser(propsCurrentUser) : null
257
+ );
258
+
259
+ const userColor = useMemo(() => {
260
+ const hashCode = (str: string) => {
261
+ let hash = 0;
262
+ for (let i = 0; i < str.length; i++) {
263
+ hash = str.charCodeAt(i) + ((hash << 5) - hash);
264
+ }
265
+ return hash;
266
+ };
267
+ const colors = [
268
+ '#3b82f6',
269
+ '#8b5cf6',
270
+ '#ec4899',
271
+ '#f97316',
272
+ '#10b981',
273
+ '#06b6d4',
274
+ '#f59e0b',
275
+ '#6366f1',
276
+ ];
277
+ const userId = user?.id || 'unknown';
278
+ return colors[Math.abs(hashCode(userId)) % colors.length] || colors[0];
279
+ }, [user?.id]);
280
+
281
+ // Memoize the user object for Yjs collaboration to prevent unstable references
282
+ // from causing the SupabaseProvider to be destroyed and recreated every render
283
+ const userId = user?.id;
284
+ const userDisplayName = getTaskDialogUserDisplayName(user);
285
+
286
+ const yjsUser = useMemo(
287
+ () =>
288
+ userId
289
+ ? {
290
+ id: userId || '',
291
+ name: userDisplayName,
292
+ color: userColor || '',
293
+ }
294
+ : null,
295
+ [userId, userDisplayName, userColor]
296
+ );
297
+
298
+ // User task settings
299
+ const { data: userTaskSettings } = useQuery({
300
+ queryKey: ['user-task-settings'],
301
+ queryFn: async () => {
302
+ const res = await fetch('/api/v1/users/task-settings', {
303
+ cache: 'no-store',
304
+ });
305
+ if (!res.ok) return { task_auto_assign_to_self: false };
306
+ return res.json() as Promise<{ task_auto_assign_to_self: boolean }>;
307
+ },
308
+ enabled: isCreateMode && !!user?.id,
309
+ staleTime: 5 * 60 * 1000,
310
+ refetchOnWindowFocus: false,
311
+ refetchOnReconnect: false,
312
+ });
313
+
314
+ const loadTaskDescriptionState = useCallback(async () => {
315
+ if (!task?.id) return null;
316
+ const response = await fetchWorkspaceTaskDescription(
317
+ effectiveTaskWsId,
318
+ task.id
319
+ );
320
+ return response.description_yjs_state ?? null;
321
+ }, [effectiveTaskWsId, task?.id]);
322
+
323
+ const saveTaskDescriptionState = useCallback(
324
+ async (yjsState: number[]) => {
325
+ if (!task?.id) return false;
326
+
327
+ let content: JSONContent | null;
328
+ try {
329
+ content = convertYjsStateToJsonContent(Uint8Array.from(yjsState));
330
+ } catch (error) {
331
+ console.error('Failed to decode task description Yjs state:', {
332
+ taskId: task.id,
333
+ ...(error instanceof Error
334
+ ? { message: error.message, name: error.name }
335
+ : { error }),
336
+ });
337
+ return false;
338
+ }
339
+
340
+ const serializedDescription = serializeTaskDescriptionContent(content);
341
+
342
+ if (
343
+ serializedDescription &&
344
+ serializedDescription.length > MAX_TASK_DESCRIPTION_LENGTH
345
+ ) {
346
+ return false;
347
+ }
348
+
349
+ const didPersist = await saveYjsDescriptionToDatabase({
350
+ wsId: effectiveTaskWsId,
351
+ taskId: task.id,
352
+ getContent: () => content,
353
+ getYjsState: () => yjsState,
354
+ boardId,
355
+ queryClient,
356
+ context: 'realtime-persist',
357
+ });
358
+
359
+ if (!didPersist) return false;
360
+
361
+ persistedDescriptionRef.current = serializedDescription;
362
+
363
+ const broadcast =
364
+ getActiveBroadcast() ?? taskRealtimeBroadcastRef.current;
365
+ broadcastTaskDescriptionUpsert({
366
+ taskId: task.id,
367
+ descriptionString: serializedDescription,
368
+ broadcast: broadcast ?? undefined,
369
+ });
370
+
371
+ return true;
372
+ },
373
+ [boardId, effectiveTaskWsId, queryClient, task?.id]
374
+ );
375
+
376
+ // Yjs collaboration — paid tiers get immediate broadcasts; free tier coalesces rapid edits
377
+ // Note: realtimeEnabled controls Yjs sync (all tiers), collaborationMode controls cursors (paid tiers)
378
+ const { doc, provider, synced, connected } = useYjsCollaboration({
379
+ channel: `task-editor-${task?.id || 'new'}`,
380
+ tableName: 'tasks',
381
+ columnName: 'description_yjs_state',
382
+ id: task?.id || '',
383
+ user: yjsUser,
384
+ enabled: isOpen && !isCreateMode && realtimeEnabled && !!task?.id,
385
+ broadcastDebounceMs: workspaceTier && workspaceTier !== 'FREE' ? 0 : 200,
386
+ saveDebounceMs: 5000,
387
+ loadDocumentState: loadTaskDescriptionState,
388
+ saveDocumentState: saveTaskDescriptionState,
389
+ });
390
+
391
+ const [hasHydratedYjsState, setHasHydratedYjsState] = useState(false);
392
+
393
+ useEffect(() => {
394
+ if (!isOpen || isCreateMode || !realtimeEnabled || !task?.id) {
395
+ setHasHydratedYjsState(false);
396
+ return;
397
+ }
398
+
399
+ if (synced) {
400
+ setHasHydratedYjsState(true);
401
+ }
402
+ }, [isOpen, isCreateMode, realtimeEnabled, task?.id, synced]);
403
+
404
+ const isYjsSyncing = useMemo(() => {
405
+ return (
406
+ isOpen &&
407
+ !isCreateMode &&
408
+ realtimeEnabled &&
409
+ !!task?.id &&
410
+ !hasHydratedYjsState &&
411
+ !synced
412
+ );
413
+ }, [
414
+ hasHydratedYjsState,
415
+ isOpen,
416
+ isCreateMode,
417
+ realtimeEnabled,
418
+ task?.id,
419
+ synced,
420
+ ]);
421
+
422
+ // Update user when props change
423
+ useEffect(() => {
424
+ if (propsCurrentUser) {
425
+ setUser(normalizeTaskDialogCurrentUser(propsCurrentUser));
426
+ }
427
+ }, [propsCurrentUser]);
428
+
429
+ // Data fetching
430
+ const [taskSearchQuery, setTaskSearchQuery] = useState<string>('');
431
+ const taskSearchDebounceRef = useRef<NodeJS.Timeout | null>(null);
432
+
433
+ const {
434
+ boardConfig,
435
+ availableLists,
436
+ workspaceLabels,
437
+ workspaceMembers,
438
+ taskProjects,
439
+ workspaceTasks,
440
+ workspaceTasksLoading,
441
+ } = useTaskData({
442
+ wsId: effectiveTaskWsId,
443
+ boardId,
444
+ isOpen,
445
+ propAvailableLists,
446
+ taskSearchQuery,
447
+ sharedContext,
448
+ });
449
+
450
+ // Update browser tab title
451
+ useEffect(() => {
452
+ if (!isOpen || isCreateMode || !task) return;
453
+ const originalTitle = document.title;
454
+ document.title = `${getTicketIdentifier(boardConfig?.ticket_prefix, task.display_number)} - ${task.name}`;
455
+ return () => {
456
+ document.title = originalTitle;
457
+ };
458
+ }, [isOpen, isCreateMode, task, boardConfig?.ticket_prefix]);
459
+
460
+ // Labels state
461
+ const [availableLabels, setAvailableLabels] = useState<WorkspaceTaskLabel[]>(
462
+ []
463
+ );
464
+ const [newLabelName, setNewLabelName] = useState('');
465
+ const [newLabelColor, setNewLabelColor] = useState(() =>
466
+ getRandomNewLabelColor()
467
+ );
468
+ const previousWorkspaceLabelsRef = useRef<string>('');
469
+
470
+ useEffect(() => {
471
+ const currentLabelsKey = JSON.stringify(
472
+ workspaceLabels.map((l) => l.id).sort()
473
+ );
474
+ if (previousWorkspaceLabelsRef.current !== currentLabelsKey) {
475
+ previousWorkspaceLabelsRef.current = currentLabelsKey;
476
+ setAvailableLabels(workspaceLabels);
477
+ }
478
+ }, [workspaceLabels]);
479
+
480
+ // Projects state
481
+ const [newProjectName, setNewProjectName] = useState('');
482
+
483
+ // Editor state
484
+ const [editorInstance, setEditorInstance] = useState<Editor | null>(null);
485
+ const [showAdvancedOptions, setShowAdvancedOptions] = useState(true);
486
+ const [descriptionStorageLength, setDescriptionStorageLength] = useState(() =>
487
+ getTaskDescriptionStorageLength(formState.description)
488
+ );
489
+ const descriptionPayloadTooLargeNotifiedRef = useRef(false);
490
+ const closeBlockedByOverflowRef = useRef(false);
491
+
492
+ // Dialog states
493
+ const [showNewLabelDialog, setShowNewLabelDialog] = useState(false);
494
+ const [showNewProjectDialog, setShowNewProjectDialog] = useState(false);
495
+ const [showEstimationConfigDialog, setShowEstimationConfigDialog] =
496
+ useState(false);
497
+ const [showDeleteConfirm, setShowDeleteConfirm] = useState(false);
498
+ const [createMultiple, setCreateMultiple] = useState(false);
499
+ const [showSyncWarning, setShowSyncWarning] = useState(false);
500
+ const [showUnsavedWarning, setShowUnsavedWarning] = useState(false);
501
+ const [showDescriptionOverflowWarning, setShowDescriptionOverflowWarning] =
502
+ useState(false);
503
+ const [showDescriptionCloseWarning, setShowDescriptionCloseWarning] =
504
+ useState(false);
505
+ const [showShareDialog, setShowShareDialog] = useState(false);
506
+ const [saveAsDraft, setSaveAsDraft] = useState(draftModeEnabled);
507
+ const [isTitleVisible, setIsTitleVisible] = useState(true);
508
+ const [scrollContainer, setScrollContainer] = useState<HTMLDivElement | null>(
509
+ null
510
+ );
511
+
512
+ // Calendar events state
513
+ const [localCalendarEvents, setLocalCalendarEvents] = useState<
514
+ Task['calendar_events'] | undefined
515
+ >(task?.calendar_events);
516
+
517
+ const [lockingEventId, setLockingEventId] = useState<string | null>(null);
518
+
519
+ const handleLockToggle = useCallback(
520
+ async (eventId: string, currentLocked: boolean) => {
521
+ setLockingEventId(eventId);
522
+ try {
523
+ await updateWorkspaceCalendarEvent(effectiveTaskWsId, eventId, {
524
+ locked: !currentLocked,
525
+ });
526
+
527
+ // Update local state
528
+ setLocalCalendarEvents((prev) =>
529
+ prev?.map((e) =>
530
+ e.id === eventId ? { ...e, locked: !currentLocked } : e
531
+ )
532
+ );
533
+
534
+ toast(!currentLocked ? 'Event locked' : 'Event unlocked', {
535
+ description: !currentLocked
536
+ ? 'The auto-scheduler will no longer move this instance.'
537
+ : 'The auto-scheduler can now move this instance.',
538
+ });
539
+ } catch (error) {
540
+ console.error('Failed to update lock status for calendar event', error);
541
+ toast.error('Error', {
542
+ description: 'Failed to update lock status',
543
+ });
544
+ } finally {
545
+ setLockingEventId(null);
546
+ }
547
+ },
548
+ [effectiveTaskWsId]
549
+ );
550
+
551
+ useEffect(() => {
552
+ setLocalCalendarEvents(task?.calendar_events);
553
+ }, [task?.calendar_events]);
554
+
555
+ const { data: personalScheduleData } = useQuery({
556
+ queryKey: ['task-personal-schedule', task?.id, isOpen],
557
+ enabled: !!isOpen && !isCreateMode && !!task?.id,
558
+ queryFn: async () => {
559
+ const response = await fetch(
560
+ `/api/v1/users/me/tasks/${task!.id}/schedule`,
561
+ { cache: 'no-store' }
562
+ );
563
+ if (!response.ok) return null;
564
+ return (await response.json()) as null | {
565
+ task: {
566
+ total_duration: number | null;
567
+ is_splittable: boolean | null;
568
+ min_split_duration_minutes: number | null;
569
+ max_split_duration_minutes: number | null;
570
+ calendar_hours: any;
571
+ auto_schedule: boolean | null;
572
+ };
573
+ events: Array<{
574
+ id: string;
575
+ title: string;
576
+ start_at: string;
577
+ end_at: string;
578
+ scheduled_minutes: number;
579
+ completed: boolean;
580
+ }>;
581
+ };
582
+ },
583
+ staleTime: 15_000,
584
+ });
585
+
586
+ // Sync scheduled events into local state for rendering
587
+ useEffect(() => {
588
+ if (!personalScheduleData?.events) return;
589
+ setLocalCalendarEvents(
590
+ personalScheduleData.events.map((e) => ({
591
+ id: e.id,
592
+ title: e.title,
593
+ start_at: e.start_at,
594
+ end_at: e.end_at,
595
+ scheduled_minutes: e.scheduled_minutes,
596
+ completed: e.completed,
597
+ }))
598
+ );
599
+ }, [personalScheduleData?.events]);
600
+
601
+ // Sync "my scheduling settings" into the form state when opening the dialog
602
+ const {
603
+ setTotalDuration,
604
+ setIsSplittable,
605
+ setMinSplitDurationMinutes,
606
+ setMaxSplitDurationMinutes,
607
+ setCalendarHours,
608
+ setAutoSchedule,
609
+ setEndDate,
610
+ } = formState;
611
+ useEffect(() => {
612
+ if (!personalScheduleData?.task || !isOpen || isCreateMode) return;
613
+ setTotalDuration(personalScheduleData.task.total_duration ?? null);
614
+ setIsSplittable(!!personalScheduleData.task.is_splittable);
615
+ setMinSplitDurationMinutes(
616
+ personalScheduleData.task.min_split_duration_minutes ?? null
617
+ );
618
+ setMaxSplitDurationMinutes(
619
+ personalScheduleData.task.max_split_duration_minutes ?? null
620
+ );
621
+ setCalendarHours(personalScheduleData.task.calendar_hours ?? null);
622
+ setAutoSchedule(!!personalScheduleData.task.auto_schedule);
623
+ }, [
624
+ personalScheduleData?.task,
625
+ isOpen,
626
+ isCreateMode,
627
+ setTotalDuration,
628
+ setIsSplittable,
629
+ setMinSplitDurationMinutes,
630
+ setMaxSplitDurationMinutes,
631
+ setCalendarHours,
632
+ setAutoSchedule,
633
+ ]);
634
+
635
+ const hasUnsavedSchedulingChanges = useMemo(() => {
636
+ if (isCreateMode) return false;
637
+
638
+ const saved = personalScheduleData?.task;
639
+ if (!saved) {
640
+ return (
641
+ formState.totalDuration !== null ||
642
+ formState.isSplittable ||
643
+ formState.minSplitDurationMinutes !== null ||
644
+ formState.maxSplitDurationMinutes !== null ||
645
+ formState.calendarHours !== null ||
646
+ formState.autoSchedule
647
+ );
648
+ }
649
+
650
+ return (
651
+ formState.totalDuration !== (saved.total_duration ?? null) ||
652
+ formState.isSplittable !== !!saved.is_splittable ||
653
+ formState.minSplitDurationMinutes !==
654
+ (saved.min_split_duration_minutes ?? null) ||
655
+ formState.maxSplitDurationMinutes !==
656
+ (saved.max_split_duration_minutes ?? null) ||
657
+ formState.calendarHours !== (saved.calendar_hours ?? null) ||
658
+ formState.autoSchedule !== !!saved.auto_schedule
659
+ );
660
+ }, [
661
+ isCreateMode,
662
+ personalScheduleData?.task,
663
+ formState.totalDuration,
664
+ formState.isSplittable,
665
+ formState.minSplitDurationMinutes,
666
+ formState.maxSplitDurationMinutes,
667
+ formState.calendarHours,
668
+ formState.autoSchedule,
669
+ ]);
670
+
671
+ const draftStorageKey = getDraftStorageKey(boardId);
672
+
673
+ // Suggestion menus
674
+ const suggestionMenus = useSuggestionMenus({
675
+ editorInstance,
676
+ isOpen,
677
+ workspaceMembers,
678
+ boardConfig,
679
+ taskProjects,
680
+ workspaceTasks,
681
+ workspaceTasksLoading,
682
+ wsId: effectiveTaskWsId,
683
+ currentTaskId: task?.id,
684
+ isPersonalWorkspace,
685
+ endDate: formState.endDate,
686
+ priority: formState.priority,
687
+ showAdvancedOptions,
688
+ setShowAdvancedOptions,
689
+ });
690
+
691
+ // Change detection
692
+ const { hasUnsavedChanges, canSave, parseDescription } =
693
+ useTaskChangeDetection({
694
+ task,
695
+ name: formState.name,
696
+ description: formState.description,
697
+ priority: formState.priority,
698
+ startDate: formState.startDate,
699
+ endDate: formState.endDate,
700
+ selectedListId: formState.selectedListId,
701
+ estimationPoints: formState.estimationPoints,
702
+ selectedLabels: formState.selectedLabels,
703
+ selectedAssignees: formState.selectedAssignees,
704
+ isCreateMode,
705
+ isLoading,
706
+ collaborationMode,
707
+ draftId,
708
+ });
709
+
710
+ useEffect(() => {
711
+ if (!isOpen || isCreateMode) {
712
+ persistedDescriptionRef.current = null;
713
+ return;
714
+ }
715
+
716
+ persistedDescriptionRef.current =
717
+ serializeTaskDescriptionContent(parseDescription(task?.description)) ??
718
+ null;
719
+ }, [isOpen, isCreateMode, parseDescription, task?.description]);
720
+
721
+ // Realtime sync for task fields and relations. Description sync remains Yjs-only.
722
+ const { broadcast: taskRealtimeBroadcast } = useTaskRealtimeSync({
723
+ wsId: effectiveTaskWsId,
724
+ taskWorkspaceId: taskWsId,
725
+ taskId: task?.id,
726
+ boardId,
727
+ isCreateMode,
728
+ isOpen,
729
+ realtimeEnabled,
730
+ isPersonalWorkspace,
731
+ name: formState.name,
732
+ priority: formState.priority,
733
+ startDate: formState.startDate,
734
+ endDate: formState.endDate,
735
+ estimationPoints: formState.estimationPoints,
736
+ selectedListId: formState.selectedListId,
737
+ pendingNameRef,
738
+ setName: formState.setName,
739
+ setPriority: formState.setPriority,
740
+ setStartDate: formState.setStartDate,
741
+ setEndDate: formState.setEndDate,
742
+ setEstimationPoints: formState.setEstimationPoints,
743
+ setSelectedListId: formState.setSelectedListId,
744
+ setSelectedLabels: formState.setSelectedLabels,
745
+ setSelectedAssignees: formState.setSelectedAssignees,
746
+ setSelectedProjects: formState.setSelectedProjects,
747
+ disabled,
748
+ });
749
+ taskRealtimeBroadcastRef.current = taskRealtimeBroadcast;
750
+
751
+ // Task mutations
752
+ const {
753
+ updateEstimation,
754
+ updatePriority,
755
+ updateStartDate,
756
+ updateEndDate,
757
+ updateList,
758
+ saveNameToDatabase,
759
+ saveSchedulingSettings,
760
+ schedulingSaving,
761
+ } = useTaskMutations({
762
+ wsId: effectiveTaskWsId,
763
+ taskId: task?.id,
764
+ isCreateMode,
765
+ boardId,
766
+ estimationPoints: formState.estimationPoints ?? null,
767
+ priority: formState.priority,
768
+ selectedListId: formState.selectedListId,
769
+ taskName: task?.name,
770
+ setEstimationPoints: formState.setEstimationPoints,
771
+ setPriority: formState.setPriority,
772
+ setStartDate: formState.setStartDate,
773
+ setEndDate: formState.setEndDate,
774
+ setSelectedListId: formState.setSelectedListId,
775
+ fallbackBroadcast: taskRealtimeBroadcast,
776
+ onUpdate,
777
+ });
778
+
779
+ // Task relationships
780
+ const {
781
+ toggleLabel,
782
+ toggleAssignee,
783
+ toggleProject,
784
+ handleCreateLabel,
785
+ handleCreateProject,
786
+ creatingLabel,
787
+ creatingProject,
788
+ } = useTaskRelationships({
789
+ wsId: effectiveTaskWsId,
790
+ labelCacheWorkspaceId: boardConfig?.ws_id || effectiveTaskWsId,
791
+ taskId: task?.id,
792
+ isCreateMode,
793
+ boardId,
794
+ selectedLabels: formState.selectedLabels,
795
+ selectedAssignees: formState.selectedAssignees,
796
+ selectedProjects: formState.selectedProjects,
797
+ newLabelName,
798
+ newLabelColor,
799
+ newProjectName,
800
+ setSelectedLabels: formState.setSelectedLabels,
801
+ setSelectedAssignees: formState.setSelectedAssignees,
802
+ setSelectedProjects: formState.setSelectedProjects,
803
+ setAvailableLabels,
804
+ setNewLabelName,
805
+ setNewLabelColor,
806
+ setNewProjectName,
807
+ setShowNewLabelDialog,
808
+ setShowNewProjectDialog,
809
+ fallbackBroadcast: taskRealtimeBroadcast,
810
+ onUpdate,
811
+ });
812
+
813
+ const seededPendingRelationships = useMemo<PendingTaskRelationships>(
814
+ () =>
815
+ getSeededPendingTaskRelationships({
816
+ parentTaskId,
817
+ parentTaskName,
818
+ pendingRelationship,
819
+ }),
820
+ [parentTaskId, parentTaskName, pendingRelationship]
821
+ );
822
+
823
+ // Task dependencies
824
+ const {
825
+ isLoading: dependenciesLoading,
826
+ parentTask,
827
+ setParentTask,
828
+ childTasks,
829
+ addChildTask,
830
+ blocking: blockingTasks,
831
+ addBlockingTask,
832
+ removeBlockingTask,
833
+ blockedBy: blockedByTasks,
834
+ addBlockedByTask,
835
+ removeBlockedByTask,
836
+ relatedTasks,
837
+ addRelatedTask,
838
+ removeRelatedTask,
839
+ savingRelationship,
840
+ pendingRelationships,
841
+ } = useTaskDependencies({
842
+ taskId: task?.id,
843
+ boardId,
844
+ wsId: effectiveTaskWsId,
845
+ listId: task?.list_id,
846
+ isCreateMode,
847
+ initialPendingRelationships: seededPendingRelationships,
848
+ onUpdate,
849
+ });
850
+
851
+ // Form reset
852
+ useTaskFormReset({
853
+ isOpen,
854
+ isCreateMode,
855
+ task,
856
+ filters,
857
+ setName: formState.setName,
858
+ setDescription: formState.setDescription,
859
+ setPriority: formState.setPriority,
860
+ setStartDate: formState.setStartDate,
861
+ setEndDate: formState.setEndDate,
862
+ setSelectedListId: formState.setSelectedListId,
863
+ setEstimationPoints: formState.setEstimationPoints,
864
+ setSelectedLabels: formState.setSelectedLabels,
865
+ setSelectedAssignees: formState.setSelectedAssignees,
866
+ setSelectedProjects: formState.setSelectedProjects,
867
+ });
868
+
869
+ // Yjs sync
870
+ useTaskYjsSync({
871
+ taskId: task?.id,
872
+ wsId: effectiveTaskWsId,
873
+ boardId,
874
+ isOpen,
875
+ isCreateMode,
876
+ realtimeEnabled,
877
+ editorInstance,
878
+ doc,
879
+ yjsProvider: provider,
880
+ queryClient,
881
+ flushEditorPendingRef,
882
+ });
883
+
884
+ useEffect(() => {
885
+ setDescriptionStorageLength(
886
+ getTaskDescriptionStorageLength(formState.description)
887
+ );
888
+ }, [formState.description]);
889
+
890
+ const handleDescriptionStorageLengthChange = useCallback((length: number) => {
891
+ setDescriptionStorageLength((currentLength) =>
892
+ currentLength === length ? currentLength : length
893
+ );
894
+ }, []);
895
+
896
+ const isDescriptionOverLimit =
897
+ descriptionStorageLength > MAX_TASK_DESCRIPTION_LENGTH;
898
+ const descriptionPercentLeft = getTaskDescriptionPercentLeft(
899
+ descriptionStorageLength,
900
+ MAX_TASK_DESCRIPTION_LENGTH
901
+ );
902
+
903
+ const showDescriptionPayloadTooLargeToast = useCallback(() => {
904
+ const title = dialogT.has('description_payload_too_large_title')
905
+ ? dialogT('description_payload_too_large_title')
906
+ : 'Description payload is too large';
907
+ const description = dialogT.has('description_payload_too_large_description')
908
+ ? dialogT('description_payload_too_large_description')
909
+ : 'This description is too large to sync. Please shorten it or split it into smaller documents.';
910
+
911
+ toast.error(title, { description });
912
+ }, [dialogT]);
913
+
914
+ useEffect(() => {
915
+ if (!isOpen) {
916
+ descriptionPayloadTooLargeNotifiedRef.current = false;
917
+ return;
918
+ }
919
+
920
+ if (!isDescriptionOverLimit) {
921
+ descriptionPayloadTooLargeNotifiedRef.current = false;
922
+ return;
923
+ }
924
+
925
+ if (descriptionPayloadTooLargeNotifiedRef.current) return;
926
+
927
+ descriptionPayloadTooLargeNotifiedRef.current = true;
928
+ showDescriptionPayloadTooLargeToast();
929
+ }, [isDescriptionOverLimit, isOpen, showDescriptionPayloadTooLargeToast]);
930
+
931
+ // Quick due date handler
932
+ const handleQuickDueDate = useCallback(
933
+ (days: number | null) => {
934
+ const newDate =
935
+ days !== null
936
+ ? dayjs().add(days, 'day').endOf('day').toDate()
937
+ : undefined;
938
+ setEndDate(newDate);
939
+ if (!isCreateMode) updateEndDate(newDate);
940
+ },
941
+ [isCreateMode, setEndDate, updateEndDate]
942
+ );
943
+
944
+ // Name update handlers
945
+ const updateName = useCallback(
946
+ (newName: string) => {
947
+ if (nameUpdateTimerRef.current) clearTimeout(nameUpdateTimerRef.current);
948
+ pendingNameRef.current = newName;
949
+ nameUpdateTimerRef.current = setTimeout(() => {
950
+ saveNameToDatabase(newName);
951
+ pendingNameRef.current = null;
952
+ nameUpdateTimerRef.current = null;
953
+ }, NAME_UPDATE_DEBOUNCE_MS);
954
+ },
955
+ [saveNameToDatabase]
956
+ );
957
+
958
+ const flushNameUpdate = useCallback(async () => {
959
+ if (nameUpdateTimerRef.current) {
960
+ clearTimeout(nameUpdateTimerRef.current);
961
+ nameUpdateTimerRef.current = null;
962
+ }
963
+ if (pendingNameRef.current) {
964
+ await saveNameToDatabase(pendingNameRef.current);
965
+ pendingNameRef.current = null;
966
+ }
967
+ }, [saveNameToDatabase]);
968
+
969
+ // Image upload handler
970
+ const handleImageUpload = useCallback(
971
+ async (file: File): Promise<string> => {
972
+ if (!effectiveTaskWsId) {
973
+ throw new Error(t('error'));
974
+ }
975
+
976
+ if (disabled) {
977
+ throw Object.assign(new Error(t('insufficient_permissions')), {
978
+ code: 'INSUFFICIENT_PERMISSIONS',
979
+ });
980
+ }
981
+
982
+ let hasPermission = canManageTaskMedia;
983
+ if (hasPermission === undefined || isCheckingTaskMediaPermission) {
984
+ hasPermission = await queryClient.fetchQuery({
985
+ queryKey: [
986
+ 'workspace-permission',
987
+ effectiveTaskWsId,
988
+ 'manage_drive_tasks_directory',
989
+ ],
990
+ queryFn: async () => {
991
+ const result = await checkWorkspacePermission(
992
+ effectiveTaskWsId,
993
+ 'manage_drive_tasks_directory'
994
+ );
995
+ return result.hasPermission;
996
+ },
997
+ staleTime: 5 * 60 * 1000,
998
+ });
999
+ }
1000
+
1001
+ if (!hasPermission) {
1002
+ throw Object.assign(new Error(t('insufficient_permissions')), {
1003
+ code: 'INSUFFICIENT_PERMISSIONS',
1004
+ });
1005
+ }
1006
+
1007
+ const uploadResult = await uploadWorkspaceTaskFile(
1008
+ effectiveTaskWsId,
1009
+ file,
1010
+ { taskId: task?.id }
1011
+ );
1012
+
1013
+ const query = new URLSearchParams({ path: uploadResult.path });
1014
+ if (task?.id) {
1015
+ query.set('taskId', task.id);
1016
+ }
1017
+
1018
+ return `/api/v1/workspaces/${encodeURIComponent(effectiveTaskWsId)}/storage/share?${query.toString()}`;
1019
+ },
1020
+ [
1021
+ canManageTaskMedia,
1022
+ disabled,
1023
+ effectiveTaskWsId,
1024
+ isCheckingTaskMediaPermission,
1025
+ queryClient,
1026
+ task?.id,
1027
+ t,
1028
+ ]
1029
+ );
1030
+
1031
+ const imageUploadHandler =
1032
+ !effectiveTaskWsId || disabled || canManageTaskMedia === false
1033
+ ? undefined
1034
+ : handleImageUpload;
1035
+
1036
+ const handleEstimationConfigSuccess = useCallback(async () => {
1037
+ await queryClient.invalidateQueries({
1038
+ queryKey: ['board-config', boardId],
1039
+ });
1040
+ await invalidateTaskCaches(queryClient, boardId);
1041
+ onUpdate();
1042
+ }, [queryClient, boardId, onUpdate]);
1043
+
1044
+ // Editor commands
1045
+ const { executeSlashCommand, insertMentionOption, handleCustomDateSelect } =
1046
+ useEditorCommands({
1047
+ editorInstance,
1048
+ slashState: suggestionMenus.slashState,
1049
+ mentionState: suggestionMenus.mentionState,
1050
+ includeTime: suggestionMenus.includeTime,
1051
+ selectedHour: suggestionMenus.selectedHour,
1052
+ selectedMinute: suggestionMenus.selectedMinute,
1053
+ selectedPeriod: suggestionMenus.selectedPeriod,
1054
+ handleQuickDueDate,
1055
+ setPriority: formState.setPriority,
1056
+ setShowAdvancedOptions,
1057
+ setShowCustomDatePicker: suggestionMenus.setShowCustomDatePicker,
1058
+ setCustomDate: suggestionMenus.setCustomDate,
1059
+ setIncludeTime: suggestionMenus.setIncludeTime,
1060
+ setSelectedHour: suggestionMenus.setSelectedHour,
1061
+ setSelectedMinute: suggestionMenus.setSelectedMinute,
1062
+ setSelectedPeriod: suggestionMenus.setSelectedPeriod,
1063
+ closeSlashMenu: suggestionMenus.closeSlashMenu,
1064
+ closeMentionMenu: suggestionMenus.closeMentionMenu,
1065
+ handleConvertToTaskRef,
1066
+ mentionWorkspaceId: boardConfig?.ws_id ?? effectiveTaskWsId,
1067
+ });
1068
+
1069
+ // Convert to task handler
1070
+ const handleConvertToTask = useCallback(async () => {
1071
+ if (!editorInstance || !boardId) return;
1072
+
1073
+ const targetList = resolveInlineTaskTargetList({
1074
+ availableLists,
1075
+ preferredListId: formState.selectedListId || task?.list_id,
1076
+ });
1077
+
1078
+ if (!targetList) {
1079
+ toast.error('No lists available', {
1080
+ description: 'Create a list first before converting items to tasks',
1081
+ });
1082
+ return;
1083
+ }
1084
+
1085
+ const inlineTaskWorkspaceId = resolveInlineTaskTargetWorkspaceId({
1086
+ boardWorkspaceId: boardConfig?.ws_id,
1087
+ fallbackWorkspaceId: effectiveTaskWsId,
1088
+ });
1089
+
1090
+ // Store the created task to add to cache later
1091
+ let createdTask: Task | null = null;
1092
+
1093
+ const result = await convertListItemToTask({
1094
+ editor: editorInstance,
1095
+ listId: targetList.id,
1096
+ listName: targetList.name,
1097
+ wrapInParagraph: false,
1098
+ createTask: async ({
1099
+ name,
1100
+ listId,
1101
+ }: {
1102
+ name: string;
1103
+ listId: string;
1104
+ }) => {
1105
+ const response = await createWorkspaceTask(inlineTaskWorkspaceId, {
1106
+ name,
1107
+ listId,
1108
+ });
1109
+ const newTask = response.task;
1110
+ if (!newTask) {
1111
+ throw new Error('Failed to create task');
1112
+ }
1113
+
1114
+ // Store full task for cache update
1115
+ createdTask = {
1116
+ ...newTask,
1117
+ assignees: [],
1118
+ labels: [],
1119
+ projects: [],
1120
+ } as Task;
1121
+
1122
+ return {
1123
+ id: newTask.id,
1124
+ name: newTask.name,
1125
+ display_number: newTask.display_number ?? undefined,
1126
+ priority: newTask.priority || undefined,
1127
+ listColor: targetList.color || undefined,
1128
+ workspaceId: inlineTaskWorkspaceId,
1129
+ };
1130
+ },
1131
+ });
1132
+ if (!result.success) {
1133
+ toast.error(result.error!.message, {
1134
+ description: result.error!.description,
1135
+ });
1136
+ return;
1137
+ }
1138
+
1139
+ // CRITICAL: Flush the debounced editor change immediately after inserting the mention.
1140
+ // Without this, the editor's onChange is debounced (500ms delay), and any re-render
1141
+ // during that window causes the editor to sync back to stale content, erasing the mention.
1142
+ // This ensures the React state (description) is updated BEFORE any cache invalidations.
1143
+ if (flushEditorPendingRef.current) {
1144
+ flushEditorPendingRef.current();
1145
+ }
1146
+
1147
+ // Add the new task to the cache directly instead of relying on realtime
1148
+ // This ensures the task appears immediately in personal workspaces (no realtime)
1149
+ // and avoids full-board refetch flickering
1150
+ if (createdTask) {
1151
+ queryClient.setQueryData(
1152
+ ['tasks', boardId],
1153
+ (old: Task[] | undefined) => {
1154
+ if (!old) return [createdTask];
1155
+ // Check if task already exists (from realtime), if so don't duplicate
1156
+ if (old.some((t) => t.id === createdTask!.id)) return old;
1157
+ return [...old, createdTask];
1158
+ }
1159
+ );
1160
+ }
1161
+
1162
+ // Only invalidate time tracking data since task availability affects it
1163
+ await queryClient.invalidateQueries({
1164
+ queryKey: ['time-tracking-data'],
1165
+ });
1166
+
1167
+ toast('Task created', {
1168
+ description: `Created task "${result.taskName}" and added mention`,
1169
+ });
1170
+ }, [
1171
+ editorInstance,
1172
+ boardId,
1173
+ availableLists,
1174
+ formState.selectedListId,
1175
+ task?.list_id,
1176
+ queryClient,
1177
+ effectiveTaskWsId,
1178
+ boardConfig?.ws_id,
1179
+ ]);
1180
+
1181
+ // Save handler
1182
+ // Transform user for save hook (ensure id is string if present)
1183
+ const userForSave = useMemo(() => {
1184
+ if (!user?.id) return null;
1185
+ return {
1186
+ id: user.id,
1187
+ display_name: user.display_name,
1188
+ avatar_url: user.avatar_url,
1189
+ };
1190
+ }, [user?.id, user?.display_name, user?.avatar_url]);
1191
+
1192
+ const { handleSave, handleSaveRef } = useTaskSave({
1193
+ wsId: effectiveTaskWsId,
1194
+ boardId,
1195
+ taskId: task?.id,
1196
+ saveAsDraft: isCreateMode && (!!draftId || saveAsDraft),
1197
+ draftId,
1198
+ isCreateMode,
1199
+ collaborationMode,
1200
+ isPersonalWorkspace,
1201
+ shareCode,
1202
+ sharedPermission,
1203
+ parentTaskId,
1204
+ pendingRelationship,
1205
+ pendingTaskRelationships: pendingRelationships,
1206
+ draftStorageKey,
1207
+ name: formState.name,
1208
+ description: formState.description,
1209
+ editorInstance,
1210
+ priority: formState.priority,
1211
+ startDate: formState.startDate,
1212
+ endDate: formState.endDate,
1213
+ selectedListId: formState.selectedListId,
1214
+ estimationPoints: formState.estimationPoints,
1215
+ selectedLabels: formState.selectedLabels,
1216
+ selectedAssignees: formState.selectedAssignees,
1217
+ selectedProjects: formState.selectedProjects,
1218
+ totalDuration: formState.totalDuration,
1219
+ isSplittable: formState.isSplittable,
1220
+ minSplitDurationMinutes: formState.minSplitDurationMinutes,
1221
+ maxSplitDurationMinutes: formState.maxSplitDurationMinutes,
1222
+ calendarHours: formState.calendarHours,
1223
+ autoSchedule: formState.autoSchedule,
1224
+ saveSchedulingSettings,
1225
+ hasUnsavedSchedulingChanges,
1226
+ user: userForSave,
1227
+ userTaskSettings,
1228
+ createMultiple,
1229
+ nameUpdateTimerRef,
1230
+ pendingNameRef,
1231
+ flushEditorPendingRef,
1232
+ queryClient,
1233
+ onUpdate,
1234
+ onClose,
1235
+ setIsSaving,
1236
+ setIsLoading,
1237
+ setName: formState.setName,
1238
+ setDescription: formState.setDescription,
1239
+ setPriority: formState.setPriority,
1240
+ setStartDate: formState.setStartDate,
1241
+ setEndDate: formState.setEndDate,
1242
+ setEstimationPoints: formState.setEstimationPoints,
1243
+ setSelectedLabels: formState.setSelectedLabels,
1244
+ setSelectedAssignees: formState.setSelectedAssignees,
1245
+ setSelectedProjects: formState.setSelectedProjects,
1246
+ });
1247
+
1248
+ const persistTaskDescriptionOnClose = useCallback(async () => {
1249
+ if (isCreateMode || !task?.id || !flushEditorPendingRef.current) {
1250
+ return true;
1251
+ }
1252
+
1253
+ closeBlockedByOverflowRef.current = false;
1254
+
1255
+ const currentContent = flushEditorPendingRef.current();
1256
+ const currentSerializedDescription =
1257
+ serializeTaskDescriptionContent(currentContent) ?? null;
1258
+
1259
+ if (
1260
+ currentSerializedDescription &&
1261
+ currentSerializedDescription.length > MAX_TASK_DESCRIPTION_LENGTH
1262
+ ) {
1263
+ closeBlockedByOverflowRef.current = true;
1264
+ setShowDescriptionOverflowWarning(true);
1265
+ return false;
1266
+ }
1267
+
1268
+ const initialSerializedDescription = persistedDescriptionRef.current;
1269
+
1270
+ if (currentSerializedDescription === initialSerializedDescription) {
1271
+ return true;
1272
+ }
1273
+
1274
+ const yjsState =
1275
+ currentContent && editorInstance?.schema
1276
+ ? Array.from(
1277
+ convertJsonContentToYjsState(currentContent, editorInstance.schema)
1278
+ )
1279
+ : null;
1280
+
1281
+ const didPersist = await saveAndVerifyYjsDescriptionToDatabase({
1282
+ wsId: effectiveTaskWsId,
1283
+ taskId: task.id,
1284
+ getContent: () => currentContent,
1285
+ getYjsState: () => yjsState,
1286
+ boardId,
1287
+ queryClient,
1288
+ context: 'close',
1289
+ });
1290
+
1291
+ if (didPersist) {
1292
+ persistedDescriptionRef.current = currentSerializedDescription;
1293
+ }
1294
+
1295
+ return didPersist;
1296
+ }, [
1297
+ isCreateMode,
1298
+ task?.id,
1299
+ effectiveTaskWsId,
1300
+ editorInstance,
1301
+ boardId,
1302
+ queryClient,
1303
+ ]);
1304
+
1305
+ const hasPendingRealtimeDescriptionChanges = useCallback(() => {
1306
+ if (isCreateMode || !task?.id || !flushEditorPendingRef.current) {
1307
+ return false;
1308
+ }
1309
+
1310
+ const currentContent = flushEditorPendingRef.current();
1311
+ const currentSerializedDescription =
1312
+ serializeTaskDescriptionContent(currentContent) ?? null;
1313
+
1314
+ if (
1315
+ currentSerializedDescription &&
1316
+ currentSerializedDescription.length > MAX_TASK_DESCRIPTION_LENGTH
1317
+ ) {
1318
+ return false;
1319
+ }
1320
+
1321
+ const initialSerializedDescription = persistedDescriptionRef.current;
1322
+
1323
+ return currentSerializedDescription !== initialSerializedDescription;
1324
+ }, [isCreateMode, task?.id]);
1325
+
1326
+ // Close handlers
1327
+ const { handleClose, handleForceClose, handleNavigateBack, handleCloseRef } =
1328
+ useTaskDialogClose({
1329
+ taskId: task?.id,
1330
+ isCreateMode,
1331
+ collaborationMode,
1332
+ synced,
1333
+ connected,
1334
+ draftStorageKey,
1335
+ parentTaskId,
1336
+ pendingRelationship,
1337
+ onClose,
1338
+ onNavigateToTask,
1339
+ flushNameUpdate,
1340
+ persistTaskDescription: persistTaskDescriptionOnClose,
1341
+ hasPendingRealtimeDescriptionChanges,
1342
+ onCloseBlocked: () => {
1343
+ if (closeBlockedByOverflowRef.current) {
1344
+ return;
1345
+ }
1346
+
1347
+ setShowDescriptionCloseWarning(true);
1348
+ },
1349
+ setShowSyncWarning,
1350
+ });
1351
+
1352
+ // Attempt close — intercepts in create mode with unsaved changes
1353
+ const handleAttemptClose = useCallback(async () => {
1354
+ if (isCreateMode && hasUnsavedChanges && formState.name.trim()) {
1355
+ setShowUnsavedWarning(true);
1356
+ return false;
1357
+ }
1358
+ return handleClose();
1359
+ }, [isCreateMode, hasUnsavedChanges, formState.name, handleClose]);
1360
+
1361
+ const handleConfirmCloseWithOverflow = useCallback(async () => {
1362
+ closeBlockedByOverflowRef.current = false;
1363
+ setShowDescriptionOverflowWarning(false);
1364
+
1365
+ await flushNameUpdate();
1366
+
1367
+ if (!isCreateMode) {
1368
+ clearDraft(draftStorageKey);
1369
+ }
1370
+
1371
+ onClose();
1372
+ }, [flushNameUpdate, isCreateMode, draftStorageKey, onClose]);
1373
+
1374
+ const handleConfirmCloseWithUnconfirmedDescription = useCallback(async () => {
1375
+ setShowDescriptionCloseWarning(false);
1376
+ await handleForceClose();
1377
+ }, [handleForceClose]);
1378
+
1379
+ // Dialog open change - prevents close when menus are open
1380
+ const handleDialogOpenChange = useCallback(
1381
+ (open: boolean) => {
1382
+ if (
1383
+ !open &&
1384
+ !suggestionMenus.showCustomDatePicker &&
1385
+ !suggestionMenus.slashState.open &&
1386
+ !suggestionMenus.mentionState.open
1387
+ ) {
1388
+ void handleAttemptClose();
1389
+ }
1390
+ },
1391
+ [
1392
+ suggestionMenus.showCustomDatePicker,
1393
+ suggestionMenus.slashState.open,
1394
+ suggestionMenus.mentionState.open,
1395
+ handleAttemptClose,
1396
+ ]
1397
+ );
1398
+
1399
+ useEffect(() => {
1400
+ if (!isOpen) {
1401
+ registerCloseRequestHandler(null);
1402
+ return;
1403
+ }
1404
+
1405
+ registerCloseRequestHandler(() => {
1406
+ return handleAttemptClose();
1407
+ });
1408
+
1409
+ return () => {
1410
+ registerCloseRequestHandler(null);
1411
+ };
1412
+ }, [handleAttemptClose, isOpen, registerCloseRequestHandler]);
1413
+
1414
+ // Unsaved changes warning handlers
1415
+ const handleWarningDiscard = useCallback(() => {
1416
+ setShowUnsavedWarning(false);
1417
+ handleClose();
1418
+ }, [handleClose]);
1419
+
1420
+ const handleWarningSaveAsDraft = useCallback(() => {
1421
+ setShowUnsavedWarning(false);
1422
+ setSaveAsDraft(true);
1423
+ // Wait for React to re-render with updated saveAsDraft before triggering save
1424
+ setTimeout(() => handleSaveRef.current(), 0);
1425
+ }, [handleSaveRef]);
1426
+
1427
+ const handleWarningCreateTask = useCallback(() => {
1428
+ setShowUnsavedWarning(false);
1429
+ setSaveAsDraft(false);
1430
+ // Wait for React to re-render with updated saveAsDraft before triggering save
1431
+ setTimeout(() => handleSaveRef.current(), 0);
1432
+ }, [handleSaveRef]);
1433
+
1434
+ const handleEditorReady = useCallback((editor: Editor) => {
1435
+ setEditorInstance(editor);
1436
+ }, []);
1437
+
1438
+ // Navigate to a collaborator's cursor position in the editor.
1439
+ // The CollaborationCaret extension renders `<span class="collaboration-carets__label">`
1440
+ // with the user's display name. We match by name and scroll it into view.
1441
+ const scrollToUserCursor = useCallback(
1442
+ (_userId: string, displayName: string) => {
1443
+ if (!editorInstance) return;
1444
+
1445
+ // Search inside the ProseMirror editor DOM for caret labels
1446
+ const labels = editorInstance.view.dom.querySelectorAll(
1447
+ '.collaboration-carets__label'
1448
+ );
1449
+ for (const label of labels) {
1450
+ if (label.textContent?.trim() === displayName) {
1451
+ // Scroll the parent caret element into view (the label is positioned absolute)
1452
+ const caret = label.closest('.collaboration-carets__caret');
1453
+ (caret ?? label).scrollIntoView({
1454
+ behavior: 'smooth',
1455
+ block: 'center',
1456
+ });
1457
+ // Briefly flash the label so the user spots it
1458
+ const el = label as HTMLElement;
1459
+ el.style.opacity = '1';
1460
+ el.style.animation = 'none';
1461
+ setTimeout(() => {
1462
+ el.style.animation = '';
1463
+ }, 2000);
1464
+ return;
1465
+ }
1466
+ }
1467
+ },
1468
+ [editorInstance]
1469
+ );
1470
+
1471
+ // Keyboard shortcuts
1472
+ const hasUnsavedChangesRef = useRef<boolean>(false);
1473
+ hasUnsavedChangesRef.current = hasUnsavedChanges;
1474
+
1475
+ useTaskDialogKeyboardShortcuts({
1476
+ isOpen,
1477
+ canSave,
1478
+ isCreateMode,
1479
+ collaborationMode,
1480
+ disabled,
1481
+ editorInstance,
1482
+ boardConfig,
1483
+ slashState: suggestionMenus.slashState,
1484
+ filteredSlashCommands: suggestionMenus.filteredSlashCommands,
1485
+ slashHighlightIndex: suggestionMenus.slashHighlightIndex,
1486
+ setSlashHighlightIndex: suggestionMenus.setSlashHighlightIndex,
1487
+ mentionState: suggestionMenus.mentionState,
1488
+ filteredMentionOptions: suggestionMenus.filteredMentionOptions,
1489
+ mentionHighlightIndex: suggestionMenus.mentionHighlightIndex,
1490
+ setMentionHighlightIndex: suggestionMenus.setMentionHighlightIndex,
1491
+ showCustomDatePicker: suggestionMenus.showCustomDatePicker,
1492
+ setShowCustomDatePicker: suggestionMenus.setShowCustomDatePicker,
1493
+ setCustomDate: suggestionMenus.setCustomDate,
1494
+ handleSaveRef,
1495
+ handleCloseRef,
1496
+ hasUnsavedChangesRef,
1497
+ quickDueRef,
1498
+ updateEstimationRef,
1499
+ setPriority: formState.setPriority,
1500
+ setShowAdvancedOptions,
1501
+ executeSlashCommand,
1502
+ insertMentionOption,
1503
+ closeSlashMenu: suggestionMenus.closeSlashMenu,
1504
+ closeMentionMenu: suggestionMenus.closeMentionMenu,
1505
+ });
1506
+
1507
+ // Auto-close sync warning
1508
+ useEffect(() => {
1509
+ if (showSyncWarning && synced && connected) {
1510
+ const timer = setTimeout(async () => {
1511
+ setShowSyncWarning(false);
1512
+ await handleClose();
1513
+ }, 500);
1514
+ return () => clearTimeout(timer);
1515
+ }
1516
+ }, [showSyncWarning, synced, connected, handleClose]);
1517
+
1518
+ // Sync saveAsDraft with user setting when dialog opens (always on when editing a draft)
1519
+ useEffect(() => {
1520
+ if (isOpen) {
1521
+ setSaveAsDraft(!!draftId || draftModeEnabled);
1522
+ }
1523
+ }, [isOpen, draftModeEnabled, draftId]);
1524
+
1525
+ // Track whether the title input is scrolled out of view
1526
+ useEffect(() => {
1527
+ const el = titleInputRef.current;
1528
+ if (!el || !scrollContainer || !isOpen) {
1529
+ setIsTitleVisible(true);
1530
+ return;
1531
+ }
1532
+ const observer = new IntersectionObserver(
1533
+ ([entry]) => setIsTitleVisible(!!entry?.isIntersecting),
1534
+ { root: scrollContainer, threshold: 0 }
1535
+ );
1536
+ observer.observe(el);
1537
+ return () => observer.disconnect();
1538
+ }, [isOpen, scrollContainer]);
1539
+
1540
+ // Reset state when dialog closes
1541
+ useEffect(() => {
1542
+ if (!isOpen) {
1543
+ if (nameUpdateTimerRef.current) {
1544
+ clearTimeout(nameUpdateTimerRef.current);
1545
+ nameUpdateTimerRef.current = null;
1546
+ pendingNameRef.current = null;
1547
+ }
1548
+ suggestionMenus.setSlashState(createInitialSuggestionState());
1549
+ suggestionMenus.setMentionState(createInitialSuggestionState());
1550
+ setEditorInstance(null);
1551
+ suggestionMenus.setSlashHighlightIndex(0);
1552
+ suggestionMenus.setMentionHighlightIndex(0);
1553
+ suggestionMenus.setShowCustomDatePicker(false);
1554
+ suggestionMenus.setCustomDate(undefined);
1555
+ suggestionMenus.setIncludeTime(false);
1556
+ suggestionMenus.setSelectedHour('11');
1557
+ suggestionMenus.setSelectedMinute('59');
1558
+ suggestionMenus.setSelectedPeriod('PM');
1559
+ }
1560
+ }, [isOpen, suggestionMenus]);
1561
+
1562
+ // Task search debouncing
1563
+ useEffect(() => {
1564
+ if (!isOpen || !effectiveTaskWsId || !suggestionMenus.mentionState.open) {
1565
+ if (taskSearchQuery) setTaskSearchQuery('');
1566
+ return;
1567
+ }
1568
+ const query = suggestionMenus.mentionState.query.trim();
1569
+ if (taskSearchDebounceRef.current)
1570
+ clearTimeout(taskSearchDebounceRef.current);
1571
+ taskSearchDebounceRef.current = setTimeout(() => {
1572
+ if (query !== taskSearchQuery) setTaskSearchQuery(query);
1573
+ }, 300);
1574
+ return () => {
1575
+ if (taskSearchDebounceRef.current)
1576
+ clearTimeout(taskSearchDebounceRef.current);
1577
+ };
1578
+ }, [
1579
+ isOpen,
1580
+ effectiveTaskWsId,
1581
+ suggestionMenus.mentionState.open,
1582
+ suggestionMenus.mentionState.query,
1583
+ taskSearchQuery,
1584
+ ]);
1585
+
1586
+ // Update refs
1587
+ quickDueRef.current = handleQuickDueDate;
1588
+ updateEstimationRef.current = updateEstimation;
1589
+ handleConvertToTaskRef.current = handleConvertToTask;
1590
+
1591
+ return (
1592
+ <>
1593
+ <TaskSuggestionMenus
1594
+ slashState={suggestionMenus.slashState}
1595
+ filteredSlashCommands={suggestionMenus.filteredSlashCommands}
1596
+ slashHighlightIndex={suggestionMenus.slashHighlightIndex}
1597
+ setSlashHighlightIndex={suggestionMenus.setSlashHighlightIndex}
1598
+ slashListRef={suggestionMenus.slashListRef}
1599
+ mentionState={suggestionMenus.mentionState}
1600
+ filteredMentionOptions={suggestionMenus.filteredMentionOptions}
1601
+ mentionHighlightIndex={suggestionMenus.mentionHighlightIndex}
1602
+ setMentionHighlightIndex={suggestionMenus.setMentionHighlightIndex}
1603
+ mentionListRef={suggestionMenus.mentionListRef}
1604
+ workspaceTasksLoading={workspaceTasksLoading}
1605
+ showCustomDatePicker={suggestionMenus.showCustomDatePicker}
1606
+ setShowCustomDatePicker={suggestionMenus.setShowCustomDatePicker}
1607
+ customDate={suggestionMenus.customDate}
1608
+ setCustomDate={suggestionMenus.setCustomDate}
1609
+ includeTime={suggestionMenus.includeTime}
1610
+ setIncludeTime={suggestionMenus.setIncludeTime}
1611
+ selectedHour={suggestionMenus.selectedHour}
1612
+ setSelectedHour={suggestionMenus.setSelectedHour}
1613
+ selectedMinute={suggestionMenus.selectedMinute}
1614
+ setSelectedMinute={suggestionMenus.setSelectedMinute}
1615
+ selectedPeriod={suggestionMenus.selectedPeriod}
1616
+ setSelectedPeriod={suggestionMenus.setSelectedPeriod}
1617
+ executeSlashCommand={executeSlashCommand}
1618
+ insertMentionOption={insertMentionOption}
1619
+ handleCustomDateSelect={handleCustomDateSelect}
1620
+ />
1621
+
1622
+ <Dialog open={isOpen} onOpenChange={handleDialogOpenChange} modal={true}>
1623
+ <DialogContent
1624
+ showCloseButton={false}
1625
+ className="data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:slide-out-to-bottom-2 data-[state=open]:slide-in-from-bottom-2 inset-0! top-0! left-0! flex h-screen max-h-screen w-screen max-w-none! translate-x-0! translate-y-0! gap-0 rounded-none! border-0 p-0"
1626
+ onContextMenu={(e) => {
1627
+ if (shouldPreserveNativeContextMenu(e.target)) {
1628
+ return;
1629
+ }
1630
+
1631
+ e.preventDefault();
1632
+ e.stopPropagation();
1633
+ }}
1634
+ onPointerDownOutside={(e) => {
1635
+ if (
1636
+ suggestionMenus.showCustomDatePicker ||
1637
+ suggestionMenus.slashState.open ||
1638
+ suggestionMenus.mentionState.open
1639
+ )
1640
+ e.preventDefault();
1641
+ }}
1642
+ onInteractOutside={(e) => {
1643
+ if (
1644
+ suggestionMenus.showCustomDatePicker ||
1645
+ suggestionMenus.slashState.open ||
1646
+ suggestionMenus.mentionState.open
1647
+ )
1648
+ e.preventDefault();
1649
+ }}
1650
+ >
1651
+ <div className="flex min-w-0 flex-1 flex-col bg-background transition-all duration-300">
1652
+ {disabled && (
1653
+ <DialogTitle className="sr-only">Task Details</DialogTitle>
1654
+ )}
1655
+ {!disabled && (
1656
+ <TaskDialogHeader
1657
+ isCreateMode={isCreateMode}
1658
+ collaborationMode={collaborationMode}
1659
+ realtimeEnabled={realtimeEnabled}
1660
+ isOpen={isOpen}
1661
+ synced={synced}
1662
+ connected={connected}
1663
+ taskId={task?.id}
1664
+ parentTaskId={parentTaskId}
1665
+ parentTaskName={parentTaskName}
1666
+ pendingRelationship={pendingRelationship}
1667
+ saveAsDraft={saveAsDraft}
1668
+ setSaveAsDraft={setSaveAsDraft}
1669
+ draftId={draftId}
1670
+ isTitleVisible={isTitleVisible}
1671
+ taskName={formState.name}
1672
+ ticketPrefix={boardConfig?.ticket_prefix}
1673
+ displayNumber={task?.display_number}
1674
+ user={
1675
+ user
1676
+ ? {
1677
+ id: user.id || '',
1678
+ display_name: user.display_name ?? null,
1679
+ avatar_url: user.avatar_url ?? null,
1680
+ email: user.email ?? null,
1681
+ }
1682
+ : null
1683
+ }
1684
+ createMultiple={createMultiple}
1685
+ hasDraft={formState.hasDraft}
1686
+ wsId={effectiveTaskWsId}
1687
+ boardId={boardId}
1688
+ pathname={pathname}
1689
+ canSave={canSave && !isDescriptionOverLimit}
1690
+ isLoading={isLoading}
1691
+ setCreateMultiple={setCreateMultiple}
1692
+ handleClose={handleAttemptClose}
1693
+ setShowDeleteConfirm={setShowDeleteConfirm}
1694
+ clearDraftState={formState.clearDraftState}
1695
+ handleSave={handleSave}
1696
+ onNavigateBack={
1697
+ isCreateMode && (pendingRelationship || parentTaskId)
1698
+ ? handleNavigateBack
1699
+ : undefined
1700
+ }
1701
+ isPersonalWorkspace={isPersonalWorkspace}
1702
+ onOpenShareDialog={
1703
+ !isCreateMode && task?.id
1704
+ ? () => setShowShareDialog(true)
1705
+ : undefined
1706
+ }
1707
+ disabled={disabled}
1708
+ onScrollToUserCursor={
1709
+ collaborationMode ? scrollToUserCursor : undefined
1710
+ }
1711
+ />
1712
+ )}
1713
+
1714
+ <div
1715
+ ref={setScrollContainer}
1716
+ className="relative flex min-h-0 flex-1 flex-col overflow-y-auto"
1717
+ >
1718
+ <div className="flex flex-col">
1719
+ <TaskNameInput
1720
+ name={formState.name}
1721
+ isCreateMode={isCreateMode}
1722
+ titleInputRef={titleInputRef}
1723
+ editorRef={editorRef}
1724
+ lastCursorPositionRef={lastCursorPositionRef}
1725
+ targetEditorCursorRef={targetEditorCursorRef}
1726
+ setName={formState.setName}
1727
+ updateName={updateName}
1728
+ flushNameUpdate={flushNameUpdate}
1729
+ disabled={disabled}
1730
+ />
1731
+
1732
+ {!disabled && (
1733
+ <TaskPropertiesSection
1734
+ wsId={effectiveTaskWsId}
1735
+ boardId={boardId}
1736
+ taskId={task?.id}
1737
+ priority={formState.priority}
1738
+ startDate={formState.startDate}
1739
+ endDate={formState.endDate}
1740
+ estimationPoints={formState.estimationPoints}
1741
+ selectedLabels={formState.selectedLabels}
1742
+ selectedProjects={formState.selectedProjects}
1743
+ selectedListId={formState.selectedListId}
1744
+ selectedAssignees={formState.selectedAssignees}
1745
+ isLoading={isLoading}
1746
+ isPersonalWorkspace={isPersonalWorkspace}
1747
+ totalDuration={formState.totalDuration}
1748
+ isSplittable={formState.isSplittable}
1749
+ minSplitDurationMinutes={formState.minSplitDurationMinutes}
1750
+ maxSplitDurationMinutes={formState.maxSplitDurationMinutes}
1751
+ calendarHours={formState.calendarHours}
1752
+ autoSchedule={formState.autoSchedule}
1753
+ availableLists={availableLists}
1754
+ availableLabels={availableLabels}
1755
+ taskProjects={taskProjects}
1756
+ workspaceMembers={workspaceMembers}
1757
+ boardConfig={boardConfig}
1758
+ onPriorityChange={updatePriority}
1759
+ onStartDateChange={updateStartDate}
1760
+ onEndDateChange={updateEndDate}
1761
+ onEstimationChange={updateEstimation}
1762
+ onLabelToggle={toggleLabel}
1763
+ onProjectToggle={toggleProject}
1764
+ onListChange={updateList}
1765
+ onAssigneeToggle={toggleAssignee}
1766
+ onQuickDueDate={handleQuickDueDate}
1767
+ onShowNewLabelDialog={() => {
1768
+ setNewLabelColor((previousColor) =>
1769
+ getRandomNewLabelColor(previousColor)
1770
+ );
1771
+ setShowNewLabelDialog(true);
1772
+ }}
1773
+ onShowNewProjectDialog={() => setShowNewProjectDialog(true)}
1774
+ onShowEstimationConfigDialog={() =>
1775
+ setShowEstimationConfigDialog(true)
1776
+ }
1777
+ onTotalDurationChange={formState.setTotalDuration}
1778
+ onIsSplittableChange={formState.setIsSplittable}
1779
+ onMinSplitDurationChange={
1780
+ formState.setMinSplitDurationMinutes
1781
+ }
1782
+ onMaxSplitDurationChange={
1783
+ formState.setMaxSplitDurationMinutes
1784
+ }
1785
+ onCalendarHoursChange={formState.setCalendarHours}
1786
+ onAutoScheduleChange={formState.setAutoSchedule}
1787
+ isCreateMode={isCreateMode}
1788
+ savedSchedulingSettings={
1789
+ personalScheduleData?.task
1790
+ ? {
1791
+ totalDuration:
1792
+ personalScheduleData.task.total_duration ?? null,
1793
+ isSplittable:
1794
+ !!personalScheduleData.task.is_splittable,
1795
+ minSplitDurationMinutes:
1796
+ personalScheduleData.task
1797
+ .min_split_duration_minutes ?? null,
1798
+ maxSplitDurationMinutes:
1799
+ personalScheduleData.task
1800
+ .max_split_duration_minutes ?? null,
1801
+ calendarHours:
1802
+ personalScheduleData.task.calendar_hours ?? null,
1803
+ autoSchedule:
1804
+ !!personalScheduleData.task.auto_schedule,
1805
+ }
1806
+ : undefined
1807
+ }
1808
+ onSaveSchedulingSettings={saveSchedulingSettings}
1809
+ schedulingSaving={schedulingSaving}
1810
+ scheduledEvents={localCalendarEvents}
1811
+ disabled={disabled}
1812
+ isDraftMode={!!draftId || (isCreateMode && saveAsDraft)}
1813
+ />
1814
+ )}
1815
+
1816
+ {!disabled && !isCreateMode && (
1817
+ <PersonalOverridesSection
1818
+ taskId={task?.id}
1819
+ isCreateMode={isCreateMode}
1820
+ boardConfig={boardConfig}
1821
+ onUpdate={onUpdate}
1822
+ />
1823
+ )}
1824
+
1825
+ {!disabled && !draftId && !(isCreateMode && saveAsDraft) && (
1826
+ <TaskRelationshipsProperties
1827
+ wsId={effectiveTaskWsId}
1828
+ taskId={task?.id}
1829
+ boardId={boardId}
1830
+ listId={task?.list_id}
1831
+ isCreateMode={isCreateMode}
1832
+ initialActiveTab={
1833
+ seededPendingRelationships.initialActiveTab
1834
+ }
1835
+ initialDependencySubTab={
1836
+ seededPendingRelationships.initialDependencySubTab
1837
+ }
1838
+ parentTask={parentTask}
1839
+ childTasks={childTasks}
1840
+ blockingTasks={blockingTasks}
1841
+ blockedByTasks={blockedByTasks}
1842
+ relatedTasks={relatedTasks}
1843
+ isLoading={dependenciesLoading}
1844
+ onSetParent={setParentTask}
1845
+ onRemoveParent={() => setParentTask(null)}
1846
+ onAddBlockingTask={addBlockingTask}
1847
+ onRemoveBlockingTask={removeBlockingTask}
1848
+ onAddBlockedByTask={addBlockedByTask}
1849
+ onRemoveBlockedByTask={removeBlockedByTask}
1850
+ onAddRelatedTask={addRelatedTask}
1851
+ onRemoveRelatedTask={removeRelatedTask}
1852
+ onNavigateToTask={async (taskId) => {
1853
+ if (onNavigateToTask) await onNavigateToTask(taskId);
1854
+ }}
1855
+ onAddSubtask={isCreateMode ? undefined : onAddSubtask}
1856
+ onAddParentTask={isCreateMode ? undefined : onAddParentTask}
1857
+ onAddBlockingTaskDialog={
1858
+ isCreateMode ? undefined : onAddBlockingTask
1859
+ }
1860
+ onAddBlockedByTaskDialog={
1861
+ isCreateMode ? undefined : onAddBlockedByTask
1862
+ }
1863
+ onAddRelatedTaskDialog={
1864
+ isCreateMode ? undefined : onAddRelatedTask
1865
+ }
1866
+ onAddExistingAsSubtask={addChildTask}
1867
+ isSaving={!!savingRelationship}
1868
+ savingTaskId={savingRelationship}
1869
+ disabled={disabled}
1870
+ />
1871
+ )}
1872
+
1873
+ <TaskDescriptionEditor
1874
+ description={formState.description}
1875
+ setDescription={formState.setDescription}
1876
+ isOpen={isOpen}
1877
+ isCreateMode={isCreateMode}
1878
+ collaborationMode={collaborationMode}
1879
+ realtimeEnabled={realtimeEnabled}
1880
+ isYjsSyncing={isYjsSyncing}
1881
+ wsId={effectiveTaskWsId}
1882
+ boardId={boardId}
1883
+ taskId={task?.id}
1884
+ availableLists={availableLists}
1885
+ queryClient={queryClient}
1886
+ editorRef={editorRef}
1887
+ richTextEditorRef={richTextEditorRef}
1888
+ titleInputRef={titleInputRef}
1889
+ lastCursorPositionRef={lastCursorPositionRef}
1890
+ targetEditorCursorRef={targetEditorCursorRef}
1891
+ flushEditorPendingRef={flushEditorPendingRef}
1892
+ yjsDoc={doc}
1893
+ yjsProvider={provider ?? undefined}
1894
+ collaborationUser={
1895
+ user
1896
+ ? {
1897
+ id: user.id || '',
1898
+ name: userDisplayName,
1899
+ color: userColor || '',
1900
+ }
1901
+ : null
1902
+ }
1903
+ onImageUpload={imageUploadHandler}
1904
+ onEditorReady={handleEditorReady}
1905
+ onConvertToTask={handleConvertToTask}
1906
+ onDescriptionStorageLengthChange={
1907
+ handleDescriptionStorageLengthChange
1908
+ }
1909
+ descriptionStorageLength={descriptionStorageLength}
1910
+ descriptionPercentLeft={descriptionPercentLeft}
1911
+ descriptionLimit={MAX_TASK_DESCRIPTION_LENGTH}
1912
+ isDescriptionOverLimit={isDescriptionOverLimit}
1913
+ disabled={disabled}
1914
+ mentionTranslations={{
1915
+ delete_task: t('delete_task'),
1916
+ delete_task_confirmation: (name: string) =>
1917
+ t('delete_task_confirmation', { name }),
1918
+ cancel: t('cancel'),
1919
+ deleting: t('deleting'),
1920
+ set_custom_due_date: t('set_custom_due_date'),
1921
+ custom_due_date_description: t(
1922
+ 'custom_due_date_description'
1923
+ ),
1924
+ remove_due_date: t('remove_due_date'),
1925
+ create_new_label: t('create_new_label'),
1926
+ create_new_label_description: t(
1927
+ 'create_new_label_description'
1928
+ ),
1929
+ label_name: t('label_name'),
1930
+ color: t('color'),
1931
+ preview: t('preview'),
1932
+ creating: t('creating'),
1933
+ create_label: t('create_label'),
1934
+ create_new_project: t('create_new_project'),
1935
+ create_new_project_description: t(
1936
+ 'create_new_project_description'
1937
+ ),
1938
+ project_name: t('project_name'),
1939
+ create_project: t('create_project'),
1940
+ }}
1941
+ />
1942
+
1943
+ {!isCreateMode && localCalendarEvents && (
1944
+ <TaskInstancesSection
1945
+ wsId={effectiveTaskWsId}
1946
+ taskId={task?.id}
1947
+ scheduledEvents={localCalendarEvents}
1948
+ onLockToggle={handleLockToggle}
1949
+ isLocking={lockingEventId}
1950
+ />
1951
+ )}
1952
+
1953
+ {!disabled && !isCreateMode && task && (
1954
+ <TaskActivitySection
1955
+ wsId={effectiveTaskWsId}
1956
+ taskId={task.id}
1957
+ boardId={boardId}
1958
+ currentTask={{
1959
+ id: task.id,
1960
+ name: formState.name || task.name || '',
1961
+ description: formState.description,
1962
+ priority: formState.priority,
1963
+ start_date: formState.startDate?.toISOString() || null,
1964
+ end_date: formState.endDate?.toISOString() || null,
1965
+ estimation_points: formState.estimationPoints ?? null,
1966
+ list_id: formState.selectedListId || task.list_id || '',
1967
+ list_name:
1968
+ availableLists?.find(
1969
+ (l) => l.id === formState.selectedListId
1970
+ )?.name || null,
1971
+ completed: !!task.completed_at,
1972
+ assignees: formState.selectedAssignees.map((a) => ({
1973
+ id: a.id,
1974
+ user_id: a.id,
1975
+ })),
1976
+ labels: formState.selectedLabels.map((l) => ({
1977
+ id: l.id,
1978
+ })),
1979
+ projects: formState.selectedProjects.map((p) => ({
1980
+ id: p.id,
1981
+ })),
1982
+ }}
1983
+ revertDisabled={true}
1984
+ />
1985
+ )}
1986
+ </div>
1987
+ </div>
1988
+ </div>
1989
+
1990
+ <MobileFloatingSaveButton
1991
+ isCreateMode={isCreateMode}
1992
+ collaborationMode={collaborationMode}
1993
+ isLoading={isLoading}
1994
+ canSave={canSave && !isDescriptionOverLimit}
1995
+ handleSave={handleSave}
1996
+ disabled={disabled}
1997
+ />
1998
+ </DialogContent>
1999
+ </Dialog>
2000
+
2001
+ <TaskDeleteDialog
2002
+ open={showDeleteConfirm}
2003
+ onOpenChange={setShowDeleteConfirm}
2004
+ taskId={task?.id}
2005
+ workspaceId={taskWsId ?? wsId}
2006
+ isLoading={isLoading}
2007
+ onSuccess={onUpdate}
2008
+ onClose={onClose}
2009
+ />
2010
+
2011
+ {isCreateMode && (
2012
+ <UnsavedChangesWarningDialog
2013
+ open={showUnsavedWarning}
2014
+ onOpenChange={setShowUnsavedWarning}
2015
+ onDiscard={handleWarningDiscard}
2016
+ onSaveAsDraft={handleWarningSaveAsDraft}
2017
+ onCreateTask={handleWarningCreateTask}
2018
+ canSave={canSave}
2019
+ />
2020
+ )}
2021
+
2022
+ <SyncWarningDialog
2023
+ open={showSyncWarning}
2024
+ onOpenChange={setShowSyncWarning}
2025
+ synced={synced}
2026
+ connected={connected}
2027
+ onForceClose={handleForceClose}
2028
+ />
2029
+
2030
+ <DescriptionOverflowWarningDialog
2031
+ open={showDescriptionCloseWarning}
2032
+ onOpenChange={setShowDescriptionCloseWarning}
2033
+ onConfirmClose={handleConfirmCloseWithUnconfirmedDescription}
2034
+ title={
2035
+ dialogT.has('description_close_failed_title')
2036
+ ? dialogT('description_close_failed_title')
2037
+ : 'Task description is still syncing'
2038
+ }
2039
+ description={
2040
+ dialogT.has('description_close_failed_description')
2041
+ ? dialogT('description_close_failed_description')
2042
+ : 'The latest description changes have not been confirmed on the server yet. You can wait and try closing again, or close now without saving those description changes.'
2043
+ }
2044
+ cancelLabel={
2045
+ dialogT.has('description_overflow_close_warning_cancel')
2046
+ ? dialogT('description_overflow_close_warning_cancel')
2047
+ : 'Go back and edit'
2048
+ }
2049
+ confirmLabel={
2050
+ dialogT.has('description_overflow_close_warning_confirm')
2051
+ ? dialogT('description_overflow_close_warning_confirm')
2052
+ : 'Close without saving description'
2053
+ }
2054
+ warningMessage={
2055
+ dialogT.has('description_close_failed_warning')
2056
+ ? dialogT('description_close_failed_warning')
2057
+ : 'Unconfirmed description changes may be lost if you close now.'
2058
+ }
2059
+ />
2060
+
2061
+ <DescriptionOverflowWarningDialog
2062
+ open={showDescriptionOverflowWarning}
2063
+ onOpenChange={setShowDescriptionOverflowWarning}
2064
+ onConfirmClose={handleConfirmCloseWithOverflow}
2065
+ title={
2066
+ dialogT.has('description_overflow_close_warning_title')
2067
+ ? dialogT('description_overflow_close_warning_title')
2068
+ : 'Description is too large to save'
2069
+ }
2070
+ description={
2071
+ dialogT.has('description_overflow_close_warning_description')
2072
+ ? dialogT('description_overflow_close_warning_description')
2073
+ : 'This description is too large to sync right now. You can go back and shorten or split it, or close now and discard the unsaved description changes.'
2074
+ }
2075
+ cancelLabel={
2076
+ dialogT.has('description_overflow_close_warning_cancel')
2077
+ ? dialogT('description_overflow_close_warning_cancel')
2078
+ : 'Go back and edit'
2079
+ }
2080
+ confirmLabel={
2081
+ dialogT.has('description_overflow_close_warning_confirm')
2082
+ ? dialogT('description_overflow_close_warning_confirm')
2083
+ : 'Close without saving description'
2084
+ }
2085
+ warningMessage={
2086
+ dialogT.has('description_overflow_close_warning_warning')
2087
+ ? dialogT('description_overflow_close_warning_warning')
2088
+ : 'Oversized content will be discarded if you close now.'
2089
+ }
2090
+ />
2091
+
2092
+ <TaskNewLabelDialog
2093
+ open={showNewLabelDialog}
2094
+ newLabelName={newLabelName}
2095
+ newLabelColor={newLabelColor}
2096
+ creatingLabel={creatingLabel}
2097
+ onOpenChange={(open) => {
2098
+ if (open) {
2099
+ setNewLabelColor((previousColor) =>
2100
+ getRandomNewLabelColor(previousColor)
2101
+ );
2102
+ }
2103
+ setShowNewLabelDialog(open);
2104
+ }}
2105
+ onNameChange={setNewLabelName}
2106
+ onColorChange={setNewLabelColor}
2107
+ onConfirm={handleCreateLabel}
2108
+ translations={{
2109
+ create_new_label: t('create_new_label'),
2110
+ create_new_label_description: t('create_new_label_description'),
2111
+ label_name: t('label_name'),
2112
+ color: t('color'),
2113
+ preview: t('preview'),
2114
+ cancel: t('cancel'),
2115
+ creating: t('creating'),
2116
+ create_label: t('create_label'),
2117
+ randomize_color: t('randomize_color'),
2118
+ }}
2119
+ />
2120
+
2121
+ <TaskNewProjectDialog
2122
+ open={showNewProjectDialog}
2123
+ newProjectName={newProjectName}
2124
+ creatingProject={creatingProject}
2125
+ onOpenChange={setShowNewProjectDialog}
2126
+ onNameChange={setNewProjectName}
2127
+ onConfirm={handleCreateProject}
2128
+ translations={{
2129
+ create_new_project: t('create_new_project'),
2130
+ create_new_project_description: t('create_new_project_description'),
2131
+ project_name: t('project_name'),
2132
+ cancel: t('cancel'),
2133
+ creating: t('creating'),
2134
+ create_project: t('create_project'),
2135
+ }}
2136
+ />
2137
+
2138
+ {boardConfig && effectiveTaskWsId && (
2139
+ <BoardEstimationConfigDialog
2140
+ open={showEstimationConfigDialog}
2141
+ wsId={effectiveTaskWsId}
2142
+ boardId={boardId}
2143
+ boardName={(boardConfig as { name?: string }).name || 'Board'}
2144
+ currentEstimationType={boardConfig.estimation_type || null}
2145
+ currentExtendedEstimation={boardConfig.extended_estimation || false}
2146
+ currentAllowZeroEstimates={boardConfig.allow_zero_estimates ?? true}
2147
+ currentCountUnestimatedIssues={
2148
+ (boardConfig as { count_unestimated_issues?: boolean })
2149
+ .count_unestimated_issues || false
2150
+ }
2151
+ onOpenChange={setShowEstimationConfigDialog}
2152
+ onSuccess={handleEstimationConfigSuccess}
2153
+ />
2154
+ )}
2155
+
2156
+ {/* Task Share Dialog */}
2157
+ {!isCreateMode && task?.id && (
2158
+ <TaskShareDialog
2159
+ open={showShareDialog}
2160
+ onOpenChange={setShowShareDialog}
2161
+ taskId={task.id}
2162
+ taskName={formState.name}
2163
+ wsId={effectiveTaskWsId}
2164
+ />
2165
+ )}
2166
+ </>
2167
+ );
2168
+ }