create-crm-tmp 1.1.3 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (276) hide show
  1. package/bin/create-crm-tmp.js +56 -35
  2. package/package.json +1 -1
  3. package/template/.prettierignore +2 -0
  4. package/template/README.md +230 -115
  5. package/template/components.json +22 -0
  6. package/template/eslint.config.mjs +13 -0
  7. package/template/exemple-contacts.csv +54 -0
  8. package/template/next.config.ts +41 -1
  9. package/template/package.json +63 -15
  10. package/template/prisma/migrations/20260318095700_init_db/migration.sql +978 -0
  11. package/template/prisma/schema.prisma +311 -67
  12. package/template/src/app/(auth)/invite/[token]/page.tsx +28 -29
  13. package/template/src/app/(auth)/layout.tsx +1 -1
  14. package/template/src/app/(auth)/reset-password/complete/page.tsx +21 -27
  15. package/template/src/app/(auth)/reset-password/page.tsx +14 -10
  16. package/template/src/app/(auth)/reset-password/verify/page.tsx +14 -10
  17. package/template/src/app/(auth)/signin/page.tsx +34 -23
  18. package/template/src/app/(dashboard)/agenda/page.tsx +3655 -2357
  19. package/template/src/app/(dashboard)/automatisation/[id]/page.tsx +10 -7
  20. package/template/src/app/(dashboard)/automatisation/_components/workflow-editor.tsx +609 -338
  21. package/template/src/app/(dashboard)/automatisation/new/page.tsx +11 -8
  22. package/template/src/app/(dashboard)/automatisation/page.tsx +463 -186
  23. package/template/src/app/(dashboard)/closing/page.tsx +517 -469
  24. package/template/src/app/(dashboard)/contacts/[id]/page.tsx +6151 -4210
  25. package/template/src/app/(dashboard)/contacts/companies/[id]/page.tsx +1702 -0
  26. package/template/src/app/(dashboard)/contacts/loading.tsx +13 -0
  27. package/template/src/app/(dashboard)/contacts/page.tsx +4124 -2130
  28. package/template/src/app/(dashboard)/dashboard/page.tsx +119 -105
  29. package/template/src/app/(dashboard)/dev/page.tsx +1291 -0
  30. package/template/src/app/(dashboard)/error.tsx +37 -0
  31. package/template/src/app/(dashboard)/layout.tsx +6 -2
  32. package/template/src/app/(dashboard)/loading.tsx +5 -0
  33. package/template/src/app/(dashboard)/settings/loading.tsx +19 -0
  34. package/template/src/app/(dashboard)/settings/page.tsx +1773 -3362
  35. package/template/src/app/(dashboard)/templates/page.tsx +504 -303
  36. package/template/src/app/(dashboard)/users/list/page.tsx +364 -355
  37. package/template/src/app/(dashboard)/users/page.tsx +279 -310
  38. package/template/src/app/(dashboard)/users/permissions/page.tsx +104 -99
  39. package/template/src/app/(dashboard)/users/roles/page.tsx +169 -140
  40. package/template/src/app/api/agenda/google-events/route.ts +92 -0
  41. package/template/src/app/api/audit-logs/route.ts +1 -1
  42. package/template/src/app/api/auth/check-active/route.ts +3 -2
  43. package/template/src/app/api/auth/google/callback/route.ts +8 -5
  44. package/template/src/app/api/auth/google/disconnect/route.ts +2 -2
  45. package/template/src/app/api/auth/google/route.ts +2 -1
  46. package/template/src/app/api/auth/google/status/route.ts +7 -31
  47. package/template/src/app/api/companies/[id]/activities/route.ts +129 -0
  48. package/template/src/app/api/companies/[id]/route.ts +194 -0
  49. package/template/src/app/api/companies/export/route.ts +206 -0
  50. package/template/src/app/api/companies/route.ts +196 -0
  51. package/template/src/app/api/contact-views/[id]/pin/route.ts +69 -0
  52. package/template/src/app/api/contact-views/[id]/route.ts +197 -0
  53. package/template/src/app/api/contact-views/route.ts +146 -0
  54. package/template/src/app/api/contacts/[id]/files/[fileId]/preview/route.ts +55 -0
  55. package/template/src/app/api/contacts/[id]/files/[fileId]/route.ts +20 -48
  56. package/template/src/app/api/contacts/[id]/files/route.ts +125 -186
  57. package/template/src/app/api/contacts/[id]/interactions/[interactionId]/route.ts +27 -1
  58. package/template/src/app/api/contacts/[id]/interactions/route.ts +45 -8
  59. package/template/src/app/api/contacts/[id]/kyc/route.ts +81 -0
  60. package/template/src/app/api/contacts/[id]/meet/route.ts +55 -29
  61. package/template/src/app/api/contacts/[id]/route.ts +184 -21
  62. package/template/src/app/api/contacts/[id]/send-email/route.ts +33 -11
  63. package/template/src/app/api/contacts/[id]/workflows/run/route.ts +67 -0
  64. package/template/src/app/api/contacts/export/route.ts +22 -31
  65. package/template/src/app/api/contacts/import/route.ts +77 -44
  66. package/template/src/app/api/contacts/import-preview/route.ts +139 -0
  67. package/template/src/app/api/contacts/origins/route.ts +63 -0
  68. package/template/src/app/api/contacts/route.ts +322 -57
  69. package/template/src/app/api/cron/cleanup-editor-images/route.ts +166 -0
  70. package/template/src/app/api/dashboard/stats/route.ts +9 -292
  71. package/template/src/app/api/dashboard/widgets/[id]/route.ts +0 -3
  72. package/template/src/app/api/dashboard/widgets/route.ts +19 -19
  73. package/template/src/app/api/dev/reminders/test/route.ts +114 -0
  74. package/template/src/app/api/editor/upload-image/route.ts +61 -0
  75. package/template/src/app/api/integrations/google-sheet/jobs/[jobId]/route.ts +47 -0
  76. package/template/src/app/api/integrations/google-sheet/jobs/usage/route.ts +50 -0
  77. package/template/src/app/api/integrations/google-sheet/sync/route.ts +28 -542
  78. package/template/src/app/api/invite/complete/route.ts +20 -23
  79. package/template/src/app/api/jobs/google-sheet/process/route.ts +84 -0
  80. package/template/src/app/api/jobs/google-sheet/schedule/route.ts +50 -0
  81. package/template/src/app/api/reminders/clear/route.ts +120 -0
  82. package/template/src/app/api/reminders/clear/undo/route.ts +112 -0
  83. package/template/src/app/api/reminders/route.ts +165 -39
  84. package/template/src/app/api/reminders/state/route.ts +164 -0
  85. package/template/src/app/api/reset-password/complete/route.ts +11 -13
  86. package/template/src/app/api/reset-password/request/route.ts +1 -1
  87. package/template/src/app/api/reset-password/verify/route.ts +1 -1
  88. package/template/src/app/api/send/route.ts +25 -47
  89. package/template/src/app/api/settings/closing-reasons/[id]/route.ts +10 -21
  90. package/template/src/app/api/settings/closing-reasons/route.ts +10 -21
  91. package/template/src/app/api/settings/company/route.ts +19 -26
  92. package/template/src/app/api/settings/google-ads/[id]/route.ts +20 -23
  93. package/template/src/app/api/settings/google-ads/route.ts +34 -23
  94. package/template/src/app/api/settings/google-calendar/calendars/route.ts +97 -0
  95. package/template/src/app/api/settings/google-calendar/route.ts +124 -0
  96. package/template/src/app/api/settings/google-sheet/[id]/route.ts +48 -23
  97. package/template/src/app/api/settings/google-sheet/auto-map/route.ts +56 -32
  98. package/template/src/app/api/settings/google-sheet/preview/route.ts +110 -0
  99. package/template/src/app/api/settings/google-sheet/route.ts +34 -23
  100. package/template/src/app/api/settings/integrations/logs/route.ts +93 -0
  101. package/template/src/app/api/settings/integrations/notifications/route.ts +67 -0
  102. package/template/src/app/api/settings/meta-leads/[id]/route.ts +20 -24
  103. package/template/src/app/api/settings/meta-leads/route.ts +34 -25
  104. package/template/src/app/api/settings/smtp/route.ts +53 -6
  105. package/template/src/app/api/settings/statuses/[id]/route.ts +29 -32
  106. package/template/src/app/api/settings/statuses/route.ts +24 -22
  107. package/template/src/app/api/statuses/route.ts +2 -5
  108. package/template/src/app/api/tasks/[id]/attendees/route.ts +36 -13
  109. package/template/src/app/api/tasks/[id]/route.ts +357 -145
  110. package/template/src/app/api/tasks/meet/route.ts +37 -26
  111. package/template/src/app/api/tasks/route.ts +201 -96
  112. package/template/src/app/api/templates/[id]/route.ts +22 -13
  113. package/template/src/app/api/templates/route.ts +22 -5
  114. package/template/src/app/api/users/[id]/resend-invite/route.ts +95 -0
  115. package/template/src/app/api/users/[id]/route.ts +22 -16
  116. package/template/src/app/api/users/commercials/route.ts +38 -0
  117. package/template/src/app/api/users/for-agenda/route.ts +1 -2
  118. package/template/src/app/api/users/list/route.ts +57 -19
  119. package/template/src/app/api/users/route.ts +89 -34
  120. package/template/src/app/api/webhooks/google-ads/route.ts +40 -1
  121. package/template/src/app/api/webhooks/meta-leads/route.ts +38 -1
  122. package/template/src/app/api/workflows/[id]/route.ts +29 -6
  123. package/template/src/app/api/workflows/process/route.ts +505 -170
  124. package/template/src/app/api/workflows/route.ts +42 -4
  125. package/template/src/app/globals.css +512 -32
  126. package/template/src/app/layout.tsx +28 -9
  127. package/template/src/app/page.tsx +37 -7
  128. package/template/src/components/address-autocomplete.tsx +233 -0
  129. package/template/src/components/config-error-alert.tsx +46 -0
  130. package/template/src/components/contacts/filter-bar.tsx +190 -0
  131. package/template/src/components/contacts/filter-builder.tsx +574 -0
  132. package/template/src/components/contacts/save-view-dialog.tsx +160 -0
  133. package/template/src/components/contacts/views-tab-bar.tsx +449 -0
  134. package/template/src/components/dashboard/activity-chart.tsx +6 -1
  135. package/template/src/components/dashboard/add-widget-dialog.tsx +13 -17
  136. package/template/src/components/dashboard/color-picker.tsx +7 -8
  137. package/template/src/components/dashboard/recent-activity.tsx +2 -5
  138. package/template/src/components/dashboard/stat-card.tsx +1 -3
  139. package/template/src/components/dashboard/status-distribution-chart.tsx +0 -1
  140. package/template/src/components/dashboard/top-contacts-list.tsx +7 -13
  141. package/template/src/components/dashboard/upcoming-tasks-list.tsx +2 -5
  142. package/template/src/components/dashboard/widget-wrapper.tsx +3 -6
  143. package/template/src/components/date-picker.tsx +399 -0
  144. package/template/src/components/editor/upload-editor-image.ts +42 -0
  145. package/template/src/components/editor.tsx +188 -35
  146. package/template/src/components/email-template.tsx +4 -2
  147. package/template/src/components/global-search.tsx +360 -0
  148. package/template/src/components/header.tsx +200 -107
  149. package/template/src/components/inactive-account-guard.tsx +58 -0
  150. package/template/src/components/integration-notifications-listener.tsx +12 -0
  151. package/template/src/components/invitation-email-template.tsx +4 -2
  152. package/template/src/components/lazy-editor.tsx +11 -0
  153. package/template/src/components/meet-cancellation-email-template.tsx +11 -3
  154. package/template/src/components/meet-confirmation-email-template.tsx +10 -3
  155. package/template/src/components/meet-update-email-template.tsx +10 -3
  156. package/template/src/components/page-header.tsx +19 -15
  157. package/template/src/components/protected-page.tsx +94 -0
  158. package/template/src/components/reset-password-email-template.tsx +4 -2
  159. package/template/src/components/settings/integrations/GoogleAdsIntegration.tsx +428 -0
  160. package/template/src/components/settings/integrations/GoogleSheetConfigMonitoringModal.tsx +680 -0
  161. package/template/src/components/settings/integrations/GoogleSheetIntegration.tsx +809 -0
  162. package/template/src/components/settings/integrations/ImportResultDialog.tsx +124 -0
  163. package/template/src/components/settings/integrations/IntegrationLogPanel.tsx +57 -0
  164. package/template/src/components/settings/integrations/IntegrationLogsTable.tsx +186 -0
  165. package/template/src/components/settings/integrations/MetaLeadIntegration.tsx +451 -0
  166. package/template/src/components/sidebar.tsx +117 -100
  167. package/template/src/components/skeleton.tsx +128 -45
  168. package/template/src/components/ui/accordion.tsx +64 -0
  169. package/template/src/components/ui/alert-dialog.tsx +139 -0
  170. package/template/src/components/ui/button.tsx +71 -0
  171. package/template/src/components/ui/components.tsx +1 -1
  172. package/template/src/components/ui/date-picker.tsx +422 -0
  173. package/template/src/components/ui/datetime-picker.tsx +338 -0
  174. package/template/src/components/ui/status-select.tsx +271 -0
  175. package/template/src/components/ui/tooltip.tsx +37 -0
  176. package/template/src/components/view-as-banner.tsx +1 -1
  177. package/template/src/components/view-as-modal.tsx +30 -19
  178. package/template/src/config/nav-pages.ts +108 -0
  179. package/template/src/contexts/app-toast-context.tsx +362 -0
  180. package/template/src/contexts/dashboard-theme-context.tsx +2 -7
  181. package/template/src/contexts/sidebar-context.tsx +27 -53
  182. package/template/src/contexts/task-reminder-context.tsx +134 -160
  183. package/template/src/contexts/view-as-context.tsx +32 -10
  184. package/template/src/hooks/use-alert.tsx +65 -0
  185. package/template/src/hooks/use-confirm.tsx +87 -0
  186. package/template/src/hooks/use-contact-views.ts +140 -0
  187. package/template/src/hooks/use-contacts.ts +69 -0
  188. package/template/src/hooks/use-fetch.ts +17 -0
  189. package/template/src/hooks/use-focus-trap.ts +73 -0
  190. package/template/src/hooks/use-statuses.ts +22 -0
  191. package/template/src/hooks/useIntegrationNotifications.ts +49 -0
  192. package/template/src/lib/address-api.ts +155 -0
  193. package/template/src/lib/auth.ts +8 -1
  194. package/template/src/lib/cache.ts +73 -0
  195. package/template/src/lib/check-permission.ts +12 -177
  196. package/template/src/lib/config-links.ts +14 -0
  197. package/template/src/lib/contact-duplicate.ts +79 -61
  198. package/template/src/lib/contact-interactions.ts +24 -22
  199. package/template/src/lib/contact-view-filters.ts +301 -0
  200. package/template/src/lib/contacts-list-url.ts +190 -0
  201. package/template/src/lib/dashboard-stats.ts +282 -0
  202. package/template/src/lib/dashboard-themes.ts +0 -5
  203. package/template/src/lib/date-utils.ts +176 -0
  204. package/template/src/lib/default-widgets.ts +0 -2
  205. package/template/src/lib/editor-html-image-dimensions.ts +172 -0
  206. package/template/src/lib/editor-image-limits.ts +19 -0
  207. package/template/src/lib/email-html-sanitize.ts +19 -0
  208. package/template/src/lib/encryption.ts +9 -6
  209. package/template/src/lib/fr-geography.ts +192 -0
  210. package/template/src/lib/get-auth-user.ts +25 -0
  211. package/template/src/lib/google-calendar-agenda.ts +201 -0
  212. package/template/src/lib/google-calendar.ts +309 -17
  213. package/template/src/lib/google-fetch.ts +63 -0
  214. package/template/src/lib/google-sheet-sync-jobs.ts +96 -0
  215. package/template/src/lib/google-sheet-sync-runner.ts +514 -0
  216. package/template/src/lib/integration-import-log.ts +21 -0
  217. package/template/src/lib/local-storage.ts +34 -0
  218. package/template/src/lib/permissions.ts +268 -40
  219. package/template/src/lib/prisma.ts +15 -12
  220. package/template/src/lib/qstash.ts +65 -0
  221. package/template/src/lib/reminder-state-server.ts +80 -0
  222. package/template/src/lib/reminder-state.ts +29 -0
  223. package/template/src/lib/roles.ts +12 -15
  224. package/template/src/lib/supabase-storage.ts +113 -0
  225. package/template/src/lib/template-variables.ts +204 -29
  226. package/template/src/lib/utils.ts +71 -11
  227. package/template/src/lib/widget-registry.ts +0 -4
  228. package/template/src/lib/workflow-executor.ts +391 -228
  229. package/template/src/proxy.ts +35 -73
  230. package/template/src/types/contact-views.ts +351 -0
  231. package/template/vercel.json +5 -0
  232. package/template/WORKFLOWS_CRON.md +0 -185
  233. package/template/prisma/migrations/20251126144728_init/migration.sql +0 -78
  234. package/template/prisma/migrations/20251126155204_add_user_roles/migration.sql +0 -5
  235. package/template/prisma/migrations/20251128095126_add_company_info/migration.sql +0 -19
  236. package/template/prisma/migrations/20251128123321_add_smtp_config/migration.sql +0 -22
  237. package/template/prisma/migrations/20251128132303_add_status/migration.sql +0 -23
  238. package/template/prisma/migrations/20251201102207_add_user_active/migration.sql +0 -75
  239. package/template/prisma/migrations/20251201105507_add_email_signature/migration.sql +0 -2
  240. package/template/prisma/migrations/20251201151122_add_tasks/migration.sql +0 -45
  241. package/template/prisma/migrations/20251202111854_add_task_reminder/migration.sql +0 -2
  242. package/template/prisma/migrations/20251202135859_add_google_meet_integration/migration.sql +0 -27
  243. package/template/prisma/migrations/20251203103317_add_meta_lead_integration/migration.sql +0 -20
  244. package/template/prisma/migrations/20251203104002_add_google_ads_integration/migration.sql +0 -18
  245. package/template/prisma/migrations/20251203112122_add_google_sheet_integration/migration.sql +0 -32
  246. package/template/prisma/migrations/20251203153853_allow_multiple_integration_configs/migration.sql +0 -20
  247. package/template/prisma/migrations/20251205141705_update_user_roles/migration.sql +0 -12
  248. package/template/prisma/migrations/20251205150000_add_commercial_and_telepro_assignment/migration.sql +0 -21
  249. package/template/prisma/migrations/20251205160000_add_interaction_logging/migration.sql +0 -11
  250. package/template/prisma/migrations/20251208090314_add_automatic_interaction_types/migration.sql +0 -12
  251. package/template/prisma/migrations/20251208094843_mg/migration.sql +0 -14
  252. package/template/prisma/migrations/20251208100000_add_company_support/migration.sql +0 -14
  253. package/template/prisma/migrations/20251208110000_add_templates/migration.sql +0 -26
  254. package/template/prisma/migrations/20251208141304_add_video_conference_task_type/migration.sql +0 -2
  255. package/template/prisma/migrations/20251209104759_add_internal_note_to_task/migration.sql +0 -2
  256. package/template/prisma/migrations/20251209134803_add_company_field/migration.sql +0 -2
  257. package/template/prisma/migrations/20251209150000_rename_company_to_company_name/migration.sql +0 -3
  258. package/template/prisma/migrations/20251209150016_add_email_tracking/migration.sql +0 -21
  259. package/template/prisma/migrations/20251209155908_add_notify_contact_to_task/migration.sql +0 -2
  260. package/template/prisma/migrations/20251210110019_add_appointment_types/migration.sql +0 -10
  261. package/template/prisma/migrations/20251210113928_add_contact_files/migration.sql +0 -26
  262. package/template/prisma/migrations/20251212132339_add_custom_roles/migration.sql +0 -24
  263. package/template/prisma/migrations/20251215104448_add_file_interaction_types/migration.sql +0 -11
  264. package/template/prisma/migrations/20251215145616_add_closing_reasons/migration.sql +0 -12
  265. package/template/prisma/migrations/20251216140850_add_log_users/migration.sql +0 -25
  266. package/template/prisma/migrations/20251216151000_rename_perdu_to_ferme/migration.sql +0 -8
  267. package/template/prisma/migrations/20251216162318_add_column_mappings_to_google_sheet/migration.sql +0 -2
  268. package/template/prisma/migrations/20251216185127_add_workflows/migration.sql +0 -80
  269. package/template/prisma/migrations/20251216192237_add_scheduled_workflow_actions/migration.sql +0 -32
  270. package/template/prisma/migrations/20251220000000_add_task_interaction_type/migration.sql +0 -4
  271. package/template/prisma/migrations/20251221000000_add_task_type/migration.sql +0 -3
  272. package/template/prisma/migrations/20251221000001_add_event_color/migration.sql +0 -23
  273. package/template/prisma/migrations/20260210114913_add_dashboard_widget/migration.sql +0 -20
  274. package/template/prisma/migrations/20260226093949_fix_cascade_on_user_delete/migration.sql +0 -69
  275. package/template/src/app/(dashboard)/users/layout.tsx +0 -30
  276. package/template/src/lib/google-drive.ts +0 -380
@@ -0,0 +1,301 @@
1
+ import type { ViewFilter, DatePreset } from '@/types/contact-views';
2
+ import {
3
+ expandRegionCodesToDepartmentCodes,
4
+ prismaPostalMatchesDepartmentsCondition,
5
+ } from '@/lib/fr-geography';
6
+
7
+ function startOfDay(date: Date): Date {
8
+ const d = new Date(date);
9
+ d.setHours(0, 0, 0, 0);
10
+ return d;
11
+ }
12
+
13
+ function endOfDay(date: Date): Date {
14
+ const d = new Date(date);
15
+ d.setHours(23, 59, 59, 999);
16
+ return d;
17
+ }
18
+
19
+ function getMonday(date: Date): Date {
20
+ const d = new Date(date);
21
+ const day = d.getDay();
22
+ const diff = d.getDate() - day + (day === 0 ? -6 : 1);
23
+ d.setDate(diff);
24
+ return startOfDay(d);
25
+ }
26
+
27
+ function getQuarterStart(date: Date): Date {
28
+ const month = date.getMonth();
29
+ const quarterStartMonth = month - (month % 3);
30
+ return startOfDay(new Date(date.getFullYear(), quarterStartMonth, 1));
31
+ }
32
+
33
+ function getQuarterEnd(date: Date): Date {
34
+ const month = date.getMonth();
35
+ const quarterEndMonth = month - (month % 3) + 3;
36
+ return endOfDay(new Date(date.getFullYear(), quarterEndMonth, 0));
37
+ }
38
+
39
+ export function resolveDatePreset(preset: DatePreset): { gte?: Date; lte?: Date } {
40
+ const now = new Date();
41
+ const today = startOfDay(now);
42
+
43
+ switch (preset) {
44
+ case 'today':
45
+ return { gte: startOfDay(today), lte: endOfDay(today) };
46
+ case 'yesterday': {
47
+ const d = new Date(today);
48
+ d.setDate(d.getDate() - 1);
49
+ return { gte: startOfDay(d), lte: endOfDay(d) };
50
+ }
51
+ case 'tomorrow': {
52
+ const d = new Date(today);
53
+ d.setDate(d.getDate() + 1);
54
+ return { gte: startOfDay(d), lte: endOfDay(d) };
55
+ }
56
+ case 'this_week': {
57
+ const monday = getMonday(today);
58
+ const sunday = new Date(monday);
59
+ sunday.setDate(sunday.getDate() + 6);
60
+ return { gte: monday, lte: endOfDay(sunday) };
61
+ }
62
+ case 'this_week_so_far': {
63
+ const monday = getMonday(today);
64
+ return { gte: monday, lte: endOfDay(today) };
65
+ }
66
+ case 'last_week': {
67
+ const monday = getMonday(today);
68
+ monday.setDate(monday.getDate() - 7);
69
+ const sunday = new Date(monday);
70
+ sunday.setDate(sunday.getDate() + 6);
71
+ return { gte: monday, lte: endOfDay(sunday) };
72
+ }
73
+ case 'next_week': {
74
+ const monday = getMonday(today);
75
+ monday.setDate(monday.getDate() + 7);
76
+ const sunday = new Date(monday);
77
+ sunday.setDate(sunday.getDate() + 6);
78
+ return { gte: monday, lte: endOfDay(sunday) };
79
+ }
80
+ case 'this_month':
81
+ return {
82
+ gte: startOfDay(new Date(now.getFullYear(), now.getMonth(), 1)),
83
+ lte: endOfDay(new Date(now.getFullYear(), now.getMonth() + 1, 0)),
84
+ };
85
+ case 'this_month_so_far':
86
+ return {
87
+ gte: startOfDay(new Date(now.getFullYear(), now.getMonth(), 1)),
88
+ lte: endOfDay(today),
89
+ };
90
+ case 'last_month':
91
+ return {
92
+ gte: startOfDay(new Date(now.getFullYear(), now.getMonth() - 1, 1)),
93
+ lte: endOfDay(new Date(now.getFullYear(), now.getMonth(), 0)),
94
+ };
95
+ case 'next_month':
96
+ return {
97
+ gte: startOfDay(new Date(now.getFullYear(), now.getMonth() + 1, 1)),
98
+ lte: endOfDay(new Date(now.getFullYear(), now.getMonth() + 2, 0)),
99
+ };
100
+ case 'this_quarter':
101
+ return { gte: getQuarterStart(now), lte: getQuarterEnd(now) };
102
+ case 'this_quarter_so_far':
103
+ return { gte: getQuarterStart(now), lte: endOfDay(today) };
104
+ case 'last_quarter': {
105
+ const prevQuarter = new Date(now);
106
+ prevQuarter.setMonth(prevQuarter.getMonth() - 3);
107
+ return {
108
+ gte: getQuarterStart(prevQuarter),
109
+ lte: getQuarterEnd(prevQuarter),
110
+ };
111
+ }
112
+ case 'this_year':
113
+ return {
114
+ gte: startOfDay(new Date(now.getFullYear(), 0, 1)),
115
+ lte: endOfDay(new Date(now.getFullYear(), 11, 31)),
116
+ };
117
+ case 'this_year_so_far':
118
+ return {
119
+ gte: startOfDay(new Date(now.getFullYear(), 0, 1)),
120
+ lte: endOfDay(today),
121
+ };
122
+ case 'last_year':
123
+ return {
124
+ gte: startOfDay(new Date(now.getFullYear() - 1, 0, 1)),
125
+ lte: endOfDay(new Date(now.getFullYear() - 1, 11, 31)),
126
+ };
127
+ case 'last_7_days':
128
+ case 'last_14_days':
129
+ case 'last_30_days':
130
+ case 'last_60_days':
131
+ case 'last_90_days':
132
+ case 'last_180_days':
133
+ case 'last_365_days': {
134
+ const daysMap: Record<string, number> = {
135
+ last_7_days: 7,
136
+ last_14_days: 14,
137
+ last_30_days: 30,
138
+ last_60_days: 60,
139
+ last_90_days: 90,
140
+ last_180_days: 180,
141
+ last_365_days: 365,
142
+ };
143
+ const d = new Date(today);
144
+ d.setDate(d.getDate() - daysMap[preset]);
145
+ return { gte: startOfDay(d), lte: endOfDay(today) };
146
+ }
147
+ default:
148
+ return {};
149
+ }
150
+ }
151
+
152
+ function buildFieldCondition(filter: ViewFilter): any | null {
153
+ const { field, operator, value, preset } = filter;
154
+
155
+ if (field === 'department') {
156
+ if (!Array.isArray(value) || value.length === 0) return null;
157
+ if (operator === 'is_any_of') {
158
+ return prismaPostalMatchesDepartmentsCondition(value as string[]);
159
+ }
160
+ if (operator === 'is_none_of') {
161
+ const inner = prismaPostalMatchesDepartmentsCondition(value as string[]);
162
+ return inner ? { NOT: inner } : null;
163
+ }
164
+ return null;
165
+ }
166
+
167
+ if (field === 'region') {
168
+ if (!Array.isArray(value) || value.length === 0) return null;
169
+ const deptCodes = expandRegionCodesToDepartmentCodes(value as string[]);
170
+ if (deptCodes.length === 0) return null;
171
+ if (operator === 'is_any_of') {
172
+ return prismaPostalMatchesDepartmentsCondition(deptCodes);
173
+ }
174
+ if (operator === 'is_none_of') {
175
+ const inner = prismaPostalMatchesDepartmentsCondition(deptCodes);
176
+ return inner ? { NOT: inner } : null;
177
+ }
178
+ return null;
179
+ }
180
+
181
+ switch (operator) {
182
+ case 'equals': {
183
+ if (field === 'createdAt' || field === 'updatedAt') {
184
+ if (!value || typeof value !== 'string') return null;
185
+ const d = new Date(value);
186
+ if (isNaN(d.getTime())) return null;
187
+ return { [field]: { gte: startOfDay(d), lte: endOfDay(d) } };
188
+ }
189
+ return { [field]: value };
190
+ }
191
+
192
+ case 'not_equals':
193
+ return { NOT: { [field]: value } };
194
+
195
+ case 'contains':
196
+ return { [field]: { contains: value as string, mode: 'insensitive' } };
197
+
198
+ case 'not_contains':
199
+ return {
200
+ NOT: { [field]: { contains: value as string, mode: 'insensitive' } },
201
+ };
202
+
203
+ case 'starts_with':
204
+ return {
205
+ [field]: { startsWith: value as string, mode: 'insensitive' },
206
+ };
207
+
208
+ case 'ends_with':
209
+ return { [field]: { endsWith: value as string, mode: 'insensitive' } };
210
+
211
+ case 'is_any_of': {
212
+ if (!Array.isArray(value) || value.length === 0) return null;
213
+ const hasUnassigned = value.includes('UNASSIGNED');
214
+ const realValues = value.filter((v) => v !== 'UNASSIGNED');
215
+
216
+ if (hasUnassigned && realValues.length > 0) {
217
+ return { OR: [{ [field]: null }, { [field]: { in: realValues } }] };
218
+ } else if (hasUnassigned) {
219
+ return { [field]: null };
220
+ }
221
+ return { [field]: { in: realValues } };
222
+ }
223
+
224
+ case 'is_none_of': {
225
+ if (!Array.isArray(value) || value.length === 0) return null;
226
+ const hasUnassigned = value.includes('UNASSIGNED');
227
+ const realValues = value.filter((v) => v !== 'UNASSIGNED');
228
+
229
+ if (hasUnassigned && realValues.length > 0) {
230
+ return {
231
+ AND: [{ [field]: { not: null } }, { [field]: { notIn: realValues } }],
232
+ };
233
+ } else if (hasUnassigned) {
234
+ return { [field]: { not: null } };
235
+ }
236
+ return { [field]: { notIn: realValues } };
237
+ }
238
+
239
+ case 'gt': {
240
+ const d = new Date(value as string);
241
+ if (isNaN(d.getTime())) return null;
242
+ return { [field]: { gt: endOfDay(d) } };
243
+ }
244
+
245
+ case 'gte': {
246
+ const d = new Date(value as string);
247
+ if (isNaN(d.getTime())) return null;
248
+ return { [field]: { gte: startOfDay(d) } };
249
+ }
250
+
251
+ case 'lt': {
252
+ const d = new Date(value as string);
253
+ if (isNaN(d.getTime())) return null;
254
+ return { [field]: { lt: startOfDay(d) } };
255
+ }
256
+
257
+ case 'lte': {
258
+ const d = new Date(value as string);
259
+ if (isNaN(d.getTime())) return null;
260
+ return { [field]: { lte: endOfDay(d) } };
261
+ }
262
+
263
+ case 'between': {
264
+ if (!Array.isArray(value) || value.length !== 2) return null;
265
+ const start = new Date(value[0]);
266
+ const end = new Date(value[1]);
267
+ if (isNaN(start.getTime()) || isNaN(end.getTime())) return null;
268
+ return { [field]: { gte: startOfDay(start), lte: endOfDay(end) } };
269
+ }
270
+
271
+ case 'is_known':
272
+ return { [field]: { not: null } };
273
+
274
+ case 'is_unknown':
275
+ return { [field]: null };
276
+
277
+ case 'date_preset': {
278
+ if (!preset) return null;
279
+ const range = resolveDatePreset(preset);
280
+ return { [field]: range };
281
+ }
282
+
283
+ default:
284
+ return null;
285
+ }
286
+ }
287
+
288
+ export function buildPrismaWhereFromFilters(filters: ViewFilter[]): Record<string, any> {
289
+ const conditions: any[] = [];
290
+
291
+ for (const filter of filters) {
292
+ const condition = buildFieldCondition(filter);
293
+ if (condition) {
294
+ conditions.push(condition);
295
+ }
296
+ }
297
+
298
+ if (conditions.length === 0) return {};
299
+ if (conditions.length === 1) return conditions[0];
300
+ return { AND: conditions };
301
+ }
@@ -0,0 +1,190 @@
1
+ import type { ReadonlyURLSearchParams } from 'next/navigation';
2
+
3
+ const VALID_LIMITS = [25, 50, 100] as const;
4
+
5
+ /** Tri par défaut liste contacts : pas de paramètres d’URL (parse → createdAt desc). */
6
+ export const CONTACTS_LIST_DEFAULT_SORT_FIELD = 'createdAt';
7
+ export const CONTACTS_LIST_DEFAULT_SORT_ORDER = 'desc' as const;
8
+
9
+ export function isContactsListDefaultSort(
10
+ sortField: string,
11
+ sortOrder: 'asc' | 'desc',
12
+ ): boolean {
13
+ return (
14
+ sortField === CONTACTS_LIST_DEFAULT_SORT_FIELD &&
15
+ sortOrder === CONTACTS_LIST_DEFAULT_SORT_ORDER
16
+ );
17
+ }
18
+
19
+ /** Chevrons / filtre « tri actif » sur une colonne — masqué pour le tri implicite création ↓. */
20
+ export function contactsListColumnShowsActiveSort(
21
+ columnId: string,
22
+ sortField: string,
23
+ sortOrder: 'asc' | 'desc',
24
+ ): boolean {
25
+ if (sortField !== columnId) return false;
26
+ if (
27
+ columnId === CONTACTS_LIST_DEFAULT_SORT_FIELD &&
28
+ isContactsListDefaultSort(sortField, sortOrder)
29
+ ) {
30
+ return false;
31
+ }
32
+ return true;
33
+ }
34
+
35
+ export type ParsedContactsListUrl = {
36
+ viewEntity: 'contacts' | 'companies';
37
+ currentPage: number;
38
+ limit: number;
39
+ viewMode: 'table' | 'cards';
40
+ search: string;
41
+ statusIds: string[];
42
+ origins: string[];
43
+ assignedCommercialIds: string[];
44
+ assignedTeleproIds: string[];
45
+ createdAtStart: string;
46
+ createdAtEnd: string;
47
+ updatedAtStart: string;
48
+ updatedAtEnd: string;
49
+ regionCodes: string[];
50
+ departmentCodes: string[];
51
+ sortField: string;
52
+ sortOrder: 'asc' | 'desc';
53
+ };
54
+
55
+ function splitCsv(v: string | null): string[] {
56
+ if (!v) return [];
57
+ return v
58
+ .split(',')
59
+ .map((s) => s.trim())
60
+ .filter(Boolean);
61
+ }
62
+
63
+ /**
64
+ * Source de vérité côté client au premier rendu / après popstate : `window.location`
65
+ * peut être à jour avant `useSearchParams()` (retour arrière), sinon on retombe sur le hook.
66
+ */
67
+ export function getContactsListUrlSearchParams(
68
+ sp: URLSearchParams | ReadonlyURLSearchParams,
69
+ ): URLSearchParams {
70
+ if (typeof globalThis.window !== 'undefined') {
71
+ return new URLSearchParams(globalThis.window.location.search);
72
+ }
73
+ return new URLSearchParams(sp.toString());
74
+ }
75
+
76
+ export function readContactsListFromLocationOrParams(
77
+ sp: URLSearchParams | ReadonlyURLSearchParams,
78
+ ): ParsedContactsListUrl {
79
+ return parseContactsListFromSearchParams(getContactsListUrlSearchParams(sp));
80
+ }
81
+
82
+ export function parseContactsListFromSearchParams(
83
+ sp: URLSearchParams | ReadonlyURLSearchParams,
84
+ ): ParsedContactsListUrl {
85
+ const page = Number.parseInt(sp.get('page') || '1', 10);
86
+ const lim = Number.parseInt(sp.get('limit') || '25', 10);
87
+ return {
88
+ viewEntity: sp.get('entity') === 'companies' ? 'companies' : 'contacts',
89
+ currentPage: Number.isFinite(page) && page >= 1 ? page : 1,
90
+ limit: VALID_LIMITS.includes(lim as (typeof VALID_LIMITS)[number]) ? lim : 25,
91
+ viewMode: sp.get('view') === 'cards' ? 'cards' : 'table',
92
+ search: sp.get('search') || '',
93
+ statusIds: splitCsv(sp.get('statusIds')),
94
+ origins: splitCsv(sp.get('origins')),
95
+ assignedCommercialIds: splitCsv(sp.get('assignedCommercialIds')),
96
+ assignedTeleproIds: splitCsv(sp.get('assignedTeleproIds')),
97
+ createdAtStart: sp.get('createdAtStart') || '',
98
+ createdAtEnd: sp.get('createdAtEnd') || '',
99
+ updatedAtStart: sp.get('updatedAtStart') || '',
100
+ updatedAtEnd: sp.get('updatedAtEnd') || '',
101
+ regionCodes: splitCsv(sp.get('regionCodes')),
102
+ departmentCodes: splitCsv(sp.get('departmentCodes')),
103
+ sortField: sp.get('sortField') || CONTACTS_LIST_DEFAULT_SORT_FIELD,
104
+ sortOrder:
105
+ sp.get('sortOrder') === 'asc'
106
+ ? 'asc'
107
+ : sp.get('sortOrder') === 'desc'
108
+ ? 'desc'
109
+ : CONTACTS_LIST_DEFAULT_SORT_ORDER,
110
+ };
111
+ }
112
+
113
+ export type ContactsListUrlInput = {
114
+ viewEntity: 'contacts' | 'companies';
115
+ currentPage: number;
116
+ limit: number;
117
+ viewMode: 'table' | 'cards';
118
+ search: string;
119
+ statusFilter: Set<string>;
120
+ originFilter: Set<string>;
121
+ assignedCommercialFilter: Set<string>;
122
+ assignedTeleproFilter: Set<string>;
123
+ createdAtStart: string;
124
+ createdAtEnd: string;
125
+ updatedAtStart: string;
126
+ updatedAtEnd: string;
127
+ regionFilter: Set<string>;
128
+ departmentFilter: Set<string>;
129
+ sortField: string;
130
+ sortOrder: 'asc' | 'desc';
131
+ };
132
+
133
+ export function buildContactsListSearchParams(input: ContactsListUrlInput): URLSearchParams {
134
+ const p = new URLSearchParams();
135
+ if (input.viewEntity === 'companies') {
136
+ p.set('entity', 'companies');
137
+ }
138
+ p.set('page', String(input.currentPage));
139
+ p.set('limit', String(input.limit));
140
+ p.set('view', input.viewMode);
141
+ if (input.search.trim()) {
142
+ p.set('search', input.search.trim());
143
+ }
144
+ if (input.statusFilter.size > 0) {
145
+ p.set('statusIds', [...input.statusFilter].join(','));
146
+ }
147
+ if (input.originFilter.size > 0) {
148
+ p.set('origins', [...input.originFilter].join(','));
149
+ }
150
+ if (input.assignedCommercialFilter.size > 0) {
151
+ p.set('assignedCommercialIds', [...input.assignedCommercialFilter].join(','));
152
+ }
153
+ if (input.assignedTeleproFilter.size > 0) {
154
+ p.set('assignedTeleproIds', [...input.assignedTeleproFilter].join(','));
155
+ }
156
+ if (input.createdAtStart) p.set('createdAtStart', input.createdAtStart);
157
+ if (input.createdAtEnd) p.set('createdAtEnd', input.createdAtEnd);
158
+ if (input.updatedAtStart) p.set('updatedAtStart', input.updatedAtStart);
159
+ if (input.updatedAtEnd) p.set('updatedAtEnd', input.updatedAtEnd);
160
+ if (input.regionFilter.size > 0) {
161
+ p.set('regionCodes', [...input.regionFilter].join(','));
162
+ }
163
+ if (input.departmentFilter.size > 0) {
164
+ p.set('departmentCodes', [...input.departmentFilter].join(','));
165
+ }
166
+ if (
167
+ input.sortField &&
168
+ !isContactsListDefaultSort(input.sortField, input.sortOrder)
169
+ ) {
170
+ p.set('sortField', input.sortField);
171
+ p.set('sortOrder', input.sortOrder);
172
+ }
173
+ return p;
174
+ }
175
+
176
+ /** Comparaison stable pour éviter replace / hydrate inutiles */
177
+ export function canonicalSearchParamsString(params: URLSearchParams): string {
178
+ return [...params.entries()]
179
+ .sort(([a], [b]) => a.localeCompare(b))
180
+ .map(([k, v]) => `${encodeURIComponent(k)}=${encodeURIComponent(v)}`)
181
+ .join('&');
182
+ }
183
+
184
+ export function setsEqualToIds(prev: Set<string>, ids: string[]): boolean {
185
+ if (prev.size !== ids.length) return false;
186
+ for (const id of ids) {
187
+ if (!prev.has(id)) return false;
188
+ }
189
+ return true;
190
+ }