@tuturuuu/ui 0.0.4 → 0.2.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 (1210) hide show
  1. package/CHANGELOG.md +26 -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 +164 -0
  83. package/src/components/ui/chat/chat-agent-details-external-thread-panel.tsx +268 -0
  84. package/src/components/ui/chat/chat-agent-details-operations-panel.test.tsx +70 -0
  85. package/src/components/ui/chat/chat-agent-details-operations-panel.tsx +246 -0
  86. package/src/components/ui/chat/chat-agent-details-setup-panel.tsx +297 -0
  87. package/src/components/ui/chat/chat-agent-details-sidebar.test.tsx +136 -0
  88. package/src/components/ui/chat/chat-agent-details-sidebar.tsx +335 -0
  89. package/src/components/ui/chat/chat-agent-details-utils.test.ts +161 -0
  90. package/src/components/ui/chat/chat-agent-details-utils.tsx +280 -0
  91. package/src/components/ui/chat/chat-ai-credit-source-picker.tsx +210 -0
  92. package/src/components/ui/chat/chat-ai-details-panels.tsx +421 -0
  93. package/src/components/ui/chat/chat-ai-details-sidebar.tsx +206 -0
  94. package/src/components/ui/chat/chat-ai-models.test.ts +37 -0
  95. package/src/components/ui/chat/chat-ai-models.ts +23 -0
  96. package/src/components/ui/chat/chat-shared-content-sidebar.tsx +209 -0
  97. package/src/components/ui/chat/chat-sidebar-groups.test.ts +64 -0
  98. package/src/components/ui/chat/chat-sidebar-items.tsx +195 -0
  99. package/src/components/ui/chat/chat-sidebar-panel.test.tsx +110 -0
  100. package/src/components/ui/chat/chat-sidebar-panel.tsx +193 -0
  101. package/src/components/ui/chat/chat-sidebar.tsx +505 -0
  102. package/src/components/ui/chat/chat-utils.test.ts +280 -0
  103. package/src/components/ui/chat/chat-workspace-header.tsx +429 -0
  104. package/src/components/ui/chat/chat-workspace.tsx +575 -0
  105. package/src/components/ui/chat/conversation-type-selector.tsx +51 -0
  106. package/src/components/ui/chat/create-conversation-dialog.test.tsx +89 -0
  107. package/src/components/ui/chat/create-conversation-dialog.tsx +377 -0
  108. package/src/components/ui/chat/directory-user-picker.tsx +160 -0
  109. package/src/components/ui/chat/friend-request-items.tsx +124 -0
  110. package/src/components/ui/chat/friend-requests-button.tsx +243 -0
  111. package/src/components/ui/chat/friend-requests-panel.tsx +116 -0
  112. package/src/components/ui/chat/hooks-ai.ts +73 -0
  113. package/src/components/ui/chat/hooks-attachments.ts +83 -0
  114. package/src/components/ui/chat/hooks-conversations.ts +205 -0
  115. package/src/components/ui/chat/hooks-directory.ts +45 -0
  116. package/src/components/ui/chat/hooks-friends.ts +74 -0
  117. package/src/components/ui/chat/hooks-messages.test.tsx +67 -0
  118. package/src/components/ui/chat/hooks-messages.ts +707 -0
  119. package/src/components/ui/chat/hooks-realtime.ts +157 -0
  120. package/src/components/ui/chat/hooks-shared-content.ts +56 -0
  121. package/src/components/ui/chat/hooks.ts +9 -0
  122. package/src/components/ui/chat/message-attachment-button.tsx +188 -0
  123. package/src/components/ui/chat/message-attachment-preview-dialog.tsx +141 -0
  124. package/src/components/ui/chat/message-bubble.tsx +372 -0
  125. package/src/components/ui/chat/message-composer.tsx +213 -0
  126. package/src/components/ui/chat/message-links.tsx +193 -0
  127. package/src/components/ui/chat/message-list.tsx +318 -0
  128. package/src/components/ui/chat/message-markdown.tsx +112 -0
  129. package/src/components/ui/chat/message-youtube.ts +48 -0
  130. package/src/components/ui/chat/query-keys.ts +48 -0
  131. package/src/components/ui/chat/utils.ts +284 -0
  132. package/src/components/ui/checkbox.tsx +24 -8
  133. package/src/components/ui/codeblock.tsx +7 -7
  134. package/src/components/ui/color-picker.tsx +9 -8
  135. package/src/components/ui/command.tsx +19 -11
  136. package/src/components/ui/context-menu.tsx +10 -10
  137. package/src/components/ui/currency-input.tsx +464 -0
  138. package/src/components/ui/custom/__tests__/facebook-mockup.test.tsx +291 -0
  139. package/src/components/ui/custom/__tests__/report-preview-pagination.test.ts +189 -0
  140. package/src/components/ui/custom/__tests__/report-preview.test.tsx +201 -0
  141. package/src/components/ui/custom/__tests__/settings-dialog-shell.test.tsx +144 -0
  142. package/src/components/ui/custom/__tests__/tuturuuu-logo.test.ts +10 -0
  143. package/src/components/ui/custom/autosize-textarea.tsx +3 -2
  144. package/src/components/ui/custom/calendar/core.tsx +11 -3
  145. package/src/components/ui/custom/calendar/day-cell.tsx +58 -44
  146. package/src/components/ui/custom/calendar/month-header.tsx +5 -7
  147. package/src/components/ui/custom/calendar/month-view.tsx +21 -9
  148. package/src/components/ui/custom/calendar/year-calendar.tsx +51 -10
  149. package/src/components/ui/custom/calendar/year-view.tsx +9 -5
  150. package/src/components/ui/custom/combobox.tsx +357 -89
  151. package/src/components/ui/custom/common-footer.tsx +89 -39
  152. package/src/components/ui/custom/compared-date-range-picker.tsx +478 -261
  153. package/src/components/ui/custom/data-pagination.tsx +446 -0
  154. package/src/components/ui/custom/date-input.tsx +4 -7
  155. package/src/components/ui/custom/education/certificates/certificate-viewer.tsx +98 -0
  156. package/src/components/ui/custom/education/certificates/download-button-pdf.tsx +82 -0
  157. package/src/components/ui/custom/education/certificates/types.ts +25 -0
  158. package/src/components/ui/custom/education/courses/course-card-view.tsx +252 -0
  159. package/src/components/ui/custom/education/courses/course-form.tsx +248 -0
  160. package/src/components/ui/custom/education/courses/course-header.tsx +38 -0
  161. package/src/components/ui/custom/education/courses/course-pagination.tsx +62 -0
  162. package/src/components/ui/custom/education/courses/course-row-actions.tsx +130 -0
  163. package/src/components/ui/custom/education/modules/content-section.tsx +73 -0
  164. package/src/components/ui/custom/education/modules/course-module-form.tsx +234 -0
  165. package/src/components/ui/custom/education/modules/course-module-row-actions.tsx +126 -0
  166. package/src/components/ui/custom/education/modules/link-button.tsx +66 -0
  167. package/src/components/ui/custom/education/modules/module-toggle.tsx +115 -0
  168. package/src/components/ui/custom/education/modules/resources/delete-resource.tsx +46 -0
  169. package/src/components/ui/custom/education/modules/resources/file-display.tsx +84 -0
  170. package/src/components/ui/custom/education/modules/resources/file-upload-form.tsx +544 -0
  171. package/src/components/ui/custom/education/modules/resources/pdf-viewer.tsx +119 -0
  172. package/src/components/ui/custom/education/modules/youtube/delete-link-button.tsx +62 -0
  173. package/src/components/ui/custom/education/modules/youtube/embed.tsx +20 -0
  174. package/src/components/ui/custom/education/modules/youtube/form.tsx +112 -0
  175. package/src/components/ui/custom/education/shell/education-content-surface.tsx +31 -0
  176. package/src/components/ui/custom/education/shell/education-kpi-strip.tsx +48 -0
  177. package/src/components/ui/custom/education/shell/education-page-header.tsx +56 -0
  178. package/src/components/ui/custom/empty-card.tsx +2 -2
  179. package/src/components/ui/custom/facebook-mockup/defaults.ts +81 -0
  180. package/src/components/ui/custom/facebook-mockup/facebook-mockup.tsx +313 -0
  181. package/src/components/ui/custom/facebook-mockup/form.tsx +629 -0
  182. package/src/components/ui/custom/facebook-mockup/image-upload-field.tsx +111 -0
  183. package/src/components/ui/custom/facebook-mockup/preview.tsx +760 -0
  184. package/src/components/ui/custom/facebook-mockup/types.ts +44 -0
  185. package/src/components/ui/custom/feature-summary.tsx +61 -7
  186. package/src/components/ui/custom/file-uploader.tsx +18 -15
  187. package/src/components/ui/custom/get-started-button.tsx +33 -0
  188. package/src/components/ui/custom/get-started-gradient-button.tsx +23 -0
  189. package/src/components/ui/custom/gradient-headline.tsx +25 -0
  190. package/src/components/ui/custom/icon-picker/icon-options.ts +24240 -0
  191. package/src/components/ui/custom/icon-picker/icon-picker.tsx +608 -0
  192. package/src/components/ui/custom/icon-picker/index.ts +45 -0
  193. package/src/components/ui/custom/icon-picker/types.ts +133 -0
  194. package/src/components/ui/custom/input-field.tsx +3 -1
  195. package/src/components/ui/custom/language-dropdown-item.tsx +55 -0
  196. package/src/components/ui/custom/language-dropdown-wrapper.tsx +34 -0
  197. package/src/components/ui/custom/language-toggle.tsx +43 -0
  198. package/src/components/ui/custom/language-wrapper.tsx +23 -0
  199. package/src/components/ui/custom/lead-generation-preview.tsx +310 -0
  200. package/src/components/ui/custom/loading-indicator.tsx +3 -0
  201. package/src/components/ui/custom/loading.tsx +8 -0
  202. package/src/components/ui/custom/logo-title.tsx +20 -0
  203. package/src/components/ui/custom/missed-entry/image-upload-section.tsx +192 -0
  204. package/src/components/ui/custom/modifiable-dialog-trigger.tsx +13 -7
  205. package/src/components/ui/custom/month-picker.tsx +8 -8
  206. package/src/components/ui/custom/nav-link.tsx +474 -0
  207. package/src/components/ui/custom/nav.tsx +86 -0
  208. package/src/components/ui/custom/navigation.tsx +192 -0
  209. package/src/components/ui/custom/notification-popover-client.tsx +758 -0
  210. package/src/components/ui/custom/production-indicator.tsx +22 -0
  211. package/src/components/ui/custom/qr/color.tsx +36 -0
  212. package/src/components/ui/custom/qr/display.tsx +82 -0
  213. package/src/components/ui/custom/qr/formats.tsx +52 -0
  214. package/src/components/ui/custom/qr/image-upload.tsx +440 -0
  215. package/src/components/ui/custom/qr/qr.tsx +170 -0
  216. package/src/components/ui/custom/qr/styles.tsx +133 -0
  217. package/src/components/ui/custom/qr/workspace-title.tsx +47 -0
  218. package/src/components/ui/custom/report-preview-pagination.ts +579 -0
  219. package/src/components/ui/custom/report-preview.tsx +745 -126
  220. package/src/components/ui/custom/search-bar.tsx +8 -12
  221. package/src/components/ui/custom/select-field.tsx +5 -3
  222. package/src/components/ui/custom/settings/appearance-settings.tsx +129 -0
  223. package/src/components/ui/custom/settings/lunar-calendar-settings.tsx +36 -0
  224. package/src/components/ui/custom/settings/sidebar-settings.tsx +135 -0
  225. package/src/components/ui/custom/settings/task-settings.tsx +236 -0
  226. package/src/components/ui/custom/settings-dialog-shell.tsx +481 -0
  227. package/src/components/ui/custom/settings-item-tab.tsx +29 -0
  228. package/src/components/ui/custom/sidebar-context.tsx +148 -0
  229. package/src/components/ui/custom/sidebar-footer-actions.tsx +337 -0
  230. package/src/components/ui/custom/staff-toolbar.tsx +16 -0
  231. package/src/components/ui/custom/structure.tsx +213 -0
  232. package/src/components/ui/custom/system-language-dropdown-item.tsx +46 -0
  233. package/src/components/ui/custom/system-language-wrapper.tsx +15 -0
  234. package/src/components/ui/custom/tables/custom-data-table.tsx +130 -0
  235. package/src/components/ui/custom/tables/data-table-column-header.tsx +9 -7
  236. package/src/components/ui/custom/tables/data-table-create-button.tsx +2 -2
  237. package/src/components/ui/custom/tables/data-table-faceted-filter.tsx +5 -5
  238. package/src/components/ui/custom/tables/data-table-pagination.tsx +69 -91
  239. package/src/components/ui/custom/tables/data-table-refresh-button.tsx +2 -2
  240. package/src/components/ui/custom/tables/data-table-toolbar.tsx +42 -19
  241. package/src/components/ui/custom/tables/data-table-view-options.tsx +27 -15
  242. package/src/components/ui/custom/tables/data-table.tsx +150 -56
  243. package/src/components/ui/custom/tailwind-indicator.tsx +14 -0
  244. package/src/components/ui/custom/theme-dropdown-items.tsx +90 -0
  245. package/src/components/ui/custom/theme-toggle.tsx +35 -0
  246. package/src/components/ui/custom/tuturuuu-logo.tsx +16 -0
  247. package/src/components/ui/custom/uploaded-files-card.tsx +1 -0
  248. package/src/components/ui/custom/user-filters.tsx +487 -0
  249. package/src/components/ui/custom/version-badge.test.tsx +102 -0
  250. package/src/components/ui/custom/version-badge.tsx +169 -0
  251. package/src/components/ui/custom/view-toggle.tsx +63 -0
  252. package/src/components/ui/custom/workspace-access/adapters.test.ts +31 -0
  253. package/src/components/ui/custom/workspace-access/adapters.ts +169 -0
  254. package/src/components/ui/custom/workspace-access/index.ts +32 -0
  255. package/src/components/ui/custom/workspace-access/member-filter-utils.test.ts +175 -0
  256. package/src/components/ui/custom/workspace-access/member-filter-utils.ts +190 -0
  257. package/src/components/ui/custom/workspace-access/types.ts +150 -0
  258. package/src/components/ui/custom/workspace-access/workspace-access-client-pages.tsx +26 -0
  259. package/src/components/ui/custom/workspace-access/workspace-access-default-role-card.tsx +92 -0
  260. package/src/components/ui/custom/workspace-access/workspace-access-invite-dialog.tsx +102 -0
  261. package/src/components/ui/custom/workspace-access/workspace-access-labels.ts +53 -0
  262. package/src/components/ui/custom/workspace-access/workspace-access-member-row.tsx +249 -0
  263. package/src/components/ui/custom/workspace-access/workspace-access-members.tsx +84 -0
  264. package/src/components/ui/custom/workspace-access/workspace-access-page-header.tsx +72 -0
  265. package/src/components/ui/custom/workspace-access/workspace-access-page.tsx +388 -0
  266. package/src/components/ui/custom/workspace-access/workspace-access-people-filters.tsx +200 -0
  267. package/src/components/ui/custom/workspace-access/workspace-access-permission-checklist.tsx +87 -0
  268. package/src/components/ui/custom/workspace-access/workspace-access-permission-preview.tsx +35 -0
  269. package/src/components/ui/custom/workspace-access/workspace-access-role-editor-dialog.tsx +180 -0
  270. package/src/components/ui/custom/workspace-access/workspace-access-role-editor-labels.ts +33 -0
  271. package/src/components/ui/custom/workspace-access/workspace-access-roles.tsx +171 -0
  272. package/src/components/ui/custom/workspace-access/workspace-access-tabs-toolbar.tsx +71 -0
  273. package/src/components/ui/custom/workspace-select.tsx +849 -0
  274. package/src/components/ui/custom/workspace-wrapper.tsx +142 -0
  275. package/src/components/ui/date-time-picker.tsx +706 -0
  276. package/src/components/ui/dialog.tsx +23 -14
  277. package/src/components/ui/diff-viewer.tsx +921 -0
  278. package/src/components/ui/drawer.tsx +5 -5
  279. package/src/components/ui/dropdown-menu.tsx +18 -10
  280. package/src/components/ui/finance/analytics/analytics-date-controls.tsx +173 -0
  281. package/src/components/ui/finance/analytics/analytics-page.test.tsx +182 -0
  282. package/src/components/ui/finance/analytics/analytics-page.tsx +296 -0
  283. package/src/components/ui/finance/analytics/balance-trend-chart.tsx +288 -0
  284. package/src/components/ui/finance/analytics/category-spending-chart.test.tsx +75 -0
  285. package/src/components/ui/finance/analytics/category-spending-chart.tsx +213 -0
  286. package/src/components/ui/finance/analytics/income-expense-chart-utils.ts +52 -0
  287. package/src/components/ui/finance/analytics/income-expense-chart.tsx +242 -0
  288. package/src/components/ui/finance/analytics/income-expense-view-mode-control.tsx +37 -0
  289. package/src/components/ui/finance/analytics/spending-trends-chart.tsx +156 -0
  290. package/src/components/ui/finance/budgets/budget-alerts.test.tsx +133 -0
  291. package/src/components/ui/finance/budgets/budget-alerts.tsx +111 -0
  292. package/src/components/ui/finance/budgets/budget-card.test.tsx +72 -0
  293. package/src/components/ui/finance/budgets/budget-card.tsx +233 -0
  294. package/src/components/ui/finance/budgets/budgets-page.test.tsx +56 -0
  295. package/src/components/ui/finance/budgets/budgets-page.tsx +179 -0
  296. package/src/components/ui/finance/budgets/form-fields.tsx +304 -0
  297. package/src/components/ui/finance/budgets/form-schema.ts +39 -0
  298. package/src/components/ui/finance/budgets/form.tsx +141 -0
  299. package/src/components/ui/finance/categories-tags-tabs.tsx +80 -0
  300. package/src/components/ui/finance/debts/debt-loan-card.test.tsx +75 -0
  301. package/src/components/ui/finance/debts/debt-loan-card.tsx +212 -0
  302. package/src/components/ui/finance/debts/debt-loan-detail-cards.test.tsx +89 -0
  303. package/src/components/ui/finance/debts/debt-loan-detail-cards.tsx +207 -0
  304. package/src/components/ui/finance/debts/debt-loan-detail-page.tsx +301 -0
  305. package/src/components/ui/finance/debts/debt-loan-form-schema.ts +30 -0
  306. package/src/components/ui/finance/debts/debt-loan-form.tsx +394 -0
  307. package/src/components/ui/finance/debts/debt-loan-list.tsx +58 -0
  308. package/src/components/ui/finance/debts/debt-loan-summary.tsx +94 -0
  309. package/src/components/ui/finance/debts/debts-page.test.tsx +97 -0
  310. package/src/components/ui/finance/debts/debts-page.tsx +230 -0
  311. package/src/components/ui/finance/debts/index.ts +6 -0
  312. package/src/components/ui/finance/debts/query-invalidation.test.ts +62 -0
  313. package/src/components/ui/finance/debts/query-invalidation.ts +44 -0
  314. package/src/components/ui/finance/finance-layout.tsx +98 -0
  315. package/src/components/ui/finance/finance-overview-metrics.tsx +120 -0
  316. package/src/components/ui/finance/finance-page.tsx +169 -0
  317. package/src/components/ui/finance/finance-route-context.tsx +50 -0
  318. package/src/components/ui/finance/invoices/attendance-calendar.tsx +247 -0
  319. package/src/components/ui/finance/invoices/charts/invoice-totals-chart.test.tsx +67 -0
  320. package/src/components/ui/finance/invoices/charts/invoice-totals-chart.tsx +868 -0
  321. package/src/components/ui/finance/invoices/columns.test.tsx +66 -0
  322. package/src/components/ui/finance/invoices/columns.tsx +365 -0
  323. package/src/components/ui/finance/invoices/components/invoice-blocked-state.tsx +30 -0
  324. package/src/components/ui/finance/invoices/components/invoice-checkout-summary.tsx +120 -0
  325. package/src/components/ui/finance/invoices/components/invoice-content-editor.tsx +71 -0
  326. package/src/components/ui/finance/invoices/components/invoice-customer-select-card.tsx +342 -0
  327. package/src/components/ui/finance/invoices/components/invoice-payment-settings.tsx +216 -0
  328. package/src/components/ui/finance/invoices/components/invoice-user-history-accordion.tsx +219 -0
  329. package/src/components/ui/finance/invoices/components/subscription-attendance-summary.tsx +272 -0
  330. package/src/components/ui/finance/invoices/components/subscription-group-selector.tsx +346 -0
  331. package/src/components/ui/finance/invoices/create-promotion-dialog.tsx +67 -0
  332. package/src/components/ui/finance/invoices/export-dialog-content.tsx +492 -0
  333. package/src/components/ui/finance/invoices/hooks/use-best-promotion-selection.ts +119 -0
  334. package/src/components/ui/finance/invoices/hooks/use-invoice-analytics.ts +79 -0
  335. package/src/components/ui/finance/invoices/hooks/use-invoice-rounding.ts +33 -0
  336. package/src/components/ui/finance/invoices/hooks/use-invoice-subtotal.ts +13 -0
  337. package/src/components/ui/finance/invoices/hooks/use-subscription-auto-selection.ts +412 -0
  338. package/src/components/ui/finance/invoices/hooks/use-subscription-invoice-content.ts +191 -0
  339. package/src/components/ui/finance/invoices/hooks.ts +878 -0
  340. package/src/components/ui/finance/invoices/internal-api.ts +466 -0
  341. package/src/components/ui/finance/invoices/invoice-analytics.tsx +167 -0
  342. package/src/components/ui/finance/invoices/invoice-page.tsx +468 -0
  343. package/src/components/ui/finance/invoices/invoice-visibility-format.test.ts +90 -0
  344. package/src/components/ui/finance/invoices/invoice-visibility-format.ts +67 -0
  345. package/src/components/ui/finance/invoices/invoiceId/compact-invoice-template.tsx +172 -0
  346. package/src/components/ui/finance/invoices/invoiceId/full-invoice-template.tsx +349 -0
  347. package/src/components/ui/finance/invoices/invoiceId/invoice-card.tsx +360 -0
  348. package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.test.tsx +227 -0
  349. package/src/components/ui/finance/invoices/invoiceId/invoice-details-page.tsx +409 -0
  350. package/src/components/ui/finance/invoices/invoiceId/invoice-edit-form.tsx +161 -0
  351. package/src/components/ui/finance/invoices/invoiceId/product-card.tsx +90 -0
  352. package/src/components/ui/finance/invoices/invoiceId/promotion-card.tsx +76 -0
  353. package/src/components/ui/finance/invoices/invoices-table.tsx +284 -0
  354. package/src/components/ui/finance/invoices/new-invoice-page.tsx +215 -0
  355. package/src/components/ui/finance/invoices/pending-columns.tsx +308 -0
  356. package/src/components/ui/finance/invoices/pending-invoices-tab.tsx +43 -0
  357. package/src/components/ui/finance/invoices/pending-invoices-table.tsx +258 -0
  358. package/src/components/ui/finance/invoices/product-selection.test.tsx +78 -0
  359. package/src/components/ui/finance/invoices/product-selection.tsx +345 -0
  360. package/src/components/ui/finance/invoices/promotion-form.tsx +352 -0
  361. package/src/components/ui/finance/invoices/query-invalidation.ts +65 -0
  362. package/src/components/ui/finance/invoices/row-actions.tsx +148 -0
  363. package/src/components/ui/finance/invoices/standard-invoice.tsx +595 -0
  364. package/src/components/ui/finance/invoices/subscription-invoice.tsx +1009 -0
  365. package/src/components/ui/finance/invoices/types.ts +93 -0
  366. package/src/components/ui/finance/invoices/user-filter-wrapper.tsx +59 -0
  367. package/src/components/ui/finance/invoices/utils.test.ts +165 -0
  368. package/src/components/ui/finance/invoices/utils.ts +484 -0
  369. package/src/components/ui/finance/invoices/wallet-filter-wrapper.tsx +47 -0
  370. package/src/components/ui/finance/recurring/form-fields.tsx +142 -0
  371. package/src/components/ui/finance/recurring/form-schedule-fields.tsx +112 -0
  372. package/src/components/ui/finance/recurring/form-schema.ts +32 -0
  373. package/src/components/ui/finance/recurring/form.tsx +130 -0
  374. package/src/components/ui/finance/recurring/recurring-sections.tsx +141 -0
  375. package/src/components/ui/finance/recurring/recurring-transaction-card.tsx +152 -0
  376. package/src/components/ui/finance/recurring/recurring-transactions-page.test.tsx +87 -0
  377. package/src/components/ui/finance/recurring/recurring-transactions-page.tsx +154 -0
  378. package/src/components/ui/finance/recurring/upcoming-transaction-card.tsx +84 -0
  379. package/src/components/ui/finance/shared/charts/category-breakdown-chart-body.tsx +118 -0
  380. package/src/components/ui/finance/shared/charts/category-breakdown-chart-controls.tsx +146 -0
  381. package/src/components/ui/finance/shared/charts/category-breakdown-chart-legend.tsx +49 -0
  382. package/src/components/ui/finance/shared/charts/category-breakdown-chart-tooltip.tsx +109 -0
  383. package/src/components/ui/finance/shared/charts/category-breakdown-chart-types.ts +24 -0
  384. package/src/components/ui/finance/shared/charts/category-breakdown-chart-utils.ts +207 -0
  385. package/src/components/ui/finance/shared/charts/category-breakdown-chart.tsx +263 -0
  386. package/src/components/ui/finance/shared/charts/daily-total-chart-client.tsx +384 -0
  387. package/src/components/ui/finance/shared/charts/daily-total-chart.tsx +299 -0
  388. package/src/components/ui/finance/shared/charts/monthly-total-chart-client.tsx +391 -0
  389. package/src/components/ui/finance/shared/charts/monthly-total-chart.tsx +296 -0
  390. package/src/components/ui/finance/shared/charts/use-finance-confidential-visibility.ts +5 -0
  391. package/src/components/ui/finance/shared/confidential-toggle.tsx +78 -0
  392. package/src/components/ui/finance/shared/create-dialog-feature-summary.tsx +23 -0
  393. package/src/components/ui/finance/shared/dashboard-header.tsx +19 -0
  394. package/src/components/ui/finance/shared/date-picker.tsx +74 -0
  395. package/src/components/ui/finance/shared/date-range-filter-wrapper.tsx +86 -0
  396. package/src/components/ui/finance/shared/date-range-picker.tsx +42 -0
  397. package/src/components/ui/finance/shared/empty-state.tsx +41 -0
  398. package/src/components/ui/finance/shared/filter.tsx +267 -0
  399. package/src/components/ui/finance/shared/finance-display-amount.tsx +25 -0
  400. package/src/components/ui/finance/shared/loaders/statistics.tsx +18 -0
  401. package/src/components/ui/finance/shared/loaders/table-skeleton.tsx +5 -0
  402. package/src/components/ui/finance/shared/metrics.tsx +69 -0
  403. package/src/components/ui/finance/shared/month-picker.tsx +177 -0
  404. package/src/components/ui/finance/shared/month-range-picker.tsx +50 -0
  405. package/src/components/ui/finance/shared/next-charts.tsx +77 -0
  406. package/src/components/ui/finance/shared/numbers-visibility-toggle.test.tsx +38 -0
  407. package/src/components/ui/finance/shared/numbers-visibility-toggle.tsx +43 -0
  408. package/src/components/ui/finance/shared/quick-actions.tsx +143 -0
  409. package/src/components/ui/finance/shared/use-finance-confidential-visibility.ts +68 -0
  410. package/src/components/ui/finance/shared/year-picker.tsx +178 -0
  411. package/src/components/ui/finance/shared/year-range-picker.tsx +50 -0
  412. package/src/components/ui/finance/statistics/card.tsx +195 -0
  413. package/src/components/ui/finance/statistics/expense.tsx +63 -0
  414. package/src/components/ui/finance/statistics/income.tsx +63 -0
  415. package/src/components/ui/finance/statistics/invoices.tsx +77 -0
  416. package/src/components/ui/finance/statistics/monthly-expense.tsx +63 -0
  417. package/src/components/ui/finance/statistics/monthly-income.tsx +63 -0
  418. package/src/components/ui/finance/statistics/total-balance.test.tsx +79 -0
  419. package/src/components/ui/finance/statistics/total-balance.tsx +64 -0
  420. package/src/components/ui/finance/statistics/transaction-categories.tsx +59 -0
  421. package/src/components/ui/finance/statistics/transactions.tsx +90 -0
  422. package/src/components/ui/finance/statistics/wallets.tsx +55 -0
  423. package/src/components/ui/finance/tags/tag-badge.tsx +36 -0
  424. package/src/components/ui/finance/tags/tag-manager.test.tsx +128 -0
  425. package/src/components/ui/finance/tags/tag-manager.tsx +646 -0
  426. package/src/components/ui/finance/transactions/TRANSACTIONS_UI_REVAMP.md +328 -0
  427. package/src/components/ui/finance/transactions/UI_IMPROVEMENTS.md +444 -0
  428. package/src/components/ui/finance/transactions/__tests__/export-utils.test.ts +167 -0
  429. package/src/components/ui/finance/transactions/categories/amount-filter-wrapper.tsx +55 -0
  430. package/src/components/ui/finance/transactions/categories/amount-filter.tsx +135 -0
  431. package/src/components/ui/finance/transactions/categories/categories-data-table.tsx +274 -0
  432. package/src/components/ui/finance/transactions/categories/columns.test.tsx +113 -0
  433. package/src/components/ui/finance/transactions/categories/columns.tsx +253 -0
  434. package/src/components/ui/finance/transactions/categories/form.tsx +388 -0
  435. package/src/components/ui/finance/transactions/categories/hooks.test.tsx +72 -0
  436. package/src/components/ui/finance/transactions/categories/hooks.ts +95 -0
  437. package/src/components/ui/finance/transactions/categories/row-actions.tsx +132 -0
  438. package/src/components/ui/finance/transactions/categories/transactions-categories-page.tsx +96 -0
  439. package/src/components/ui/finance/transactions/categories/type-filter-wrapper.tsx +39 -0
  440. package/src/components/ui/finance/transactions/categories/type-filter.tsx +148 -0
  441. package/src/components/ui/finance/transactions/category-filter-wrapper.tsx +41 -0
  442. package/src/components/ui/finance/transactions/category-filter.tsx +252 -0
  443. package/src/components/ui/finance/transactions/columns.test.tsx +119 -0
  444. package/src/components/ui/finance/transactions/columns.tsx +313 -0
  445. package/src/components/ui/finance/transactions/confidential-field.test.tsx +32 -0
  446. package/src/components/ui/finance/transactions/confidential-field.tsx +289 -0
  447. package/src/components/ui/finance/transactions/export-dialog-content.tsx +393 -0
  448. package/src/components/ui/finance/transactions/export-utils.ts +99 -0
  449. package/src/components/ui/finance/transactions/form-basic-tab.tsx +360 -0
  450. package/src/components/ui/finance/transactions/form-content-dialog.tsx +163 -0
  451. package/src/components/ui/finance/transactions/form-more-tab.tsx +203 -0
  452. package/src/components/ui/finance/transactions/form-schema.ts +52 -0
  453. package/src/components/ui/finance/transactions/form-types.ts +39 -0
  454. package/src/components/ui/finance/transactions/form-utils.tsx +60 -0
  455. package/src/components/ui/finance/transactions/form.test.tsx +151 -0
  456. package/src/components/ui/finance/transactions/form.tsx +942 -0
  457. package/src/components/ui/finance/transactions/hooks/use-filter-reset.ts +27 -0
  458. package/src/components/ui/finance/transactions/infinite-transactions-list.tsx +1127 -0
  459. package/src/components/ui/finance/transactions/internal-api.ts +148 -0
  460. package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.test.ts +16 -0
  461. package/src/components/ui/finance/transactions/money-lover-import-dialog-utils.ts +17 -0
  462. package/src/components/ui/finance/transactions/money-lover-import-dialog.tsx +908 -0
  463. package/src/components/ui/finance/transactions/period-charts/activity-distribution-chart.tsx +315 -0
  464. package/src/components/ui/finance/transactions/period-charts/category-breakdown-dialog.tsx +820 -0
  465. package/src/components/ui/finance/transactions/period-charts/category-donut-chart.tsx +609 -0
  466. package/src/components/ui/finance/transactions/period-charts/index.ts +4 -0
  467. package/src/components/ui/finance/transactions/period-charts/period-breakdown-panel.tsx +492 -0
  468. package/src/components/ui/finance/transactions/query-invalidation.test.ts +91 -0
  469. package/src/components/ui/finance/transactions/query-invalidation.ts +116 -0
  470. package/src/components/ui/finance/transactions/row-actions.tsx +145 -0
  471. package/src/components/ui/finance/transactions/tag-filter-wrapper.tsx +40 -0
  472. package/src/components/ui/finance/transactions/tag-filter.test.tsx +49 -0
  473. package/src/components/ui/finance/transactions/tag-filter.tsx +171 -0
  474. package/src/components/ui/finance/transactions/transaction-attachments-field.tsx +787 -0
  475. package/src/components/ui/finance/transactions/transaction-card.tsx +576 -0
  476. package/src/components/ui/finance/transactions/transaction-edit-dialog.test.tsx +101 -0
  477. package/src/components/ui/finance/transactions/transaction-edit-dialog.tsx +947 -0
  478. package/src/components/ui/finance/transactions/transaction-statistics.test.tsx +58 -0
  479. package/src/components/ui/finance/transactions/transaction-statistics.tsx +280 -0
  480. package/src/components/ui/finance/transactions/transaction-type-filter-wrapper.tsx +40 -0
  481. package/src/components/ui/finance/transactions/transaction-type-filter.tsx +95 -0
  482. package/src/components/ui/finance/transactions/transactionId/bill.tsx +307 -0
  483. package/src/components/ui/finance/transactions/transactionId/objects.tsx +149 -0
  484. package/src/components/ui/finance/transactions/transactionId/row-actions.tsx +263 -0
  485. package/src/components/ui/finance/transactions/transactionId/transaction-details-client-page.tsx +334 -0
  486. package/src/components/ui/finance/transactions/transactionId/transaction-details-page.tsx +76 -0
  487. package/src/components/ui/finance/transactions/transactions-create-summary.tsx +56 -0
  488. package/src/components/ui/finance/transactions/transactions-infinite-page.tsx +213 -0
  489. package/src/components/ui/finance/transactions/transactions-page.tsx +116 -0
  490. package/src/components/ui/finance/transactions/transfer-fields.tsx +194 -0
  491. package/src/components/ui/finance/transactions/user-filter-wrapper.tsx +42 -0
  492. package/src/components/ui/finance/transactions/user-filter.test.tsx +66 -0
  493. package/src/components/ui/finance/transactions/user-filter.tsx +282 -0
  494. package/src/components/ui/finance/transactions/view-mode-toggle.tsx +124 -0
  495. package/src/components/ui/finance/transactions/wallet-filter-wrapper.tsx +41 -0
  496. package/src/components/ui/finance/transactions/wallet-filter.test.tsx +52 -0
  497. package/src/components/ui/finance/transactions/wallet-filter.tsx +204 -0
  498. package/src/components/ui/finance/wallets/columns.tsx +324 -0
  499. package/src/components/ui/finance/wallets/form.test.tsx +78 -0
  500. package/src/components/ui/finance/wallets/form.tsx +491 -0
  501. package/src/components/ui/finance/wallets/query-invalidation.ts +58 -0
  502. package/src/components/ui/finance/wallets/row-actions.tsx +166 -0
  503. package/src/components/ui/finance/wallets/wallet-form-schema.ts +63 -0
  504. package/src/components/ui/finance/wallets/wallet-icon-display.tsx +71 -0
  505. package/src/components/ui/finance/wallets/wallet-icon-image-picker.tsx +369 -0
  506. package/src/components/ui/finance/wallets/wallet-images.ts +180 -0
  507. package/src/components/ui/finance/wallets/walletId/credit-wallet-summary.tsx +265 -0
  508. package/src/components/ui/finance/wallets/walletId/interest/index.ts +18 -0
  509. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-chart.tsx +296 -0
  510. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-detection-banner.tsx +77 -0
  511. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-disable-dialog.tsx +55 -0
  512. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-hero.tsx +149 -0
  513. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-pending-deposits.tsx +185 -0
  514. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-projections.tsx +259 -0
  515. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-dialog.tsx +89 -0
  516. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-rate-history.tsx +116 -0
  517. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-section.tsx +260 -0
  518. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-settings.tsx +427 -0
  519. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-setup-dialog.tsx +206 -0
  520. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-summary.tsx +244 -0
  521. package/src/components/ui/finance/wallets/walletId/interest/wallet-interest-transparency.tsx +176 -0
  522. package/src/components/ui/finance/wallets/walletId/wallet-delete-button.test.tsx +78 -0
  523. package/src/components/ui/finance/wallets/walletId/wallet-delete-button.tsx +99 -0
  524. package/src/components/ui/finance/wallets/walletId/wallet-details-actions.tsx +119 -0
  525. package/src/components/ui/finance/wallets/walletId/wallet-details-amount.tsx +36 -0
  526. package/src/components/ui/finance/wallets/walletId/wallet-details-page.test.tsx +161 -0
  527. package/src/components/ui/finance/wallets/walletId/wallet-details-page.tsx +365 -0
  528. package/src/components/ui/finance/wallets/walletId/wallet-role-access-dialog.tsx +45 -0
  529. package/src/components/ui/finance/wallets/walletId/wallet-role-access.tsx +538 -0
  530. package/src/components/ui/finance/wallets/wallets-data-table.tsx +137 -0
  531. package/src/components/ui/finance/wallets/wallets-page.test.tsx +107 -0
  532. package/src/components/ui/finance/wallets/wallets-page.tsx +136 -0
  533. package/src/components/ui/form-required-indicator.tsx +31 -0
  534. package/src/components/ui/form.tsx +36 -13
  535. package/src/components/ui/hover-card.tsx +2 -2
  536. package/src/components/ui/input-otp.tsx +4 -4
  537. package/src/components/ui/input.tsx +2 -2
  538. package/src/components/ui/kbd.tsx +28 -0
  539. package/src/components/ui/label.tsx +2 -2
  540. package/src/components/ui/legacy/calendar/__tests__/event-utils.test.ts +247 -0
  541. package/src/components/ui/legacy/calendar/agenda-view.tsx +398 -0
  542. package/src/components/ui/legacy/calendar/all-day-event-bar.tsx +1033 -0
  543. package/src/components/ui/legacy/calendar/calendar-cell.tsx +1018 -0
  544. package/src/components/ui/legacy/calendar/calendar-column.tsx +31 -0
  545. package/src/components/ui/legacy/calendar/calendar-content.tsx +670 -0
  546. package/src/components/ui/legacy/calendar/calendar-header.tsx +195 -0
  547. package/src/components/ui/legacy/calendar/calendar-matrix.tsx +328 -0
  548. package/src/components/ui/legacy/calendar/calendar-settings-dialog.tsx +340 -0
  549. package/src/components/ui/legacy/calendar/calendar-view-with-trail.tsx +48 -0
  550. package/src/components/ui/legacy/calendar/calendar-view.tsx +28 -0
  551. package/src/components/ui/legacy/calendar/color-highlights.ts +55 -0
  552. package/src/components/ui/legacy/calendar/config.ts +8 -0
  553. package/src/components/ui/legacy/calendar/create-event-button.tsx +155 -0
  554. package/src/components/ui/legacy/calendar/day-title.tsx +68 -0
  555. package/src/components/ui/legacy/calendar/dynamic-island.tsx +245 -0
  556. package/src/components/ui/legacy/calendar/event-card.tsx +1430 -0
  557. package/src/components/ui/legacy/calendar/event-form-components.tsx +593 -0
  558. package/src/components/ui/legacy/calendar/event-modal.tsx +1544 -0
  559. package/src/components/ui/legacy/calendar/event-utils.ts +149 -0
  560. package/src/components/ui/legacy/calendar/location-timeline.tsx +1482 -0
  561. package/src/components/ui/legacy/calendar/month-calendar.tsx +986 -0
  562. package/src/components/ui/legacy/calendar/month-cell.tsx +33 -0
  563. package/src/components/ui/legacy/calendar/month-grid.tsx +105 -0
  564. package/src/components/ui/legacy/calendar/settings/analytics-charts.tsx +414 -0
  565. package/src/components/ui/legacy/calendar/settings/appearance-settings.tsx +218 -0
  566. package/src/components/ui/legacy/calendar/settings/calendar-sync-dashboard.tsx +217 -0
  567. package/src/components/ui/legacy/calendar/settings/category-color-settings.tsx +475 -0
  568. package/src/components/ui/legacy/calendar/settings/color-picker.tsx +177 -0
  569. package/src/components/ui/legacy/calendar/settings/google-calendar-settings.tsx +562 -0
  570. package/src/components/ui/legacy/calendar/settings/hour-settings.tsx +292 -0
  571. package/src/components/ui/legacy/calendar/settings/notification-settings.tsx +254 -0
  572. package/src/components/ui/legacy/calendar/settings/settings-context.tsx +257 -0
  573. package/src/components/ui/legacy/calendar/settings/smart-scheduling-settings.tsx +325 -0
  574. package/src/components/ui/legacy/calendar/settings/summary-cards.tsx +93 -0
  575. package/src/components/ui/legacy/calendar/settings/sync-logs-table.tsx +392 -0
  576. package/src/components/ui/legacy/calendar/settings/task-settings.tsx +330 -0
  577. package/src/components/ui/legacy/calendar/settings/time-range-picker.tsx +666 -0
  578. package/src/components/ui/legacy/calendar/settings/timezone-settings.tsx +580 -0
  579. package/src/components/ui/legacy/calendar/settings/types.ts +119 -0
  580. package/src/components/ui/legacy/calendar/settings-button.tsx +41 -0
  581. package/src/components/ui/legacy/calendar/smart-calendar.tsx +82 -0
  582. package/src/components/ui/legacy/calendar/time-indicator-line.tsx +61 -0
  583. package/src/components/ui/legacy/calendar/time-indicator-text.tsx +61 -0
  584. package/src/components/ui/legacy/calendar/time-indicator.tsx +19 -0
  585. package/src/components/ui/legacy/calendar/time-trail.tsx +52 -0
  586. package/src/components/ui/legacy/calendar/weekday-bar.tsx +78 -0
  587. package/src/components/ui/legacy/calendar/year-calendar.tsx +345 -0
  588. package/src/components/ui/legacy/meet/client-wrapper.tsx +74 -0
  589. package/src/components/ui/legacy/meet/create-plan-dialog.tsx +404 -0
  590. package/src/components/ui/legacy/meet/date-selector.tsx +46 -0
  591. package/src/components/ui/legacy/meet/edit-plan-dialog.tsx +501 -0
  592. package/src/components/ui/legacy/meet/experimental-notice.tsx +39 -0
  593. package/src/components/ui/legacy/meet/form.tsx +94 -0
  594. package/src/components/ui/legacy/meet/multiple-choice-vote.tsx +556 -0
  595. package/src/components/ui/legacy/meet/page.tsx +331 -0
  596. package/src/components/ui/legacy/meet/pagination.tsx +87 -0
  597. package/src/components/ui/legacy/meet/planId/account-badge.tsx +21 -0
  598. package/src/components/ui/legacy/meet/planId/agenda-details.tsx +131 -0
  599. package/src/components/ui/legacy/meet/planId/all-availabilities.tsx +105 -0
  600. package/src/components/ui/legacy/meet/planId/availability-planner.tsx +51 -0
  601. package/src/components/ui/legacy/meet/planId/confirm-button.tsx +53 -0
  602. package/src/components/ui/legacy/meet/planId/copy-link-button.tsx +218 -0
  603. package/src/components/ui/legacy/meet/planId/date-planner.tsx +243 -0
  604. package/src/components/ui/legacy/meet/planId/day-planner.tsx +78 -0
  605. package/src/components/ui/legacy/meet/planId/day-planners.tsx +151 -0
  606. package/src/components/ui/legacy/meet/planId/day-time.tsx +32 -0
  607. package/src/components/ui/legacy/meet/planId/download-as-png.tsx +16 -0
  608. package/src/components/ui/legacy/meet/planId/email-button.tsx +32 -0
  609. package/src/components/ui/legacy/meet/planId/logged-in-as-button.tsx +56 -0
  610. package/src/components/ui/legacy/meet/planId/page.tsx +242 -0
  611. package/src/components/ui/legacy/meet/planId/plan-details-client.tsx +205 -0
  612. package/src/components/ui/legacy/meet/planId/plan-login.tsx +342 -0
  613. package/src/components/ui/legacy/meet/planId/plan-user-filter-accordion.tsx +227 -0
  614. package/src/components/ui/legacy/meet/planId/plan-user-filter.tsx +68 -0
  615. package/src/components/ui/legacy/meet/planId/preview-day-time.tsx +303 -0
  616. package/src/components/ui/legacy/meet/planId/selectable-day-time.tsx +247 -0
  617. package/src/components/ui/legacy/meet/planId/show-qr-button.tsx +53 -0
  618. package/src/components/ui/legacy/meet/planId/sidebar-display.tsx +68 -0
  619. package/src/components/ui/legacy/meet/planId/sticky-bottom-indicator.tsx +28 -0
  620. package/src/components/ui/legacy/meet/planId/time-column.tsx +57 -0
  621. package/src/components/ui/legacy/meet/planId/unified-availability.tsx +93 -0
  622. package/src/components/ui/legacy/meet/planId/utility-buttons.tsx +54 -0
  623. package/src/components/ui/legacy/meet/plans-grid.tsx +192 -0
  624. package/src/components/ui/legacy/meet/plans-list-view.tsx +148 -0
  625. package/src/components/ui/legacy/meet/plans-loading-skeleton.tsx +61 -0
  626. package/src/components/ui/legacy/meet/time-selector.tsx +67 -0
  627. package/src/components/ui/legacy/meet/timezone-selector.tsx +72 -0
  628. package/src/components/ui/legacy/meet/user-time.tsx +7 -0
  629. package/src/components/ui/legacy/meet/view-toggle.tsx +44 -0
  630. package/src/components/ui/legacy/polls/poll-display.tsx +388 -0
  631. package/src/components/ui/legacy/polls/where-tu-meet.tsx +80 -0
  632. package/src/components/ui/markdown.tsx +2 -2
  633. package/src/components/ui/menubar.tsx +11 -11
  634. package/src/components/ui/navbar.tsx +150 -0
  635. package/src/components/ui/navigation-menu.tsx +9 -9
  636. package/src/components/ui/pagination.tsx +4 -5
  637. package/src/components/ui/popover.tsx +2 -2
  638. package/src/components/ui/progress.tsx +15 -4
  639. package/src/components/ui/radio-group.tsx +3 -3
  640. package/src/components/ui/report-problem-dialog.tsx +980 -0
  641. package/src/components/ui/resizable.tsx +35 -13
  642. package/src/components/ui/scroll-area.tsx +3 -3
  643. package/src/components/ui/select.tsx +9 -8
  644. package/src/components/ui/separator.tsx +2 -2
  645. package/src/components/ui/sheet.tsx +13 -11
  646. package/src/components/ui/sidebar.tsx +18 -17
  647. package/src/components/ui/slider.tsx +3 -3
  648. package/src/components/ui/sonner.tsx +2 -2
  649. package/src/components/ui/sticky-bottom-bar.tsx +51 -0
  650. package/src/components/ui/switch.tsx +2 -2
  651. package/src/components/ui/table.tsx +2 -2
  652. package/src/components/ui/tabs.tsx +3 -3
  653. package/src/components/ui/text-editor/__tests__/content-migration.test.ts +757 -0
  654. package/src/components/ui/text-editor/__tests__/extensions-integration.test.ts +131 -0
  655. package/src/components/ui/text-editor/__tests__/extensions.test.ts +69 -0
  656. package/src/components/ui/text-editor/__tests__/image-extension.test.ts +799 -0
  657. package/src/components/ui/text-editor/__tests__/inline-task-conversion.test.tsx +46 -0
  658. package/src/components/ui/text-editor/__tests__/keyboard.test.ts +176 -0
  659. package/src/components/ui/text-editor/__tests__/list-converter-extension.test.ts +51 -0
  660. package/src/components/ui/text-editor/__tests__/markdown-paste-extension.test.ts +266 -0
  661. package/src/components/ui/text-editor/__tests__/media-utils.test.ts +425 -0
  662. package/src/components/ui/text-editor/__tests__/task-mention-checkbox.test.ts +251 -0
  663. package/src/components/ui/text-editor/__tests__/task-mention-chip.test.tsx +476 -0
  664. package/src/components/ui/text-editor/__tests__/text-replacements.test.ts +39 -0
  665. package/src/components/ui/text-editor/__tests__/upload-placeholder.test.ts +279 -0
  666. package/src/components/ui/text-editor/__tests__/video-extension.test.ts +711 -0
  667. package/src/components/ui/text-editor/content-migration.ts +199 -0
  668. package/src/components/ui/text-editor/draggable-node-container.tsx +164 -0
  669. package/src/components/ui/text-editor/editor.tsx +707 -0
  670. package/src/components/ui/text-editor/extensions.ts +232 -0
  671. package/src/components/ui/text-editor/image-extension.ts +907 -0
  672. package/src/components/ui/text-editor/keyboard.ts +58 -0
  673. package/src/components/ui/text-editor/list-converter-extension.ts +55 -0
  674. package/src/components/ui/text-editor/list-item-extension.ts +13 -0
  675. package/src/components/ui/text-editor/list-item-view.tsx +17 -0
  676. package/src/components/ui/text-editor/markdown-paste-extension.ts +610 -0
  677. package/src/components/ui/text-editor/media-utils.ts +198 -0
  678. package/src/components/ui/text-editor/mention-extension.tsx +604 -0
  679. package/src/components/ui/text-editor/node-drag-extension.ts +300 -0
  680. package/src/components/ui/text-editor/task-item-checkbox-extension.ts +32 -0
  681. package/src/components/ui/text-editor/task-item-checkbox-view.tsx +227 -0
  682. package/src/components/ui/text-editor/task-item-checkbox.ts +100 -0
  683. package/src/components/ui/text-editor/task-mention-chip.tsx +1397 -0
  684. package/src/components/ui/text-editor/task-mention-resolution.ts +235 -0
  685. package/src/components/ui/text-editor/task-summary-popover.tsx +360 -0
  686. package/src/components/ui/text-editor/text-replacements.ts +65 -0
  687. package/src/components/ui/text-editor/text-shortcuts-extension.ts +60 -0
  688. package/src/components/ui/text-editor/tool-bar.tsx +1294 -0
  689. package/src/components/ui/text-editor/types.ts +1 -0
  690. package/src/components/ui/text-editor/upload-errors.ts +93 -0
  691. package/src/components/ui/text-editor/upload-placeholder.ts +124 -0
  692. package/src/components/ui/text-editor/video-extension.ts +435 -0
  693. package/src/components/ui/textarea.tsx +2 -2
  694. package/src/components/ui/time-picker-input.tsx +6 -6
  695. package/src/components/ui/time-picker-utils.tsx +2 -2
  696. package/src/components/ui/time-tracker/types.ts +112 -0
  697. package/src/components/ui/toast.tsx +9 -9
  698. package/src/components/ui/toaster.tsx +10 -14
  699. package/src/components/ui/toggle-group.tsx +2 -2
  700. package/src/components/ui/toggle.tsx +2 -2
  701. package/src/components/ui/tooltip.tsx +3 -3
  702. package/src/components/ui/tu-do/boards/__tests__/quick-create-board-dialog.test.tsx +52 -0
  703. package/src/components/ui/tu-do/boards/__tests__/task-board-form.test.tsx +130 -0
  704. package/src/components/ui/tu-do/boards/__tests__/workspace-projects-client-page.test.tsx +100 -0
  705. package/src/components/ui/tu-do/boards/analytics/GanttChart.tsx +419 -0
  706. package/src/components/ui/tu-do/boards/analytics/GanttControls.tsx +123 -0
  707. package/src/components/ui/tu-do/boards/analytics/GanttHeader.tsx +48 -0
  708. package/src/components/ui/tu-do/boards/analytics/GanttTimeline.tsx +355 -0
  709. package/src/components/ui/tu-do/boards/analytics/StatusDistribution.tsx +130 -0
  710. package/src/components/ui/tu-do/boards/analytics/TaskCreationAnalytics.tsx +285 -0
  711. package/src/components/ui/tu-do/boards/analytics/TaskDetailCard.tsx +270 -0
  712. package/src/components/ui/tu-do/boards/analytics/TaskGroup.tsx +282 -0
  713. package/src/components/ui/tu-do/boards/analytics/TaskWorkflowAnalytics.tsx +280 -0
  714. package/src/components/ui/tu-do/boards/board-selector.tsx +301 -0
  715. package/src/components/ui/tu-do/boards/board-share-dialog.tsx +280 -0
  716. package/src/components/ui/tu-do/boards/boardId/__tests__/list-actions.test.tsx +199 -0
  717. package/src/components/ui/tu-do/boards/boardId/board-column-initial-load.test.ts +38 -0
  718. package/src/components/ui/tu-do/boards/boardId/board-column.tsx +755 -0
  719. package/src/components/ui/tu-do/boards/boardId/board-text-utils.test.ts +24 -0
  720. package/src/components/ui/tu-do/boards/boardId/board-text-utils.ts +11 -0
  721. package/src/components/ui/tu-do/boards/boardId/enhanced-task-list.tsx +536 -0
  722. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/__tests__/bulk-mutations-move.test.tsx +176 -0
  723. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-bar.tsx +94 -0
  724. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-actions-menu.tsx +689 -0
  725. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-custom-date-dialog.tsx +82 -0
  726. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-delete-dialog.tsx +58 -0
  727. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-clear-delete.ts +471 -0
  728. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-move.ts +657 -0
  729. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-assignees.ts +429 -0
  730. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-labels.ts +294 -0
  731. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations-projects.ts +316 -0
  732. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-relations.ts +12 -0
  733. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-mutations-updates.ts +499 -0
  734. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-i18n.ts +524 -0
  735. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-types.ts +34 -0
  736. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operation-utils.ts +60 -0
  737. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-operations.ts +312 -0
  738. package/src/components/ui/tu-do/boards/boardId/kanban/bulk/bulk-personal-external-move.ts +132 -0
  739. package/src/components/ui/tu-do/boards/boardId/kanban/data/kanban-deadline-query.ts +42 -0
  740. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-applied-sets.ts +79 -0
  741. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-bulk-resources.ts +58 -0
  742. package/src/components/ui/tu-do/boards/boardId/kanban/data/use-filtered-resources.ts +54 -0
  743. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/__tests__/column-reorder.test.ts +63 -0
  744. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/auto-scroll.ts +86 -0
  745. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/column-reorder.ts +62 -0
  746. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/drag-preview.tsx +98 -0
  747. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/kanban-sort-helpers.ts +76 -0
  748. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-cache.ts +325 -0
  749. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.test.ts +67 -0
  750. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-geometry.ts +94 -0
  751. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-order.ts +156 -0
  752. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.test.ts +37 -0
  753. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-pending.ts +42 -0
  754. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.test.ts +318 -0
  755. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-preview.ts +260 -0
  756. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/task-drag-types.ts +39 -0
  757. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.test.ts +686 -0
  758. package/src/components/ui/tu-do/boards/boardId/kanban/dnd/use-kanban-dnd.ts +1503 -0
  759. package/src/components/ui/tu-do/boards/boardId/kanban/kanban-constants.ts +43 -0
  760. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-column-width.ts +30 -0
  761. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.test.tsx +383 -0
  762. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-columns.tsx +228 -0
  763. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-panels.tsx +221 -0
  764. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.test.ts +267 -0
  765. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-deadline-tasks.ts +112 -0
  766. package/src/components/ui/tu-do/boards/boardId/kanban/rendering/kanban-skeleton.tsx +45 -0
  767. package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-keyboard-shortcuts.ts +137 -0
  768. package/src/components/ui/tu-do/boards/boardId/kanban/selection/use-multi-select.ts +119 -0
  769. package/src/components/ui/tu-do/boards/boardId/kanban.tsx +495 -0
  770. package/src/components/ui/tu-do/boards/boardId/list-actions.tsx +522 -0
  771. package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-estimation-menu.test.tsx +261 -0
  772. package/src/components/ui/tu-do/boards/boardId/menus/__tests__/task-menus.test.tsx +491 -0
  773. package/src/components/ui/tu-do/boards/boardId/menus/index.ts +11 -0
  774. package/src/components/ui/tu-do/boards/boardId/menus/task-assignees-menu.tsx +176 -0
  775. package/src/components/ui/tu-do/boards/boardId/menus/task-blocking-menu.tsx +304 -0
  776. package/src/components/ui/tu-do/boards/boardId/menus/task-due-date-menu.tsx +180 -0
  777. package/src/components/ui/tu-do/boards/boardId/menus/task-estimation-menu.tsx +103 -0
  778. package/src/components/ui/tu-do/boards/boardId/menus/task-labels-menu.tsx +134 -0
  779. package/src/components/ui/tu-do/boards/boardId/menus/task-move-menu.tsx +66 -0
  780. package/src/components/ui/tu-do/boards/boardId/menus/task-parent-menu.tsx +228 -0
  781. package/src/components/ui/tu-do/boards/boardId/menus/task-picker-popover.tsx +300 -0
  782. package/src/components/ui/tu-do/boards/boardId/menus/task-priority-menu.tsx +176 -0
  783. package/src/components/ui/tu-do/boards/boardId/menus/task-projects-menu.tsx +143 -0
  784. package/src/components/ui/tu-do/boards/boardId/menus/task-related-menu.tsx +242 -0
  785. package/src/components/ui/tu-do/boards/boardId/status-grouped-board.tsx +533 -0
  786. package/src/components/ui/tu-do/boards/boardId/status-section.tsx +274 -0
  787. package/src/components/ui/tu-do/boards/boardId/task-actions.tsx +675 -0
  788. package/src/components/ui/tu-do/boards/boardId/task-board-server-page.tsx +41 -0
  789. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardCheckbox.tsx +47 -0
  790. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardDates.tsx +106 -0
  791. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardHeader.tsx +97 -0
  792. package/src/components/ui/tu-do/boards/boardId/task-card/TaskCardMetadata.tsx +152 -0
  793. package/src/components/ui/tu-do/boards/boardId/task-card/measured-task-card.tsx +109 -0
  794. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.test.ts +61 -0
  795. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-comparator.ts +87 -0
  796. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-label-options.ts +24 -0
  797. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.test.ts +41 -0
  798. package/src/components/ui/tu-do/boards/boardId/task-card/task-card-visibility.ts +14 -0
  799. package/src/components/ui/tu-do/boards/boardId/task-card/task-card.tsx +2543 -0
  800. package/src/components/ui/tu-do/boards/boardId/task-dialogs/BoardEstimationConfigDialog.tsx +499 -0
  801. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskCustomDateDialog.tsx +109 -0
  802. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskDeleteDialog.tsx +96 -0
  803. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewLabelDialog.tsx +178 -0
  804. package/src/components/ui/tu-do/boards/boardId/task-dialogs/TaskNewProjectDialog.tsx +127 -0
  805. package/src/components/ui/tu-do/boards/boardId/task-filter.tsx +986 -0
  806. package/src/components/ui/tu-do/boards/boardId/task-form.tsx +498 -0
  807. package/src/components/ui/tu-do/boards/boardId/task-list-drag-preview.test.ts +101 -0
  808. package/src/components/ui/tu-do/boards/boardId/task-list-form.tsx +91 -0
  809. package/src/components/ui/tu-do/boards/boardId/task-list.tsx +513 -0
  810. package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.test.ts +64 -0
  811. package/src/components/ui/tu-do/boards/boardId/task-parent-badge-state.ts +31 -0
  812. package/src/components/ui/tu-do/boards/boardId/task.tsx +2 -0
  813. package/src/components/ui/tu-do/boards/boardId/timeline/task-edit-dialog.tsx +109 -0
  814. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-display.ts +94 -0
  815. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-grid.tsx +380 -0
  816. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-task-row.tsx +350 -0
  817. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-toolbar.tsx +347 -0
  818. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.test.ts +134 -0
  819. package/src/components/ui/tu-do/boards/boardId/timeline/timeline-utils.ts +468 -0
  820. package/src/components/ui/tu-do/boards/boardId/timeline-board.test.tsx +217 -0
  821. package/src/components/ui/tu-do/boards/boardId/timeline-board.tsx +793 -0
  822. package/src/components/ui/tu-do/boards/boards-list-skeleton.tsx +62 -0
  823. package/src/components/ui/tu-do/boards/columns.tsx +159 -0
  824. package/src/components/ui/tu-do/boards/copy-board-dialog.tsx +156 -0
  825. package/src/components/ui/tu-do/boards/enhanced-boards-view.tsx +347 -0
  826. package/src/components/ui/tu-do/boards/form.tsx +264 -0
  827. package/src/components/ui/tu-do/boards/quick-create-board-dialog.tsx +75 -0
  828. package/src/components/ui/tu-do/boards/row-actions.tsx +397 -0
  829. package/src/components/ui/tu-do/boards/workspace-projects-client-page.tsx +182 -0
  830. package/src/components/ui/tu-do/boards/workspace-projects-page.tsx +155 -0
  831. package/src/components/ui/tu-do/cycles/task-cycles-client.tsx +744 -0
  832. package/src/components/ui/tu-do/cycles/task-cycles-page.tsx +103 -0
  833. package/src/components/ui/tu-do/drafts/draft-card.tsx +204 -0
  834. package/src/components/ui/tu-do/drafts/draft-convert-dialog.tsx +197 -0
  835. package/src/components/ui/tu-do/drafts/drafts-page.tsx +105 -0
  836. package/src/components/ui/tu-do/drafts/task-drafts-page.tsx +90 -0
  837. package/src/components/ui/tu-do/estimates/client.tsx +292 -0
  838. package/src/components/ui/tu-do/estimates/edit-estimation-dialog.tsx +374 -0
  839. package/src/components/ui/tu-do/estimates/task-estimates-page.tsx +57 -0
  840. package/src/components/ui/tu-do/estimates/use-task-estimates.ts +319 -0
  841. package/src/components/ui/tu-do/habits/client.tsx +260 -0
  842. package/src/components/ui/tu-do/habits/habit-card.tsx +183 -0
  843. package/src/components/ui/tu-do/habits/habit-form-dialog.tsx +701 -0
  844. package/src/components/ui/tu-do/habits/habits-page.tsx +27 -0
  845. package/src/components/ui/tu-do/hooks/__tests__/useDraftPersistence.test.ts +494 -0
  846. package/src/components/ui/tu-do/hooks/__tests__/useTaskDialog.test.tsx +127 -0
  847. package/src/components/ui/tu-do/hooks/__tests__/useTaskDialogState.test.ts +217 -0
  848. package/src/components/ui/tu-do/hooks/__tests__/useTaskLabelManagement.test.tsx +524 -0
  849. package/src/components/ui/tu-do/hooks/useDraftPersistence.ts +199 -0
  850. package/src/components/ui/tu-do/hooks/useTaskCardRelationships.ts +340 -0
  851. package/src/components/ui/tu-do/hooks/useTaskDialog.ts +101 -0
  852. package/src/components/ui/tu-do/hooks/useTaskDialogState.ts +145 -0
  853. package/src/components/ui/tu-do/hooks/useTaskFormState.ts +206 -0
  854. package/src/components/ui/tu-do/hooks/useTaskKeyboardShortcuts.ts +58 -0
  855. package/src/components/ui/tu-do/hooks/useTaskLabelManagement.ts +416 -0
  856. package/src/components/ui/tu-do/hooks/useTaskProjectManagement.ts +461 -0
  857. package/src/components/ui/tu-do/initiatives/task-initiatives-client.tsx +921 -0
  858. package/src/components/ui/tu-do/initiatives/task-initiatives-page.tsx +116 -0
  859. package/src/components/ui/tu-do/labels/client.tsx +201 -0
  860. package/src/components/ui/tu-do/labels/components/delete-label-dialog.tsx +57 -0
  861. package/src/components/ui/tu-do/labels/components/label-card.tsx +86 -0
  862. package/src/components/ui/tu-do/labels/components/label-dialog.tsx +259 -0
  863. package/src/components/ui/tu-do/labels/components/label-list.tsx +83 -0
  864. package/src/components/ui/tu-do/labels/hooks/use-task-labels.ts +170 -0
  865. package/src/components/ui/tu-do/labels/task-labels-page.tsx +53 -0
  866. package/src/components/ui/tu-do/labels/types.ts +6 -0
  867. package/src/components/ui/tu-do/logs/columns.tsx +755 -0
  868. package/src/components/ui/tu-do/logs/logs-client.tsx +1006 -0
  869. package/src/components/ui/tu-do/logs/logs-timeline.tsx +2483 -0
  870. package/src/components/ui/tu-do/logs/task-logs-page.tsx +59 -0
  871. package/src/components/ui/tu-do/my-tasks/__tests__/my-tasks-content.test.tsx +408 -0
  872. package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-query.test.ts +469 -0
  873. package/src/components/ui/tu-do/my-tasks/__tests__/use-my-tasks-state.test.ts +1017 -0
  874. package/src/components/ui/tu-do/my-tasks/__tests__/use-task-context-actions.test.ts +516 -0
  875. package/src/components/ui/tu-do/my-tasks/ai-credit-indicator.tsx +143 -0
  876. package/src/components/ui/tu-do/my-tasks/board-selector-dialog.tsx +239 -0
  877. package/src/components/ui/tu-do/my-tasks/command-bar.tsx +1351 -0
  878. package/src/components/ui/tu-do/my-tasks/label-project-filter.tsx +194 -0
  879. package/src/components/ui/tu-do/my-tasks/my-task-context-menu.tsx +356 -0
  880. package/src/components/ui/tu-do/my-tasks/my-tasks-content.tsx +304 -0
  881. package/src/components/ui/tu-do/my-tasks/my-tasks-data-loader.tsx +17 -0
  882. package/src/components/ui/tu-do/my-tasks/my-tasks-filters.tsx +258 -0
  883. package/src/components/ui/tu-do/my-tasks/my-tasks-header.tsx +121 -0
  884. package/src/components/ui/tu-do/my-tasks/my-tasks-page.tsx +40 -0
  885. package/src/components/ui/tu-do/my-tasks/personal-placement-dialog.tsx +188 -0
  886. package/src/components/ui/tu-do/my-tasks/task-filter.tsx +235 -0
  887. package/src/components/ui/tu-do/my-tasks/task-list-with-completion.tsx +782 -0
  888. package/src/components/ui/tu-do/my-tasks/task-list.tsx +258 -0
  889. package/src/components/ui/tu-do/my-tasks/task-preview-dialog.tsx +1597 -0
  890. package/src/components/ui/tu-do/my-tasks/task-section.tsx +261 -0
  891. package/src/components/ui/tu-do/my-tasks/use-my-tasks-query.ts +140 -0
  892. package/src/components/ui/tu-do/my-tasks/use-my-tasks-state.ts +983 -0
  893. package/src/components/ui/tu-do/my-tasks/use-task-context-actions.ts +332 -0
  894. package/src/components/ui/tu-do/notes/note-edit-dialog.tsx +121 -0
  895. package/src/components/ui/tu-do/notes/note-list.tsx +799 -0
  896. package/src/components/ui/tu-do/notes/notes-content.tsx +178 -0
  897. package/src/components/ui/tu-do/notes/notes-page.tsx +27 -0
  898. package/src/components/ui/tu-do/projects/components/index.ts +11 -0
  899. package/src/components/ui/tu-do/projects/components/project-actions-menu.tsx +66 -0
  900. package/src/components/ui/tu-do/projects/components/project-badges.tsx +84 -0
  901. package/src/components/ui/tu-do/projects/components/project-filter-menu.tsx +170 -0
  902. package/src/components/ui/tu-do/projects/components/project-grid-card.tsx +182 -0
  903. package/src/components/ui/tu-do/projects/components/project-list-item.tsx +179 -0
  904. package/src/components/ui/tu-do/projects/components/project-metrics.tsx +87 -0
  905. package/src/components/ui/tu-do/projects/components/project-progress-meter.tsx +33 -0
  906. package/src/components/ui/tu-do/projects/components/project-sort-menu.tsx +71 -0
  907. package/src/components/ui/tu-do/projects/components/projects-empty-state.tsx +38 -0
  908. package/src/components/ui/tu-do/projects/components/projects-loading-state.tsx +26 -0
  909. package/src/components/ui/tu-do/projects/components/projects-toolbar.tsx +179 -0
  910. package/src/components/ui/tu-do/projects/dialogs/create-project-dialog.tsx +117 -0
  911. package/src/components/ui/tu-do/projects/dialogs/edit-project-dialog.tsx +125 -0
  912. package/src/components/ui/tu-do/projects/dialogs/index.ts +3 -0
  913. package/src/components/ui/tu-do/projects/dialogs/manage-tasks-dialog.tsx +205 -0
  914. package/src/components/ui/tu-do/projects/hooks/index.ts +2 -0
  915. package/src/components/ui/tu-do/projects/hooks/use-project-filters.ts +248 -0
  916. package/src/components/ui/tu-do/projects/hooks/use-task-projects.ts +238 -0
  917. package/src/components/ui/tu-do/projects/projectId/components/__tests__/tasks-tab-layout.test.tsx +163 -0
  918. package/src/components/ui/tu-do/projects/projectId/components/documents-tab.tsx +90 -0
  919. package/src/components/ui/tu-do/projects/projectId/components/index.ts +9 -0
  920. package/src/components/ui/tu-do/projects/projectId/components/overview/description-card.tsx +77 -0
  921. package/src/components/ui/tu-do/projects/projectId/components/overview/linked-documents-card.tsx +81 -0
  922. package/src/components/ui/tu-do/projects/projectId/components/overview/linked-tasks-card.tsx +85 -0
  923. package/src/components/ui/tu-do/projects/projectId/components/overview/updates-card.tsx +85 -0
  924. package/src/components/ui/tu-do/projects/projectId/components/overview-tab.tsx +35 -0
  925. package/src/components/ui/tu-do/projects/projectId/components/project-configuration.tsx +229 -0
  926. package/src/components/ui/tu-do/projects/projectId/components/project-header.tsx +115 -0
  927. package/src/components/ui/tu-do/projects/projectId/components/project-lead-selector.tsx +55 -0
  928. package/src/components/ui/tu-do/projects/projectId/components/project-overview-context.tsx +82 -0
  929. package/src/components/ui/tu-do/projects/projectId/components/project-sidebar.tsx +246 -0
  930. package/src/components/ui/tu-do/projects/projectId/components/tasks-tab.tsx +264 -0
  931. package/src/components/ui/tu-do/projects/projectId/components/update-card.tsx +162 -0
  932. package/src/components/ui/tu-do/projects/projectId/components/updates-tab.tsx +129 -0
  933. package/src/components/ui/tu-do/projects/projectId/dialogs/index.ts +1 -0
  934. package/src/components/ui/tu-do/projects/projectId/dialogs/link-task-dialog.tsx +114 -0
  935. package/src/components/ui/tu-do/projects/projectId/hooks/index.ts +4 -0
  936. package/src/components/ui/tu-do/projects/projectId/hooks/use-animation-variants.ts +68 -0
  937. package/src/components/ui/tu-do/projects/projectId/hooks/use-project-form.ts +214 -0
  938. package/src/components/ui/tu-do/projects/projectId/hooks/use-project-updates.ts +209 -0
  939. package/src/components/ui/tu-do/projects/projectId/hooks/use-task-linking.ts +101 -0
  940. package/src/components/ui/tu-do/projects/projectId/task-project-detail-page-client.tsx +85 -0
  941. package/src/components/ui/tu-do/projects/projectId/task-project-detail-page.tsx +78 -0
  942. package/src/components/ui/tu-do/projects/projectId/task-project-detail.tsx +365 -0
  943. package/src/components/ui/tu-do/projects/projectId/types.ts +50 -0
  944. package/src/components/ui/tu-do/projects/task-projects-client.tsx +226 -0
  945. package/src/components/ui/tu-do/projects/task-projects-page.tsx +97 -0
  946. package/src/components/ui/tu-do/projects/types.ts +59 -0
  947. package/src/components/ui/tu-do/providers/__tests__/task-dialog-provider.test.tsx +404 -0
  948. package/src/components/ui/tu-do/providers/task-dialog-provider.tsx +721 -0
  949. package/src/components/ui/tu-do/providers/workspace-presence-provider.tsx +88 -0
  950. package/src/components/ui/tu-do/shared/AccessibleButton.tsx +79 -0
  951. package/src/components/ui/tu-do/shared/__tests__/assignee-select.test.tsx +72 -0
  952. package/src/components/ui/tu-do/shared/__tests__/board-client.test.tsx +152 -0
  953. package/src/components/ui/tu-do/shared/__tests__/board-header.test.tsx +172 -0
  954. package/src/components/ui/tu-do/shared/__tests__/board-query-cache.test.ts +219 -0
  955. package/src/components/ui/tu-do/shared/__tests__/board-views.test.tsx +613 -0
  956. package/src/components/ui/tu-do/shared/__tests__/create-list-dialog.test.tsx +118 -0
  957. package/src/components/ui/tu-do/shared/__tests__/task-detail-page.test.tsx +170 -0
  958. package/src/components/ui/tu-do/shared/__tests__/task-dialog-manager.test.tsx +708 -0
  959. package/src/components/ui/tu-do/shared/__tests__/task-legacy-route-recovery.test.tsx +85 -0
  960. package/src/components/ui/tu-do/shared/__tests__/use-progressive-board-loader.test.tsx +588 -0
  961. package/src/components/ui/tu-do/shared/assignee-select.tsx +541 -0
  962. package/src/components/ui/tu-do/shared/board-broadcast-context.tsx +45 -0
  963. package/src/components/ui/tu-do/shared/board-client.tsx +268 -0
  964. package/src/components/ui/tu-do/shared/board-config-storage.ts +88 -0
  965. package/src/components/ui/tu-do/shared/board-header.tsx +1248 -0
  966. package/src/components/ui/tu-do/shared/board-layout-settings.tsx +1105 -0
  967. package/src/components/ui/tu-do/shared/board-query-cache.ts +157 -0
  968. package/src/components/ui/tu-do/shared/board-switcher.tsx +298 -0
  969. package/src/components/ui/tu-do/shared/board-user-presence-avatars.tsx +572 -0
  970. package/src/components/ui/tu-do/shared/board-views.tsx +847 -0
  971. package/src/components/ui/tu-do/shared/clear-menu-item.tsx +34 -0
  972. package/src/components/ui/tu-do/shared/create-list-dialog.tsx +401 -0
  973. package/src/components/ui/tu-do/shared/cursor-overlay-multi-wrapper.tsx +204 -0
  974. package/src/components/ui/tu-do/shared/cursor-overlay.tsx +78 -0
  975. package/src/components/ui/tu-do/shared/custom-date-picker/custom-date-picker-dialog.tsx +157 -0
  976. package/src/components/ui/tu-do/shared/description-overflow-warning-dialog.tsx +68 -0
  977. package/src/components/ui/tu-do/shared/edit-list-dialog.tsx +383 -0
  978. package/src/components/ui/tu-do/shared/empty-state-card.tsx +46 -0
  979. package/src/components/ui/tu-do/shared/estimation-mapping.test.ts +32 -0
  980. package/src/components/ui/tu-do/shared/estimation-mapping.ts +74 -0
  981. package/src/components/ui/tu-do/shared/estimation-utils.ts +54 -0
  982. package/src/components/ui/tu-do/shared/fade-setting-initializer.tsx +59 -0
  983. package/src/components/ui/tu-do/shared/label-chip.tsx +46 -0
  984. package/src/components/ui/tu-do/shared/list-view-context-menu.test.tsx +150 -0
  985. package/src/components/ui/tu-do/shared/list-view-sorting.test.ts +50 -0
  986. package/src/components/ui/tu-do/shared/list-view-sorting.ts +108 -0
  987. package/src/components/ui/tu-do/shared/list-view.tsx +987 -0
  988. package/src/components/ui/tu-do/shared/mention-system/__tests__/mention-system.test.ts +250 -0
  989. package/src/components/ui/tu-do/shared/mention-system/mention-menu.tsx +217 -0
  990. package/src/components/ui/tu-do/shared/mention-system/types.ts +141 -0
  991. package/src/components/ui/tu-do/shared/mention-system/use-mention-suggestions.ts +244 -0
  992. package/src/components/ui/tu-do/shared/progressive-loader-context.tsx +45 -0
  993. package/src/components/ui/tu-do/shared/recent-sidebar-events.ts +58 -0
  994. package/src/components/ui/tu-do/shared/recycle-bin-panel.tsx +603 -0
  995. package/src/components/ui/tu-do/shared/relationship-task-identifier.ts +14 -0
  996. package/src/components/ui/tu-do/shared/slash-commands/__tests__/slash-commands.test.ts +315 -0
  997. package/src/components/ui/tu-do/shared/slash-commands/definitions.ts +167 -0
  998. package/src/components/ui/tu-do/shared/slash-commands/slash-command-menu.tsx +114 -0
  999. package/src/components/ui/tu-do/shared/sync-warning-dialog.tsx +133 -0
  1000. package/src/components/ui/tu-do/shared/task-board-errors.ts +19 -0
  1001. package/src/components/ui/tu-do/shared/task-detail-page.tsx +176 -0
  1002. package/src/components/ui/tu-do/shared/task-detail-server-page.tsx +37 -0
  1003. package/src/components/ui/tu-do/shared/task-dialog-manager.tsx +557 -0
  1004. package/src/components/ui/tu-do/shared/task-dialog-wrapper.tsx +28 -0
  1005. package/src/components/ui/tu-do/shared/task-edit-dialog/components/mobile-floating-save-button.tsx +46 -0
  1006. package/src/components/ui/tu-do/shared/task-edit-dialog/components/quick-settings-popover.tsx +164 -0
  1007. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-description-editor.tsx +491 -0
  1008. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-dialog-header.tsx +511 -0
  1009. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-picker-panel.tsx +220 -0
  1010. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-selector.tsx +127 -0
  1011. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-list-trigger-styles.ts +69 -0
  1012. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.test.tsx +140 -0
  1013. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-name-input.tsx +163 -0
  1014. package/src/components/ui/tu-do/shared/task-edit-dialog/components/task-suggestion-menus.tsx +148 -0
  1015. package/src/components/ui/tu-do/shared/task-edit-dialog/constants.ts +18 -0
  1016. package/src/components/ui/tu-do/shared/task-edit-dialog/context-menu-guard.test.ts +37 -0
  1017. package/src/components/ui/tu-do/shared/task-edit-dialog/description-diff-viewer.tsx +1665 -0
  1018. package/src/components/ui/tu-do/shared/task-edit-dialog/field-diff-viewer.tsx +715 -0
  1019. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-close.test.ts +218 -0
  1020. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-dialog-keyboard-shortcuts.test.ts +140 -0
  1021. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-overrides.test.ts +412 -0
  1022. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-realtime-sync.test.tsx +237 -0
  1023. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-task-yjs-sync.test.ts +190 -0
  1024. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/__tests__/use-update-shared-task.test.ts +103 -0
  1025. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/task-api.ts +127 -0
  1026. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-editor-commands.ts +314 -0
  1027. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-suggestion-menus.ts +503 -0
  1028. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-change-detection.ts +175 -0
  1029. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-data.ts +332 -0
  1030. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dependencies.ts +773 -0
  1031. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-close.ts +193 -0
  1032. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-dialog-keyboard-shortcuts.ts +365 -0
  1033. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-reset.ts +215 -0
  1034. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-form-state.ts +307 -0
  1035. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-mutations.ts +536 -0
  1036. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-overrides.ts +122 -0
  1037. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-realtime-sync.ts +271 -0
  1038. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.test.tsx +149 -0
  1039. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-relationships.ts +545 -0
  1040. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-revert.ts +140 -0
  1041. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.test.ts +206 -0
  1042. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-save.ts +1450 -0
  1043. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-snapshot.ts +59 -0
  1044. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-task-yjs-sync.ts +224 -0
  1045. package/src/components/ui/tu-do/shared/task-edit-dialog/hooks/use-update-shared-task.ts +55 -0
  1046. package/src/components/ui/tu-do/shared/task-edit-dialog/personal-overrides-section.tsx +348 -0
  1047. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/clickable-task-item.tsx +90 -0
  1048. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/index.ts +4 -0
  1049. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/subtask-action-buttons.tsx +140 -0
  1050. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/tab-button.tsx +76 -0
  1051. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/components/task-relationship-action-buttons.tsx +178 -0
  1052. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/dependencies-section.tsx +129 -0
  1053. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/index.ts +35 -0
  1054. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/parent-section.tsx +65 -0
  1055. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/related-section.tsx +76 -0
  1056. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/subtasks-section.tsx +82 -0
  1057. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/task-search-popover.tsx +229 -0
  1058. package/src/components/ui/tu-do/shared/task-edit-dialog/relationships/types/task-relationships.types.ts +186 -0
  1059. package/src/components/ui/tu-do/shared/task-edit-dialog/selective-revert-panel.tsx +320 -0
  1060. package/src/components/ui/tu-do/shared/task-edit-dialog/task-activity-section.tsx +748 -0
  1061. package/src/components/ui/tu-do/shared/task-edit-dialog/task-delete-dialog.tsx +104 -0
  1062. package/src/components/ui/tu-do/shared/task-edit-dialog/task-dialog-actions.tsx +213 -0
  1063. package/src/components/ui/tu-do/shared/task-edit-dialog/task-instances-section.tsx +173 -0
  1064. package/src/components/ui/tu-do/shared/task-edit-dialog/task-properties-section.tsx +1895 -0
  1065. package/src/components/ui/tu-do/shared/task-edit-dialog/task-relationships-properties.tsx +273 -0
  1066. package/src/components/ui/tu-do/shared/task-edit-dialog/task-snapshot-dialog.tsx +162 -0
  1067. package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.test.ts +52 -0
  1068. package/src/components/ui/tu-do/shared/task-edit-dialog/types/pending-relationship.ts +134 -0
  1069. package/src/components/ui/tu-do/shared/task-edit-dialog/types.ts +64 -0
  1070. package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.test.ts +58 -0
  1071. package/src/components/ui/tu-do/shared/task-edit-dialog/user-display.ts +45 -0
  1072. package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.test.ts +98 -0
  1073. package/src/components/ui/tu-do/shared/task-edit-dialog/utils/inline-task-target-list.ts +39 -0
  1074. package/src/components/ui/tu-do/shared/task-edit-dialog/utils.test.ts +404 -0
  1075. package/src/components/ui/tu-do/shared/task-edit-dialog/utils.ts +473 -0
  1076. package/src/components/ui/tu-do/shared/task-edit-dialog/yjs-prosemirror-compat.test.ts +65 -0
  1077. package/src/components/ui/tu-do/shared/task-edit-dialog.tsx +2168 -0
  1078. package/src/components/ui/tu-do/shared/task-estimation-display.tsx +52 -0
  1079. package/src/components/ui/tu-do/shared/task-estimation-picker.tsx +223 -0
  1080. package/src/components/ui/tu-do/shared/task-filter.types.ts +65 -0
  1081. package/src/components/ui/tu-do/shared/task-label-selector.tsx +217 -0
  1082. package/src/components/ui/tu-do/shared/task-labels-display.test.tsx +51 -0
  1083. package/src/components/ui/tu-do/shared/task-labels-display.tsx +119 -0
  1084. package/src/components/ui/tu-do/shared/task-legacy-route-recovery.tsx +72 -0
  1085. package/src/components/ui/tu-do/shared/task-open-events.ts +94 -0
  1086. package/src/components/ui/tu-do/shared/task-projects-display.tsx +80 -0
  1087. package/src/components/ui/tu-do/shared/task-resource-search-field.tsx +49 -0
  1088. package/src/components/ui/tu-do/shared/task-resource-search-filters.ts +27 -0
  1089. package/src/components/ui/tu-do/shared/task-row-actions-menu.tsx +352 -0
  1090. package/src/components/ui/tu-do/shared/task-share-dialog/components/share-link-settings.tsx +86 -0
  1091. package/src/components/ui/tu-do/shared/task-share-dialog/components/shares-list.tsx +85 -0
  1092. package/src/components/ui/tu-do/shared/task-share-dialog/hooks/use-task-sharing.ts +296 -0
  1093. package/src/components/ui/tu-do/shared/task-share-dialog.tsx +144 -0
  1094. package/src/components/ui/tu-do/shared/task-url.ts +56 -0
  1095. package/src/components/ui/tu-do/shared/text-diff-viewer.tsx +55 -0
  1096. package/src/components/ui/tu-do/shared/types.ts +14 -0
  1097. package/src/components/ui/tu-do/shared/unsaved-changes-warning-dialog.tsx +71 -0
  1098. package/src/components/ui/tu-do/shared/use-progressive-board-loader.ts +310 -0
  1099. package/src/components/ui/tu-do/shared/user-avatar.tsx +46 -0
  1100. package/src/components/ui/tu-do/shared/user-presence-avatars.tsx +415 -0
  1101. package/src/components/ui/tu-do/shared/utils/translate-task-list-display-name.ts +28 -0
  1102. package/src/components/ui/tu-do/tasks-route-context.tsx +50 -0
  1103. package/src/components/ui/tu-do/templates/client.tsx +486 -0
  1104. package/src/components/ui/tu-do/templates/marketplace/client.tsx +451 -0
  1105. package/src/components/ui/tu-do/templates/marketplace/task-marketplace-page.tsx +169 -0
  1106. package/src/components/ui/tu-do/templates/save-as-template-dialog.tsx +381 -0
  1107. package/src/components/ui/tu-do/templates/task-templates-page.tsx +162 -0
  1108. package/src/components/ui/tu-do/templates/templateId/client.tsx +659 -0
  1109. package/src/components/ui/tu-do/templates/templateId/edit-template-dialog.tsx +300 -0
  1110. package/src/components/ui/tu-do/templates/templateId/share-template-dialog.tsx +261 -0
  1111. package/src/components/ui/tu-do/templates/templateId/task-template-detail-page-client.tsx +121 -0
  1112. package/src/components/ui/tu-do/templates/templateId/task-template-detail-page.tsx +89 -0
  1113. package/src/components/ui/tu-do/templates/templateId/use-template-dialog.tsx +165 -0
  1114. package/src/components/ui/tu-do/templates/types.ts +53 -0
  1115. package/src/components/ui/tu-do/utils/__tests__/label-colors.test.ts +43 -0
  1116. package/src/components/ui/tu-do/utils/__tests__/taskColorUtils.test.ts +267 -0
  1117. package/src/components/ui/tu-do/utils/__tests__/taskConstants.test.ts +178 -0
  1118. package/src/components/ui/tu-do/utils/__tests__/taskDateUtils.test.ts +226 -0
  1119. package/src/components/ui/tu-do/utils/__tests__/weekDateUtils.test.ts +182 -0
  1120. package/src/components/ui/tu-do/utils/label-colors.test.ts +15 -0
  1121. package/src/components/ui/tu-do/utils/label-colors.ts +59 -0
  1122. package/src/components/ui/tu-do/utils/taskColorUtils.ts +116 -0
  1123. package/src/components/ui/tu-do/utils/taskConstants.ts +102 -0
  1124. package/src/components/ui/tu-do/utils/taskDateUtils.ts +81 -0
  1125. package/src/components/ui/tu-do/utils/taskPriorityUtils.tsx +80 -0
  1126. package/src/components/ui/tu-do/utils/weekDateUtils.ts +64 -0
  1127. package/src/constants/boards.ts +9 -0
  1128. package/src/declarations.d.ts +2 -0
  1129. package/src/globals.css +609 -200
  1130. package/src/gsap.ts +2 -0
  1131. package/src/hooks/__tests__/supabase-provider.test.ts +346 -0
  1132. package/src/hooks/__tests__/use-calendar-readonly.test.tsx +90 -0
  1133. package/src/hooks/__tests__/use-forwarded-ref.test.tsx +127 -0
  1134. package/src/hooks/__tests__/use-local-storage.test.tsx +243 -0
  1135. package/src/hooks/__tests__/use-mobile.test.tsx +222 -0
  1136. package/src/hooks/__tests__/use-notifications-subscription.test.tsx +163 -0
  1137. package/src/hooks/__tests__/use-notifications.test.ts +59 -0
  1138. package/src/hooks/__tests__/use-stable-array.test.tsx +214 -0
  1139. package/src/hooks/__tests__/use-task-actions.test.tsx +1893 -0
  1140. package/src/hooks/__tests__/use-workspace-presence.test.tsx +217 -0
  1141. package/src/hooks/__tests__/useBoardRealtime.test.tsx +1156 -0
  1142. package/src/hooks/supabase-provider.ts +725 -0
  1143. package/src/hooks/task-actions-personal-external.ts +308 -0
  1144. package/src/hooks/time-blocking-provider.tsx +756 -0
  1145. package/src/hooks/use-ai-credits.ts +78 -0
  1146. package/src/hooks/use-analytics-filters.ts +269 -0
  1147. package/src/hooks/use-at-bottom.tsx +64 -0
  1148. package/src/hooks/use-board-actions.ts +213 -0
  1149. package/src/hooks/use-calendar-preferences.tsx +24 -0
  1150. package/src/hooks/use-calendar-sync.tsx +1184 -0
  1151. package/src/hooks/use-calendar.tsx +1972 -0
  1152. package/src/hooks/use-callback-ref.ts +1 -1
  1153. package/src/hooks/use-controllable-state.ts +3 -4
  1154. package/src/hooks/use-copy-to-clipboard.ts +1 -3
  1155. package/src/hooks/use-currency-formatter.ts +81 -0
  1156. package/src/hooks/use-debounce.ts +15 -0
  1157. package/src/hooks/use-dom-resolved-theme.ts +81 -0
  1158. package/src/hooks/use-enter-submit.tsx +23 -0
  1159. package/src/hooks/use-exchange-rates.ts +23 -0
  1160. package/src/hooks/use-finance-transaction-preferences.ts +58 -0
  1161. package/src/hooks/use-form.ts +8 -6
  1162. package/src/hooks/use-interest-preferences.ts +104 -0
  1163. package/src/hooks/use-local-storage.ts +42 -0
  1164. package/src/hooks/use-notifications.ts +704 -0
  1165. package/src/hooks/use-page-visibility.ts +27 -0
  1166. package/src/hooks/use-popover-manager.tsx +98 -0
  1167. package/src/hooks/use-semantic-task-search.ts +76 -0
  1168. package/src/hooks/use-session-history-query.ts +1 -0
  1169. package/src/hooks/use-stable-array.ts +23 -0
  1170. package/src/hooks/use-task-actions.ts +1915 -0
  1171. package/src/hooks/use-task-analytics.ts +354 -0
  1172. package/src/hooks/use-toast.ts +2 -3
  1173. package/src/hooks/use-user-config.ts +109 -0
  1174. package/src/hooks/use-view-transition.ts +69 -0
  1175. package/src/hooks/use-workspace-config.ts +49 -0
  1176. package/src/hooks/use-workspace-currency.ts +26 -0
  1177. package/src/hooks/use-workspace-members.ts +58 -0
  1178. package/src/hooks/use-workspace-permission.ts +61 -0
  1179. package/src/hooks/use-workspace-presence.ts +554 -0
  1180. package/src/hooks/use-workspace-user.ts +33 -0
  1181. package/src/hooks/use-yjs-collaboration.ts +297 -0
  1182. package/src/hooks/useBoardRealtime.ts +372 -0
  1183. package/src/hooks/useBoardRealtime.types.ts +45 -0
  1184. package/src/hooks/useBoardRealtimeEventHandler.ts +332 -0
  1185. package/src/hooks/useCursorTracking.ts +338 -0
  1186. package/src/hooks/useHorizontalScroll.ts +215 -0
  1187. package/src/hooks/usePresence.ts +272 -0
  1188. package/src/hooks/useSearchParams.tsx +133 -0
  1189. package/src/lib/__tests__/lunar-calendar.test.ts +137 -0
  1190. package/src/lib/calendar/planning-query-client.ts +197 -0
  1191. package/src/lib/calendar/preview-engine.ts +14 -0
  1192. package/src/lib/calendar-settings-resolver.ts +200 -0
  1193. package/src/lib/lunar-calendar.ts +71 -0
  1194. package/src/lib/template-background.ts +159 -0
  1195. package/src/lib/workspace-actions.ts +457 -0
  1196. package/src/utils/__tests__/label-colors.test.ts +219 -0
  1197. package/src/utils/__tests__/priority-styles.test.ts +78 -0
  1198. package/src/utils/label-colors.ts +4 -0
  1199. package/src/utils/priority-styles.ts +42 -0
  1200. package/src/xlsx.ts +3 -0
  1201. package/tsconfig.json +3 -11
  1202. package/tsconfig.typecheck.json +9 -0
  1203. package/vendor/xlsx-0.20.3.tgz +0 -0
  1204. package/vitest.config.ts +42 -0
  1205. package/vitest.setup.ts +37 -0
  1206. package/eslint.config.mjs +0 -20
  1207. package/rollup.config.js +0 -40
  1208. package/src/components/ui/icons.tsx +0 -506
  1209. package/src/components/ui/tag-input.tsx +0 -141
  1210. /package/src/hooks/{use-mobile.tsx → use-mobile.ts} +0 -0
@@ -0,0 +1,1915 @@
1
+ import { useQueryClient } from '@tanstack/react-query';
2
+ import {
3
+ resolveTaskProjectWorkspaceId,
4
+ updateWorkspaceTask,
5
+ } from '@tuturuuu/internal-api/tasks';
6
+ import type { TaskPriority } from '@tuturuuu/types/primitives/Priority';
7
+ import type { Task } from '@tuturuuu/types/primitives/Task';
8
+ import type { TaskBoardStatus } from '@tuturuuu/types/primitives/TaskBoard';
9
+ import type { TaskList } from '@tuturuuu/types/primitives/TaskList';
10
+ import { toast } from '@tuturuuu/ui/sonner';
11
+ import {
12
+ isTaskBoardCompletedStatus,
13
+ isTaskBoardResolvedStatus,
14
+ isTaskBoardTerminalStatus,
15
+ } from '@tuturuuu/utils/task-list-status';
16
+ import { addDays } from 'date-fns';
17
+ import { useCallback } from 'react';
18
+ import { useBoardBroadcast } from '../components/ui/tu-do/shared/board-broadcast-context';
19
+ import {
20
+ isPersonalExternalTask,
21
+ moveExternalTaskToPersonalList,
22
+ } from './task-actions-personal-external';
23
+
24
+ interface UseTaskActionsProps {
25
+ task?: Task; // Made optional to handle loading states
26
+ boardId: string;
27
+ workspaceId?: string;
28
+ targetCompletionList?: TaskList | null;
29
+ targetClosedList?: TaskList | null;
30
+ availableLists: TaskList[];
31
+ onUpdate: () => void;
32
+ setIsLoading: (loading: boolean) => void;
33
+ setMenuOpen: (open: boolean) => void;
34
+ setCustomDateDialogOpen?: (open: boolean) => void;
35
+ setDeleteDialogOpen?: (open: boolean) => void;
36
+ setEstimationSaving?: (saving: boolean) => void;
37
+ selectedTasks?: Set<string>; // For bulk operations
38
+ isMultiSelectMode?: boolean;
39
+ onClearSelection?: () => void; // Callback to clear selection after bulk operations
40
+ taskId?: string; // Optional task ID for syncing individual task cache
41
+ // Bulk operation functions from useBulkOperations hook
42
+ bulkUpdateCustomDueDate?: (date: Date | null) => Promise<void>;
43
+ }
44
+
45
+ export function useTaskActions({
46
+ task,
47
+ boardId,
48
+ workspaceId,
49
+ targetCompletionList,
50
+ targetClosedList,
51
+ availableLists,
52
+ onUpdate,
53
+ setIsLoading,
54
+ setMenuOpen,
55
+ setCustomDateDialogOpen,
56
+ setDeleteDialogOpen,
57
+ setEstimationSaving,
58
+ selectedTasks,
59
+ isMultiSelectMode,
60
+ taskId,
61
+ bulkUpdateCustomDueDate,
62
+ }: UseTaskActionsProps) {
63
+ const queryClient = useQueryClient();
64
+ const broadcast = useBoardBroadcast();
65
+
66
+ const resolveWorkspaceIdForTask = useCallback(
67
+ async (taskRecord?: Task) => {
68
+ const sourceWorkspaceId = taskRecord?.source_workspace_id ?? undefined;
69
+ const taskWorkspaceId =
70
+ (taskRecord as Task & { ws_id?: string })?.ws_id ??
71
+ (
72
+ taskRecord as Task & {
73
+ task_lists?: { workspace_boards?: { ws_id?: string } };
74
+ }
75
+ )?.task_lists?.workspace_boards?.ws_id;
76
+ const resolvedWorkspaceId =
77
+ sourceWorkspaceId ??
78
+ taskWorkspaceId ??
79
+ (boardId
80
+ ? await resolveTaskProjectWorkspaceId({ boardId }).catch(() => null)
81
+ : null) ??
82
+ workspaceId;
83
+
84
+ if (!resolvedWorkspaceId) {
85
+ throw new Error('Workspace ID is required');
86
+ }
87
+
88
+ return resolvedWorkspaceId;
89
+ },
90
+ [boardId, workspaceId]
91
+ );
92
+
93
+ const getWorkspaceId = useCallback(async () => {
94
+ return resolveWorkspaceIdForTask(task);
95
+ }, [resolveWorkspaceIdForTask, task]);
96
+
97
+ const getExternalMoveOptions = useCallback((targetList: TaskList) => {
98
+ const options: {
99
+ sourceStatus?: TaskBoardStatus;
100
+ placementPosition: 'top' | 'end';
101
+ } = {
102
+ placementPosition: isTaskBoardResolvedStatus(targetList.status)
103
+ ? 'top'
104
+ : 'end',
105
+ };
106
+
107
+ if (isTaskBoardTerminalStatus(targetList.status)) {
108
+ options.sourceStatus = targetList.status;
109
+ }
110
+
111
+ return options;
112
+ }, []);
113
+
114
+ const markLocallyMutatedTask = useCallback((taskRecord: Task): Task => {
115
+ return {
116
+ ...(taskRecord as Task & { _localMutationAt?: number }),
117
+ _localMutationAt: Date.now(),
118
+ } as Task;
119
+ }, []);
120
+
121
+ const mergeLocallyMutatedTask = useCallback(
122
+ (taskId: string, taskPatch: Partial<Task>) => {
123
+ queryClient.setQueryData<Task[]>(['tasks', boardId], (current) => {
124
+ if (!current) {
125
+ return current;
126
+ }
127
+
128
+ return current.map((item) =>
129
+ item.id === taskId
130
+ ? markLocallyMutatedTask({
131
+ ...item,
132
+ ...taskPatch,
133
+ } as Task)
134
+ : item
135
+ );
136
+ });
137
+ },
138
+ [boardId, markLocallyMutatedTask, queryClient]
139
+ );
140
+
141
+ const rollbackTaskIds = useCallback(
142
+ (previousTasks: Task[] | undefined, failedTaskIds: string[]) => {
143
+ if (!previousTasks || failedTaskIds.length === 0) {
144
+ return;
145
+ }
146
+
147
+ const previousTaskMap = new Map(
148
+ previousTasks.map((item) => [item.id, item])
149
+ );
150
+
151
+ queryClient.setQueryData<Task[]>(['tasks', boardId], (current) => {
152
+ if (!current) {
153
+ return current;
154
+ }
155
+
156
+ return current.map((item) =>
157
+ failedTaskIds.includes(item.id)
158
+ ? previousTaskMap.get(item.id) || item
159
+ : item
160
+ );
161
+ });
162
+ },
163
+ [boardId, queryClient]
164
+ );
165
+
166
+ const restoreDeletedTaskIds = useCallback(
167
+ (
168
+ previousTasks: Task[] | undefined,
169
+ previousDeletedTasks: Task[] | undefined,
170
+ failedTaskIds: string[]
171
+ ) => {
172
+ if (!previousTasks || failedTaskIds.length === 0) {
173
+ return;
174
+ }
175
+
176
+ const failedTaskIdSet = new Set(failedTaskIds);
177
+ const failedTasks = previousTasks.filter((item) =>
178
+ failedTaskIdSet.has(item.id)
179
+ );
180
+
181
+ queryClient.setQueryData<Task[]>(['tasks', boardId], (current) => {
182
+ if (!current) {
183
+ return failedTasks;
184
+ }
185
+
186
+ const currentIds = new Set(current.map((item) => item.id));
187
+ const restoredTasks = failedTasks.filter(
188
+ (item) => !currentIds.has(item.id)
189
+ );
190
+ return [...restoredTasks, ...current];
191
+ });
192
+
193
+ queryClient.setQueryData<Task[]>(
194
+ ['deleted-tasks', boardId],
195
+ (current) => {
196
+ if (!current) {
197
+ return previousDeletedTasks;
198
+ }
199
+
200
+ return current.filter((item) => !failedTaskIdSet.has(item.id));
201
+ }
202
+ );
203
+ },
204
+ [boardId, queryClient]
205
+ );
206
+
207
+ const handleArchiveToggle = useCallback(async () => {
208
+ if (!task || !onUpdate) return;
209
+ setIsLoading(true);
210
+
211
+ const newClosedState = !task.closed_at;
212
+
213
+ // Store previous state for rollback
214
+ const previousTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
215
+
216
+ if (
217
+ isPersonalExternalTask(task) &&
218
+ newClosedState &&
219
+ targetCompletionList &&
220
+ targetCompletionList.id !== task.list_id
221
+ ) {
222
+ try {
223
+ await moveExternalTaskToPersonalList({
224
+ boardId,
225
+ markLocallyMutatedTask,
226
+ queryClient,
227
+ task,
228
+ targetList: targetCompletionList,
229
+ sourceStatus:
230
+ targetCompletionList.status === 'closed' ? 'closed' : 'done',
231
+ placementPosition: 'top',
232
+ });
233
+
234
+ toast.success('Task completed', {
235
+ description: `Task marked as ${targetCompletionList.status === 'done' ? 'done' : 'closed'} and moved to ${targetCompletionList.name}`,
236
+ });
237
+ } catch (error) {
238
+ console.error('Failed to complete external task:', error);
239
+ toast.error('Error', {
240
+ description: 'Failed to complete task. Please try again.',
241
+ });
242
+ } finally {
243
+ setIsLoading(false);
244
+ }
245
+ return;
246
+ }
247
+
248
+ if (
249
+ newClosedState &&
250
+ targetCompletionList &&
251
+ targetCompletionList.id !== task.list_id
252
+ ) {
253
+ const now = new Date().toISOString();
254
+
255
+ try {
256
+ // Optimistic update: move task to completion list and set closed_at
257
+ queryClient.setQueryData(
258
+ ['tasks', boardId],
259
+ (old: Task[] | undefined) => {
260
+ if (!old) return old;
261
+ return old.map((t) =>
262
+ t.id === task.id
263
+ ? markLocallyMutatedTask({
264
+ ...t,
265
+ list_id: targetCompletionList.id,
266
+ completed: targetCompletionList.status === 'done',
267
+ closed_at: now,
268
+ completed_at:
269
+ targetCompletionList.status === 'done' ? now : null,
270
+ } as Task)
271
+ : t
272
+ );
273
+ }
274
+ );
275
+
276
+ // moveTask handles setting archived status based on target list
277
+ const workspaceId = await getWorkspaceId();
278
+
279
+ const { task: movedTask } = await updateWorkspaceTask(
280
+ workspaceId,
281
+ task.id,
282
+ {
283
+ list_id: targetCompletionList.id,
284
+ }
285
+ );
286
+ mergeLocallyMutatedTask(task.id, {
287
+ ...movedTask,
288
+ list_id: targetCompletionList.id,
289
+ closed_at: movedTask?.closed_at ?? now,
290
+ completed_at:
291
+ movedTask?.completed_at ??
292
+ (targetCompletionList.status === 'done' ? now : undefined),
293
+ });
294
+ broadcast?.('task:upsert', {
295
+ task: {
296
+ id: task.id,
297
+ list_id: targetCompletionList.id,
298
+ completed_at: movedTask?.completed_at,
299
+ closed_at: movedTask?.closed_at,
300
+ },
301
+ });
302
+
303
+ toast.success('Task completed', {
304
+ description: `Task marked as done and moved to ${targetCompletionList.name}`,
305
+ });
306
+ } catch (error) {
307
+ // Rollback on error
308
+ if (previousTasks) {
309
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
310
+ }
311
+ console.error('Failed to complete task:', error);
312
+ toast.error('Error', {
313
+ description: 'Failed to complete task. Please try again.',
314
+ });
315
+ } finally {
316
+ setIsLoading(false);
317
+ }
318
+ } else {
319
+ // Optimistic update for simple toggle
320
+ queryClient.setQueryData(
321
+ ['tasks', boardId],
322
+ (old: Task[] | undefined) => {
323
+ if (!old) return old;
324
+ return old.map((t) =>
325
+ t.id === task.id
326
+ ? markLocallyMutatedTask({
327
+ ...t,
328
+ closed_at: newClosedState ? new Date().toISOString() : null,
329
+ } as Task)
330
+ : t
331
+ );
332
+ }
333
+ );
334
+
335
+ try {
336
+ const workspaceId = await getWorkspaceId();
337
+
338
+ const { task: updatedTask } = await updateWorkspaceTask(
339
+ workspaceId,
340
+ task.id,
341
+ {
342
+ closed_at: newClosedState ? new Date().toISOString() : null,
343
+ }
344
+ );
345
+ mergeLocallyMutatedTask(task.id, {
346
+ ...updatedTask,
347
+ closed_at: updatedTask.closed_at,
348
+ completed_at: updatedTask.completed_at,
349
+ });
350
+
351
+ broadcast?.('task:upsert', {
352
+ task: {
353
+ id: task.id,
354
+ closed_at: updatedTask.closed_at,
355
+ completed_at: updatedTask.completed_at,
356
+ },
357
+ });
358
+ } catch (error) {
359
+ // Rollback on error
360
+ if (previousTasks) {
361
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
362
+ }
363
+ console.error('Failed to toggle task status:', error);
364
+ toast.error('Error', {
365
+ description: 'Failed to update task. Please try again.',
366
+ });
367
+ } finally {
368
+ setIsLoading(false);
369
+ }
370
+ }
371
+ }, [
372
+ task?.id,
373
+ task?.closed_at,
374
+ task?.list_id,
375
+ targetCompletionList,
376
+ onUpdate,
377
+ setIsLoading,
378
+ queryClient,
379
+ boardId,
380
+ task,
381
+ broadcast,
382
+ getWorkspaceId,
383
+ markLocallyMutatedTask,
384
+ mergeLocallyMutatedTask,
385
+ ]);
386
+
387
+ const handleMoveToCompletion = useCallback(async () => {
388
+ if (!task || !targetCompletionList || !onUpdate) return;
389
+
390
+ setIsLoading(true);
391
+
392
+ // Check if we're in multi-select mode and have multiple tasks selected
393
+ const shouldBulkMove =
394
+ isMultiSelectMode &&
395
+ selectedTasks &&
396
+ selectedTasks.size > 1 &&
397
+ selectedTasks.has(task.id);
398
+ const tasksToMove = shouldBulkMove ? Array.from(selectedTasks) : [task.id];
399
+
400
+ // Store previous state for rollback
401
+ const previousTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
402
+
403
+ try {
404
+ if (isPersonalExternalTask(task) && !shouldBulkMove) {
405
+ await moveExternalTaskToPersonalList({
406
+ boardId,
407
+ markLocallyMutatedTask,
408
+ queryClient,
409
+ task,
410
+ targetList: targetCompletionList,
411
+ sourceStatus:
412
+ targetCompletionList.status === 'closed' ? 'closed' : 'done',
413
+ placementPosition: 'top',
414
+ });
415
+
416
+ toast.success('Task completed', {
417
+ description: `Task marked as ${targetCompletionList.status === 'done' ? 'done' : 'closed'} and moved to ${targetCompletionList.name}`,
418
+ });
419
+ return;
420
+ }
421
+
422
+ // Optimistic update: move tasks to completion list and set closed_at/completed_at
423
+ queryClient.setQueryData(
424
+ ['tasks', boardId],
425
+ (old: Task[] | undefined) => {
426
+ if (!old) return old;
427
+ const now = new Date().toISOString();
428
+ return old.map((t) =>
429
+ tasksToMove.includes(t.id)
430
+ ? markLocallyMutatedTask({
431
+ ...t,
432
+ list_id: targetCompletionList.id,
433
+ closed_at: now,
434
+ completed_at:
435
+ targetCompletionList.status === 'done'
436
+ ? now
437
+ : t.completed_at,
438
+ } as Task)
439
+ : t
440
+ );
441
+ }
442
+ );
443
+
444
+ // Move tasks one by one to ensure triggers fire for each task
445
+ let successCount = 0;
446
+ const workspaceId = await getWorkspaceId();
447
+ const failedTaskIds: string[] = [];
448
+ const previousTaskMap = new Map(
449
+ previousTasks?.map((item) => [item.id, item]) ?? []
450
+ );
451
+
452
+ for (const taskId of tasksToMove) {
453
+ try {
454
+ const { task: movedTask } = await updateWorkspaceTask(
455
+ workspaceId,
456
+ taskId,
457
+ {
458
+ list_id: targetCompletionList.id,
459
+ }
460
+ );
461
+ broadcast?.('task:upsert', {
462
+ task: {
463
+ id: taskId,
464
+ list_id: targetCompletionList.id,
465
+ completed_at: movedTask?.completed_at,
466
+ closed_at: movedTask?.closed_at,
467
+ },
468
+ });
469
+ successCount++;
470
+ } catch (error) {
471
+ failedTaskIds.push(taskId);
472
+ rollbackTaskIds(previousTasks, [taskId]);
473
+ const previousTask = previousTaskMap.get(taskId);
474
+ if (previousTask) {
475
+ broadcast?.('task:upsert', { task: previousTask });
476
+ }
477
+ console.error(`Failed to move task ${taskId}:`, error);
478
+ }
479
+ }
480
+ if (successCount === 0) throw new Error('Failed to move any tasks');
481
+
482
+ if (failedTaskIds.length > 0) {
483
+ toast.warning('Partial completion update', {
484
+ description: `${successCount}/${tasksToMove.length} tasks updated`,
485
+ });
486
+ return;
487
+ }
488
+
489
+ const taskCount = successCount;
490
+ toast.success(
491
+ taskCount > 1 ? `${taskCount} tasks completed` : 'Task completed',
492
+ {
493
+ description:
494
+ taskCount > 1
495
+ ? `Tasks marked as ${targetCompletionList.status === 'done' ? 'done' : 'closed'}`
496
+ : `Task marked as ${targetCompletionList.status === 'done' ? 'done' : 'closed'} and moved to ${targetCompletionList.name}`,
497
+ }
498
+ );
499
+ } catch (error) {
500
+ // Rollback on error
501
+ if (previousTasks) {
502
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
503
+ }
504
+ console.error('Failed to move task to completion:', error);
505
+ toast.error('Error', {
506
+ description: 'Failed to complete task. Please try again.',
507
+ });
508
+ } finally {
509
+ setIsLoading(false);
510
+ setMenuOpen(false);
511
+ }
512
+ }, [
513
+ targetCompletionList,
514
+ onUpdate,
515
+ task?.id,
516
+ setIsLoading,
517
+ setMenuOpen,
518
+ isMultiSelectMode,
519
+ selectedTasks,
520
+ queryClient,
521
+ boardId,
522
+ task,
523
+ broadcast,
524
+ getWorkspaceId,
525
+ markLocallyMutatedTask,
526
+ rollbackTaskIds,
527
+ ]);
528
+
529
+ const handleMoveToClose = useCallback(async () => {
530
+ if (!task || !targetClosedList || !onUpdate) return;
531
+
532
+ setIsLoading(true);
533
+
534
+ // Check if we're in multi-select mode and have multiple tasks selected
535
+ const shouldBulkMove =
536
+ isMultiSelectMode &&
537
+ selectedTasks &&
538
+ selectedTasks.size > 1 &&
539
+ selectedTasks.has(task.id);
540
+ const tasksToMove = shouldBulkMove ? Array.from(selectedTasks) : [task.id];
541
+
542
+ // Store previous state for rollback
543
+ const previousTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
544
+
545
+ try {
546
+ if (isPersonalExternalTask(task) && !shouldBulkMove) {
547
+ await moveExternalTaskToPersonalList({
548
+ boardId,
549
+ markLocallyMutatedTask,
550
+ queryClient,
551
+ task,
552
+ targetList: targetClosedList,
553
+ sourceStatus: 'closed',
554
+ placementPosition: 'top',
555
+ });
556
+
557
+ toast.success('Success', {
558
+ description: 'Task marked as closed',
559
+ });
560
+ return;
561
+ }
562
+
563
+ // Optimistic update: move tasks to closed list and set closed_at
564
+ queryClient.setQueryData(
565
+ ['tasks', boardId],
566
+ (old: Task[] | undefined) => {
567
+ if (!old) return old;
568
+ const now = new Date().toISOString();
569
+ return old.map((t) =>
570
+ tasksToMove.includes(t.id)
571
+ ? markLocallyMutatedTask({
572
+ ...t,
573
+ list_id: targetClosedList.id,
574
+ closed_at: now,
575
+ } as Task)
576
+ : t
577
+ );
578
+ }
579
+ );
580
+
581
+ // Move tasks one by one to ensure triggers fire for each task
582
+ let successCount = 0;
583
+ const workspaceId = await getWorkspaceId();
584
+ const failedTaskIds: string[] = [];
585
+ const previousTaskMap = new Map(
586
+ previousTasks?.map((item) => [item.id, item]) ?? []
587
+ );
588
+
589
+ for (const taskId of tasksToMove) {
590
+ try {
591
+ const { task: movedTask } = await updateWorkspaceTask(
592
+ workspaceId,
593
+ taskId,
594
+ {
595
+ list_id: targetClosedList.id,
596
+ }
597
+ );
598
+ broadcast?.('task:upsert', {
599
+ task: {
600
+ id: taskId,
601
+ list_id: targetClosedList.id,
602
+ completed_at: movedTask?.completed_at,
603
+ closed_at: movedTask?.closed_at,
604
+ },
605
+ });
606
+ successCount++;
607
+ } catch (error) {
608
+ failedTaskIds.push(taskId);
609
+ rollbackTaskIds(previousTasks, [taskId]);
610
+ const previousTask = previousTaskMap.get(taskId);
611
+ if (previousTask) {
612
+ broadcast?.('task:upsert', { task: previousTask });
613
+ }
614
+ console.error(`Failed to move task ${taskId}:`, error);
615
+ }
616
+ }
617
+ if (successCount === 0) throw new Error('Failed to move any tasks');
618
+
619
+ if (failedTaskIds.length > 0) {
620
+ toast.warning('Partial close update', {
621
+ description: `${successCount}/${tasksToMove.length} tasks updated`,
622
+ });
623
+ return;
624
+ }
625
+
626
+ const taskCount = successCount;
627
+ toast.success('Success', {
628
+ description:
629
+ taskCount > 1
630
+ ? `${taskCount} tasks marked as closed`
631
+ : 'Task marked as closed',
632
+ });
633
+ } catch (error) {
634
+ // Rollback on error
635
+ if (previousTasks) {
636
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
637
+ }
638
+ console.error('Failed to move task to closed:', error);
639
+ toast.error('Error', {
640
+ description: 'Failed to close task. Please try again.',
641
+ });
642
+ } finally {
643
+ setIsLoading(false);
644
+ setMenuOpen(false);
645
+ }
646
+ }, [
647
+ targetClosedList,
648
+ onUpdate,
649
+ task?.id,
650
+ setIsLoading,
651
+ setMenuOpen,
652
+ isMultiSelectMode,
653
+ selectedTasks,
654
+ queryClient,
655
+ boardId,
656
+ task,
657
+ broadcast,
658
+ getWorkspaceId,
659
+ markLocallyMutatedTask,
660
+ rollbackTaskIds,
661
+ ]);
662
+
663
+ const handleDelete = useCallback(async () => {
664
+ if (!task) return;
665
+ setIsLoading(true);
666
+
667
+ // Check if we're in multi-select mode and have multiple tasks selected
668
+ const shouldBulkDelete =
669
+ isMultiSelectMode &&
670
+ selectedTasks &&
671
+ selectedTasks.size > 1 &&
672
+ selectedTasks.has(task.id);
673
+ const tasksToDelete = shouldBulkDelete
674
+ ? Array.from(selectedTasks)
675
+ : [task.id];
676
+
677
+ const now = new Date().toISOString();
678
+
679
+ // Store previous state for rollback
680
+ const previousTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
681
+ const previousDeletedTasks = queryClient.getQueryData<Task[]>([
682
+ 'deleted-tasks',
683
+ boardId,
684
+ ]);
685
+
686
+ // Optimistic update: remove tasks from cache
687
+ queryClient.setQueryData(['tasks', boardId], (old: Task[] | undefined) => {
688
+ if (!old) return old;
689
+ return old.filter((t) => !tasksToDelete.includes(t.id));
690
+ });
691
+
692
+ // Optimistic update: add tasks to recycle bin cache
693
+ if (previousTasks?.length) {
694
+ const deletedTaskRecords = tasksToDelete
695
+ .map((id) => previousTasks.find((t) => t.id === id))
696
+ .filter((t): t is Task => Boolean(t))
697
+ .map((t) => ({ ...t, deleted_at: now }));
698
+
699
+ if (deletedTaskRecords.length) {
700
+ queryClient.setQueryData(
701
+ ['deleted-tasks', boardId],
702
+ (old: Task[] | undefined) => {
703
+ const existingIds = new Set(old?.map((t) => t.id) ?? []);
704
+ const toAdd = deletedTaskRecords.filter(
705
+ (t) => !existingIds.has(t.id)
706
+ );
707
+ if (!old) return toAdd;
708
+ return [...toAdd, ...old];
709
+ }
710
+ );
711
+ }
712
+ }
713
+
714
+ try {
715
+ let successCount = 0;
716
+ const workspaceId = await getWorkspaceId();
717
+ const failedTaskIds: string[] = [];
718
+ const previousTaskMap = new Map(
719
+ previousTasks?.map((item) => [item.id, item]) ?? []
720
+ );
721
+
722
+ for (const tid of tasksToDelete) {
723
+ try {
724
+ await updateWorkspaceTask(workspaceId, tid, {
725
+ deleted: true,
726
+ });
727
+ broadcast?.('task:delete', { taskId: tid });
728
+ successCount++;
729
+ } catch (error) {
730
+ failedTaskIds.push(tid);
731
+ restoreDeletedTaskIds(previousTasks, previousDeletedTasks, [tid]);
732
+ const previousTask = previousTaskMap.get(tid);
733
+ if (previousTask) {
734
+ broadcast?.('task:upsert', { task: previousTask });
735
+ }
736
+ console.error(`Failed to delete task ${tid}:`, error);
737
+ }
738
+ }
739
+
740
+ if (successCount === 0) throw new Error('Failed to delete any tasks');
741
+
742
+ if (failedTaskIds.length > 0) {
743
+ toast.warning('Partial delete update', {
744
+ description: `${successCount}/${tasksToDelete.length} tasks deleted`,
745
+ });
746
+ return;
747
+ }
748
+
749
+ const taskCount = tasksToDelete.length;
750
+ toast.success('Success', {
751
+ description:
752
+ taskCount > 1
753
+ ? `${taskCount} tasks deleted`
754
+ : 'Task deleted successfully',
755
+ });
756
+
757
+ setDeleteDialogOpen?.(false);
758
+ } catch (error) {
759
+ // Rollback on error
760
+ if (previousTasks) {
761
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
762
+ }
763
+ if (previousDeletedTasks) {
764
+ queryClient.setQueryData(
765
+ ['deleted-tasks', boardId],
766
+ previousDeletedTasks
767
+ );
768
+ }
769
+ console.error('Failed to delete task(s):', error);
770
+ toast.error('Error', {
771
+ description: 'Failed to delete task(s). Please try again.',
772
+ });
773
+ } finally {
774
+ setIsLoading(false);
775
+ }
776
+ }, [
777
+ task?.id,
778
+ setIsLoading,
779
+ setDeleteDialogOpen,
780
+ isMultiSelectMode,
781
+ selectedTasks,
782
+ queryClient,
783
+ boardId,
784
+ task,
785
+ broadcast,
786
+ getWorkspaceId,
787
+ restoreDeletedTaskIds,
788
+ ]);
789
+
790
+ const handleRemoveAllAssignees = useCallback(async () => {
791
+ if (!task?.assignees || task.assignees.length === 0) return;
792
+
793
+ setIsLoading(true);
794
+
795
+ await queryClient.cancelQueries({ queryKey: ['tasks', boardId] });
796
+ const previousTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
797
+
798
+ queryClient.setQueryData<Task[] | undefined>(
799
+ ['tasks', boardId],
800
+ (old: Task[] | undefined) => {
801
+ if (!old) return old;
802
+ return old.map((t) => {
803
+ if (t.id === task.id) {
804
+ return { ...t, assignees: [] };
805
+ }
806
+ return t;
807
+ });
808
+ }
809
+ );
810
+
811
+ try {
812
+ const workspaceId = await getWorkspaceId();
813
+
814
+ await updateWorkspaceTask(workspaceId, task.id, {
815
+ assignee_ids: [],
816
+ });
817
+
818
+ broadcast?.('task:relations-changed', { taskId: task.id });
819
+
820
+ toast.success('Success', {
821
+ description: 'All assignees removed from task',
822
+ });
823
+ } catch (error) {
824
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
825
+ console.error('Failed to remove all assignees:', error);
826
+ toast.error('Error', {
827
+ description: 'Failed to remove assignees. Please try again.',
828
+ });
829
+ } finally {
830
+ setIsLoading(false);
831
+ setMenuOpen(false);
832
+ }
833
+ }, [
834
+ task?.id,
835
+ task?.assignees,
836
+ boardId,
837
+ queryClient,
838
+ setIsLoading,
839
+ setMenuOpen,
840
+ task,
841
+ broadcast,
842
+ getWorkspaceId,
843
+ ]);
844
+
845
+ const handleRemoveAssignee = useCallback(
846
+ async (assigneeId: string) => {
847
+ if (!task) return;
848
+ setIsLoading(true);
849
+
850
+ await queryClient.cancelQueries({ queryKey: ['tasks', boardId] });
851
+ const previousTasks = queryClient.getQueryData<Task[]>([
852
+ 'tasks',
853
+ boardId,
854
+ ]);
855
+
856
+ queryClient.setQueryData<Task[] | undefined>(
857
+ ['tasks', boardId],
858
+ (old: Task[] | undefined) => {
859
+ if (!old) return old;
860
+ return old.map((t) => {
861
+ if (t.id === task.id) {
862
+ return {
863
+ ...t,
864
+ assignees:
865
+ t.assignees?.filter((a) => a.id !== assigneeId) || [],
866
+ };
867
+ }
868
+ return t;
869
+ });
870
+ }
871
+ );
872
+
873
+ try {
874
+ const newIds =
875
+ previousTasks
876
+ ?.find((t) => t.id === task.id)
877
+ ?.assignees?.map((a) => a.id)
878
+ .filter(Boolean) ??
879
+ task.assignees?.map((a) => a.id).filter(Boolean) ??
880
+ [];
881
+ const filteredIds = newIds.filter((id) => id !== assigneeId);
882
+
883
+ const workspaceId = await getWorkspaceId();
884
+
885
+ await updateWorkspaceTask(workspaceId, task.id, {
886
+ assignee_ids: filteredIds,
887
+ });
888
+
889
+ const assignee = task.assignees?.find((a) => a.id === assigneeId);
890
+ toast.success('Success', {
891
+ description: `${assignee?.display_name || assignee?.email || 'Assignee'} removed from task`,
892
+ });
893
+ broadcast?.('task:relations-changed', { taskId: task.id });
894
+ } catch (error) {
895
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
896
+ console.error('Failed to remove assignee:', error);
897
+ toast.error('Error', {
898
+ description: 'Failed to remove assignee. Please try again.',
899
+ });
900
+ } finally {
901
+ setIsLoading(false);
902
+ setMenuOpen(false);
903
+ }
904
+ },
905
+ [
906
+ task,
907
+ boardId,
908
+ queryClient,
909
+ setIsLoading,
910
+ setMenuOpen,
911
+ broadcast,
912
+ getWorkspaceId,
913
+ ]
914
+ );
915
+
916
+ const handleMoveToList = useCallback(
917
+ async (targetListId: string) => {
918
+ if (!task) return;
919
+ if (targetListId === task.list_id) {
920
+ setMenuOpen(false);
921
+ return;
922
+ }
923
+
924
+ setIsLoading(true);
925
+
926
+ // Check if we're in multi-select mode and have multiple tasks selected
927
+ const shouldBulkMove =
928
+ isMultiSelectMode &&
929
+ selectedTasks &&
930
+ selectedTasks.size > 1 &&
931
+ selectedTasks.has(task.id);
932
+ const tasksToMove = shouldBulkMove
933
+ ? Array.from(selectedTasks)
934
+ : [task.id];
935
+
936
+ // Store previous state for rollback
937
+ const previousTasks = queryClient.getQueryData<Task[]>([
938
+ 'tasks',
939
+ boardId,
940
+ ]);
941
+
942
+ // Determine if target list represents resolved workflow state
943
+ const targetList = availableLists.find(
944
+ (list) => list.id === targetListId
945
+ );
946
+ const isTargetCompletedList = isTaskBoardCompletedStatus(
947
+ targetList?.status
948
+ );
949
+ const isTargetTerminalList = isTaskBoardTerminalStatus(
950
+ targetList?.status
951
+ );
952
+ const now = new Date().toISOString();
953
+ const previousTaskMap = new Map(
954
+ previousTasks?.map((item) => [item.id, item]) ?? []
955
+ );
956
+ const selectedTaskById = new Map<string, Task>();
957
+
958
+ for (const taskId of tasksToMove) {
959
+ const selectedTask = previousTaskMap.get(taskId) ?? task;
960
+ if (selectedTask.id === taskId) {
961
+ selectedTaskById.set(taskId, selectedTask);
962
+ }
963
+ }
964
+
965
+ const externalTaskById = new Map(
966
+ targetList
967
+ ? [...selectedTaskById.values()]
968
+ .filter((selectedTask) => isPersonalExternalTask(selectedTask))
969
+ .map((selectedTask) => [selectedTask.id, selectedTask] as const)
970
+ : []
971
+ );
972
+ const localTaskIdsToMove = tasksToMove.filter(
973
+ (taskId) => !externalTaskById.has(taskId)
974
+ );
975
+
976
+ if (isPersonalExternalTask(task) && !shouldBulkMove && targetList) {
977
+ try {
978
+ await moveExternalTaskToPersonalList({
979
+ boardId,
980
+ markLocallyMutatedTask,
981
+ queryClient,
982
+ task,
983
+ targetList,
984
+ ...getExternalMoveOptions(targetList),
985
+ });
986
+
987
+ toast.success('Success', {
988
+ description: `Task moved to ${targetList.name || 'selected list'}`,
989
+ });
990
+ } catch (error) {
991
+ console.error('Failed to move external task:', error);
992
+ toast.error('Error', {
993
+ description: 'Failed to move task. Please try again.',
994
+ });
995
+ } finally {
996
+ setIsLoading(false);
997
+ setMenuOpen(false);
998
+ }
999
+ return;
1000
+ }
1001
+
1002
+ try {
1003
+ // Optimistic update: move tasks to target list
1004
+ queryClient.setQueryData(
1005
+ ['tasks', boardId],
1006
+ (old: Task[] | undefined) => {
1007
+ if (!old) return old;
1008
+ return old.map((t) => {
1009
+ if (localTaskIdsToMove.includes(t.id)) {
1010
+ const currentList = availableLists.find(
1011
+ (list) => list.id === t.list_id
1012
+ );
1013
+ const wasInCompletionList = isTaskBoardResolvedStatus(
1014
+ currentList?.status
1015
+ );
1016
+ const isMovingToReview = targetList?.status === 'review';
1017
+
1018
+ return markLocallyMutatedTask({
1019
+ ...t,
1020
+ list_id: targetListId,
1021
+ completed: isTargetCompletedList,
1022
+ closed_at: isTargetTerminalList
1023
+ ? (t.closed_at ?? now)
1024
+ : wasInCompletionList || isMovingToReview
1025
+ ? null
1026
+ : t.closed_at,
1027
+ completed_at: isTargetCompletedList
1028
+ ? (t.completed_at ?? now)
1029
+ : wasInCompletionList || isMovingToReview
1030
+ ? null
1031
+ : t.completed_at,
1032
+ } as Task);
1033
+ }
1034
+ return t;
1035
+ });
1036
+ }
1037
+ );
1038
+
1039
+ // Move tasks one by one to ensure triggers fire for each task
1040
+ let successCount = 0;
1041
+ const failedTaskIds: string[] = [];
1042
+ for (const taskId of tasksToMove) {
1043
+ try {
1044
+ const externalTask = externalTaskById.get(taskId);
1045
+
1046
+ if (externalTask && targetList) {
1047
+ await moveExternalTaskToPersonalList({
1048
+ boardId,
1049
+ markLocallyMutatedTask,
1050
+ queryClient,
1051
+ task: externalTask,
1052
+ targetList,
1053
+ ...getExternalMoveOptions(targetList),
1054
+ });
1055
+ broadcast?.('task:upsert', {
1056
+ task: {
1057
+ id: taskId,
1058
+ list_id: targetListId,
1059
+ },
1060
+ });
1061
+ successCount++;
1062
+ continue;
1063
+ }
1064
+
1065
+ const selectedTask = selectedTaskById.get(taskId);
1066
+ const taskWorkspaceId =
1067
+ await resolveWorkspaceIdForTask(selectedTask);
1068
+ const { task: movedTask } = await updateWorkspaceTask(
1069
+ taskWorkspaceId,
1070
+ taskId,
1071
+ {
1072
+ list_id: targetListId,
1073
+ }
1074
+ );
1075
+ broadcast?.('task:upsert', {
1076
+ task: {
1077
+ id: taskId,
1078
+ list_id: targetListId,
1079
+ completed_at: movedTask?.completed_at,
1080
+ closed_at: movedTask?.closed_at,
1081
+ },
1082
+ });
1083
+ successCount++;
1084
+ } catch (error) {
1085
+ failedTaskIds.push(taskId);
1086
+ rollbackTaskIds(previousTasks, [taskId]);
1087
+ const previousTask = previousTaskMap.get(taskId);
1088
+ if (previousTask) {
1089
+ broadcast?.('task:upsert', { task: previousTask });
1090
+ }
1091
+ console.error(`Failed to move task ${taskId}:`, error);
1092
+ }
1093
+ }
1094
+ if (successCount === 0) throw new Error('Failed to move any tasks');
1095
+
1096
+ if (failedTaskIds.length > 0) {
1097
+ toast.warning('Partial move update', {
1098
+ description: `${successCount}/${tasksToMove.length} tasks updated`,
1099
+ });
1100
+ return;
1101
+ }
1102
+
1103
+ const taskCount = successCount;
1104
+ toast.success('Success', {
1105
+ description:
1106
+ taskCount > 1
1107
+ ? `${taskCount} tasks moved to ${targetList?.name || 'selected list'}`
1108
+ : `Task moved to ${targetList?.name || 'selected list'}`,
1109
+ });
1110
+ } catch (error) {
1111
+ // Rollback on error
1112
+ if (previousTasks) {
1113
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1114
+ }
1115
+ console.error('Failed to move task:', error);
1116
+ toast.error('Error', {
1117
+ description: 'Failed to move task. Please try again.',
1118
+ });
1119
+ } finally {
1120
+ setIsLoading(false);
1121
+ setMenuOpen(false);
1122
+ }
1123
+ },
1124
+ [
1125
+ task?.id,
1126
+ task?.list_id,
1127
+ availableLists,
1128
+ setIsLoading,
1129
+ setMenuOpen,
1130
+ isMultiSelectMode,
1131
+ selectedTasks,
1132
+ queryClient,
1133
+ boardId,
1134
+ task,
1135
+ broadcast,
1136
+ getExternalMoveOptions,
1137
+ markLocallyMutatedTask,
1138
+ resolveWorkspaceIdForTask,
1139
+ rollbackTaskIds,
1140
+ ]
1141
+ );
1142
+
1143
+ const handleDueDateChange = useCallback(
1144
+ async (days: number | null) => {
1145
+ if (!task) return;
1146
+ let newDate: string | null = null;
1147
+ if (days !== null) {
1148
+ const target = addDays(new Date(), days);
1149
+ target.setHours(23, 59, 59, 999);
1150
+ newDate = target.toISOString();
1151
+ }
1152
+
1153
+ // Check if we're in multi-select mode and have multiple tasks selected
1154
+ const shouldBulkUpdate =
1155
+ isMultiSelectMode &&
1156
+ selectedTasks &&
1157
+ selectedTasks.size > 1 &&
1158
+ selectedTasks.has(task.id);
1159
+ const tasksToUpdate = shouldBulkUpdate
1160
+ ? Array.from(selectedTasks)
1161
+ : [task.id];
1162
+
1163
+ setIsLoading(true);
1164
+
1165
+ // Store previous state for rollback
1166
+ const previousTasks = queryClient.getQueryData<Task[]>([
1167
+ 'tasks',
1168
+ boardId,
1169
+ ]);
1170
+
1171
+ try {
1172
+ // Optimistic update
1173
+ queryClient.setQueryData(
1174
+ ['tasks', boardId],
1175
+ (old: Task[] | undefined) => {
1176
+ if (!old) return old;
1177
+ return old.map((t) =>
1178
+ tasksToUpdate.includes(t.id) ? { ...t, end_date: newDate } : t
1179
+ );
1180
+ }
1181
+ );
1182
+
1183
+ const succeededTaskIds: string[] = [];
1184
+ const workspaceId = await getWorkspaceId();
1185
+
1186
+ for (const taskId of tasksToUpdate) {
1187
+ try {
1188
+ await updateWorkspaceTask(workspaceId, taskId, {
1189
+ end_date: newDate,
1190
+ });
1191
+ succeededTaskIds.push(taskId);
1192
+ } catch (error) {
1193
+ console.error(
1194
+ `Failed to update due date for task ${taskId}:`,
1195
+ error
1196
+ );
1197
+ }
1198
+ }
1199
+
1200
+ if (succeededTaskIds.length === 0) {
1201
+ throw new Error('Failed to update any tasks');
1202
+ }
1203
+
1204
+ const failedTaskIds = tasksToUpdate.filter(
1205
+ (taskId) => !succeededTaskIds.includes(taskId)
1206
+ );
1207
+
1208
+ if (failedTaskIds.length > 0 && previousTasks) {
1209
+ const previousTaskMap = new Map(previousTasks.map((t) => [t.id, t]));
1210
+ queryClient.setQueryData(
1211
+ ['tasks', boardId],
1212
+ (current: Task[] | undefined) => {
1213
+ if (!current) return current;
1214
+ return current.map((task) => {
1215
+ if (!failedTaskIds.includes(task.id)) {
1216
+ return task;
1217
+ }
1218
+
1219
+ return previousTaskMap.get(task.id) || task;
1220
+ });
1221
+ }
1222
+ );
1223
+ }
1224
+
1225
+ for (const tid of succeededTaskIds) {
1226
+ broadcast?.('task:upsert', {
1227
+ task: { id: tid, end_date: newDate },
1228
+ });
1229
+ }
1230
+
1231
+ if (failedTaskIds.length > 0) {
1232
+ toast.warning('Partial due date update', {
1233
+ description: `${succeededTaskIds.length}/${tasksToUpdate.length} tasks updated`,
1234
+ });
1235
+ } else {
1236
+ const taskCount = tasksToUpdate.length;
1237
+ toast.success('Due date updated', {
1238
+ description:
1239
+ taskCount > 1
1240
+ ? `${taskCount} tasks updated`
1241
+ : newDate
1242
+ ? 'Due date set successfully'
1243
+ : 'Due date removed',
1244
+ });
1245
+ }
1246
+ } catch (error) {
1247
+ console.error('Failed to update due date:', error);
1248
+ // Rollback on error
1249
+ if (previousTasks) {
1250
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1251
+ }
1252
+ toast.error('Error', {
1253
+ description: 'Failed to update due date. Please try again.',
1254
+ });
1255
+ } finally {
1256
+ setIsLoading(false);
1257
+ }
1258
+ },
1259
+ [
1260
+ task?.id,
1261
+ setIsLoading,
1262
+ getWorkspaceId,
1263
+ isMultiSelectMode,
1264
+ selectedTasks,
1265
+ queryClient,
1266
+ boardId,
1267
+ task,
1268
+ broadcast,
1269
+ ]
1270
+ );
1271
+
1272
+ const handlePriorityChange = useCallback(
1273
+ async (newPriority: TaskPriority | null) => {
1274
+ if (!task) return;
1275
+ if (newPriority === task.priority && !isMultiSelectMode) return;
1276
+
1277
+ // Check if we're in multi-select mode and have multiple tasks selected
1278
+ const shouldBulkUpdate =
1279
+ isMultiSelectMode &&
1280
+ selectedTasks &&
1281
+ selectedTasks.size > 1 &&
1282
+ selectedTasks.has(task.id);
1283
+ const tasksToUpdate = shouldBulkUpdate
1284
+ ? Array.from(selectedTasks)
1285
+ : [task.id];
1286
+
1287
+ console.log('🎯 handlePriorityChange called:', {
1288
+ taskId: task.id,
1289
+ newPriority,
1290
+ isMultiSelectMode,
1291
+ selectedTasksSize: selectedTasks?.size,
1292
+ selectedTasksArray: Array.from(selectedTasks || []),
1293
+ shouldBulkUpdate,
1294
+ tasksToUpdate,
1295
+ tasksToUpdateCount: tasksToUpdate.length,
1296
+ });
1297
+
1298
+ setIsLoading(true);
1299
+
1300
+ // Store previous state for rollback
1301
+ const previousTasks = queryClient.getQueryData<Task[]>([
1302
+ 'tasks',
1303
+ boardId,
1304
+ ]);
1305
+
1306
+ try {
1307
+ // Optimistic update
1308
+ queryClient.setQueryData(
1309
+ ['tasks', boardId],
1310
+ (old: Task[] | undefined) => {
1311
+ if (!old) return old;
1312
+ return old.map((t) =>
1313
+ tasksToUpdate.includes(t.id) ? { ...t, priority: newPriority } : t
1314
+ );
1315
+ }
1316
+ );
1317
+
1318
+ const succeededTaskIds: string[] = [];
1319
+ const workspaceId = await getWorkspaceId();
1320
+
1321
+ console.log('🔄 Executing sequential API updates:', {
1322
+ tasksToUpdate,
1323
+ count: tasksToUpdate.length,
1324
+ priority: newPriority,
1325
+ });
1326
+
1327
+ for (const taskId of tasksToUpdate) {
1328
+ try {
1329
+ await updateWorkspaceTask(workspaceId, taskId, {
1330
+ priority: newPriority,
1331
+ });
1332
+ succeededTaskIds.push(taskId);
1333
+ } catch (error) {
1334
+ console.error(
1335
+ `Failed to update priority for task ${taskId}:`,
1336
+ error
1337
+ );
1338
+ }
1339
+ }
1340
+
1341
+ console.log('✅ Sequential update result:', {
1342
+ successCount: succeededTaskIds.length,
1343
+ totalTasks: tasksToUpdate.length,
1344
+ });
1345
+
1346
+ if (succeededTaskIds.length === 0) {
1347
+ throw new Error('Failed to update any tasks');
1348
+ }
1349
+
1350
+ const failedTaskIds = tasksToUpdate.filter(
1351
+ (taskId) => !succeededTaskIds.includes(taskId)
1352
+ );
1353
+
1354
+ if (failedTaskIds.length > 0 && previousTasks) {
1355
+ const previousTaskMap = new Map(previousTasks.map((t) => [t.id, t]));
1356
+ queryClient.setQueryData(
1357
+ ['tasks', boardId],
1358
+ (current: Task[] | undefined) => {
1359
+ if (!current) return current;
1360
+ return current.map((task) => {
1361
+ if (!failedTaskIds.includes(task.id)) {
1362
+ return task;
1363
+ }
1364
+
1365
+ return previousTaskMap.get(task.id) || task;
1366
+ });
1367
+ }
1368
+ );
1369
+ }
1370
+
1371
+ for (const tid of succeededTaskIds) {
1372
+ broadcast?.('task:upsert', {
1373
+ task: { id: tid, priority: newPriority },
1374
+ });
1375
+ }
1376
+
1377
+ if (failedTaskIds.length > 0) {
1378
+ toast.warning('Partial priority update', {
1379
+ description: `${succeededTaskIds.length}/${tasksToUpdate.length} tasks updated`,
1380
+ });
1381
+ } else {
1382
+ const taskCount = tasksToUpdate.length;
1383
+ toast.success('Priority updated', {
1384
+ description:
1385
+ taskCount > 1
1386
+ ? `${taskCount} tasks updated`
1387
+ : newPriority
1388
+ ? 'Priority changed'
1389
+ : 'Priority cleared',
1390
+ });
1391
+ }
1392
+
1393
+ // Don't auto-clear selection - let user manually clear with "Clear" button
1394
+ } catch (error) {
1395
+ console.error('❌ Failed to update priority:', error);
1396
+ // Rollback on error
1397
+ if (previousTasks) {
1398
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1399
+ }
1400
+ toast.error('Error', {
1401
+ description: 'Failed to update priority. Please try again.',
1402
+ });
1403
+ } finally {
1404
+ setIsLoading(false);
1405
+ }
1406
+ },
1407
+ [
1408
+ task?.id,
1409
+ task?.priority,
1410
+ setIsLoading,
1411
+ getWorkspaceId,
1412
+ isMultiSelectMode,
1413
+ selectedTasks,
1414
+ queryClient,
1415
+ boardId,
1416
+ task,
1417
+ broadcast,
1418
+ ]
1419
+ );
1420
+
1421
+ const updateEstimationPoints = useCallback(
1422
+ async (points: number | null) => {
1423
+ if (!task) return;
1424
+ if (points === task.estimation_points && !isMultiSelectMode) return;
1425
+
1426
+ // Check if we're in multi-select mode and have multiple tasks selected
1427
+ const shouldBulkUpdate =
1428
+ isMultiSelectMode &&
1429
+ selectedTasks &&
1430
+ selectedTasks.size > 1 &&
1431
+ selectedTasks.has(task.id);
1432
+
1433
+ // Get current tasks from cache to filter out ones that already have the target value
1434
+ const currentTasks = queryClient.getQueryData<Task[]>(['tasks', boardId]);
1435
+
1436
+ // Filter tasks that actually need updating (don't already have the target estimation)
1437
+ const candidateTasks = shouldBulkUpdate
1438
+ ? Array.from(selectedTasks)
1439
+ : [task.id];
1440
+
1441
+ const tasksToUpdate = currentTasks
1442
+ ? candidateTasks.filter((taskId) => {
1443
+ const taskData = currentTasks.find((t) => t.id === taskId);
1444
+ return taskData?.estimation_points !== points;
1445
+ })
1446
+ : candidateTasks;
1447
+
1448
+ // If no tasks actually need updating, skip
1449
+ if (tasksToUpdate.length === 0) {
1450
+ return;
1451
+ }
1452
+
1453
+ setEstimationSaving?.(true);
1454
+
1455
+ // Store previous state for rollback
1456
+ const previousTasks = currentTasks;
1457
+ const rollbackFailedTasks = (failedIds: string[]) => {
1458
+ if (!previousTasks || failedIds.length === 0) return;
1459
+ const previousTaskMap = new Map(previousTasks.map((t) => [t.id, t]));
1460
+ queryClient.setQueryData<Task[]>(['tasks', boardId], (current) => {
1461
+ if (!current) return current;
1462
+ return current.map((task: Task) =>
1463
+ failedIds.includes(task.id)
1464
+ ? previousTaskMap.get(task.id) || task
1465
+ : task
1466
+ );
1467
+ });
1468
+ };
1469
+
1470
+ try {
1471
+ // Optimistic update
1472
+ queryClient.setQueryData(
1473
+ ['tasks', boardId],
1474
+ (old: Task[] | undefined) => {
1475
+ if (!old) return old;
1476
+ return old.map((t) =>
1477
+ tasksToUpdate.includes(t.id)
1478
+ ? { ...t, estimation_points: points }
1479
+ : t
1480
+ );
1481
+ }
1482
+ );
1483
+
1484
+ const succeededIds: string[] = [];
1485
+ const workspaceId = await getWorkspaceId();
1486
+
1487
+ for (const taskId of tasksToUpdate) {
1488
+ try {
1489
+ await updateWorkspaceTask(workspaceId, taskId, {
1490
+ estimation_points: points,
1491
+ });
1492
+ succeededIds.push(taskId);
1493
+ } catch (error) {
1494
+ console.error(
1495
+ `Failed to update estimation for task ${taskId}:`,
1496
+ error
1497
+ );
1498
+ }
1499
+ }
1500
+
1501
+ if (succeededIds.length === 0) {
1502
+ throw new Error('Failed to update any tasks');
1503
+ }
1504
+
1505
+ const failedIds = tasksToUpdate.filter(
1506
+ (taskId) => !succeededIds.includes(taskId)
1507
+ );
1508
+
1509
+ if (failedIds.length > 0) {
1510
+ rollbackFailedTasks(failedIds);
1511
+
1512
+ for (const tid of succeededIds) {
1513
+ broadcast?.('task:upsert', {
1514
+ task: { id: tid, estimation_points: points },
1515
+ });
1516
+ }
1517
+
1518
+ toast.warning('Partial estimation update', {
1519
+ description: `${succeededIds.length}/${tasksToUpdate.length} tasks updated`,
1520
+ });
1521
+
1522
+ return;
1523
+ }
1524
+
1525
+ for (const tid of succeededIds) {
1526
+ broadcast?.('task:upsert', {
1527
+ task: { id: tid, estimation_points: points },
1528
+ });
1529
+ }
1530
+
1531
+ const taskCount = succeededIds.length;
1532
+ toast.success('Estimation updated', {
1533
+ description:
1534
+ taskCount > 1
1535
+ ? `${taskCount} tasks updated`
1536
+ : 'Estimation points updated successfully',
1537
+ });
1538
+
1539
+ return;
1540
+ } catch (e: any) {
1541
+ console.error('Failed to update estimation', e);
1542
+ // Rollback on error
1543
+ if (previousTasks) {
1544
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1545
+ }
1546
+ toast.error('Failed to update estimation', {
1547
+ description: e.message || 'Please try again',
1548
+ });
1549
+ } finally {
1550
+ setEstimationSaving?.(false);
1551
+ }
1552
+ },
1553
+ [
1554
+ task?.id,
1555
+ task?.estimation_points,
1556
+ setEstimationSaving,
1557
+ getWorkspaceId,
1558
+ isMultiSelectMode,
1559
+ selectedTasks,
1560
+ queryClient,
1561
+ boardId,
1562
+ task,
1563
+ broadcast,
1564
+ ]
1565
+ );
1566
+
1567
+ const handleCustomDateChange = useCallback(
1568
+ async (date: Date | undefined) => {
1569
+ if (!task) return;
1570
+ let newDate: string | null = null;
1571
+
1572
+ if (date) {
1573
+ const selectedDate = new Date(date);
1574
+
1575
+ if (
1576
+ selectedDate.getHours() === 0 &&
1577
+ selectedDate.getMinutes() === 0 &&
1578
+ selectedDate.getSeconds() === 0 &&
1579
+ selectedDate.getMilliseconds() === 0
1580
+ ) {
1581
+ selectedDate.setHours(23, 59, 59, 999);
1582
+ }
1583
+
1584
+ newDate = selectedDate.toISOString();
1585
+ }
1586
+
1587
+ setIsLoading(true);
1588
+ setCustomDateDialogOpen?.(false); // Close dialog immediately when date is selected
1589
+
1590
+ // Check if we're in multi-select mode with multiple tasks selected
1591
+ const shouldBulkUpdate =
1592
+ isMultiSelectMode &&
1593
+ selectedTasks &&
1594
+ selectedTasks.size > 1 &&
1595
+ selectedTasks.has(task.id);
1596
+
1597
+ if (shouldBulkUpdate && bulkUpdateCustomDueDate) {
1598
+ // Use the centralized bulk update function from useBulkOperations
1599
+ try {
1600
+ await bulkUpdateCustomDueDate(date || null);
1601
+ } catch (error) {
1602
+ console.error('Bulk custom date update failed', error);
1603
+ toast.error('Failed to update due date for selected tasks');
1604
+ } finally {
1605
+ setIsLoading(false);
1606
+ }
1607
+ } else {
1608
+ // Single task update via workspace API
1609
+ const previousTasks = queryClient.getQueryData<Task[]>([
1610
+ 'tasks',
1611
+ boardId,
1612
+ ]);
1613
+
1614
+ try {
1615
+ queryClient.setQueryData(
1616
+ ['tasks', boardId],
1617
+ (old: Task[] | undefined) => {
1618
+ if (!old) {
1619
+ return old;
1620
+ }
1621
+
1622
+ return old.map((item) =>
1623
+ item.id === task.id ? { ...item, end_date: newDate } : item
1624
+ );
1625
+ }
1626
+ );
1627
+
1628
+ const workspaceId = await getWorkspaceId();
1629
+ await updateWorkspaceTask(workspaceId, task.id, {
1630
+ end_date: newDate,
1631
+ });
1632
+
1633
+ broadcast?.('task:upsert', {
1634
+ task: { id: task.id, end_date: newDate },
1635
+ });
1636
+
1637
+ toast.success('Due date updated', {
1638
+ description: newDate
1639
+ ? 'Custom due date set successfully'
1640
+ : 'Due date removed',
1641
+ });
1642
+ } catch (error) {
1643
+ if (previousTasks) {
1644
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1645
+ }
1646
+ console.error('Failed to update due date:', error);
1647
+ toast.error('Failed to update due date. Please try again.');
1648
+ } finally {
1649
+ setIsLoading(false);
1650
+ }
1651
+ }
1652
+ },
1653
+ [
1654
+ task?.id,
1655
+ getWorkspaceId,
1656
+ setIsLoading,
1657
+ setCustomDateDialogOpen,
1658
+ isMultiSelectMode,
1659
+ selectedTasks,
1660
+ bulkUpdateCustomDueDate,
1661
+ task,
1662
+ queryClient,
1663
+ boardId,
1664
+ broadcast,
1665
+ ]
1666
+ );
1667
+
1668
+ const handleToggleAssignee = useCallback(
1669
+ async (assigneeId: string) => {
1670
+ if (!task) return;
1671
+
1672
+ // CRITICAL: Get current task state from cache instead of stale prop
1673
+ // This ensures we read the most up-to-date state after optimistic updates
1674
+ const currentTask = taskId
1675
+ ? ((queryClient.getQueryData(['task', taskId]) as Task | undefined) ??
1676
+ task)
1677
+ : task;
1678
+
1679
+ // Check if we're in multi-select mode with multiple tasks selected
1680
+ const shouldBulkUpdate =
1681
+ isMultiSelectMode &&
1682
+ selectedTasks &&
1683
+ selectedTasks.size > 1 &&
1684
+ selectedTasks.has(currentTask.id);
1685
+
1686
+ const tasksToUpdate = shouldBulkUpdate
1687
+ ? Array.from(selectedTasks)
1688
+ : [currentTask.id];
1689
+
1690
+ setIsLoading(true);
1691
+
1692
+ // Cancel any outgoing refetches
1693
+ await queryClient.cancelQueries({ queryKey: ['tasks', boardId] });
1694
+
1695
+ // Snapshot the previous value BEFORE optimistic update
1696
+ const previousTasks = queryClient.getQueryData(['tasks', boardId]) as
1697
+ | Task[]
1698
+ | undefined;
1699
+
1700
+ // Determine action: remove if ALL selected tasks have the assignee, add otherwise
1701
+ // Use currentTask from cache, not stale task prop
1702
+ let active = currentTask.assignees?.some((a) => a.id === assigneeId);
1703
+
1704
+ if (shouldBulkUpdate && previousTasks) {
1705
+ const selectedTasksData = previousTasks.filter((t) =>
1706
+ selectedTasks?.has(t.id)
1707
+ );
1708
+ // Only mark as active (to remove) if ALL selected tasks have the assignee
1709
+ active = selectedTasksData.every((t) =>
1710
+ t.assignees?.some((a) => a.id === assigneeId)
1711
+ );
1712
+ }
1713
+
1714
+ // Helper to get task from either board cache or individual cache
1715
+ const getTaskState = (taskId: string): Task | undefined => {
1716
+ // First try board cache
1717
+ const fromBoardCache = previousTasks?.find((ct) => ct.id === taskId);
1718
+ if (fromBoardCache) return fromBoardCache;
1719
+
1720
+ // Fallback to individual task cache (for tasks not in board view)
1721
+ if (taskId === currentTask.id) return currentTask;
1722
+
1723
+ return undefined;
1724
+ };
1725
+
1726
+ // Pre-calculate which tasks actually need to change
1727
+ const tasksNeedingAssignee = !active
1728
+ ? tasksToUpdate.filter((taskId) => {
1729
+ const t = getTaskState(taskId);
1730
+ return !t?.assignees?.some((a) => a.id === assigneeId);
1731
+ })
1732
+ : [];
1733
+
1734
+ const tasksToRemoveFrom = active
1735
+ ? tasksToUpdate.filter((taskId) => {
1736
+ const t = getTaskState(taskId);
1737
+ return t?.assignees?.some((a) => a.id === assigneeId);
1738
+ })
1739
+ : [];
1740
+
1741
+ // Get assignee details for optimistic update
1742
+ let assigneeDetails = null;
1743
+ if (!active) {
1744
+ // First try from board cache
1745
+ if (previousTasks) {
1746
+ for (const t of previousTasks) {
1747
+ const found = t.assignees?.find((a) => a.id === assigneeId);
1748
+ if (found) {
1749
+ assigneeDetails = found;
1750
+ break;
1751
+ }
1752
+ }
1753
+ }
1754
+ // Fallback to current task cache
1755
+ if (!assigneeDetails && currentTask.assignees) {
1756
+ assigneeDetails =
1757
+ currentTask.assignees.find((a) => a.id === assigneeId) || null;
1758
+ }
1759
+ }
1760
+
1761
+ // Optimistically update the cache - only update tasks that actually change
1762
+ queryClient.setQueryData(
1763
+ ['tasks', boardId],
1764
+ (old: Task[] | undefined) => {
1765
+ if (!old) return old;
1766
+ return old.map((t) => {
1767
+ if (active && tasksToRemoveFrom.includes(t.id)) {
1768
+ // Remove the assignee
1769
+ return {
1770
+ ...t,
1771
+ assignees:
1772
+ t.assignees?.filter((a) => a.id !== assigneeId) || [],
1773
+ };
1774
+ } else if (!active && tasksNeedingAssignee.includes(t.id)) {
1775
+ // Add the assignee
1776
+ return {
1777
+ ...t,
1778
+ assignees: [
1779
+ ...(t.assignees || []),
1780
+ assigneeDetails || {
1781
+ id: assigneeId,
1782
+ display_name: 'User',
1783
+ email: '',
1784
+ },
1785
+ ],
1786
+ };
1787
+ }
1788
+ return t;
1789
+ });
1790
+ }
1791
+ );
1792
+
1793
+ // CRITICAL: Also update the individual task cache if taskId is provided
1794
+ // This ensures the chip menu's task cache stays in sync with the board cache
1795
+ if (taskId) {
1796
+ queryClient.setQueryData(['task', taskId], (old: Task | undefined) => {
1797
+ if (!old) return old;
1798
+ if (active && tasksToRemoveFrom.includes(taskId)) {
1799
+ // Remove the assignee
1800
+ return {
1801
+ ...old,
1802
+ assignees:
1803
+ old.assignees?.filter((a) => a.id !== assigneeId) || [],
1804
+ };
1805
+ } else if (!active && tasksNeedingAssignee.includes(taskId)) {
1806
+ // Add the assignee
1807
+ return {
1808
+ ...old,
1809
+ assignees: [
1810
+ ...(old.assignees || []),
1811
+ assigneeDetails || {
1812
+ id: assigneeId,
1813
+ display_name: 'User',
1814
+ email: '',
1815
+ },
1816
+ ],
1817
+ };
1818
+ }
1819
+ return old;
1820
+ });
1821
+ }
1822
+
1823
+ try {
1824
+ const succeededTaskIds: string[] = [];
1825
+ const targetTasks = active ? tasksToRemoveFrom : tasksNeedingAssignee;
1826
+
1827
+ const workspaceId = await getWorkspaceId();
1828
+
1829
+ for (const tid of targetTasks) {
1830
+ const current = getTaskState(tid);
1831
+ const existingIds =
1832
+ current?.assignees
1833
+ ?.map((assignee) => assignee.id)
1834
+ .filter(Boolean) ?? [];
1835
+ const newIds = active
1836
+ ? existingIds.filter((id) => id !== assigneeId)
1837
+ : Array.from(new Set([...existingIds, assigneeId]));
1838
+
1839
+ try {
1840
+ await updateWorkspaceTask(workspaceId, tid, {
1841
+ assignee_ids: newIds,
1842
+ });
1843
+ succeededTaskIds.push(tid);
1844
+ } catch (error) {
1845
+ console.error(
1846
+ `Failed to ${active ? 'remove' : 'add'} assignee from task ${tid}:`,
1847
+ error
1848
+ );
1849
+ }
1850
+ }
1851
+
1852
+ if (targetTasks.length > 0 && succeededTaskIds.length === 0) {
1853
+ throw new Error('Failed to update any tasks');
1854
+ }
1855
+
1856
+ for (const tid of succeededTaskIds) {
1857
+ broadcast?.('task:relations-changed', { taskId: tid });
1858
+ }
1859
+
1860
+ const selectedAssignee = task.assignees?.find(
1861
+ (a) => a.id === assigneeId
1862
+ );
1863
+ const assigneeName =
1864
+ selectedAssignee?.display_name ||
1865
+ selectedAssignee?.email ||
1866
+ 'Assignee';
1867
+ toast.success(active ? 'Assignee removed' : 'Assignee added', {
1868
+ description:
1869
+ succeededTaskIds.length > 1
1870
+ ? `${succeededTaskIds.length} tasks updated`
1871
+ : `${assigneeName} ${active ? 'removed' : 'added'} on task`,
1872
+ });
1873
+
1874
+ // Don't auto-clear selection - let user manually clear with "Clear" button
1875
+ } catch (e: any) {
1876
+ // Rollback on error
1877
+ if (previousTasks) {
1878
+ queryClient.setQueryData(['tasks', boardId], previousTasks);
1879
+ }
1880
+ console.error('Failed to toggle assignee:', e);
1881
+ toast.error('Error', {
1882
+ description: 'Failed to update assignee. Please try again.',
1883
+ });
1884
+ } finally {
1885
+ setIsLoading(false);
1886
+ }
1887
+ },
1888
+ [
1889
+ task,
1890
+ taskId,
1891
+ boardId,
1892
+ queryClient,
1893
+ setIsLoading,
1894
+ isMultiSelectMode,
1895
+ selectedTasks,
1896
+ broadcast,
1897
+ getWorkspaceId,
1898
+ ]
1899
+ );
1900
+
1901
+ return {
1902
+ handleArchiveToggle,
1903
+ handleMoveToCompletion,
1904
+ handleMoveToClose,
1905
+ handleDelete,
1906
+ handleRemoveAllAssignees,
1907
+ handleRemoveAssignee,
1908
+ handleMoveToList,
1909
+ handleDueDateChange,
1910
+ handlePriorityChange,
1911
+ updateEstimationPoints,
1912
+ handleCustomDateChange,
1913
+ handleToggleAssignee,
1914
+ };
1915
+ }