@rubytech/create-sitedesk-code 0.1.608 → 0.1.609

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 (241) hide show
  1. package/package.json +1 -1
  2. package/payload/platform/lib/graph-write/dist/__tests__/account-id-gate.test.js +86 -0
  3. package/payload/platform/lib/graph-write/dist/__tests__/account-id-gate.test.js.map +1 -1
  4. package/payload/platform/lib/graph-write/dist/index.d.ts +30 -9
  5. package/payload/platform/lib/graph-write/dist/index.d.ts.map +1 -1
  6. package/payload/platform/lib/graph-write/dist/index.js +22 -2
  7. package/payload/platform/lib/graph-write/dist/index.js.map +1 -1
  8. package/payload/platform/lib/graph-write/src/__tests__/account-id-gate.test.ts +99 -1
  9. package/payload/platform/lib/graph-write/src/index.ts +47 -12
  10. package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +45 -1
  11. package/payload/platform/plugins/admin/skills/whats-new/SKILL.md +8 -0
  12. package/payload/platform/plugins/docs/references/telegram-guide.md +44 -0
  13. package/payload/platform/plugins/memory/mcp/dist/index.js +65 -0
  14. package/payload/platform/plugins/memory/mcp/dist/index.js.map +1 -1
  15. package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/xacct-counters.test.d.ts +2 -0
  16. package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/xacct-counters.test.d.ts.map +1 -0
  17. package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/xacct-counters.test.js +169 -0
  18. package/payload/platform/plugins/memory/mcp/dist/lib/__tests__/xacct-counters.test.js.map +1 -0
  19. package/payload/platform/plugins/memory/mcp/dist/lib/xacct-counters.d.ts +63 -0
  20. package/payload/platform/plugins/memory/mcp/dist/lib/xacct-counters.d.ts.map +1 -0
  21. package/payload/platform/plugins/memory/mcp/dist/lib/xacct-counters.js +114 -0
  22. package/payload/platform/plugins/memory/mcp/dist/lib/xacct-counters.js.map +1 -0
  23. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/memory-write-cross-account.test.d.ts +2 -0
  24. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/memory-write-cross-account.test.d.ts.map +1 -0
  25. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/memory-write-cross-account.test.js +123 -0
  26. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/memory-write-cross-account.test.js.map +1 -0
  27. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/xacct-write-gate.test.d.ts +2 -0
  28. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/xacct-write-gate.test.d.ts.map +1 -0
  29. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/xacct-write-gate.test.js +110 -0
  30. package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/xacct-write-gate.test.js.map +1 -0
  31. package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.d.ts.map +1 -1
  32. package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.js +7 -0
  33. package/payload/platform/plugins/memory/mcp/dist/tools/memory-write.js.map +1 -1
  34. package/payload/platform/plugins/memory/mcp/vitest.config.ts +2 -0
  35. package/payload/platform/services/claude-session-manager/dist/claude-trust-preflight.d.ts +43 -0
  36. package/payload/platform/services/claude-session-manager/dist/claude-trust-preflight.d.ts.map +1 -0
  37. package/payload/platform/services/claude-session-manager/dist/claude-trust-preflight.js +88 -0
  38. package/payload/platform/services/claude-session-manager/dist/claude-trust-preflight.js.map +1 -0
  39. package/payload/platform/services/claude-session-manager/dist/http-server.d.ts.map +1 -1
  40. package/payload/platform/services/claude-session-manager/dist/http-server.js +125 -4
  41. package/payload/platform/services/claude-session-manager/dist/http-server.js.map +1 -1
  42. package/payload/platform/services/claude-session-manager/dist/index.js +26 -1
  43. package/payload/platform/services/claude-session-manager/dist/index.js.map +1 -1
  44. package/payload/platform/services/claude-session-manager/dist/jsonl-path.d.ts +1 -1
  45. package/payload/platform/services/claude-session-manager/dist/jsonl-path.d.ts.map +1 -1
  46. package/payload/platform/services/claude-session-manager/dist/jsonl-path.js +26 -0
  47. package/payload/platform/services/claude-session-manager/dist/jsonl-path.js.map +1 -1
  48. package/payload/platform/services/claude-session-manager/dist/recover-account.d.ts +54 -0
  49. package/payload/platform/services/claude-session-manager/dist/recover-account.d.ts.map +1 -0
  50. package/payload/platform/services/claude-session-manager/dist/recover-account.js +141 -0
  51. package/payload/platform/services/claude-session-manager/dist/recover-account.js.map +1 -0
  52. package/payload/platform/services/claude-session-manager/dist/session-account-census.d.ts +30 -0
  53. package/payload/platform/services/claude-session-manager/dist/session-account-census.d.ts.map +1 -0
  54. package/payload/platform/services/claude-session-manager/dist/session-account-census.js +96 -0
  55. package/payload/platform/services/claude-session-manager/dist/session-account-census.js.map +1 -0
  56. package/payload/platform/services/telegram-channel/dist/instructions.d.ts +9 -0
  57. package/payload/platform/services/telegram-channel/dist/instructions.d.ts.map +1 -1
  58. package/payload/platform/services/telegram-channel/dist/instructions.js +15 -0
  59. package/payload/platform/services/telegram-channel/dist/instructions.js.map +1 -1
  60. package/payload/platform/services/telegram-channel/dist/notification.d.ts +6 -4
  61. package/payload/platform/services/telegram-channel/dist/notification.d.ts.map +1 -1
  62. package/payload/platform/services/telegram-channel/dist/notification.js +15 -1
  63. package/payload/platform/services/telegram-channel/dist/notification.js.map +1 -1
  64. package/payload/server/{chunk-GI5AVCRG.js → chunk-DRDU74ZM.js} +1 -1
  65. package/payload/server/{chunk-MNN2RWJR.js → chunk-IOPUA7QV.js} +1 -1
  66. package/payload/server/{chunk-6AQYMT6C.js → chunk-T6NXRWMG.js} +43 -8
  67. package/payload/server/{manager-VDHT3YYI.js → manager-O5L2SKW7.js} +2 -2
  68. package/payload/server/maxy-edge.js +2 -2
  69. package/payload/server/public/activity.html +6 -6
  70. package/payload/server/public/agents.html +5 -5
  71. package/payload/server/public/assets/{AdminLoginScreens-DuQ3ax5U.js → AdminLoginScreens-BBKEIEjY.js} +1 -1
  72. package/payload/server/public/assets/AdminLoginScreens-BBKEIEjY.js.br +0 -0
  73. package/payload/server/public/assets/AdminLoginScreens-BBKEIEjY.js.gz +0 -0
  74. package/payload/server/public/assets/{AdminShell-1HyATV_t.js → AdminShell-CrCdEMNW.js} +1 -1
  75. package/payload/server/public/assets/AdminShell-CrCdEMNW.js.br +0 -0
  76. package/payload/server/public/assets/AdminShell-CrCdEMNW.js.gz +0 -0
  77. package/payload/server/public/assets/{activity-C2qWlcJ5.js → activity-CbR3vaq1.js} +1 -1
  78. package/payload/server/public/assets/activity-CbR3vaq1.js.br +0 -0
  79. package/payload/server/public/assets/activity-CbR3vaq1.js.gz +0 -0
  80. package/payload/server/public/assets/{admin-DqpfY8-t.js → admin-D8qKnmhE.js} +1 -1
  81. package/payload/server/public/assets/admin-D8qKnmhE.js.br +0 -0
  82. package/payload/server/public/assets/admin-D8qKnmhE.js.gz +0 -0
  83. package/payload/server/public/assets/{agents-DoGVAjIT.js → agents-8gAQjRqI.js} +1 -1
  84. package/payload/server/public/assets/agents-8gAQjRqI.js.br +0 -0
  85. package/payload/server/public/assets/agents-8gAQjRqI.js.gz +0 -0
  86. package/payload/server/public/assets/{browser-DjqS897k.js → browser-jAje5ILy.js} +1 -1
  87. package/payload/server/public/assets/browser-jAje5ILy.js.br +0 -0
  88. package/payload/server/public/assets/browser-jAje5ILy.js.gz +0 -0
  89. package/payload/server/public/assets/{calendar-DJeOm0WS.js → calendar-xEmCJif9.js} +1 -1
  90. package/payload/server/public/assets/calendar-xEmCJif9.js.br +0 -0
  91. package/payload/server/public/assets/calendar-xEmCJif9.js.gz +0 -0
  92. package/payload/server/public/assets/chat-Ct5RDmv6.js +1 -0
  93. package/payload/server/public/assets/chat-Ct5RDmv6.js.br +0 -0
  94. package/payload/server/public/assets/chat-Ct5RDmv6.js.gz +0 -0
  95. package/payload/server/public/assets/{chevron-left-D9z1aK3p.js → chevron-left-DV8gIVC9.js} +1 -1
  96. package/payload/server/public/assets/chevron-left-DV8gIVC9.js.br +0 -0
  97. package/payload/server/public/assets/clock-PnR4Tlg9.js +1 -0
  98. package/payload/server/public/assets/clock-PnR4Tlg9.js.br +0 -0
  99. package/payload/server/public/assets/{copy-p9ZM9fnn.js → copy-b6MpzRz9.js} +1 -1
  100. package/payload/server/public/assets/copy-b6MpzRz9.js.br +0 -0
  101. package/payload/server/public/assets/copy-b6MpzRz9.js.gz +0 -0
  102. package/payload/server/public/assets/data-BxFc9wPl.js +1 -0
  103. package/payload/server/public/assets/data-BxFc9wPl.js.br +2 -0
  104. package/payload/server/public/assets/data-BxFc9wPl.js.gz +0 -0
  105. package/payload/server/public/assets/{field-WRk67lvr.js → field-CiIsn-47.js} +1 -1
  106. package/payload/server/public/assets/field-CiIsn-47.js.br +0 -0
  107. package/payload/server/public/assets/field-CiIsn-47.js.gz +0 -0
  108. package/payload/server/public/assets/{file-text-BJDCb334.js → file-text-Cy-IjCf8.js} +1 -1
  109. package/payload/server/public/assets/file-text-Cy-IjCf8.js.br +0 -0
  110. package/payload/server/public/assets/file-text-Cy-IjCf8.js.gz +0 -0
  111. package/payload/server/public/assets/{graph-CAU2xh2Z.js → graph-BdC2IGOT.js} +1 -1
  112. package/payload/server/public/assets/graph-BdC2IGOT.js.br +0 -0
  113. package/payload/server/public/assets/graph-BdC2IGOT.js.gz +0 -0
  114. package/payload/server/public/assets/{graph-labels-CEDmX7qW.js → graph-labels-3bstML8n.js} +1 -1
  115. package/payload/server/public/assets/graph-labels-3bstML8n.js.br +0 -0
  116. package/payload/server/public/assets/graph-labels-3bstML8n.js.gz +0 -0
  117. package/payload/server/public/assets/{jsx-runtime-hPFGo4rC.css → jsx-runtime-JxxB_2S6.css} +1 -1
  118. package/payload/server/public/assets/jsx-runtime-JxxB_2S6.css.br +0 -0
  119. package/payload/server/public/assets/{jsx-runtime-hPFGo4rC.css.gz → jsx-runtime-JxxB_2S6.css.gz} +0 -0
  120. package/payload/server/public/assets/{operator-1WFztEQA.js → operator-D7L2SA16.js} +1 -1
  121. package/payload/server/public/assets/operator-D7L2SA16.js.br +0 -0
  122. package/payload/server/public/assets/operator-D7L2SA16.js.gz +0 -0
  123. package/payload/server/public/assets/{page-B72XigcU.js → page-DspGbDgK.js} +1 -1
  124. package/payload/server/public/assets/page-DspGbDgK.js.br +0 -0
  125. package/payload/server/public/assets/page-DspGbDgK.js.gz +0 -0
  126. package/payload/server/public/assets/{page-nT8l_cX1.js → page-ObXxk8ol.js} +1 -1
  127. package/payload/server/public/assets/page-ObXxk8ol.js.br +0 -0
  128. package/payload/server/public/assets/page-ObXxk8ol.js.gz +0 -0
  129. package/payload/server/public/assets/play-BL4ztD3m.js +1 -0
  130. package/payload/server/public/assets/play-BL4ztD3m.js.br +0 -0
  131. package/payload/server/public/assets/play-BL4ztD3m.js.gz +0 -0
  132. package/payload/server/public/assets/{public-DAea6w7w.js → public-CEXKl8wg.js} +1 -1
  133. package/payload/server/public/assets/public-CEXKl8wg.js.br +0 -0
  134. package/payload/server/public/assets/public-CEXKl8wg.js.gz +0 -0
  135. package/payload/server/public/assets/{rotate-ccw-CqlRlGsY.js → rotate-ccw-ckXDebK2.js} +1 -1
  136. package/payload/server/public/assets/rotate-ccw-ckXDebK2.js.br +0 -0
  137. package/payload/server/public/assets/rotate-ccw-ckXDebK2.js.gz +0 -0
  138. package/payload/server/public/assets/{routines-vy5xsyqx.js → routines-Dwc2meN2.js} +1 -1
  139. package/payload/server/public/assets/routines-Dwc2meN2.js.br +0 -0
  140. package/payload/server/public/assets/routines-Dwc2meN2.js.gz +0 -0
  141. package/payload/server/public/assets/{skills-X7FTilVy.js → skills-DdHKHl4Z.js} +1 -1
  142. package/payload/server/public/assets/skills-DdHKHl4Z.js.br +0 -0
  143. package/payload/server/public/assets/skills-DdHKHl4Z.js.gz +0 -0
  144. package/payload/server/public/assets/{tasks-BXx_jk_p.js → tasks-C_yWRvOG.js} +1 -1
  145. package/payload/server/public/assets/tasks-C_yWRvOG.js.br +0 -0
  146. package/payload/server/public/assets/tasks-C_yWRvOG.js.gz +0 -0
  147. package/payload/server/public/assets/{triangle-alert-CuWcGaRo.js → triangle-alert-C-7A00P0.js} +1 -1
  148. package/payload/server/public/assets/triangle-alert-C-7A00P0.js.br +0 -0
  149. package/payload/server/public/assets/triangle-alert-C-7A00P0.js.gz +0 -0
  150. package/payload/server/public/assets/{useCopyFeedback-DLSKs6r2.js → useCopyFeedback-CWvSi-Qe.js} +1 -1
  151. package/payload/server/public/assets/useCopyFeedback-CWvSi-Qe.js.br +2 -0
  152. package/payload/server/public/assets/useCopyFeedback-CWvSi-Qe.js.gz +0 -0
  153. package/payload/server/public/assets/{useMediaQuery-C_1CV_iW.js → useMediaQuery-CLVRXJMp.js} +1 -1
  154. package/payload/server/public/assets/useMediaQuery-CLVRXJMp.js.br +0 -0
  155. package/payload/server/public/assets/useMediaQuery-CLVRXJMp.js.gz +0 -0
  156. package/payload/server/public/assets/{useVoiceRecorder-DBzM_HIx.js → useVoiceRecorder-BbJad9CQ.js} +1 -1
  157. package/payload/server/public/assets/useVoiceRecorder-BbJad9CQ.js.br +0 -0
  158. package/payload/server/public/assets/useVoiceRecorder-BbJad9CQ.js.gz +0 -0
  159. package/payload/server/public/assets/{wrench-nDMQ6x-6.js → wrench-Cl6TUm2T.js} +1 -1
  160. package/payload/server/public/assets/wrench-Cl6TUm2T.js.br +0 -0
  161. package/payload/server/public/assets/wrench-Cl6TUm2T.js.gz +0 -0
  162. package/payload/server/public/browser.html +5 -5
  163. package/payload/server/public/calendar.html +8 -8
  164. package/payload/server/public/chat.html +14 -14
  165. package/payload/server/public/data.html +12 -12
  166. package/payload/server/public/field.html +3 -3
  167. package/payload/server/public/graph.html +10 -10
  168. package/payload/server/public/index.html +14 -14
  169. package/payload/server/public/operator.html +16 -16
  170. package/payload/server/public/public.html +14 -14
  171. package/payload/server/public/routines.html +8 -8
  172. package/payload/server/public/skills.html +6 -6
  173. package/payload/server/public/tasks.html +7 -7
  174. package/payload/server/server.js +511 -283
  175. package/payload/server/public/assets/AdminLoginScreens-DuQ3ax5U.js.br +0 -0
  176. package/payload/server/public/assets/AdminLoginScreens-DuQ3ax5U.js.gz +0 -0
  177. package/payload/server/public/assets/AdminShell-1HyATV_t.js.br +0 -0
  178. package/payload/server/public/assets/AdminShell-1HyATV_t.js.gz +0 -0
  179. package/payload/server/public/assets/activity-C2qWlcJ5.js.br +0 -0
  180. package/payload/server/public/assets/activity-C2qWlcJ5.js.gz +0 -0
  181. package/payload/server/public/assets/admin-DqpfY8-t.js.br +0 -0
  182. package/payload/server/public/assets/admin-DqpfY8-t.js.gz +0 -0
  183. package/payload/server/public/assets/agents-DoGVAjIT.js.br +0 -0
  184. package/payload/server/public/assets/agents-DoGVAjIT.js.gz +0 -0
  185. package/payload/server/public/assets/browser-DjqS897k.js.br +0 -0
  186. package/payload/server/public/assets/browser-DjqS897k.js.gz +0 -0
  187. package/payload/server/public/assets/calendar-DJeOm0WS.js.br +0 -0
  188. package/payload/server/public/assets/calendar-DJeOm0WS.js.gz +0 -0
  189. package/payload/server/public/assets/chat-BrRE0Dck.js +0 -1
  190. package/payload/server/public/assets/chat-BrRE0Dck.js.br +0 -0
  191. package/payload/server/public/assets/chat-BrRE0Dck.js.gz +0 -0
  192. package/payload/server/public/assets/chevron-left-D9z1aK3p.js.br +0 -0
  193. package/payload/server/public/assets/clock-BqHWMICF.js +0 -1
  194. package/payload/server/public/assets/clock-BqHWMICF.js.br +0 -0
  195. package/payload/server/public/assets/clock-BqHWMICF.js.gz +0 -0
  196. package/payload/server/public/assets/copy-p9ZM9fnn.js.br +0 -0
  197. package/payload/server/public/assets/copy-p9ZM9fnn.js.gz +0 -0
  198. package/payload/server/public/assets/data-CPsqW0qW.js +0 -1
  199. package/payload/server/public/assets/data-CPsqW0qW.js.br +0 -0
  200. package/payload/server/public/assets/data-CPsqW0qW.js.gz +0 -0
  201. package/payload/server/public/assets/field-WRk67lvr.js.br +0 -0
  202. package/payload/server/public/assets/field-WRk67lvr.js.gz +0 -0
  203. package/payload/server/public/assets/file-text-BJDCb334.js.br +0 -0
  204. package/payload/server/public/assets/file-text-BJDCb334.js.gz +0 -0
  205. package/payload/server/public/assets/graph-CAU2xh2Z.js.br +0 -0
  206. package/payload/server/public/assets/graph-CAU2xh2Z.js.gz +0 -0
  207. package/payload/server/public/assets/graph-labels-CEDmX7qW.js.br +0 -0
  208. package/payload/server/public/assets/graph-labels-CEDmX7qW.js.gz +0 -0
  209. package/payload/server/public/assets/jsx-runtime-hPFGo4rC.css.br +0 -0
  210. package/payload/server/public/assets/operator-1WFztEQA.js.br +0 -0
  211. package/payload/server/public/assets/operator-1WFztEQA.js.gz +0 -0
  212. package/payload/server/public/assets/page-B72XigcU.js.br +0 -0
  213. package/payload/server/public/assets/page-B72XigcU.js.gz +0 -0
  214. package/payload/server/public/assets/page-nT8l_cX1.js.br +0 -0
  215. package/payload/server/public/assets/page-nT8l_cX1.js.gz +0 -0
  216. package/payload/server/public/assets/play-CYqOCqm6.js +0 -1
  217. package/payload/server/public/assets/play-CYqOCqm6.js.br +0 -0
  218. package/payload/server/public/assets/play-CYqOCqm6.js.gz +0 -0
  219. package/payload/server/public/assets/public-DAea6w7w.js.br +0 -0
  220. package/payload/server/public/assets/public-DAea6w7w.js.gz +0 -0
  221. package/payload/server/public/assets/rotate-ccw-CqlRlGsY.js.br +0 -0
  222. package/payload/server/public/assets/rotate-ccw-CqlRlGsY.js.gz +0 -0
  223. package/payload/server/public/assets/routines-vy5xsyqx.js.br +0 -0
  224. package/payload/server/public/assets/routines-vy5xsyqx.js.gz +0 -0
  225. package/payload/server/public/assets/skills-X7FTilVy.js.br +0 -0
  226. package/payload/server/public/assets/skills-X7FTilVy.js.gz +0 -0
  227. package/payload/server/public/assets/tasks-BXx_jk_p.js.br +0 -0
  228. package/payload/server/public/assets/tasks-BXx_jk_p.js.gz +0 -0
  229. package/payload/server/public/assets/triangle-alert-CuWcGaRo.js.br +0 -0
  230. package/payload/server/public/assets/triangle-alert-CuWcGaRo.js.gz +0 -0
  231. package/payload/server/public/assets/useCopyFeedback-DLSKs6r2.js.br +0 -0
  232. package/payload/server/public/assets/useCopyFeedback-DLSKs6r2.js.gz +0 -0
  233. package/payload/server/public/assets/useMediaQuery-C_1CV_iW.js.br +0 -0
  234. package/payload/server/public/assets/useMediaQuery-C_1CV_iW.js.gz +0 -0
  235. package/payload/server/public/assets/useVoiceRecorder-DBzM_HIx.js.br +0 -0
  236. package/payload/server/public/assets/useVoiceRecorder-DBzM_HIx.js.gz +0 -0
  237. package/payload/server/public/assets/wrench-nDMQ6x-6.js.br +0 -0
  238. package/payload/server/public/assets/wrench-nDMQ6x-6.js.gz +0 -0
  239. /package/payload/server/public/assets/{jsx-runtime-CvVXOszc.js → jsx-runtime-BCAZhYqz.js} +0 -0
  240. /package/payload/server/public/assets/{jsx-runtime-CvVXOszc.js.br → jsx-runtime-BCAZhYqz.js.br} +0 -0
  241. /package/payload/server/public/assets/{jsx-runtime-CvVXOszc.js.gz → jsx-runtime-BCAZhYqz.js.gz} +0 -0
@@ -1,2 +1,2 @@
1
- import{o as e,t}from"./chunk-BycB0eMI.js";import{i as n,n as r,t as i}from"./jsx-runtime-CvVXOszc.js";import{B as a,C as o,H as s,I as c,K as l,L as u,N as d,P as f,S as p,X as m,et as h,lt as g,nt as _,v,y}from"./useMediaQuery-C_1CV_iW.js";import{A as b,m as x,t as S}from"./AdminShell-1HyATV_t.js";import{t as C}from"./clock-BqHWMICF.js";import{t as w}from"./triangle-alert-CuWcGaRo.js";import{t as ee}from"./wrench-nDMQ6x-6.js";import{r as T}from"./file-download-B7zwa78w.js";var te=_(`circle-pause`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`10`,x2:`10`,y1:`15`,y2:`9`,key:`c1nkhi`}],[`line`,{x1:`14`,x2:`14`,y1:`15`,y2:`9`,key:`h65svq`}]]),ne=_(`circle-play`,[[`path`,{d:`M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z`,key:`kmsa83`}],[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}]]),E=_(`history`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),D=r(),O=e(n(),1),k=[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`];function A(e,t){if(e===`*`)return{kind:`any`,value:0,rangeStart:null,rangeEnd:null,step:1};let n=e.match(/^(\*|\d+-\d+)\/(\d+)$/);if(n){let e=Number(n[2]);if(e<1)return null;if(n[1]===`*`)return{kind:`step`,value:0,rangeStart:null,rangeEnd:null,step:e};let[r,i]=n[1].split(`-`).map(Number);return r>t||i>t||r>i?null:{kind:`step`,value:0,rangeStart:r,rangeEnd:i,step:e}}let r=e.match(/^(\d+)-(\d+)$/);if(r){let e=Number(r[1]),n=Number(r[2]);return e>t||n>t||e>n?null:{kind:`step`,value:0,rangeStart:e,rangeEnd:n,step:1}}if(/^\d+$/.test(e)){let n=Number(e);return n>t?null:{kind:`fixed`,value:n,rangeStart:null,rangeEnd:null,step:1}}return null}function j(e){return String(e).padStart(2,`0`)}function M(e){if(e===`*`)return null;let t=e.match(/^(\d+)-(\d+)$/);if(t){let e=Number(t[1]),n=Number(t[2]);return e>7||n>7||e>n?`invalid`:`${k[e%7]} to ${k[n%7]}`}let n=e.split(`,`);return n.length>0&&n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?n.map(e=>k[Number(e)%7]).join(`, `):`invalid`}function N(e){let t=e.trim().split(/\s+/);if(t.length!==5)return e;let[n,r,i,a,o]=t;if(a!==`*`||i!==`*`&&!/^\d+$/.test(i)||i!==`*`&&(Number(i)<1||Number(i)>31))return e;let s=A(n,59),c=A(r,23);if(!s||!c)return e;let l=M(o);if(l===`invalid`||s.kind===`step`&&s.rangeStart!==null||(s.kind===`any`&&(s={kind:`step`,value:0,rangeStart:null,rangeEnd:null,step:1}),c.kind===`step`&&c.step===1&&c.rangeStart===null&&(c={kind:`any`,value:0,rangeStart:null,rangeEnd:null,step:1}),i!==`*`&&!(s.kind===`fixed`&&c.kind===`fixed`&&o===`*`))||s.kind===`step`&&c.kind===`step`&&c.step>1)return e;let u=l?`, ${l}`:``,d=e=>e.rangeStart+Math.floor((e.rangeEnd-e.rangeStart)/e.step)*e.step;if(s.kind===`step`){let e=s.step===1?`Every minute`:`Every ${s.step} minutes`;return c.kind===`any`?`${e}${u}`:c.kind===`fixed`?`${e}, ${j(c.value)}:00 to ${j(c.value)}:59${u}`:`${e}, ${j(c.rangeStart)}:00 to ${j(d(c))}:00${u}`}if(c.kind===`step`){let e=j(s.value),t=s.value===0?``:` at :${e}`;return c.rangeStart===null?`Every ${c.step} hours${t}${u}`:c.step===1?`Hourly, ${j(c.rangeStart)}:${e} to ${j(c.rangeEnd)}:${e}${u}`:`Every ${c.step} hours, ${j(c.rangeStart)}:${e} to ${j(d(c))}:${e}${u}`}if(c.kind===`any`)return`${s.value===0?`Every hour`:`Every hour at :${j(s.value)}`}${u}`;let f=`${j(c.value)}:${j(s.value)}`;return i===`*`?l?`${l} at ${f}`:`Daily at ${f}`:`Monthly on day ${Number(i)} at ${f}`}var P={timeMode:`at`,minute:0,hour:9,interval:1,window:null,dayMode:`every`,weekdays:[],dayOfMonth:1};function F(e){let t=e.match(/^(\d+)-(\d+)$/);if(t){let e=Number(t[1]),n=Number(t[2]);if(e>7||n>7||e>n)return null;let r=[];for(let t=e;t<=n;t+=1)r.push(t%7);return[...new Set(r)].sort((e,t)=>e-t)}let n=e.split(`,`);return n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?[...new Set(n.map(e=>Number(e)%7))].sort((e,t)=>e-t):null}function I(e){let t=e.trim().split(/\s+/);if(t.length!==5)return null;let[n,r,i,a,o]=t;if(a!==`*`||i!==`*`&&!/^\d+$/.test(i))return null;let s=A(n,59),c=A(r,23);if(!s||!c||s.kind===`step`&&s.rangeStart!==null)return null;let l=`every`,u=[],d=1;if(i!==`*`){if(o!==`*`)return null;let e=Number(i);if(e<1||e>31||s.kind!==`fixed`||c.kind!==`fixed`)return null;l=`dayOfMonth`,d=e}else if(o!==`*`){let e=F(o);if(e===null)return null;l=`weekdays`,u=e}let f={dayMode:l,weekdays:u,dayOfMonth:d};if(s.kind===`any`||s.kind===`step`){if(c.kind===`step`&&c.step>1)return null;let e=s.kind===`any`?1:s.step,t=c.kind===`any`?null:c.kind===`fixed`?{start:c.value,end:c.value}:{start:c.rangeStart,end:c.rangeEnd};return{...P,...f,timeMode:`everyMinutes`,minute:0,interval:e,window:t}}return c.kind===`fixed`?{...P,...f,timeMode:`at`,minute:s.value,hour:c.value}:c.kind===`any`?{...P,...f,timeMode:`everyHours`,minute:s.value,interval:1,window:null}:{...P,...f,timeMode:`everyHours`,minute:s.value,interval:c.step,window:c.rangeStart===null?null:{start:c.rangeStart,end:c.rangeEnd}}}function L(e){return e.dayMode===`dayOfMonth`?[String(e.dayOfMonth),`*`]:e.dayMode===`weekdays`&&e.weekdays.length>0?[`*`,[...e.weekdays].sort((e,t)=>e-t).join(`,`)]:[`*`,`*`]}function R(e){let[t,n]=L(e);if(e.timeMode===`everyMinutes`){let r=e.window===null?`*`:e.window.start===e.window.end?String(e.window.start):`${e.window.start}-${e.window.end}`;return`*/${e.interval} ${r} ${t} * ${n}`}if(e.timeMode===`everyHours`){let r=e.window===null?e.interval===1?`*`:`*/${e.interval}`:e.interval===1?`${e.window.start}-${e.window.end}`:`${e.window.start}-${e.window.end}/${e.interval}`;return`${e.minute} ${r} ${t} * ${n}`}return`${e.minute} ${e.hour} ${t} * ${n}`}var z={scheduled:`live`,suspended:`stood-down`,due:`inert`,cancelled:`inert`,completed:`inert`};function B(e){return e==null||!Object.hasOwn(z,e)?`unknown`:z[e]}var V={scheduled:{control:`suspend`,note:null},suspended:{control:`resume`,note:null},due:{control:`none`,note:`This one-time routine has already been dispatched. It will not run again.`},cancelled:{control:`none`,note:`This routine was cancelled and cannot be restarted. Delete it, or create a new one.`},completed:{control:`none`,note:`This routine has finished and will not run again.`}},H={control:`none`,note:`This routine's status is not one this dashboard recognises, so no start or stop is offered.`};function re(e){return e==null||!Object.hasOwn(V,e)?H:V[e]}var U={finished:`live`,gated:`live`,started:`in-flight`,accepted:`in-flight`,open:`in-flight`,failed:`error`,"no-destination":`warning`};function ie(e){return e==null||!Object.hasOwn(U,e)?`unknown`:U[e]}function W(e){return e===`gated`?`skipped: no work`:e??`unknown`}var G=i(),ae=[{value:1,label:`Mon`},{value:2,label:`Tue`},{value:3,label:`Wed`},{value:4,label:`Thu`},{value:5,label:`Fri`},{value:6,label:`Sat`},{value:0,label:`Sun`}],K=Array.from({length:24},(e,t)=>t),q=e=>String(e).padStart(2,`0`),J={timeMode:`at`,minute:0,hour:9,interval:1,window:null,dayMode:`every`,weekdays:[],dayOfMonth:1};function oe({recurrence:e,onChange:t,disabled:n}){let r=e?I(e):J,[i,a]=(0,O.useState)(r??J),[o]=(0,O.useState)(e!=null&&r==null),[s,c]=(0,O.useState)(e??``);if((0,O.useEffect)(()=>{fetch(`/api/_client-error`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({kind:`event`,source:`routines`,op:`schedule-editor`,mode:o?`raw`:`builder`}),keepalive:!0}).catch(()=>{})},[o]),o)return(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Schedule (advanced)`}),(0,G.jsx)(`input`,{type:`text`,className:`routine-raw-cron`,value:s,disabled:n,onChange:e=>{c(e.target.value),t(e.target.value)},"aria-label":`Cron expression`}),(0,G.jsx)(`span`,{className:`routine-raw-note`,children:`This routine uses an advanced schedule, edited as a raw cron expression.`})]});let l=e=>{a(e),t(R(e))},u=e=>{let t=e!==`at`&&i.dayMode===`dayOfMonth`?`every`:i.dayMode;l({...i,timeMode:e,dayMode:t})},d=e=>{let t=e===`weekdays`&&i.weekdays.length===0?[1]:i.weekdays;l({...i,dayMode:e,weekdays:t})},f=e=>{let[t,n]=e.split(`:`);l({...i,hour:Number(t)||0,minute:Number(n)||0})},p=e=>{let t=i.weekdays.includes(e);if(t&&i.weekdays.length===1)return;let n=t?i.weekdays.filter(t=>t!==e):[...i.weekdays,e];l({...i,weekdays:n})},m=e=>l({...i,window:e?{start:0,end:23}:null}),h=(e,t)=>{let n={...i.window??{start:0,end:23},[e]:Number(t)};n.start>n.end&&(e===`start`?n.end=n.start:n.start=n.end),l({...i,window:n})},g=(e,t,n)=>Math.min(n,Math.max(t,Number(e)||t));return(0,G.jsxs)(`div`,{className:`routine-sched`,children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`How often`}),(0,G.jsxs)(`select`,{"aria-label":`How often`,value:i.timeMode,disabled:n,onChange:e=>u(e.target.value),children:[(0,G.jsx)(`option`,{value:`at`,children:`At a time of day`}),(0,G.jsx)(`option`,{value:`everyMinutes`,children:`Every few minutes`}),(0,G.jsx)(`option`,{value:`everyHours`,children:`Every few hours`})]})]}),i.timeMode===`at`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Time of day`}),(0,G.jsx)(`input`,{type:`time`,"aria-label":`Time of day`,value:`${q(i.hour)}:${q(i.minute)}`,disabled:n,onChange:e=>f(e.target.value)})]}),i.timeMode===`everyMinutes`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Minutes between runs`}),(0,G.jsx)(`input`,{type:`number`,min:1,max:59,"aria-label":`Minutes between runs`,value:i.interval,disabled:n,onChange:e=>l({...i,interval:g(e.target.value,1,59)})})]}),i.timeMode===`everyHours`&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Hours between runs`}),(0,G.jsx)(`input`,{type:`number`,min:1,max:23,"aria-label":`Hours between runs`,value:i.interval,disabled:n,onChange:e=>l({...i,interval:g(e.target.value,1,23)})})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Minute of the hour`}),(0,G.jsx)(`input`,{type:`number`,min:0,max:59,"aria-label":`Minute of the hour`,value:i.minute,disabled:n,onChange:e=>l({...i,minute:g(e.target.value,0,59)})})]})]}),i.timeMode!==`at`&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`label`,{className:`cal-modal-field routine-sched-check`,children:[(0,G.jsx)(`input`,{type:`checkbox`,"aria-label":`Only between certain hours`,checked:i.window!==null,disabled:n,onChange:e=>m(e.target.checked)}),(0,G.jsx)(`span`,{children:`Only between certain hours`})]}),i.window!==null&&(0,G.jsxs)(`div`,{className:`routine-sched-row`,children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`From hour`}),(0,G.jsx)(`select`,{"aria-label":`From hour`,value:i.window.start,disabled:n,onChange:e=>h(`start`,e.target.value),children:K.map(e=>(0,G.jsxs)(`option`,{value:e,children:[q(e),`:00`]},e))})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`To hour`}),(0,G.jsx)(`select`,{"aria-label":`To hour`,value:i.window.end,disabled:n,onChange:e=>h(`end`,e.target.value),children:K.map(e=>(0,G.jsxs)(`option`,{value:e,children:[q(e),`:00`]},e))})]})]})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Which days`}),(0,G.jsxs)(`select`,{"aria-label":`Which days`,value:i.dayMode,disabled:n,onChange:e=>d(e.target.value),children:[(0,G.jsx)(`option`,{value:`every`,children:`Every day`}),(0,G.jsx)(`option`,{value:`weekdays`,children:`Specific days`}),i.timeMode===`at`&&(0,G.jsx)(`option`,{value:`dayOfMonth`,children:`A day of the month`})]})]}),i.dayMode===`weekdays`&&(0,G.jsxs)(`div`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Days`}),(0,G.jsx)(`div`,{className:`routine-weekdays`,children:ae.map(e=>(0,G.jsx)(`button`,{type:`button`,className:`routine-weekday${i.weekdays.includes(e.value)?` routine-weekday-on`:``}`,"aria-pressed":i.weekdays.includes(e.value),disabled:n,onClick:()=>p(e.value),children:e.label},e.value))})]}),i.dayMode===`dayOfMonth`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Day of month`}),(0,G.jsx)(`select`,{"aria-label":`Day of month`,value:i.dayOfMonth,disabled:n,onChange:e=>l({...i,dayOfMonth:Number(e.target.value)||1}),children:Array.from({length:31},(e,t)=>t+1).map(e=>(0,G.jsx)(`option`,{value:e,children:e},e))})]})]})}function Y(e){let t=e.trim().replace(/[\s\-().]/g,``).replace(/^\+/,``);return/^\d{11,15}$/.test(t)?`+${t.slice(0,2)} ${t.slice(2,6)} ${t.slice(6)}`:e}function se(e){if(e.name)return`${e.name} · ${e.label}`;let t=e.channel===`whatsapp`?Y(e.destination):e.destination;return`${e.label} · ${t}`}function ce({eventStatus:e}){let t=B(e);return(0,G.jsx)(`span`,{className:`routine-status-dot is-${t}`,"data-state":t,"aria-hidden":`true`})}function le(e){return e.agentChannel==null?e.actionPlugin==null?`trigger`:`deterministic`:e.gateTool==null?`agent-every-fire`:`checked-agent`}var ue={"checked-agent":`checks first, model only when there is work`,"agent-every-fire":`model every fire`,deterministic:`runs a tool, no model`,trigger:null};function de(e){return e.agentChannel&&e.agentDestination&&e.agentPrompt?`model`:e.actionPlugin&&e.actionTool?`tool`:`none`}function fe(e){let t=e.filter(e=>e.eventStatus===`scheduled`&&e.recurrence!=null),n={live:t.length,model:0,tool:0,none:0};for(let e of t)n[de(e)]++;return n}function pe(e){if(!e)return[];let t;try{t=JSON.parse(e)}catch{return[]}let n=t?.checks;return Array.isArray(n)?n.flatMap(e=>{if(typeof e!=`object`||!e)return[];let t=e;return typeof t.type==`string`?[{kind:t.type,target:X(t.type,t)}]:[]}):[]}function X(e,t){let n=e=>typeof t[e]==`string`?t[e]:null;if(e===`mail`){let e=n(`mailbox`);if(e===null)return null;let t=n(`folder`);return t?`${e}/${t}`:e}return e===`d1`?n(`database`):e===`whatsapp`?n(`scope`):e===`calendar`?n(`connector`):null}function me(e,t){if(!e)return null;let n=Date.parse(e);if(!Number.isFinite(n))return null;let r=Math.max(t-n,0);return r<6e4?`${Math.round(r/1e3)}s ago`:r<36e5?`${Math.round(r/6e4)}m ago`:`${Math.round(r/36e5)}h ago`}function he(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function ge(e){return e?e.split(`
1
+ import{o as e,t}from"./chunk-BycB0eMI.js";import{i as n,n as r,t as i}from"./jsx-runtime-BCAZhYqz.js";import{B as a,C as o,H as s,I as c,K as l,L as u,N as d,P as f,S as p,X as m,et as h,lt as g,nt as _,v,y}from"./useMediaQuery-CLVRXJMp.js";import{A as b,m as x,t as S}from"./AdminShell-CrCdEMNW.js";import{t as C}from"./clock-PnR4Tlg9.js";import{t as w}from"./triangle-alert-C-7A00P0.js";import{t as ee}from"./wrench-Cl6TUm2T.js";import{r as T}from"./file-download-B7zwa78w.js";var te=_(`circle-pause`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`10`,x2:`10`,y1:`15`,y2:`9`,key:`c1nkhi`}],[`line`,{x1:`14`,x2:`14`,y1:`15`,y2:`9`,key:`h65svq`}]]),ne=_(`circle-play`,[[`path`,{d:`M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z`,key:`kmsa83`}],[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}]]),E=_(`history`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),D=r(),O=e(n(),1),k=[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`];function A(e,t){if(e===`*`)return{kind:`any`,value:0,rangeStart:null,rangeEnd:null,step:1};let n=e.match(/^(\*|\d+-\d+)\/(\d+)$/);if(n){let e=Number(n[2]);if(e<1)return null;if(n[1]===`*`)return{kind:`step`,value:0,rangeStart:null,rangeEnd:null,step:e};let[r,i]=n[1].split(`-`).map(Number);return r>t||i>t||r>i?null:{kind:`step`,value:0,rangeStart:r,rangeEnd:i,step:e}}let r=e.match(/^(\d+)-(\d+)$/);if(r){let e=Number(r[1]),n=Number(r[2]);return e>t||n>t||e>n?null:{kind:`step`,value:0,rangeStart:e,rangeEnd:n,step:1}}if(/^\d+$/.test(e)){let n=Number(e);return n>t?null:{kind:`fixed`,value:n,rangeStart:null,rangeEnd:null,step:1}}return null}function j(e){return String(e).padStart(2,`0`)}function M(e){if(e===`*`)return null;let t=e.match(/^(\d+)-(\d+)$/);if(t){let e=Number(t[1]),n=Number(t[2]);return e>7||n>7||e>n?`invalid`:`${k[e%7]} to ${k[n%7]}`}let n=e.split(`,`);return n.length>0&&n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?n.map(e=>k[Number(e)%7]).join(`, `):`invalid`}function N(e){let t=e.trim().split(/\s+/);if(t.length!==5)return e;let[n,r,i,a,o]=t;if(a!==`*`||i!==`*`&&!/^\d+$/.test(i)||i!==`*`&&(Number(i)<1||Number(i)>31))return e;let s=A(n,59),c=A(r,23);if(!s||!c)return e;let l=M(o);if(l===`invalid`||s.kind===`step`&&s.rangeStart!==null||(s.kind===`any`&&(s={kind:`step`,value:0,rangeStart:null,rangeEnd:null,step:1}),c.kind===`step`&&c.step===1&&c.rangeStart===null&&(c={kind:`any`,value:0,rangeStart:null,rangeEnd:null,step:1}),i!==`*`&&!(s.kind===`fixed`&&c.kind===`fixed`&&o===`*`))||s.kind===`step`&&c.kind===`step`&&c.step>1)return e;let u=l?`, ${l}`:``,d=e=>e.rangeStart+Math.floor((e.rangeEnd-e.rangeStart)/e.step)*e.step;if(s.kind===`step`){let e=s.step===1?`Every minute`:`Every ${s.step} minutes`;return c.kind===`any`?`${e}${u}`:c.kind===`fixed`?`${e}, ${j(c.value)}:00 to ${j(c.value)}:59${u}`:`${e}, ${j(c.rangeStart)}:00 to ${j(d(c))}:00${u}`}if(c.kind===`step`){let e=j(s.value),t=s.value===0?``:` at :${e}`;return c.rangeStart===null?`Every ${c.step} hours${t}${u}`:c.step===1?`Hourly, ${j(c.rangeStart)}:${e} to ${j(c.rangeEnd)}:${e}${u}`:`Every ${c.step} hours, ${j(c.rangeStart)}:${e} to ${j(d(c))}:${e}${u}`}if(c.kind===`any`)return`${s.value===0?`Every hour`:`Every hour at :${j(s.value)}`}${u}`;let f=`${j(c.value)}:${j(s.value)}`;return i===`*`?l?`${l} at ${f}`:`Daily at ${f}`:`Monthly on day ${Number(i)} at ${f}`}var P={timeMode:`at`,minute:0,hour:9,interval:1,window:null,dayMode:`every`,weekdays:[],dayOfMonth:1};function F(e){let t=e.match(/^(\d+)-(\d+)$/);if(t){let e=Number(t[1]),n=Number(t[2]);if(e>7||n>7||e>n)return null;let r=[];for(let t=e;t<=n;t+=1)r.push(t%7);return[...new Set(r)].sort((e,t)=>e-t)}let n=e.split(`,`);return n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?[...new Set(n.map(e=>Number(e)%7))].sort((e,t)=>e-t):null}function I(e){let t=e.trim().split(/\s+/);if(t.length!==5)return null;let[n,r,i,a,o]=t;if(a!==`*`||i!==`*`&&!/^\d+$/.test(i))return null;let s=A(n,59),c=A(r,23);if(!s||!c||s.kind===`step`&&s.rangeStart!==null)return null;let l=`every`,u=[],d=1;if(i!==`*`){if(o!==`*`)return null;let e=Number(i);if(e<1||e>31||s.kind!==`fixed`||c.kind!==`fixed`)return null;l=`dayOfMonth`,d=e}else if(o!==`*`){let e=F(o);if(e===null)return null;l=`weekdays`,u=e}let f={dayMode:l,weekdays:u,dayOfMonth:d};if(s.kind===`any`||s.kind===`step`){if(c.kind===`step`&&c.step>1)return null;let e=s.kind===`any`?1:s.step,t=c.kind===`any`?null:c.kind===`fixed`?{start:c.value,end:c.value}:{start:c.rangeStart,end:c.rangeEnd};return{...P,...f,timeMode:`everyMinutes`,minute:0,interval:e,window:t}}return c.kind===`fixed`?{...P,...f,timeMode:`at`,minute:s.value,hour:c.value}:c.kind===`any`?{...P,...f,timeMode:`everyHours`,minute:s.value,interval:1,window:null}:{...P,...f,timeMode:`everyHours`,minute:s.value,interval:c.step,window:c.rangeStart===null?null:{start:c.rangeStart,end:c.rangeEnd}}}function L(e){return e.dayMode===`dayOfMonth`?[String(e.dayOfMonth),`*`]:e.dayMode===`weekdays`&&e.weekdays.length>0?[`*`,[...e.weekdays].sort((e,t)=>e-t).join(`,`)]:[`*`,`*`]}function R(e){let[t,n]=L(e);if(e.timeMode===`everyMinutes`){let r=e.window===null?`*`:e.window.start===e.window.end?String(e.window.start):`${e.window.start}-${e.window.end}`;return`*/${e.interval} ${r} ${t} * ${n}`}if(e.timeMode===`everyHours`){let r=e.window===null?e.interval===1?`*`:`*/${e.interval}`:e.interval===1?`${e.window.start}-${e.window.end}`:`${e.window.start}-${e.window.end}/${e.interval}`;return`${e.minute} ${r} ${t} * ${n}`}return`${e.minute} ${e.hour} ${t} * ${n}`}var z={scheduled:`live`,suspended:`stood-down`,due:`inert`,cancelled:`inert`,completed:`inert`};function B(e){return e==null||!Object.hasOwn(z,e)?`unknown`:z[e]}var V={scheduled:{control:`suspend`,note:null},suspended:{control:`resume`,note:null},due:{control:`none`,note:`This one-time routine has already been dispatched. It will not run again.`},cancelled:{control:`none`,note:`This routine was cancelled and cannot be restarted. Delete it, or create a new one.`},completed:{control:`none`,note:`This routine has finished and will not run again.`}},H={control:`none`,note:`This routine's status is not one this dashboard recognises, so no start or stop is offered.`};function re(e){return e==null||!Object.hasOwn(V,e)?H:V[e]}var U={finished:`live`,gated:`live`,started:`in-flight`,accepted:`in-flight`,open:`in-flight`,failed:`error`,"no-destination":`warning`};function ie(e){return e==null||!Object.hasOwn(U,e)?`unknown`:U[e]}function W(e){return e===`gated`?`skipped: no work`:e??`unknown`}var G=i(),ae=[{value:1,label:`Mon`},{value:2,label:`Tue`},{value:3,label:`Wed`},{value:4,label:`Thu`},{value:5,label:`Fri`},{value:6,label:`Sat`},{value:0,label:`Sun`}],K=Array.from({length:24},(e,t)=>t),q=e=>String(e).padStart(2,`0`),J={timeMode:`at`,minute:0,hour:9,interval:1,window:null,dayMode:`every`,weekdays:[],dayOfMonth:1};function oe({recurrence:e,onChange:t,disabled:n}){let r=e?I(e):J,[i,a]=(0,O.useState)(r??J),[o]=(0,O.useState)(e!=null&&r==null),[s,c]=(0,O.useState)(e??``);if((0,O.useEffect)(()=>{fetch(`/api/_client-error`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({kind:`event`,source:`routines`,op:`schedule-editor`,mode:o?`raw`:`builder`}),keepalive:!0}).catch(()=>{})},[o]),o)return(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Schedule (advanced)`}),(0,G.jsx)(`input`,{type:`text`,className:`routine-raw-cron`,value:s,disabled:n,onChange:e=>{c(e.target.value),t(e.target.value)},"aria-label":`Cron expression`}),(0,G.jsx)(`span`,{className:`routine-raw-note`,children:`This routine uses an advanced schedule, edited as a raw cron expression.`})]});let l=e=>{a(e),t(R(e))},u=e=>{let t=e!==`at`&&i.dayMode===`dayOfMonth`?`every`:i.dayMode;l({...i,timeMode:e,dayMode:t})},d=e=>{let t=e===`weekdays`&&i.weekdays.length===0?[1]:i.weekdays;l({...i,dayMode:e,weekdays:t})},f=e=>{let[t,n]=e.split(`:`);l({...i,hour:Number(t)||0,minute:Number(n)||0})},p=e=>{let t=i.weekdays.includes(e);if(t&&i.weekdays.length===1)return;let n=t?i.weekdays.filter(t=>t!==e):[...i.weekdays,e];l({...i,weekdays:n})},m=e=>l({...i,window:e?{start:0,end:23}:null}),h=(e,t)=>{let n={...i.window??{start:0,end:23},[e]:Number(t)};n.start>n.end&&(e===`start`?n.end=n.start:n.start=n.end),l({...i,window:n})},g=(e,t,n)=>Math.min(n,Math.max(t,Number(e)||t));return(0,G.jsxs)(`div`,{className:`routine-sched`,children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`How often`}),(0,G.jsxs)(`select`,{"aria-label":`How often`,value:i.timeMode,disabled:n,onChange:e=>u(e.target.value),children:[(0,G.jsx)(`option`,{value:`at`,children:`At a time of day`}),(0,G.jsx)(`option`,{value:`everyMinutes`,children:`Every few minutes`}),(0,G.jsx)(`option`,{value:`everyHours`,children:`Every few hours`})]})]}),i.timeMode===`at`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Time of day`}),(0,G.jsx)(`input`,{type:`time`,"aria-label":`Time of day`,value:`${q(i.hour)}:${q(i.minute)}`,disabled:n,onChange:e=>f(e.target.value)})]}),i.timeMode===`everyMinutes`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Minutes between runs`}),(0,G.jsx)(`input`,{type:`number`,min:1,max:59,"aria-label":`Minutes between runs`,value:i.interval,disabled:n,onChange:e=>l({...i,interval:g(e.target.value,1,59)})})]}),i.timeMode===`everyHours`&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Hours between runs`}),(0,G.jsx)(`input`,{type:`number`,min:1,max:23,"aria-label":`Hours between runs`,value:i.interval,disabled:n,onChange:e=>l({...i,interval:g(e.target.value,1,23)})})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Minute of the hour`}),(0,G.jsx)(`input`,{type:`number`,min:0,max:59,"aria-label":`Minute of the hour`,value:i.minute,disabled:n,onChange:e=>l({...i,minute:g(e.target.value,0,59)})})]})]}),i.timeMode!==`at`&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`label`,{className:`cal-modal-field routine-sched-check`,children:[(0,G.jsx)(`input`,{type:`checkbox`,"aria-label":`Only between certain hours`,checked:i.window!==null,disabled:n,onChange:e=>m(e.target.checked)}),(0,G.jsx)(`span`,{children:`Only between certain hours`})]}),i.window!==null&&(0,G.jsxs)(`div`,{className:`routine-sched-row`,children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`From hour`}),(0,G.jsx)(`select`,{"aria-label":`From hour`,value:i.window.start,disabled:n,onChange:e=>h(`start`,e.target.value),children:K.map(e=>(0,G.jsxs)(`option`,{value:e,children:[q(e),`:00`]},e))})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`To hour`}),(0,G.jsx)(`select`,{"aria-label":`To hour`,value:i.window.end,disabled:n,onChange:e=>h(`end`,e.target.value),children:K.map(e=>(0,G.jsxs)(`option`,{value:e,children:[q(e),`:00`]},e))})]})]})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Which days`}),(0,G.jsxs)(`select`,{"aria-label":`Which days`,value:i.dayMode,disabled:n,onChange:e=>d(e.target.value),children:[(0,G.jsx)(`option`,{value:`every`,children:`Every day`}),(0,G.jsx)(`option`,{value:`weekdays`,children:`Specific days`}),i.timeMode===`at`&&(0,G.jsx)(`option`,{value:`dayOfMonth`,children:`A day of the month`})]})]}),i.dayMode===`weekdays`&&(0,G.jsxs)(`div`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Days`}),(0,G.jsx)(`div`,{className:`routine-weekdays`,children:ae.map(e=>(0,G.jsx)(`button`,{type:`button`,className:`routine-weekday${i.weekdays.includes(e.value)?` routine-weekday-on`:``}`,"aria-pressed":i.weekdays.includes(e.value),disabled:n,onClick:()=>p(e.value),children:e.label},e.value))})]}),i.dayMode===`dayOfMonth`&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Day of month`}),(0,G.jsx)(`select`,{"aria-label":`Day of month`,value:i.dayOfMonth,disabled:n,onChange:e=>l({...i,dayOfMonth:Number(e.target.value)||1}),children:Array.from({length:31},(e,t)=>t+1).map(e=>(0,G.jsx)(`option`,{value:e,children:e},e))})]})]})}function Y(e){let t=e.trim().replace(/[\s\-().]/g,``).replace(/^\+/,``);return/^\d{11,15}$/.test(t)?`+${t.slice(0,2)} ${t.slice(2,6)} ${t.slice(6)}`:e}function se(e){if(e.name)return`${e.name} · ${e.label}`;let t=e.channel===`whatsapp`?Y(e.destination):e.destination;return`${e.label} · ${t}`}function ce({eventStatus:e}){let t=B(e);return(0,G.jsx)(`span`,{className:`routine-status-dot is-${t}`,"data-state":t,"aria-hidden":`true`})}function le(e){return e.agentChannel==null?e.actionPlugin==null?`trigger`:`deterministic`:e.gateTool==null?`agent-every-fire`:`checked-agent`}var ue={"checked-agent":`checks first, model only when there is work`,"agent-every-fire":`model every fire`,deterministic:`runs a tool, no model`,trigger:null};function de(e){return e.agentChannel&&e.agentDestination&&e.agentPrompt?`model`:e.actionPlugin&&e.actionTool?`tool`:`none`}function fe(e){let t=e.filter(e=>e.eventStatus===`scheduled`&&e.recurrence!=null),n={live:t.length,model:0,tool:0,none:0};for(let e of t)n[de(e)]++;return n}function pe(e){if(!e)return[];let t;try{t=JSON.parse(e)}catch{return[]}let n=t?.checks;return Array.isArray(n)?n.flatMap(e=>{if(typeof e!=`object`||!e)return[];let t=e;return typeof t.type==`string`?[{kind:t.type,target:X(t.type,t)}]:[]}):[]}function X(e,t){let n=e=>typeof t[e]==`string`?t[e]:null;if(e===`mail`){let e=n(`mailbox`);if(e===null)return null;let t=n(`folder`);return t?`${e}/${t}`:e}return e===`d1`?n(`database`):e===`whatsapp`?n(`scope`):e===`calendar`?n(`connector`):null}function me(e,t){if(!e)return null;let n=Date.parse(e);if(!Number.isFinite(n))return null;let r=Math.max(t-n,0);return r<6e4?`${Math.round(r/1e3)}s ago`:r<36e5?`${Math.round(r/6e4)}m ago`:`${Math.round(r/36e5)}h ago`}function he(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function ge(e){return e?e.split(`
2
2
  `).filter(e=>e.trim()!==``).reverse():[]}function Z({routine:e,adminFetch:t,onClose:n,onSaved:r,onDeleted:i,onViewRuns:a}){let{zone:d}=o(),[f,p]=(0,O.useState)(!1),[m,h]=(0,O.useState)(!1),[g,_]=(0,O.useState)(null),[b,S]=(0,O.useState)(e),[w,T]=(0,O.useState)(!1),D=b.agentChannel!=null,k=le(b),A=pe(b.gateArgs),j=me(b.gateLastCommitAt,Date.now()),M=re(b.eventStatus),P=M.control===`resume`,[F,I]=(0,O.useState)(!1),[L,R]=(0,O.useState)(e.agentPrompt??``),[z,B]=(0,O.useState)(e.name??``),[V,H]=(0,O.useState)(e.description??``),[U,ie]=(0,O.useState)(e.recurrence),[W,ae]=(0,O.useState)(e.agentChannel??``),[K,q]=(0,O.useState)(e.agentDestination??``),[J,Y]=(0,O.useState)(null),[de,fe]=(0,O.useState)(null),X=D||b.actionPlugin==null,Z=ge(b.notes);(0,O.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!m&&n()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[m,n]),(0,O.useEffect)(()=>{if(!f||!X||J!==null)return;let e=!1;return t(`/api/admin/dispatch-destinations`).then(async e=>{if(!e.ok)throw Error(`HTTP ${e.status}`);return await e.json()}).then(t=>{e||Y(t.destinations)}).catch(t=>{e||(Y([]),fe(t instanceof Error?t.message:`Could not load destinations`))}),()=>{e=!0}},[f,X,J,t]);let Q=(J??[]).filter(e=>e.channel===W),_e=W.length>0&&K.length>0,ve=z.trim().length===0&&(b.name??``).length>0||W.length>0&&K.length===0||_e&&L.trim().length===0,ye=(0,O.useCallback)(()=>{let e={},t=W.length>0&&K.length>0,n=z.trim();n!==(b.name??``)&&(e.name=n),(D||t)&&L!==(b.agentPrompt??``)&&(e.agentPrompt=L);let r=V.trim().length>0?V:null;return r!==(b.description??null)&&(e.description=r),U!=null&&U!==(b.recurrence??null)&&(e.recurrence=U),t&&(W!==(b.agentChannel??``)||K!==(b.agentDestination??``))?(e.agentChannel=W,e.agentDestination=K):!t&&W===``&&(b.agentChannel??``)!==``&&(e.agentChannel=null,e.agentDestination=null),e},[D,z,L,V,U,W,K,b]),be=(0,O.useCallback)(async()=>{let n=ye();if(Object.keys(n).length===0){p(!1);return}h(!0),_(null);try{let i=await t(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`PATCH`,headers:{"content-type":`application/json`},body:JSON.stringify(n)});if(!i.ok){let e=await i.json().catch(()=>({}));throw Error(e.error??`HTTP ${i.status}`)}let a=await i.json();S(a.routine),B(a.routine.name??``),R(a.routine.agentPrompt??``),H(a.routine.description??``),ie(a.routine.recurrence),ae(a.routine.agentChannel??``),q(a.routine.agentDestination??``),r(a.routine),p(!1)}catch(e){_(e instanceof Error?e.message:`Save failed`)}finally{h(!1)}},[t,ye,e.eventId,r]),xe=(0,O.useCallback)(async()=>{if(m)return;if(!F){T(!1),I(!0);return}let n=P?`resume`:`suspend`;h(!0),_(null);try{let i=await t(`/api/admin/routines/${encodeURIComponent(e.eventId)}/${n}`,{method:`POST`});if(!i.ok){let e=await i.json().catch(()=>({}));throw Error(e.error??`HTTP ${i.status}`)}let a=await i.json();S(a.routine),r(a.routine),I(!1)}catch(e){_(e instanceof Error?e.message:`${n} failed`),I(!1)}finally{h(!1)}},[t,m,F,P,e.eventId,r]),Se=(0,O.useCallback)(async()=>{if(!m){if(!w){I(!1),T(!0);return}h(!0),_(null);try{let n=await t(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`DELETE`});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`HTTP ${n.status}`)}i(e.eventId)}catch(e){_(e instanceof Error?e.message:`Delete failed`),T(!1)}finally{h(!1)}}},[t,m,w,e.eventId,i]);return(0,G.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{m||n()},children:(0,G.jsxs)(`div`,{className:`cal-modal ${!f||D||_e?`cal-modal-wide`:`cal-modal-dispatch`}`,role:`dialog`,"aria-modal":`true`,"aria-label":f?`Edit routine`:`Routine detail`,onClick:e=>e.stopPropagation(),children:[(0,G.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,G.jsxs)(`span`,{className:`cal-modal-kind`,children:[(0,G.jsx)(x,{size:13}),` Routine`]}),(0,G.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:n,"aria-label":`Close`,autoFocus:!0,disabled:m,children:(0,G.jsx)(c,{size:16})})]}),!f&&(0,G.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,G.jsx)(`div`,{className:`cal-modal-title`,children:b.name??`Untitled routine`}),(0,G.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,G.jsx)(C,{size:14}),(0,G.jsx)(`span`,{children:b.recurrence?N(b.recurrence):`One-time`})]}),(0,G.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,G.jsx)(ce,{eventStatus:b.eventStatus}),(0,G.jsxs)(`span`,{children:[`Status: `,b.eventStatus??`unknown`]})]}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Next run: `,he(b.nextRun,d)]})}),(0,G.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,G.jsx)(E,{size:14}),(0,G.jsxs)(`span`,{children:[`Last run: `,he(b.lastTriggered,d),b.lastDispatchResult?` (${b.lastDispatchResult})`:``]})]}),b.description&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsx)(`span`,{children:`Description`})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,children:(0,G.jsx)(`span`,{children:b.description})})]}),ue[k]&&(0,G.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,"data-testid":`routine-mode`,children:[(0,G.jsx)(x,{size:14}),(0,G.jsxs)(`span`,{children:[ue[k],k===`agent-every-fire`&&b.gateWaived?`: ${b.gateWaived}`:``]})]}),b.gateClassified===!1&&b.gateTool==null&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,"data-testid":`gate-unclassified`,children:(0,G.jsx)(`span`,{children:`No check is set and no reason is recorded, so every fire spends a model turn.`})}),D?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,G.jsx)(y,{channel:b.agentChannel,size:14}),(0,G.jsxs)(`span`,{children:[v[b.agentChannel]??b.agentChannel,` to `,b.agentDestination??`—`]})]}),b.gateTool!=null&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsx)(`span`,{children:`Checks before the agent runs`})}),(0,G.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,G.jsx)(ee,{size:14}),(0,G.jsxs)(`span`,{children:[b.gatePlugin,`.`,b.gateTool]})]}),A.map((e,t)=>(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,"data-testid":`gate-check`,children:(0,G.jsxs)(`span`,{children:[e.kind,e.target?` · ${e.target}`:``]})},t)),b.lastTriggered!=null&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,"data-testid":`gate-commit-age`,children:(0,G.jsx)(`span`,{children:j===null?`This gate has never committed, so it reports work on every fire.`:`Checks last committed ${j} (${he(b.gateLastCommitAt,d)})`})})]}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsx)(`span`,{children:`Instruction sent to the agent`})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,children:(0,G.jsx)(`span`,{children:b.agentPrompt??`No instruction sent to the agent.`})})]}):b.actionPlugin?(0,G.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,G.jsx)(ee,{size:14}),(0,G.jsxs)(`span`,{children:[b.actionPlugin,`.`,b.actionTool,b.actionArgs?` ${b.actionArgs}`:``]})]}):(0,G.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,G.jsx)(C,{size:14}),(0,G.jsx)(`span`,{children:`Scheduled trigger (no dispatch)`})]}),Z.length===0?(0,G.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,G.jsx)(E,{size:14}),(0,G.jsx)(`span`,{children:`No history recorded.`})]}):(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,G.jsx)(E,{size:14}),(0,G.jsxs)(`span`,{children:[`History (`,Z.length,` `,Z.length===1?`entry`:`entries`,`)`]})]}),(0,G.jsx)(`div`,{className:`routine-history`,children:Z.map((e,t)=>(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:e},t))})]})]}),f&&(0,G.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Name`}),(0,G.jsx)(`input`,{type:`text`,value:z,onChange:e=>B(e.target.value),disabled:m,maxLength:200,placeholder:`The routine's title, shown on the card`})]}),X&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Send to`}),(0,G.jsxs)(`div`,{className:`cal-modal-field-inline`,children:[(0,G.jsxs)(`select`,{value:W,disabled:m,onChange:e=>{ae(e.target.value),q(``)},children:[(0,G.jsx)(`option`,{value:``,children:`None (no dispatch)`}),(0,G.jsx)(`option`,{value:`whatsapp`,children:`WhatsApp`}),(0,G.jsx)(`option`,{value:`telegram`,children:`Telegram`})]}),W!==``&&(0,G.jsx)(y,{channel:W,size:16})]})]}),W!==``&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Destination`}),(0,G.jsxs)(`select`,{value:K,disabled:m||J===null,onChange:e=>q(e.target.value),children:[(0,G.jsx)(`option`,{value:``,children:J===null?`Loading destinations`:Q.length===0?`No registered destinations`:`Choose a destination`}),K!==``&&!Q.some(e=>e.destination===K)&&(0,G.jsxs)(`option`,{value:K,children:[K,` (not in the current list)`]}),Q.map(e=>(0,G.jsx)(`option`,{value:e.destination,children:se(e)},e.destination))]})]}),de&&(0,G.jsxs)(`div`,{className:`cal-modal-error`,children:[`Could not load destinations: `,de]})]}),(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Description`}),(0,G.jsx)(`input`,{type:`text`,value:V,onChange:e=>H(e.target.value),disabled:m,placeholder:`One line: what this routine is for`})]}),(D||_e)&&(0,G.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,G.jsx)(`span`,{children:`Instruction sent to the agent`}),(0,G.jsx)(`textarea`,{className:`cal-modal-textarea`,value:L,onChange:e=>R(e.target.value),disabled:m,rows:16,placeholder:`What should the agent do when this routine fires?`})]}),(0,G.jsx)(oe,{recurrence:b.recurrence,onChange:ie,disabled:m})]}),g&&(0,G.jsx)(`div`,{className:`cal-modal-error`,children:g}),(0,G.jsxs)(`div`,{className:`cal-modal-actions`,children:[!f&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{T(!1),I(!1),p(!0)},disabled:m,children:[(0,G.jsx)(s,{size:14}),` Edit`]}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>a(b),disabled:m,children:[(0,G.jsx)(E,{size:14}),` Runs`]}),M.control===`none`?(0,G.jsx)(`span`,{className:`cal-modal-confirm-text`,children:M.note}):(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:xe,disabled:m,children:[m&&F?(0,G.jsx)(l,{size:14,className:`spin`}):P?(0,G.jsx)(ne,{size:14}):(0,G.jsx)(te,{size:14}),F?P?`Confirm resume`:`Confirm suspend`:P?`Resume`:`Suspend`]}),F&&(0,G.jsx)(`span`,{className:`cal-modal-confirm-text`,children:P?`This routine will run at its next scheduled time. It will not run for the times it missed.`:`This routine stops running until you resume it. Nothing is deleted.`})]}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:Se,disabled:m,children:[m&&w?(0,G.jsx)(l,{size:14,className:`spin`}):(0,G.jsx)(u,{size:14}),w?`Confirm delete`:`Delete`]})]}),f&&(0,G.jsxs)(G.Fragment,{children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-primary`,onClick:be,disabled:m||ve,children:[m?(0,G.jsx)(l,{size:14,className:`spin`}):null,` Save`]}),(0,G.jsx)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{p(!1),_(null)},disabled:m,children:`Cancel`})]})]})]})})}function Q(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function _e(e){return e===null?`—`:e<1e3?`${e} ms`:`${(e/1e3).toFixed(1)} s`}function ve({run:e,routineName:t,onClose:n}){let{zone:r}=o();return(0,O.useEffect)(()=>{let e=e=>{e.key===`Escape`&&n()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[n]),(0,G.jsx)(`div`,{className:`cal-modal-overlay`,onClick:n,children:(0,G.jsxs)(`div`,{className:`cal-modal cal-modal-wide`,role:`dialog`,"aria-modal":`true`,"aria-label":`Run detail`,onClick:e=>e.stopPropagation(),children:[(0,G.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,G.jsx)(`span`,{className:`cal-modal-kind`,children:`Run`}),(0,G.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:n,"aria-label":`Close`,autoFocus:!0,children:(0,G.jsx)(c,{size:16})})]}),(0,G.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,G.jsx)(`div`,{className:`cal-modal-title`,children:t??`Untitled routine`}),e.outputExcerpt!==null&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,"data-testid":`run-output`,children:(0,G.jsx)(`span`,{children:e.outputExcerpt})}),e.outputExcerpt===null&&e.status===`finished`&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,"data-testid":`run-output-none`,children:(0,G.jsx)(`span`,{children:`This run finished without sending anything.`})}),(0,G.jsx)(`div`,{className:`cal-modal-row`,children:(0,G.jsx)(`span`,{children:W(e.status)})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Due: `,Q(e.scheduledFor,r)]})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Started: `,Q(e.startedAt,r)]})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Dispatch ended: `,Q(e.endedAt,r),` (`,_e(e.ranMs),`)`]})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Output seen: `,Q(e.finishedAt,r)]})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Sent to: `,e.target,` · `,e.mode,` · `,e.kind]})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Transport: `,e.dispatchResult??`—`,e.httpStatus===null?``:` (HTTP ${e.httpStatus})`]})}),e.error&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,children:(0,G.jsx)(`span`,{children:e.error})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Conversation: `,e.sessionKey??`—`,e.transcriptOffset===null?``:` at byte ${e.transcriptOffset}`]})}),!e.bounded&&e.status!==`gated`&&(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsx)(`span`,{children:`This run shares its conversation with other traffic, so what it produced cannot be separated out. Its status stays at whatever the dispatch reported.`})}),(0,G.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,G.jsxs)(`span`,{children:[`Run `,e.runId]})})]})]})})}function ye({status:e}){let t=ie(e);return(0,G.jsx)(`span`,{className:`routine-status-dot is-${t}`,"data-state":t,"aria-hidden":`true`})}var be=500;function xe(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function Se(e){return e===null?`—`:e<1e3?`${e} ms`:`${(e/1e3).toFixed(1)} s`}var Ce={channel:`a channel`,destination:`a destination`,prompt:`an instruction`};function we(e){if(e===`no-dispatch-configured`)return`This routine has no dispatch set up, so there was nothing to do.`;if(e===`no-action-plugin`)return`The tool action names no plugin, so nothing ran.`;if(e===`no-action-tool`)return`The tool action names no tool, so nothing ran.`;let t=e.startsWith(`no-`)?e.slice(3).split(`+`):[];if(t.length>0&&t.every(e=>e in Ce)){let e=t.map(e=>Ce[e]);return`This routine has no ${(e.length===1?e[0]:`${e.slice(0,-1).join(`, `)} and ${e[e.length-1]}`).replace(/^an? /,``)} set, so nothing was sent.`}return e}function Te(e){return e.status===`no-destination`?e.error?we(e.error):`Nothing was dispatched, and no reason was recorded.`:e.status===`failed`?e.error??e.dispatchResult??`The dispatch failed.`:e.status===`open`?`Opened and never closed. The dispatch did not report back.`:null}function Ee(e){let t=e.indexOf(`:`);return t<=0?{channel:null,destination:e}:{channel:e.slice(0,t),destination:e.slice(t+1)}}function De(e){return e.outputExcerpt===null?e.status===`finished`?`Finished and sent nothing.`:null:e.outputExcerpt}function Oe({routine:e,adminFetch:t,cacheKey:n,from:r=`card`,onBack:i}){let{zone:s}=o(),[c,u]=(0,O.useState)([]),[d,f]=(0,O.useState)(!0),[p,g]=(0,O.useState)(null),[_,b]=(0,O.useState)(null),x=(0,O.useRef)(0),S=(0,O.useCallback)(()=>{let n=!1,i=++x.current,a=()=>n||i!==x.current;return f(!0),g(null),t(`/api/admin/routines/${encodeURIComponent(e.eventId)}/runs?limit=${be}&from=${r}`).then(async e=>{if(a())return;if(!e.ok)throw Error(`HTTP ${e.status}`);let t=await e.json();a()||u(Array.isArray(t.runs)?t.runs:[])}).catch(e=>{a()||(g(e instanceof Error?e.message:`Failed to load`),u([]))}).finally(()=>{a()||f(!1)}),()=>{n=!0}},[t,e.eventId,r]);(0,O.useEffect)(()=>S(),[S]);let C=(0,O.useCallback)(()=>{T(n,e.eventId)},[n,e.eventId]);return(0,G.jsxs)(`div`,{className:`cal-page`,children:[(0,G.jsx)(`header`,{className:`cal-header`,children:(0,G.jsxs)(`div`,{className:`cal-nav`,children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:i,children:[(0,G.jsx)(h,{size:14}),` Routines`]}),(0,G.jsx)(`span`,{className:`cal-range-label runs-title`,"data-testid":`runs-title`,title:e.name??`Untitled routine`,children:e.name??`Untitled routine`}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,"data-testid":`runs-refresh`,onClick:S,disabled:d,title:`Refresh runs`,"aria-label":`Refresh runs`,children:[d?(0,G.jsx)(l,{size:14,className:`spin`}):(0,G.jsx)(a,{size:14}),` Refresh`]}),c.length>0&&(0,G.jsx)(`div`,{className:`routine-bulk-actions`,children:(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:C,children:[(0,G.jsx)(m,{size:14}),` Download all runs`]})})]})}),(0,G.jsxs)(`div`,{className:`cal-body`,children:[p&&(0,G.jsxs)(`div`,{className:`cal-error`,children:[`Could not load runs: `,p]}),!p&&!d&&c.length===0&&(0,G.jsxs)(`div`,{className:`cal-empty`,"data-testid":`runs-empty`,children:[(0,G.jsx)(`p`,{children:`Nothing to show for this routine.`}),(0,G.jsx)(`p`,{children:`That means one of three things, and this page cannot tell them apart: it has never run, it ran but no record was written, or every run it did have is older than the 30 days records are kept for.`}),(0,G.jsxs)(`p`,{children:[`For a repeating routine, the server log settles the middle one: a`,(0,G.jsx)(`code`,{children:` fires-without-records `}),` count above zero names a routine that fired and left no record. It does not distinguish the other two, and it does not cover a one-time routine.`]})]}),c.length>=be&&(0,G.jsxs)(`div`,{className:`cal-modal-confirm-text`,"data-testid":`runs-capped`,children:[`Showing the most recent `,be,` runs. There may be more; the download has everything still on record.`]}),(0,G.jsx)(`div`,{className:`routine-list`,children:c.map(e=>{let t=Te(e),n=De(e),{channel:r,destination:i}=Ee(e.target);return(0,G.jsxs)(`button`,{type:`button`,className:`admin-card admin-card--padded routine-card`,"data-testid":`run-row-${e.runId}`,onClick:()=>b(e),children:[(0,G.jsxs)(`span`,{className:`admin-card-title routine-card-title run-card-title`,children:[(0,G.jsx)(ye,{status:e.status}),` `,W(e.status)]}),(0,G.jsx)(`span`,{className:`routine-card-sched`,children:Se(e.ranMs)}),(0,G.jsx)(`span`,{className:`routine-card-target`,children:r?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(y,{channel:r,size:13}),` `,v[r]??r,` to `,r===`whatsapp`?Y(i):i]}):i}),(0,G.jsxs)(`span`,{className:`routine-card-meta`,children:[`Due `,xe(e.scheduledFor,s)]}),n&&(0,G.jsx)(`span`,{className:`routine-card-meta run-card-output`,children:n}),t&&(0,G.jsx)(`span`,{className:`routine-card-meta run-card-detail`,children:t})]},e.runId)})})]}),_&&(0,G.jsx)(ve,{run:_,routineName:e.name,onClose:()=>b(null)})]})}var ke=500;function Ae(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function je(e){return e===null?`—`:e<1e3?`${e} ms`:`${(e/1e3).toFixed(1)} s`}function Me({adminFetch:e,onBack:t}){let{zone:n}=o(),[r,i]=(0,O.useState)([]),[s,c]=(0,O.useState)(!0),[u,d]=(0,O.useState)(null),[f,p]=(0,O.useState)(null),m=(0,O.useRef)(0),g=(0,O.useCallback)(()=>{let t=!1,n=++m.current,r=()=>t||n!==m.current;return c(!0),d(null),e(`/api/admin/routines/runs?limit=${ke}`).then(async e=>{if(r())return;if(!e.ok)throw Error(`HTTP ${e.status}`);let t=await e.json();r()||i(Array.isArray(t.runs)?t.runs:[])}).catch(e=>{r()||(d(e instanceof Error?e.message:`Failed to load`),i([]))}).finally(()=>{r()||c(!1)}),()=>{t=!0}},[e]);return(0,O.useEffect)(()=>g(),[g]),(0,G.jsxs)(`div`,{className:`cal-page`,children:[(0,G.jsx)(`header`,{className:`cal-header`,children:(0,G.jsxs)(`div`,{className:`cal-nav`,children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:t,children:[(0,G.jsx)(h,{size:14}),` Routines`]}),(0,G.jsx)(`span`,{className:`cal-range-label runs-title`,"data-testid":`all-runs-title`,children:`All routine runs`}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,"data-testid":`all-runs-refresh`,onClick:g,disabled:s,title:`Refresh runs`,"aria-label":`Refresh runs`,children:[s?(0,G.jsx)(l,{size:14,className:`spin`}):(0,G.jsx)(a,{size:14}),` Refresh`]})]})}),(0,G.jsxs)(`div`,{className:`cal-body`,children:[u&&(0,G.jsxs)(`div`,{className:`cal-error`,children:[`Could not load runs: `,u]}),!u&&!s&&r.length===0&&(0,G.jsx)(`div`,{className:`cal-empty`,"data-testid":`all-runs-empty`,children:(0,G.jsx)(`p`,{children:`No routine has run yet.`})}),r.length>=ke&&(0,G.jsxs)(`div`,{className:`cal-modal-confirm-text`,"data-testid":`all-runs-capped`,children:[`Showing the most recent `,ke,` runs. There may be more on record.`]}),(0,G.jsx)(`div`,{className:`routine-list`,children:r.map(e=>{let t=Te(e),r=De(e),{channel:i,destination:a}=Ee(e.target);return(0,G.jsxs)(`button`,{type:`button`,className:`admin-card admin-card--padded routine-card`,"data-testid":`all-run-row-${e.runId}`,onClick:()=>p(e),children:[(0,G.jsxs)(`span`,{className:`admin-card-title routine-card-title run-card-title`,children:[(0,G.jsx)(ye,{status:e.status}),` `,e.eventName]}),(0,G.jsxs)(`span`,{className:`routine-card-sched`,children:[W(e.status),` · `,je(e.ranMs)]}),(0,G.jsx)(`span`,{className:`routine-card-target`,children:i?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(y,{channel:i,size:13}),` `,v[i]??i,` to `,i===`whatsapp`?Y(a):a]}):a}),(0,G.jsxs)(`span`,{className:`routine-card-meta`,children:[`Due `,Ae(e.scheduledFor,n)]}),r&&(0,G.jsx)(`span`,{className:`routine-card-meta run-card-output`,children:r}),t&&(0,G.jsx)(`span`,{className:`routine-card-meta run-card-detail`,children:t})]},e.runId)})})]}),f&&(0,G.jsx)(ve,{run:f,routineName:f.eventName,onClose:()=>p(null)})]})}t(((e,t)=>{t.exports={}}))();function Ne(e){return e.agentChannel&&e.agentDestination&&e.agentPrompt?!0:!!(e.actionPlugin&&e.actionTool)}function Pe(e){if(e.agentChannel||e.agentDestination||e.agentPrompt){let t=[];return e.agentChannel||t.push(`channel`),e.agentDestination||t.push(`destination`),e.agentPrompt||t.push(`prompt`),`no-${t.join(`+`)}`}return e.actionPlugin||e.actionTool?e.actionTool?`no-action-plugin`:`no-action-tool`:`no-dispatch-configured`}var $=`maxy-admin-session-key`;function Fe(e){return e?N(e):`One-time`}function Ie(e,t){if(!e)return`—`;let n=Date.parse(e);return Number.isFinite(n)?p(new Date(n).toISOString(),t):e}function Le(){let[e,t]=(0,O.useState)(null),[n,r]=(0,O.useState)(!1),[i,a]=(0,O.useState)(void 0),[o,s]=(0,O.useState)(null),[c,l]=(0,O.useState)(void 0),[u,p]=(0,O.useState)(null),[m,h]=(0,O.useState)(null);(0,O.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem($)}catch{}if(!n){r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem($)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&a(e.businessName),e.sessionId!==void 0&&s(e.sessionId??null),h(e.role??null),l(e.userName===void 0?null:e.userName),p(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let g=(0,O.useCallback)(()=>{try{sessionStorage.removeItem($)}catch{}window.location.href=`/`},[]),[_,v]=(0,O.useState)(!1),y=(0,O.useCallback)(async()=>{v(!0);try{let e=await b();if(e){try{sessionStorage.removeItem($)}catch{}window.location.href=`/`}return e}finally{v(!1)}},[]);return n?e?(0,G.jsx)(f,{cacheKey:e,surface:`routines`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=routines`);try{sessionStorage.removeItem($)}catch{}window.location.href=`/`},children:(0,G.jsx)(S,{cacheKey:e,businessName:i,sessionId:o,onLogout:g,onDisconnect:y,disconnecting:_,userName:c,userAvatar:u,role:m,children:(0,G.jsx)(Re,{cacheKey:e})})}):(0,G.jsx)(`div`,{className:`cal-page`,children:(0,G.jsxs)(`div`,{className:`cal-empty`,children:[(0,G.jsx)(`p`,{children:`You are not signed in.`}),(0,G.jsxs)(`p`,{children:[`Open the `,(0,G.jsx)(`a`,{href:`/`,className:`cal-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,G.jsx)(d,{surface:`gate`})}function Re({cacheKey:e}){let{zone:t}=o(),{adminFetch:n,cacheKey:r,sessionRefetchNonce:i}=g({initialCacheKey:e,surface:`routines`}),[s,c]=(0,O.useState)([]),[u,f]=(0,O.useState)(null),[p,m]=(0,O.useState)(!1),[h,_]=(0,O.useState)(!1),[b,S]=(0,O.useState)(null),[T,D]=(0,O.useState)(null),[k,A]=(0,O.useState)(null),[j,M]=(0,O.useState)(!1),N=(0,O.useCallback)(()=>{let e=!1;return m(!0),S(null),n(`/api/admin/routines`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();c(Array.isArray(n.routines)?n.routines:[]),f(typeof n.workflowRuns24h==`number`?n.workflowRuns24h:null)}).catch(t=>{e||(S(t instanceof Error?t.message:`Failed to load`),c([]),f(null))}).finally(()=>{e||(m(!1),_(!0))}),()=>{e=!0}},[n]);(0,O.useEffect)(()=>N(),[N,i]);let P=(0,O.useCallback)(e=>{c(t=>t.map(t=>t.eventId===e.eventId?e:t)),D(e)},[]),F=(0,O.useCallback)(e=>{c(t=>t.filter(t=>t.eventId!==e)),D(null)},[]),[I,L]=(0,O.useState)(!1),[R,z]=(0,O.useState)(null),B=s.filter(e=>e.eventStatus===`scheduled`).length,V=s.filter(e=>e.suspendedInBulk).length,H=(0,O.useCallback)(async e=>{L(!0),z(null);try{let t=await n(`/api/admin/routines/${e}`,{method:`POST`});if(!t.ok){let e=await t.json().catch(()=>({}));throw Error(e.error??`HTTP ${t.status}`)}let r=await t.json(),i=r.refused?.length??0;z(e===`suspend-all`?`Suspended ${r.suspended??0}. Nothing runs on its own until you resume it.`:`Resumed ${r.restored??0}${i>0?`. ${i} could not be resumed and stayed suspended`:``}. Routines you suspended one at a time are still suspended.`),N()}catch(e){z(e instanceof Error?e.message:`Failed`)}finally{L(!1)}},[n,N]);return h?j?(0,G.jsx)(Me,{adminFetch:n,onBack:()=>M(!1)}):k?(0,G.jsx)(Oe,{routine:k,adminFetch:n,cacheKey:r,from:`modal`,onBack:()=>A(null)}):(0,G.jsxs)(`div`,{className:`cal-page`,children:[(0,G.jsx)(`header`,{className:`cal-header`,children:(0,G.jsxs)(`div`,{className:`cal-nav`,children:[(0,G.jsxs)(`span`,{className:`cal-range-label`,children:[(0,G.jsx)(x,{size:16}),` Routines`]}),(0,G.jsxs)(`div`,{className:`routine-bulk-actions`,children:[(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,"data-testid":`routines-refresh`,onClick:N,disabled:p,title:`Refresh routines`,"aria-label":`Refresh routines`,children:[p?(0,G.jsx)(l,{size:14,className:`spin`}):(0,G.jsx)(a,{size:14}),` Refresh`]}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,"data-testid":`routines-history`,onClick:()=>M(!0),title:`All routine runs`,"aria-label":`All routine runs`,children:[(0,G.jsx)(E,{size:14}),` History`]}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>H(`suspend-all`),disabled:I||B===0,children:[(0,G.jsx)(te,{size:14}),` Suspend all (`,B,`)`]}),(0,G.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>H(`resume-all`),disabled:I||V===0,children:[(0,G.jsx)(ne,{size:14}),` Resume all (`,V,`)`]})]})]})}),(0,G.jsxs)(`div`,{className:`cal-body`,children:[!b&&(()=>{let e=fe(s);return(0,G.jsxs)(`div`,{className:`routine-rail-strip`,"data-testid":`routine-rail-strip`,children:[`Live recurring: `,e.live,` · `,e.model,` model · `,e.tool,` tool · `,e.none,` no dispatch`,` · `,`Workflow runs (24h): `,u===null?`—`:u]})})(),R&&(0,G.jsx)(`div`,{className:`cal-modal-confirm-text`,children:R}),b&&(0,G.jsxs)(`div`,{className:`cal-error`,children:[`Could not load routines: `,b]}),!b&&!p&&s.length===0&&(0,G.jsx)(`div`,{className:`cal-empty`,children:(0,G.jsx)(`p`,{children:`No routines yet.`})}),(0,G.jsx)(`div`,{className:`routine-list`,children:s.map(e=>{let n=e.eventStatus===`scheduled`&&!Ne(e)?Pe(e):null;return(0,G.jsxs)(`div`,{role:`button`,tabIndex:0,className:`admin-card admin-card--padded routine-card`,"data-testid":`routine-card-${e.eventId}`,onClick:()=>D(e),onKeyDown:t=>{(t.key===`Enter`||t.key===` `)&&(t.preventDefault(),D(e))},children:[(0,G.jsx)(`span`,{className:`admin-card-title routine-card-title`,title:e.name??`Untitled routine`,children:e.name??`Untitled routine`}),(0,G.jsxs)(`span`,{className:`routine-card-sched`,children:[(0,G.jsx)(C,{size:13}),` `,Fe(e.recurrence)]}),e.description&&(0,G.jsx)(`span`,{className:`routine-card-desc`,children:e.description}),n===null?(0,G.jsx)(`span`,{className:`routine-card-target`,children:e.agentChannel?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(y,{channel:e.agentChannel,size:13}),` `,v[e.agentChannel]??e.agentChannel,` to `,e.agentDestination??`—`]}):e.actionPlugin?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(ee,{size:13}),` `,e.actionPlugin,`.`,e.actionTool]}):(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(C,{size:13}),` Scheduled trigger`]})}):(0,G.jsxs)(`span`,{className:`routine-card-target routine-card-target--gap`,children:[(0,G.jsx)(w,{size:13}),` `,we(n)]}),e.dispatchFailing===!0&&n===null&&(0,G.jsxs)(`span`,{className:`routine-card-target routine-card-target--gap`,"data-testid":`routine-dispatch-${e.eventId}`,children:[(0,G.jsx)(w,{size:13}),` Last dispatch failed: `,e.lastDispatchResult]}),(()=>{let t=[],n=ue[le(e)];n&&t.push(n),e.runs24h>0&&t.push(`24h: ${e.runs24h} ${e.runs24h===1?`fire`:`fires`}, ${e.gated24h} skipped`);let r=e.gateNeverGates===!0&&e.dispatchFailing!==!0;return r&&t.push(`this gate is decoration`),t.length===0?null:(0,G.jsx)(`span`,{className:r?`routine-card-gate routine-card-target--gap`:`routine-card-gate`,"data-testid":`routine-gate-${e.eventId}`,children:r?(0,G.jsxs)(G.Fragment,{children:[(0,G.jsx)(w,{size:13}),` `,t.join(` · `)]}):t.join(` · `)})})(),(0,G.jsxs)(`span`,{className:`routine-card-meta`,children:[(0,G.jsx)(ce,{eventStatus:e.eventStatus}),`Next: `,Ie(e.nextRun,t),` · `,e.eventStatus??`unknown`]})]},e.eventId)})})]}),T&&(0,G.jsx)(Z,{routine:T,adminFetch:n,onClose:()=>D(null),onSaved:P,onDeleted:F,onViewRuns:e=>{D(null),A(e)}})]}):(0,G.jsx)(d,{surface:`gate`})}(0,D.createRoot)(document.getElementById(`root`)).render((0,G.jsx)(Le,{}));
@@ -1 +1 @@
1
- import{o as e}from"./chunk-BycB0eMI.js";import{i as t,n,t as r}from"./jsx-runtime-CvVXOszc.js";import{I as i,J as a,K as o,L as s,N as c,P as l,lt as u}from"./useMediaQuery-C_1CV_iW.js";import{A as d,h as f,t as p}from"./AdminShell-1HyATV_t.js";import{t as m}from"./file-text-BJDCb334.js";var h=n(),g=e(t(),1),_=r();function v({summary:e,adminFetch:t,onClose:n,onDeleted:r}){let[c,l]=(0,g.useState)(null),[u,d]=(0,g.useState)(!0),[p,h]=(0,g.useState)(null),[v,y]=(0,g.useState)(!1),[b,x]=(0,g.useState)(!1);(0,g.useEffect)(()=>{let n=!1;return d(!0),h(null),t(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`).then(async e=>{if(!n){if(!e.ok)throw Error(`HTTP ${e.status}`);l((await e.json()).skill)}}).catch(e=>{n||h(e instanceof Error?e.message:`Failed to load`)}).finally(()=>{n||d(!1)}),()=>{n=!0}},[t,e.plugin,e.skill]),(0,g.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!b&&n()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[b,n]);let S=(0,g.useCallback)(async()=>{x(!0),h(null);try{let n=await t(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`,{method:`DELETE`,headers:{"content-type":`application/json`}});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`HTTP ${n.status}`)}r(e)}catch(e){h(e instanceof Error?e.message:`Delete failed`),x(!1),y(!1)}},[t,e,r]);return(0,_.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{b||n()},children:(0,_.jsxs)(`div`,{className:`cal-modal cal-modal-wide`,role:`dialog`,"aria-modal":`true`,"aria-label":`Skill detail`,onClick:e=>e.stopPropagation(),children:[(0,_.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,_.jsxs)(`span`,{className:`cal-modal-kind`,children:[(0,_.jsx)(f,{size:13}),` Skill`]}),(0,_.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:n,"aria-label":`Close`,autoFocus:!0,disabled:b,children:(0,_.jsx)(i,{size:16})})]}),(0,_.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,_.jsx)(`div`,{className:`cal-modal-title`,children:e.skill}),(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(m,{size:14}),(0,_.jsx)(`span`,{children:e.plugin})]}),u&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(o,{size:14,className:`spin`}),(0,_.jsx)(`span`,{children:`Loading…`})]}),c&&(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,_.jsx)(`span`,{children:c.frontmatter.description||`No description.`})}),c.frontmatter.publicEmbed&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(a,{size:14}),(0,_.jsx)(`span`,{children:`Public embed`})]}),(0,_.jsx)(`pre`,{className:`skill-body`,children:c.body.trim()||`No body content.`}),c.references.length>0&&(0,_.jsxs)(`div`,{className:`skill-refs`,children:[(0,_.jsx)(`span`,{className:`skill-refs-label`,children:`References`}),c.references.map(e=>(0,_.jsxs)(`span`,{className:`skill-ref`,children:[(0,_.jsx)(m,{size:13}),` `,e]},e))]})]})]}),p&&(0,_.jsx)(`div`,{className:`cal-modal-error`,children:p}),(0,_.jsxs)(`div`,{className:`cal-modal-actions`,children:[!v&&(0,_.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:()=>y(!0),disabled:b||u,children:[(0,_.jsx)(s,{size:14}),` Delete`]}),v&&(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(`span`,{className:`cal-modal-confirm-text`,children:`Delete this skill?`}),(0,_.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:S,disabled:b,children:[b?(0,_.jsx)(o,{size:14,className:`spin`}):(0,_.jsx)(s,{size:14}),` Delete`]}),(0,_.jsx)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>y(!1),disabled:b,children:`Cancel`})]})]})]})})}var y=`maxy-admin-session-key`;function b(){let[e,t]=(0,g.useState)(null),[n,r]=(0,g.useState)(!1),[i,a]=(0,g.useState)(void 0),[o,s]=(0,g.useState)(null),[u,f]=(0,g.useState)(void 0),[m,h]=(0,g.useState)(null),[v,b]=(0,g.useState)(null);(0,g.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(y)}catch{}if(!n){r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&a(e.businessName),e.sessionId!==void 0&&s(e.sessionId??null),b(e.role??null),f(e.userName===void 0?null:e.userName),h(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let S=(0,g.useCallback)(()=>{try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`},[]),[C,w]=(0,g.useState)(!1),T=(0,g.useCallback)(async()=>{w(!0);try{let e=await d();if(e){try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`}return e}finally{w(!1)}},[]);return n?e?(0,_.jsx)(l,{cacheKey:e,surface:`skills`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=skills`);try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`},children:(0,_.jsx)(p,{cacheKey:e,businessName:i,sessionId:o,onLogout:S,onDisconnect:T,disconnecting:C,userName:u,userAvatar:m,role:v,children:(0,_.jsx)(x,{cacheKey:e})})}):(0,_.jsx)(`div`,{className:`cal-page`,children:(0,_.jsxs)(`div`,{className:`cal-empty`,children:[(0,_.jsx)(`p`,{children:`You are not signed in.`}),(0,_.jsxs)(`p`,{children:[`Open the `,(0,_.jsx)(`a`,{href:`/`,className:`cal-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,_.jsx)(c,{surface:`gate`})}function x({cacheKey:e}){let{adminFetch:t,sessionRefetchNonce:n}=u({initialCacheKey:e,surface:`skills`}),[r,i]=(0,g.useState)([]),[a,s]=(0,g.useState)(!1),[l,d]=(0,g.useState)(!1),[p,h]=(0,g.useState)(null),[y,b]=(0,g.useState)(null),x=(0,g.useCallback)(()=>{let e=!1;return s(!0),h(null),t(`/api/admin/skills`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();i(Array.isArray(n.skills)?n.skills:[])}).catch(t=>{e||(h(t instanceof Error?t.message:`Failed to load`),i([]))}).finally(()=>{e||(s(!1),d(!0))}),()=>{e=!0}},[t]);(0,g.useEffect)(()=>x(),[x,n]);let S=(0,g.useCallback)(e=>{i(t=>t.filter(t=>!(t.plugin===e.plugin&&t.skill===e.skill))),b(null),x()},[x]);return l?(0,_.jsxs)(`div`,{className:`cal-page`,children:[(0,_.jsx)(`header`,{className:`cal-header`,children:(0,_.jsxs)(`div`,{className:`cal-nav`,children:[(0,_.jsxs)(`span`,{className:`cal-range-label`,children:[(0,_.jsx)(f,{size:16}),` Skills`]}),a&&(0,_.jsx)(o,{size:16,className:`spin`})]})}),(0,_.jsxs)(`div`,{className:`cal-body`,children:[p&&(0,_.jsxs)(`div`,{className:`cal-error`,children:[`Could not load skills: `,p]}),!p&&!a&&r.length===0&&(0,_.jsx)(`div`,{className:`cal-empty`,children:(0,_.jsx)(`p`,{children:`No skills yet. Ask in chat to create one.`})}),r.length>0&&(0,_.jsx)(`div`,{className:`routine-list`,children:r.map(e=>(0,_.jsxs)(`button`,{type:`button`,className:`admin-card admin-card--padded routine-card`,onClick:()=>b(e),children:[(0,_.jsx)(`span`,{className:`admin-card-title routine-card-title`,children:e.skill}),(0,_.jsxs)(`span`,{className:`routine-card-sched`,children:[(0,_.jsx)(m,{size:13}),` `,e.plugin]}),(0,_.jsx)(`span`,{className:`skill-card-desc`,children:e.description||`No description.`}),(0,_.jsx)(`span`,{className:`routine-card-meta`,children:e.refCount===0?`No references`:`${e.refCount} reference${e.refCount===1?``:`s`}`})]},`${e.plugin}/${e.skill}`))})]}),y&&(0,_.jsx)(v,{summary:y,adminFetch:t,onClose:()=>b(null),onDeleted:S})]}):(0,_.jsx)(c,{surface:`gate`})}(0,h.createRoot)(document.getElementById(`root`)).render((0,_.jsx)(b,{}));
1
+ import{o as e}from"./chunk-BycB0eMI.js";import{i as t,n,t as r}from"./jsx-runtime-BCAZhYqz.js";import{I as i,J as a,K as o,L as s,N as c,P as l,lt as u}from"./useMediaQuery-CLVRXJMp.js";import{A as d,h as f,t as p}from"./AdminShell-CrCdEMNW.js";import{t as m}from"./file-text-Cy-IjCf8.js";var h=n(),g=e(t(),1),_=r();function v({summary:e,adminFetch:t,onClose:n,onDeleted:r}){let[c,l]=(0,g.useState)(null),[u,d]=(0,g.useState)(!0),[p,h]=(0,g.useState)(null),[v,y]=(0,g.useState)(!1),[b,x]=(0,g.useState)(!1);(0,g.useEffect)(()=>{let n=!1;return d(!0),h(null),t(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`).then(async e=>{if(!n){if(!e.ok)throw Error(`HTTP ${e.status}`);l((await e.json()).skill)}}).catch(e=>{n||h(e instanceof Error?e.message:`Failed to load`)}).finally(()=>{n||d(!1)}),()=>{n=!0}},[t,e.plugin,e.skill]),(0,g.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!b&&n()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[b,n]);let S=(0,g.useCallback)(async()=>{x(!0),h(null);try{let n=await t(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`,{method:`DELETE`,headers:{"content-type":`application/json`}});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`HTTP ${n.status}`)}r(e)}catch(e){h(e instanceof Error?e.message:`Delete failed`),x(!1),y(!1)}},[t,e,r]);return(0,_.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{b||n()},children:(0,_.jsxs)(`div`,{className:`cal-modal cal-modal-wide`,role:`dialog`,"aria-modal":`true`,"aria-label":`Skill detail`,onClick:e=>e.stopPropagation(),children:[(0,_.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,_.jsxs)(`span`,{className:`cal-modal-kind`,children:[(0,_.jsx)(f,{size:13}),` Skill`]}),(0,_.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:n,"aria-label":`Close`,autoFocus:!0,disabled:b,children:(0,_.jsx)(i,{size:16})})]}),(0,_.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,_.jsx)(`div`,{className:`cal-modal-title`,children:e.skill}),(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(m,{size:14}),(0,_.jsx)(`span`,{children:e.plugin})]}),u&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(o,{size:14,className:`spin`}),(0,_.jsx)(`span`,{children:`Loading…`})]}),c&&(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,_.jsx)(`span`,{children:c.frontmatter.description||`No description.`})}),c.frontmatter.publicEmbed&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(a,{size:14}),(0,_.jsx)(`span`,{children:`Public embed`})]}),(0,_.jsx)(`pre`,{className:`skill-body`,children:c.body.trim()||`No body content.`}),c.references.length>0&&(0,_.jsxs)(`div`,{className:`skill-refs`,children:[(0,_.jsx)(`span`,{className:`skill-refs-label`,children:`References`}),c.references.map(e=>(0,_.jsxs)(`span`,{className:`skill-ref`,children:[(0,_.jsx)(m,{size:13}),` `,e]},e))]})]})]}),p&&(0,_.jsx)(`div`,{className:`cal-modal-error`,children:p}),(0,_.jsxs)(`div`,{className:`cal-modal-actions`,children:[!v&&(0,_.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:()=>y(!0),disabled:b||u,children:[(0,_.jsx)(s,{size:14}),` Delete`]}),v&&(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(`span`,{className:`cal-modal-confirm-text`,children:`Delete this skill?`}),(0,_.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:S,disabled:b,children:[b?(0,_.jsx)(o,{size:14,className:`spin`}):(0,_.jsx)(s,{size:14}),` Delete`]}),(0,_.jsx)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>y(!1),disabled:b,children:`Cancel`})]})]})]})})}var y=`maxy-admin-session-key`;function b(){let[e,t]=(0,g.useState)(null),[n,r]=(0,g.useState)(!1),[i,a]=(0,g.useState)(void 0),[o,s]=(0,g.useState)(null),[u,f]=(0,g.useState)(void 0),[m,h]=(0,g.useState)(null),[v,b]=(0,g.useState)(null);(0,g.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(y)}catch{}if(!n){r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&a(e.businessName),e.sessionId!==void 0&&s(e.sessionId??null),b(e.role??null),f(e.userName===void 0?null:e.userName),h(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let S=(0,g.useCallback)(()=>{try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`},[]),[C,w]=(0,g.useState)(!1),T=(0,g.useCallback)(async()=>{w(!0);try{let e=await d();if(e){try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`}return e}finally{w(!1)}},[]);return n?e?(0,_.jsx)(l,{cacheKey:e,surface:`skills`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=skills`);try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`},children:(0,_.jsx)(p,{cacheKey:e,businessName:i,sessionId:o,onLogout:S,onDisconnect:T,disconnecting:C,userName:u,userAvatar:m,role:v,children:(0,_.jsx)(x,{cacheKey:e})})}):(0,_.jsx)(`div`,{className:`cal-page`,children:(0,_.jsxs)(`div`,{className:`cal-empty`,children:[(0,_.jsx)(`p`,{children:`You are not signed in.`}),(0,_.jsxs)(`p`,{children:[`Open the `,(0,_.jsx)(`a`,{href:`/`,className:`cal-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,_.jsx)(c,{surface:`gate`})}function x({cacheKey:e}){let{adminFetch:t,sessionRefetchNonce:n}=u({initialCacheKey:e,surface:`skills`}),[r,i]=(0,g.useState)([]),[a,s]=(0,g.useState)(!1),[l,d]=(0,g.useState)(!1),[p,h]=(0,g.useState)(null),[y,b]=(0,g.useState)(null),x=(0,g.useCallback)(()=>{let e=!1;return s(!0),h(null),t(`/api/admin/skills`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();i(Array.isArray(n.skills)?n.skills:[])}).catch(t=>{e||(h(t instanceof Error?t.message:`Failed to load`),i([]))}).finally(()=>{e||(s(!1),d(!0))}),()=>{e=!0}},[t]);(0,g.useEffect)(()=>x(),[x,n]);let S=(0,g.useCallback)(e=>{i(t=>t.filter(t=>!(t.plugin===e.plugin&&t.skill===e.skill))),b(null),x()},[x]);return l?(0,_.jsxs)(`div`,{className:`cal-page`,children:[(0,_.jsx)(`header`,{className:`cal-header`,children:(0,_.jsxs)(`div`,{className:`cal-nav`,children:[(0,_.jsxs)(`span`,{className:`cal-range-label`,children:[(0,_.jsx)(f,{size:16}),` Skills`]}),a&&(0,_.jsx)(o,{size:16,className:`spin`})]})}),(0,_.jsxs)(`div`,{className:`cal-body`,children:[p&&(0,_.jsxs)(`div`,{className:`cal-error`,children:[`Could not load skills: `,p]}),!p&&!a&&r.length===0&&(0,_.jsx)(`div`,{className:`cal-empty`,children:(0,_.jsx)(`p`,{children:`No skills yet. Ask in chat to create one.`})}),r.length>0&&(0,_.jsx)(`div`,{className:`routine-list`,children:r.map(e=>(0,_.jsxs)(`button`,{type:`button`,className:`admin-card admin-card--padded routine-card`,onClick:()=>b(e),children:[(0,_.jsx)(`span`,{className:`admin-card-title routine-card-title`,children:e.skill}),(0,_.jsxs)(`span`,{className:`routine-card-sched`,children:[(0,_.jsx)(m,{size:13}),` `,e.plugin]}),(0,_.jsx)(`span`,{className:`skill-card-desc`,children:e.description||`No description.`}),(0,_.jsx)(`span`,{className:`routine-card-meta`,children:e.refCount===0?`No references`:`${e.refCount} reference${e.refCount===1?``:`s`}`})]},`${e.plugin}/${e.skill}`))})]}),y&&(0,_.jsx)(v,{summary:y,adminFetch:t,onClose:()=>b(null),onDeleted:S})]}):(0,_.jsx)(c,{surface:`gate`})}(0,h.createRoot)(document.getElementById(`root`)).render((0,_.jsx)(b,{}));
@@ -1,3 +1,3 @@
1
- import{o as e}from"./chunk-BycB0eMI.js";import{i as t,n,t as r}from"./jsx-runtime-CvVXOszc.js";import{H as i,I as a,L as o,N as s,P as c,Q as l,R as u,d,lt as f}from"./useMediaQuery-C_1CV_iW.js";import{A as p,a as m,f as h,n as ee,t as g,v as _}from"./AdminShell-1HyATV_t.js";import{t as v}from"./play-CYqOCqm6.js";import{t as y}from"./rotate-ccw-CqlRlGsY.js";var b=n(),x=e(t(),1);function te(e=3e4){let[t,n]=(0,x.useState)(()=>Date.now());return(0,x.useEffect)(()=>{let t=setInterval(()=>n(Date.now()),e);return()=>clearInterval(t)},[e]),t}function ne(e,t){let n=new Map,r=(e,t,r)=>{let i=n.get(e)??{openCount:0,totalSeconds:0};i.totalSeconds+=t,r&&(i.openCount+=1),n.set(e,i)};for(let t of e)t.clientName&&r(t.clientName,t.secondsLogged,!0);for(let e of t)e.clientName&&r(e.clientName,e.secondsLogged,!1);let i=[...n.entries()].map(([e,t])=>({name:e,openCount:t.openCount,totalSeconds:t.totalSeconds}));return i.sort((e,t)=>t.openCount-e.openCount||e.name.localeCompare(t.name)),S(e,i),i}function S(e,t){let n=t.reduce((e,t)=>e+t.openCount,0),r=e.filter(e=>!e.clientName).length,i=n+r===e.length;return i||console.warn(`[tasks-clients] reconcile-mismatch assigned=${n} unassigned=${r} openTotal=${e.length}`),i}var C=`__unassigned__`;function w(e,t){return e===`__unassigned__`?`Unassigned`:t||e.slice(0,8)}function T(e){return e===null||e===``?C:e}function re(e,t){let n=new Map,r=(e,t)=>{let r=T(e.assigneeUserId),i=n.get(r)??{name:null,openCount:0,totalCount:0};i.name===null&&e.assigneeName&&(i.name=e.assigneeName),i.totalCount+=1,t&&(i.openCount+=1),n.set(r,i)};for(let t of e)r(t,!0);for(let e of t)r(e,!1);let i=[...n.entries()].map(([e,t])=>({userId:e,label:w(e,t.name),openCount:t.openCount,totalCount:t.totalCount}));return i.sort((e,t)=>t.openCount-e.openCount||e.label.localeCompare(t.label)),i}function E(e,t){return t===null?!0:T(e.assigneeUserId)===t}var D=r();function O(e){let t=e.name??e.userId.slice(0,8);return e.kind===`owner`?`${t} (owner)`:t}var k=`maxy-admin-session-key`;function ie(e){let t=[];return e.clientName&&t.push(e.clientName),e.propertyAddress&&t.push(e.propertyAddress),e.fee!=null&&t.push(`£${e.fee}`),t.join(` · `)}function A(e){if(!e)return``;let t=Date.parse(e);if(!Number.isFinite(t))return``;let n=new Date(t);return`${n.getUTCDate()} ${[`Jan`,`Feb`,`Mar`,`Apr`,`May`,`Jun`,`Jul`,`Aug`,`Sep`,`Oct`,`Nov`,`Dec`][n.getUTCMonth()]} ${n.getUTCFullYear()}`}function j(e){return e.assigneeName?e.assigneeName:e.assigneeUserId?e.assigneeUserId.slice(0,8):`Unassigned`}function M(e,t){return[t,A(e.createdAt),j(e)].filter(Boolean).join(` · `)}function ae(e,t){if(e.running&&e.runningStartedAt){let n=Date.parse(e.runningStartedAt);if(Number.isFinite(n))return e.secondsLogged+Math.max(0,(t-n)/1e3)}return e.secondsLogged}function oe(e){let t=[`Task: ${e.title}\nTask id: ${e.taskId}`],n=e.description.trim();n.length>0&&t.push(n);let r=e.notes.trim();return r.length>0&&t.push(`Notes:\n${r}`),t.join(`
1
+ import{o as e}from"./chunk-BycB0eMI.js";import{i as t,n,t as r}from"./jsx-runtime-BCAZhYqz.js";import{H as i,I as a,L as o,N as s,P as c,Q as l,R as u,d,lt as f}from"./useMediaQuery-CLVRXJMp.js";import{A as p,a as m,f as h,n as ee,t as g,v as _}from"./AdminShell-CrCdEMNW.js";import{t as v}from"./play-BL4ztD3m.js";import{t as y}from"./rotate-ccw-ckXDebK2.js";var b=n(),x=e(t(),1);function te(e=3e4){let[t,n]=(0,x.useState)(()=>Date.now());return(0,x.useEffect)(()=>{let t=setInterval(()=>n(Date.now()),e);return()=>clearInterval(t)},[e]),t}function ne(e,t){let n=new Map,r=(e,t,r)=>{let i=n.get(e)??{openCount:0,totalSeconds:0};i.totalSeconds+=t,r&&(i.openCount+=1),n.set(e,i)};for(let t of e)t.clientName&&r(t.clientName,t.secondsLogged,!0);for(let e of t)e.clientName&&r(e.clientName,e.secondsLogged,!1);let i=[...n.entries()].map(([e,t])=>({name:e,openCount:t.openCount,totalSeconds:t.totalSeconds}));return i.sort((e,t)=>t.openCount-e.openCount||e.name.localeCompare(t.name)),S(e,i),i}function S(e,t){let n=t.reduce((e,t)=>e+t.openCount,0),r=e.filter(e=>!e.clientName).length,i=n+r===e.length;return i||console.warn(`[tasks-clients] reconcile-mismatch assigned=${n} unassigned=${r} openTotal=${e.length}`),i}var C=`__unassigned__`;function w(e,t){return e===`__unassigned__`?`Unassigned`:t||e.slice(0,8)}function T(e){return e===null||e===``?C:e}function re(e,t){let n=new Map,r=(e,t)=>{let r=T(e.assigneeUserId),i=n.get(r)??{name:null,openCount:0,totalCount:0};i.name===null&&e.assigneeName&&(i.name=e.assigneeName),i.totalCount+=1,t&&(i.openCount+=1),n.set(r,i)};for(let t of e)r(t,!0);for(let e of t)r(e,!1);let i=[...n.entries()].map(([e,t])=>({userId:e,label:w(e,t.name),openCount:t.openCount,totalCount:t.totalCount}));return i.sort((e,t)=>t.openCount-e.openCount||e.label.localeCompare(t.label)),i}function E(e,t){return t===null?!0:T(e.assigneeUserId)===t}var D=r();function O(e){let t=e.name??e.userId.slice(0,8);return e.kind===`owner`?`${t} (owner)`:t}var k=`maxy-admin-session-key`;function ie(e){let t=[];return e.clientName&&t.push(e.clientName),e.propertyAddress&&t.push(e.propertyAddress),e.fee!=null&&t.push(`£${e.fee}`),t.join(` · `)}function A(e){if(!e)return``;let t=Date.parse(e);if(!Number.isFinite(t))return``;let n=new Date(t);return`${n.getUTCDate()} ${[`Jan`,`Feb`,`Mar`,`Apr`,`May`,`Jun`,`Jul`,`Aug`,`Sep`,`Oct`,`Nov`,`Dec`][n.getUTCMonth()]} ${n.getUTCFullYear()}`}function j(e){return e.assigneeName?e.assigneeName:e.assigneeUserId?e.assigneeUserId.slice(0,8):`Unassigned`}function M(e,t){return[t,A(e.createdAt),j(e)].filter(Boolean).join(` · `)}function ae(e,t){if(e.running&&e.runningStartedAt){let n=Date.parse(e.runningStartedAt);if(Number.isFinite(n))return e.secondsLogged+Math.max(0,(t-n)/1e3)}return e.secondsLogged}function oe(e){let t=[`Task: ${e.title}\nTask id: ${e.taskId}`],n=e.description.trim();n.length>0&&t.push(n);let r=e.notes.trim();return r.length>0&&t.push(`Notes:\n${r}`),t.join(`
2
2
 
3
3
  `).slice(0,2e3)}function se({clients:e,onSelect:t}){return(0,D.jsxs)(`section`,{className:`admin-card tasks-card`,children:[(0,D.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,D.jsx)(`span`,{className:`tasks-card-title`,children:`Clients`}),(0,D.jsxs)(`span`,{className:`tasks-card-count`,children:[e.length,` total`]})]}),e.length===0&&(0,D.jsx)(`div`,{className:`tasks-empty`,children:`No clients yet.`}),e.map(e=>(0,D.jsx)(`button`,{className:`tasks-row tasks-client-row`,onClick:()=>t(e.name),children:(0,D.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,D.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,D.jsxs)(`div`,{className:`tasks-row-sub`,children:[e.openCount,` open · `,d(e.totalSeconds),` logged`]})]})},e.name))]})}function ce({task:e,roster:t,busy:n,onAssign:r,onClose:i}){return(0,x.useEffect)(()=>{let e=e=>{e.key===`Escape`&&i()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[i]),(0,D.jsx)(`div`,{className:`tasks-detail-backdrop`,onClick:i,children:(0,D.jsxs)(`div`,{className:`tasks-detail`,role:`dialog`,"aria-modal":`true`,"aria-label":`Task detail`,onClick:e=>e.stopPropagation(),children:[(0,D.jsxs)(`div`,{className:`tasks-detail-head`,children:[(0,D.jsx)(`h2`,{className:`tasks-detail-title`,children:e?e.name:`Task no longer available`}),(0,D.jsx)(`button`,{className:`tasks-detail-close`,"aria-label":`Close`,onClick:i,children:(0,D.jsx)(a,{size:16})})]}),e===null?(0,D.jsx)(`p`,{className:`tasks-detail-gone`,children:`This task is no longer in the list. It may have been completed, cancelled or removed. Close this and reload to see the current list.`}):(0,D.jsxs)(`dl`,{className:`tasks-detail-fields`,children:[(0,D.jsx)(`dt`,{children:`Status`}),(0,D.jsx)(`dd`,{children:e.status}),(0,D.jsx)(`dt`,{children:`Logged`}),(0,D.jsx)(`dd`,{children:d(e.secondsLogged)}),(0,D.jsx)(`dt`,{children:`Created`}),(0,D.jsx)(`dd`,{children:A(e.createdAt)||`Not recorded`}),(0,D.jsx)(`dt`,{children:`Assignee`}),(0,D.jsx)(`dd`,{children:e.taskId===null?j(e):(0,D.jsxs)(`select`,{className:`tasks-assign-select`,"aria-label":`Assignee`,disabled:n,value:e.assigneeUserId??``,onChange:t=>r(e.taskId,t.target.value===``?null:t.target.value),children:[(0,D.jsx)(`option`,{value:``,children:`Unassigned`}),e.assigneeUserId&&!t.some(t=>t.userId===e.assigneeUserId)&&(0,D.jsxs)(`option`,{value:e.assigneeUserId,children:[j(e),` (not in roster)`]}),t.map(e=>(0,D.jsx)(`option`,{value:e.userId,children:O(e)},e.userId))]})}),e.clientName&&(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(`dt`,{children:`Client`}),(0,D.jsx)(`dd`,{children:e.clientName})]}),e.propertyAddress&&(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(`dt`,{children:`Property`}),(0,D.jsx)(`dd`,{children:e.propertyAddress})]}),e.fee!=null&&(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(`dt`,{children:`Fee`}),(0,D.jsxs)(`dd`,{children:[`£`,e.fee]})]})]})]})})}function N({adminFetch:e}){let[t,n]=(0,x.useState)({open:[],completed:[]}),[r,c]=(0,x.useState)(!1),[f,p]=(0,x.useState)(!1),g=(0,x.useRef)(!1),b=(0,x.useRef)(``),S=te(1e3),[C,w]=(0,x.useState)(`open`),[T,O]=(0,x.useState)(null),[k,A]=(0,x.useState)(null),[j,N]=(0,x.useState)(null),[P,F]=(0,x.useState)(``),[I,L]=(0,x.useState)(null),[le,R]=(0,x.useState)(null),[z,B]=(0,x.useState)(null),V=(0,x.useRef)(new Map),H=(0,x.useRef)(new Set),[ue,U]=(0,x.useState)(new Set),W=(0,x.useMemo)(()=>{if(I!==null)return[...t.open,...t.completed].find(e=>e.rowKey===I)??null},[t,I]),G=(0,x.useMemo)(()=>z===null?null:[...t.open,...t.completed].find(e=>e.rowKey===z)??null,[t,z]);(0,x.useEffect)(()=>{I!==null&&W===null&&console.error(`[tasks-ui] op=detail-failed rowKey=${I} reason=not-in-list`)},[I,W]);let K=(0,x.useMemo)(()=>ne(t.open,t.completed),[t]),q=(0,x.useMemo)(()=>T===null?{open:t.open,completed:t.completed}:{open:t.open.filter(e=>e.clientName===T),completed:t.completed.filter(e=>e.clientName===T)},[t,T]),J=(0,x.useMemo)(()=>re(q.open,q.completed),[q]),de=(0,x.useCallback)(e=>{O(e),w(`open`)},[]);(0,x.useEffect)(()=>{T&&!K.some(e=>e.name===T)&&O(null)},[K,T]),(0,x.useEffect)(()=>{k&&!J.some(e=>e.userId===k)&&A(null)},[J,k]),(0,x.useEffect)(()=>{R(null),B(null)},[C,T,k]);let Y=t.open.filter(e=>e.running||(T===null||e.clientName===T)&&E(e,k)),X=(T?t.completed.filter(e=>e.clientName===T):t.completed).filter(e=>E(e,k)),[fe,pe]=(0,x.useState)([]),Z=(0,x.useCallback)(async()=>{let t=await e(`/api/admin/tasks-list`);t.ok&&n(await t.json()),c(!0)},[e]);(0,x.useEffect)(()=>{Z()},[Z]),(0,x.useEffect)(()=>{(async()=>{let t=await e(`/api/admin/admin-users-list`);if(t.ok){let e=await t.json();e.ok&&Array.isArray(e.users)&&pe(e.users)}})()},[e]);let Q=(0,x.useCallback)(async(t,n,r)=>{if(g.current)return!1;g.current=!0,p(!0);try{return await e(t,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({taskId:n,...r})}),await Z(),!0}finally{g.current=!1,p(!1)}},[e,Z]),me=(0,x.useCallback)(async e=>{await Q(`/api/admin/task-complete`,e)},[Q]),he=(0,x.useCallback)(async e=>{await Q(`/api/admin/task-delete`,e,{confirmed:!0})},[Q]),ge=(0,x.useCallback)((e,t)=>{let n=String(Math.round(e.secondsLogged/60));b.current=n,N(t),F(n)},[]),$=(0,x.useCallback)(()=>{N(null),F(``)},[]),_e=(0,x.useCallback)(async e=>{let t=P.trim(),n=Number(t);if(!(t===``||!Number.isInteger(n)||n<0)){if(t===b.current){$();return}N(null),F(``),await Q(`/api/admin/task-time-adjust`,e,{newSeconds:n*60})}},[P,Q,$]),ve=(0,x.useCallback)(e=>{Q(`/api/admin/task-time-adjust`,e,{newSeconds:0})},[Q]),ye=(0,x.useCallback)((e,t)=>{Q(`/api/admin/task-assign`,e,{assigneeUserId:t})},[Q]),be=(0,x.useCallback)(async t=>{if(!H.current.has(t)){H.current.add(t),U(new Set(H.current));try{let n=await e(`/api/admin/task-session-open`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({taskId:t})});if(!n.ok){console.error(`[admin-ui] task-session op=open-failed taskId=${t} status=${n.status}`);return}let{sessionId:r,title:i,description:a,notes:o}=await n.json();if(r!==null){let e=`/chat?session=${r}`;window.location.assign(e);return}let s=oe({title:i,taskId:t,description:a??``,notes:o??``}),c=await e(`/api/admin/session-rc-spawn`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({title:i,initialMessage:s})}),l=await c.json().catch(()=>({})),u=ee(c.ok,c.status,l),d=l.sessionId??null;if(u.kind!==`navigate`){console.error(`[admin-ui] task-session op=spawn-failed taskId=${t} reason=${u.reason}`);return}if(d!==null){let n=await e(`/api/admin/task-session-link`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({taskId:t,sessionId:d})});n.ok&&(await n.json().catch(()=>({}))).linked}else console.error(`[admin-ui] task-session op=link-skipped taskId=${t} reason=no-landed-session-id`);window.location.assign(u.url)}catch(e){console.error(`[admin-ui] task-session op=failed taskId=${t} error=${e instanceof Error?e.message:String(e)}`)}finally{H.current.delete(t),U(new Set(H.current))}}},[e]);if(!r)return(0,D.jsx)(s,{surface:`gate`});let xe=e=>e.taskId!==null&&j===e.taskId,Se=e=>(0,D.jsxs)(`div`,{className:`tasks-edit`,children:[(0,D.jsx)(`input`,{className:`tasks-edit-input`,type:`number`,min:0,step:1,"aria-label":`Logged minutes`,value:P,onChange:e=>F(e.target.value)}),(0,D.jsx)(`span`,{className:`tasks-edit-unit`,children:`min`}),(0,D.jsxs)(`button`,{className:`admin-btn-cta tasks-btn-action`,disabled:f,onClick:()=>void _e(e),children:[(0,D.jsx)(l,{size:14}),` Save`]}),(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,onClick:$,children:[(0,D.jsx)(a,{size:14}),` Cancel`]})]}),Ce=(e,t)=>[{key:`edit-time`,label:`Edit logged time for task: ${e.name}`,menuLabel:`Edit time`,title:e.running?`Stop the timer before editing time`:`Set the logged time for this task`,icon:(0,D.jsx)(i,{size:12}),disabled:f||e.running,onClick:()=>ge(e,t)},{key:`reset-time`,label:`Reset logged time for task: ${e.name}`,menuLabel:`Reset logged time to 0:00`,title:e.running?`Stop the timer before resetting time`:`Set the logged time back to zero`,icon:(0,D.jsx)(y,{size:12}),disabled:f||e.running,onClick:()=>ve(t)},{key:`session`,label:`Open session for task: ${e.name}`,menuLabel:`Session`,title:e.sessionId?`Resume this task’s session`:`Start a session for this task`,icon:(0,D.jsx)(_,{size:12}),disabled:ue.has(t),onClick:()=>{be(t)}},{key:`delete`,label:`Delete task: ${e.name}`,menuLabel:`Delete`,title:e.running?`Stop the timer before deleting`:`Delete this task and its time records`,icon:(0,D.jsx)(o,{size:12}),danger:!0,disabled:f||e.running,onClick:()=>B(e.rowKey)}];return(0,D.jsxs)(`div`,{className:`ui-page ui-page--full tasks-body`,children:[I!==null&&(0,D.jsx)(ce,{task:W??null,roster:fe,busy:f,onAssign:ye,onClose:()=>L(null)}),(0,D.jsx)(m,{target:G?{name:G.name,secondsLogged:G.secondsLogged}:null,anchorEl:z?V.current.get(z)??null:null,onCancel:()=>B(null),onConfirm:()=>{let e=G;B(null),e?.taskId&&he(e.taskId)}},z??`none`),(0,D.jsxs)(`div`,{className:`tasks-tabs`,children:[(0,D.jsxs)(`button`,{className:`admin-chip ${C===`open`?`is-active`:``}`,onClick:()=>w(`open`),children:[`Open `,(0,D.jsx)(`span`,{className:`tasks-tab-badge`,children:t.open.length})]}),(0,D.jsxs)(`button`,{className:`admin-chip ${C===`completed`?`is-active`:``}`,onClick:()=>w(`completed`),children:[`Completed `,(0,D.jsx)(`span`,{className:`tasks-tab-badge`,children:t.completed.length})]}),(0,D.jsxs)(`button`,{className:`admin-chip ${C===`clients`?`is-active`:``}`,onClick:()=>w(`clients`),children:[`Clients `,(0,D.jsx)(`span`,{className:`tasks-tab-badge`,children:K.length})]})]}),C===`clients`?(0,D.jsx)(se,{clients:K,onSelect:de}):(0,D.jsxs)(D.Fragment,{children:[T&&(0,D.jsxs)(`div`,{className:`tasks-filter-banner`,children:[(0,D.jsxs)(`span`,{children:[`Showing `,T]}),(0,D.jsx)(`button`,{className:`tasks-filter-clear`,onClick:()=>O(null),children:`Clear`})]}),J.length>0&&(0,D.jsxs)(`div`,{className:`tasks-assignee-bar`,children:[(0,D.jsxs)(`button`,{className:`admin-chip ${k===null?`is-active`:``}`,"aria-pressed":k===null,onClick:()=>A(null),children:[`All `,(0,D.jsx)(`span`,{className:`tasks-assignee-count`,children:q.open.length})]}),J.map(e=>(0,D.jsxs)(`button`,{className:`admin-chip ${k===e.userId?`is-active`:``}`,"aria-pressed":k===e.userId,"aria-label":`Assignee ${e.label}`,title:e.userId===`__unassigned__`?`Tasks with no assigned admin`:`AdminUser ${e.userId}`,onClick:()=>A(k===e.userId?null:e.userId),children:[e.label,` `,(0,D.jsx)(`span`,{className:`tasks-assignee-count`,children:e.openCount})]},e.userId))]}),C===`open`?(0,D.jsxs)(`section`,{className:`admin-card tasks-card`,children:[(0,D.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,D.jsx)(`span`,{className:`tasks-card-title`,children:`Open tasks`}),(0,D.jsxs)(`span`,{className:`tasks-card-count`,children:[Y.length,` to do`]})]}),Y.length===0&&(0,D.jsx)(`div`,{className:`tasks-empty`,children:`No open tasks.`}),Y.map(e=>(0,D.jsxs)(`div`,{className:`tasks-row`,ref:t=>{t?V.current.set(e.rowKey,t):V.current.delete(e.rowKey)},children:[(0,D.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>L(e.rowKey),children:(0,D.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,D.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,D.jsx)(`div`,{className:`tasks-row-sub`,children:M(e,ie(e))})]})}),(0,D.jsx)(`div`,{className:`tasks-row-elapsed ${e.running?`tasks-row-elapsed-running`:``}`,children:d(ae(e,S))}),(0,D.jsx)(`div`,{className:`tasks-row-controls`,children:e.taskId!==null&&le===e.taskId?(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(`span`,{className:`tasks-confirm-label`,children:`Complete?`}),(0,D.jsxs)(`button`,{className:`admin-btn-cta tasks-btn-action`,disabled:f,onClick:()=>{R(null),me(e.taskId)},children:[(0,D.jsx)(l,{size:14}),` Confirm complete`]}),(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,onClick:()=>R(null),children:[(0,D.jsx)(a,{size:14}),` Keep open`]})]}):e.taskId===null?(0,D.jsx)(`span`,{className:`tasks-row-broken`,title:`This task has no id, so it cannot be started, edited or completed. Repair it by running platform/scripts/backfill-task-ids.sh on this install.`,children:`Needs repair`}):xe(e)?Se(e.taskId):(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(h,{actions:Ce(e,e.taskId),disabled:!1,label:`Task actions`}),(0,D.jsx)(`button`,{className:`tasks-btn-secondary tasks-btn-action tasks-btn-icon`,"aria-label":`Complete task: ${e.name}`,disabled:f||e.running,title:e.running?`Stop the timer before completing`:`Complete task`,onClick:()=>R(e.taskId),children:(0,D.jsx)(l,{size:14})}),e.running?(0,D.jsxs)(`button`,{className:`admin-btn-danger tasks-btn-action`,disabled:f,title:`Stop the timer`,onClick:()=>void Q(`/api/admin/task-timer-stop`,e.taskId),children:[(0,D.jsx)(u,{size:14}),` Stop`]}):(0,D.jsxs)(`button`,{className:`admin-btn-cta tasks-btn-action`,disabled:f,title:`Start the timer`,onClick:()=>void Q(`/api/admin/task-timer-start`,e.taskId),children:[(0,D.jsx)(v,{size:14}),` Start`]})]})})]},e.rowKey))]}):(0,D.jsxs)(`section`,{className:`admin-card tasks-card`,children:[(0,D.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,D.jsx)(`span`,{className:`tasks-card-title`,children:`Completed`}),(0,D.jsxs)(`span`,{className:`tasks-card-count`,children:[X.length,` done`]})]}),X.length===0&&(0,D.jsx)(`div`,{className:`tasks-empty`,children:`Nothing completed yet.`}),X.map(e=>(0,D.jsxs)(`div`,{className:`tasks-row tasks-row-done`,ref:t=>{t?V.current.set(e.rowKey,t):V.current.delete(e.rowKey)},children:[(0,D.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>L(e.rowKey),children:(0,D.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,D.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,D.jsx)(`div`,{className:`tasks-row-sub`,children:M(e,ie(e))})]})}),(0,D.jsx)(`div`,{className:`tasks-row-elapsed`,children:d(e.secondsLogged)}),(0,D.jsx)(`div`,{className:`tasks-row-controls`,children:e.taskId===null?(0,D.jsx)(`span`,{className:`tasks-row-broken`,title:`This task has no id, so its logged time cannot be edited. Repair it by running platform/scripts/backfill-task-ids.sh on this install.`,children:`Needs repair`}):xe(e)?Se(e.taskId):(0,D.jsx)(h,{actions:Ce(e,e.taskId),disabled:!1,label:`Task actions`})})]},e.rowKey))]})]})]})}function P({cacheKey:e}){let{adminFetch:t}=f({initialCacheKey:e,surface:`tasks`});return(0,D.jsx)(N,{adminFetch:t})}function F(){let[e,t]=(0,x.useState)(null),[n,r]=(0,x.useState)(!1),[i,a]=(0,x.useState)(void 0),[o,l]=(0,x.useState)(null),[u,d]=(0,x.useState)(null),[f,m]=(0,x.useState)(null),[h,ee]=(0,x.useState)(null);(0,x.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(k)}catch{}if(!n){t(null),r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&a(e.businessName),e.sessionId!==void 0&&l(e.sessionId??null),d(e.role??null),m(e.userName===void 0?null:e.userName),ee(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let _=(0,x.useCallback)(()=>{try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`},[]),[v,y]=(0,x.useState)(!1),b=(0,x.useCallback)(async()=>{y(!0);try{let e=await p();if(e){try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`}return e}finally{y(!1)}},[]);return n?e?(0,D.jsx)(c,{cacheKey:e,surface:`tasks`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=tasks`);try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`},children:(0,D.jsx)(g,{cacheKey:e,businessName:i,sessionId:o,onLogout:_,onDisconnect:b,disconnecting:v,userName:f,userAvatar:h,role:u,children:(0,D.jsx)(P,{cacheKey:e})})}):(0,D.jsx)(`div`,{className:`tasks-page`,children:(0,D.jsxs)(`div`,{className:`tasks-empty`,children:[(0,D.jsx)(`p`,{children:`You are not signed in.`}),(0,D.jsxs)(`p`,{children:[`Open the `,(0,D.jsx)(`a`,{href:`/`,className:`tasks-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,D.jsx)(s,{surface:`gate`})}(0,b.createRoot)(document.getElementById(`root`)).render((0,D.jsx)(F,{}));
@@ -1 +1 @@
1
- import{nt as e}from"./useMediaQuery-C_1CV_iW.js";var t=e(`triangle-alert`,[[`path`,{d:`m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3`,key:`wmoenq`}],[`path`,{d:`M12 9v4`,key:`juzpu7`}],[`path`,{d:`M12 17h.01`,key:`p32p05`}]]);export{t};
1
+ import{nt as e}from"./useMediaQuery-CLVRXJMp.js";var t=e(`triangle-alert`,[[`path`,{d:`m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3`,key:`wmoenq`}],[`path`,{d:`M12 9v4`,key:`juzpu7`}],[`path`,{d:`M12 17h.01`,key:`p32p05`}]]);export{t};
@@ -1 +1 @@
1
- import{o as e}from"./chunk-BycB0eMI.js";import{i as t}from"./jsx-runtime-CvVXOszc.js";import{u as n}from"./useMediaQuery-C_1CV_iW.js";var r=e(t(),1);function i(e){let[t,i]=(0,r.useState)(`idle`),a=(0,r.useRef)(null),o=(0,r.useRef)(e?.onResult);return o.current=e?.onResult,(0,r.useEffect)(()=>()=>{a.current&&clearTimeout(a.current)},[]),{status:t,copy:(0,r.useCallback)(async e=>{let t=await n(e);i(t?`ok`:`fail`),o.current?.(t),a.current&&clearTimeout(a.current),a.current=setTimeout(()=>i(`idle`),1500)},[])}}export{i as t};
1
+ import{o as e}from"./chunk-BycB0eMI.js";import{i as t}from"./jsx-runtime-BCAZhYqz.js";import{u as n}from"./useMediaQuery-CLVRXJMp.js";var r=e(t(),1);function i(e){let[t,i]=(0,r.useState)(`idle`),a=(0,r.useRef)(null),o=(0,r.useRef)(e?.onResult);return o.current=e?.onResult,(0,r.useEffect)(()=>()=>{a.current&&clearTimeout(a.current)},[]),{status:t,copy:(0,r.useCallback)(async e=>{let t=await n(e);i(t?`ok`:`fail`),o.current?.(t),a.current&&clearTimeout(a.current),a.current=setTimeout(()=>i(`idle`),1500)},[])}}export{i as t};
@@ -0,0 +1,2 @@
1
+ `dK�iO�u�&��|�\�b���������&q���6?ûG������g�uw���O��-6�i��ߋ�Nբ������~w)7&���Uȍ6����Sd�i戚��U
2
+ �^kP�^���[��e!����x��v�]������z�]�:��E~�VD�_�P�3e����#.e�Y�m����N�0��ܯ����=���)�_\�8˟�a��\B'��b��V����-pF��".�8(��s�(q��Me�<��E�6B����O�Ċ