@rubytech/create-sitedesk-code 0.1.521 → 0.1.522
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +17 -3
- package/package.json +1 -1
- package/payload/platform/lib/account-schema-regions/package-lock.json +12 -0
- package/payload/platform/lib/active-rules/package-lock.json +12 -0
- package/payload/platform/lib/mcp-lifeline/package-lock.json +12 -0
- package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +43 -6
- package/payload/platform/plugins/admin/skills/whats-new/SKILL.md +6 -0
- package/payload/platform/plugins/docs/references/admin-ui.md +10 -0
- package/payload/platform/plugins/docs/references/internals.md +4 -0
- package/payload/platform/plugins/docs/references/outlook-guide.md +27 -4
- package/payload/platform/plugins/outlook/.claude-plugin/plugin.json +1 -1
- package/payload/platform/plugins/outlook/PLUGIN.md +9 -1
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-resolve.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-resolve.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-resolve.test.js +151 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-resolve.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-store.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-store.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-store.test.js +151 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/delegated-store.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/device-flow.test.js +38 -4
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/device-flow.test.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/graph-client-prefix-wiring.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/graph-client-prefix-wiring.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/graph-client-prefix-wiring.test.js +146 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/graph-client-prefix-wiring.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list-delegated.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list-delegated.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list-delegated.test.js +120 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list-delegated.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list.test.js +8 -8
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-list.test.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-path-prefix.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-path-prefix.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-path-prefix.test.js +27 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/mailbox-path-prefix.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mail-only-guard.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mail-only-guard.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mail-only-guard.test.js +70 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mail-only-guard.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mailbox-add.test.d.ts +2 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mailbox-add.test.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mailbox-add.test.js +152 -0
- package/payload/platform/plugins/outlook/mcp/dist/__tests__/shared-mailbox-add.test.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/delegated-store.d.ts +57 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/delegated-store.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/delegated-store.js +163 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/delegated-store.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/device-flow.d.ts +12 -0
- package/payload/platform/plugins/outlook/mcp/dist/auth/device-flow.d.ts.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/auth/device-flow.js +21 -1
- package/payload/platform/plugins/outlook/mcp/dist/auth/device-flow.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/auth/mailbox-registry.d.ts +35 -4
- package/payload/platform/plugins/outlook/mcp/dist/auth/mailbox-registry.d.ts.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/auth/mailbox-registry.js +92 -10
- package/payload/platform/plugins/outlook/mcp/dist/auth/mailbox-registry.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/index.js +106 -3
- package/payload/platform/plugins/outlook/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/lib/graph-client.d.ts +49 -0
- package/payload/platform/plugins/outlook/mcp/dist/lib/graph-client.d.ts.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/lib/graph-client.js +126 -8
- package/payload/platform/plugins/outlook/mcp/dist/lib/graph-client.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-info.d.ts +13 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-info.d.ts.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-info.js +9 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-info.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-list.d.ts +42 -8
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-list.d.ts.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-list.js +59 -19
- package/payload/platform/plugins/outlook/mcp/dist/tools/mailbox-list.js.map +1 -1
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-add.d.ts +47 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-add.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-add.js +67 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-add.js.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-remove.d.ts +12 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-remove.d.ts.map +1 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-remove.js +18 -0
- package/payload/platform/plugins/outlook/mcp/dist/tools/shared-mailbox-remove.js.map +1 -0
- package/payload/platform/plugins/outlook/references/auth.md +15 -2
- package/payload/platform/plugins/outlook/references/graph-surfaces.md +8 -0
- package/payload/platform/plugins/outlook/skills/outlook/SKILL.md +21 -1
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.js +2 -0
- package/payload/platform/services/claude-session-manager/dist/canonical-tool-names.generated.js.map +1 -1
- package/payload/platform/templates/specialists/agents/personal-assistant.md +1 -1
- package/payload/server/{chunk-AZLT4LVO.js → chunk-K7CJGZPU.js} +419 -189
- package/payload/server/{manager-CQBSUJXR.js → manager-RKL7JZ4Y.js} +3 -1
- package/payload/server/public/activity.html +5 -5
- package/payload/server/public/agents.html +4 -4
- package/payload/server/public/assets/{AdminLoginScreens-Dar_MMJm.js → AdminLoginScreens-zc2_qqh-.js} +1 -1
- package/payload/server/public/assets/AdminLoginScreens-zc2_qqh-.js.br +0 -0
- package/payload/server/public/assets/AdminLoginScreens-zc2_qqh-.js.gz +0 -0
- package/payload/server/public/assets/{AdminShell-CpaI2F_p.js → AdminShell-IGUdTx5q.js} +1 -1
- package/payload/server/public/assets/AdminShell-IGUdTx5q.js.br +0 -0
- package/payload/server/public/assets/{AdminShell-CpaI2F_p.js.gz → AdminShell-IGUdTx5q.js.gz} +0 -0
- package/payload/server/public/assets/{activity-B1rt4GIy.js → activity-DVgO8YuM.js} +1 -1
- package/payload/server/public/assets/activity-DVgO8YuM.js.br +0 -0
- package/payload/server/public/assets/activity-DVgO8YuM.js.gz +0 -0
- package/payload/server/public/assets/admin-xtpM7fgl.js +1 -0
- package/payload/server/public/assets/admin-xtpM7fgl.js.br +0 -0
- package/payload/server/public/assets/admin-xtpM7fgl.js.gz +0 -0
- package/payload/server/public/assets/{agents-BXq8woVf.js → agents-P0nTIxo-.js} +1 -1
- package/payload/server/public/assets/agents-P0nTIxo-.js.br +0 -0
- package/payload/server/public/assets/agents-P0nTIxo-.js.gz +0 -0
- package/payload/server/public/assets/{browser-1QSCPl3X.js → browser-Mw7DY3ft.js} +1 -1
- package/payload/server/public/assets/browser-Mw7DY3ft.js.br +0 -0
- package/payload/server/public/assets/browser-Mw7DY3ft.js.gz +0 -0
- package/payload/server/public/assets/{calendar-D009qWVV.js → calendar-B9gvL_1_.js} +1 -1
- package/payload/server/public/assets/calendar-B9gvL_1_.js.br +0 -0
- package/payload/server/public/assets/calendar-B9gvL_1_.js.gz +0 -0
- package/payload/server/public/assets/chat-DBGqh4wg.js +1 -0
- package/payload/server/public/assets/chat-DBGqh4wg.js.br +2 -0
- package/payload/server/public/assets/chat-DBGqh4wg.js.gz +0 -0
- package/payload/server/public/assets/chevron-left-Bl4vpOM0.js +1 -0
- package/payload/server/public/assets/chevron-left-Bl4vpOM0.js.br +0 -0
- package/payload/server/public/assets/chevron-right-BExigCnp.js +1 -0
- package/payload/server/public/assets/chevron-right-BExigCnp.js.br +0 -0
- package/payload/server/public/assets/clock-D8TJvgJC.js +1 -0
- package/payload/server/public/assets/clock-D8TJvgJC.js.br +0 -0
- package/payload/server/public/assets/data-HfFSxaC2.js +1 -0
- package/payload/server/public/assets/data-HfFSxaC2.js.br +0 -0
- package/payload/server/public/assets/data-HfFSxaC2.js.gz +0 -0
- package/payload/server/public/assets/{file-text-DwGAfCsd.js → file-text-dYBnXNEX.js} +1 -1
- package/payload/server/public/assets/file-text-dYBnXNEX.js.br +0 -0
- package/payload/server/public/assets/file-text-dYBnXNEX.js.gz +0 -0
- package/payload/server/public/assets/{graph-D-DGlfhW.js → graph-CDyzd1Et.js} +1 -1
- package/payload/server/public/assets/graph-CDyzd1Et.js.br +0 -0
- package/payload/server/public/assets/graph-CDyzd1Et.js.gz +0 -0
- package/payload/server/public/assets/{graph-labels-BbX3fXzl.js → graph-labels-D1LkKiJr.js} +1 -1
- package/payload/server/public/assets/graph-labels-D1LkKiJr.js.br +0 -0
- package/payload/server/public/assets/graph-labels-D1LkKiJr.js.gz +0 -0
- package/payload/server/public/assets/{maximize-2-C_-KapxH.js → maximize-2-M-iSaznd.js} +1 -1
- package/payload/server/public/assets/maximize-2-M-iSaznd.js.br +0 -0
- package/payload/server/public/assets/maximize-2-M-iSaznd.js.gz +0 -0
- package/payload/server/public/assets/{operator-CFrZVcv6.js → operator-9jfCv1Fg.js} +1 -1
- package/payload/server/public/assets/operator-9jfCv1Fg.js.br +0 -0
- package/payload/server/public/assets/operator-9jfCv1Fg.js.gz +0 -0
- package/payload/server/public/assets/{page-E74MYB18.js → page-CZ-73FAk.js} +1 -1
- package/payload/server/public/assets/page-CZ-73FAk.js.br +0 -0
- package/payload/server/public/assets/page-CZ-73FAk.js.gz +0 -0
- package/payload/server/public/assets/{page-CHt62f1_.js → page-CjwSt7kx.js} +1 -1
- package/payload/server/public/assets/page-CjwSt7kx.js.br +0 -0
- package/payload/server/public/assets/page-CjwSt7kx.js.gz +0 -0
- package/payload/server/public/assets/{public-CI6K1sNW.js → public-CN-ltC8x.js} +1 -1
- package/payload/server/public/assets/public-CN-ltC8x.js.br +0 -0
- package/payload/server/public/assets/public-CN-ltC8x.js.gz +0 -0
- package/payload/server/public/assets/{rotate-ccw-PWu_QGrD.js → rotate-ccw-Buopsc22.js} +1 -1
- package/payload/server/public/assets/rotate-ccw-Buopsc22.js.br +0 -0
- package/payload/server/public/assets/rotate-ccw-Buopsc22.js.gz +0 -0
- package/payload/server/public/assets/{routines-Cp3_XS7S.js → routines-C-yr8ddT.js} +1 -1
- package/payload/server/public/assets/routines-C-yr8ddT.js.br +0 -0
- package/payload/server/public/assets/routines-C-yr8ddT.js.gz +0 -0
- package/payload/server/public/assets/{skills-g8HvunPA.js → skills-DiiuVzDK.js} +1 -1
- package/payload/server/public/assets/skills-DiiuVzDK.js.br +0 -0
- package/payload/server/public/assets/skills-DiiuVzDK.js.gz +0 -0
- package/payload/server/public/assets/tasks-CnHIfn2_.js +1 -0
- package/payload/server/public/assets/tasks-CnHIfn2_.js.br +0 -0
- package/payload/server/public/assets/tasks-CnHIfn2_.js.gz +0 -0
- package/payload/server/public/assets/{time-entry-format-BXWuQ6Sw.js → time-entry-format-BBokCF-D.js} +1 -1
- package/payload/server/public/assets/time-entry-format-BBokCF-D.js.br +0 -0
- package/payload/server/public/assets/time-entry-format-BBokCF-D.js.gz +0 -0
- package/payload/server/public/assets/{triangle-alert-BNshRC13.js → triangle-alert-C_AcpTW5.js} +1 -1
- package/payload/server/public/assets/triangle-alert-C_AcpTW5.js.br +0 -0
- package/payload/server/public/assets/triangle-alert-C_AcpTW5.js.gz +0 -0
- package/payload/server/public/assets/{useCopyFeedback-CwTZ9DqH.js → useCopyFeedback-TdimmPVR.js} +1 -1
- package/payload/server/public/assets/useCopyFeedback-TdimmPVR.js.br +0 -0
- package/payload/server/public/assets/useCopyFeedback-TdimmPVR.js.gz +0 -0
- package/payload/server/public/assets/{useSubAccountSwitcher-BuUYMDWl.js → useSubAccountSwitcher-BwHqV55p.js} +1 -1
- package/payload/server/public/assets/useSubAccountSwitcher-BwHqV55p.js.br +0 -0
- package/payload/server/public/assets/{useSubAccountSwitcher-BuUYMDWl.js.gz → useSubAccountSwitcher-BwHqV55p.js.gz} +0 -0
- package/payload/server/public/assets/{useSubAccountSwitcher-dzDnmWq9.css → useSubAccountSwitcher-CsrPYqtm.css} +1 -1
- package/payload/server/public/assets/useSubAccountSwitcher-CsrPYqtm.css.br +0 -0
- package/payload/server/public/assets/{useSubAccountSwitcher-dzDnmWq9.css.gz → useSubAccountSwitcher-CsrPYqtm.css.gz} +0 -0
- package/payload/server/public/assets/{useVoiceRecorder-BGqV5R6u.js → useVoiceRecorder-BT2738ZS.js} +1 -1
- package/payload/server/public/assets/useVoiceRecorder-BT2738ZS.js.br +0 -0
- package/payload/server/public/assets/useVoiceRecorder-BT2738ZS.js.gz +0 -0
- package/payload/server/public/assets/{wrench-DQ045Pyk.js → wrench-B51s5kGA.js} +1 -1
- package/payload/server/public/assets/wrench-B51s5kGA.js.br +0 -0
- package/payload/server/public/assets/wrench-B51s5kGA.js.gz +0 -0
- package/payload/server/public/browser.html +4 -4
- package/payload/server/public/calendar.html +7 -7
- package/payload/server/public/chat.html +13 -13
- package/payload/server/public/data.html +11 -11
- package/payload/server/public/graph.html +9 -9
- package/payload/server/public/index.html +14 -14
- package/payload/server/public/operator.html +14 -14
- package/payload/server/public/public.html +13 -13
- package/payload/server/public/routines.html +6 -6
- package/payload/server/public/skills.html +5 -5
- package/payload/server/public/tasks.html +6 -6
- package/payload/server/server.js +1006 -606
- package/payload/server/public/assets/AdminLoginScreens-Dar_MMJm.js.br +0 -0
- package/payload/server/public/assets/AdminLoginScreens-Dar_MMJm.js.gz +0 -0
- package/payload/server/public/assets/AdminShell-CpaI2F_p.js.br +0 -0
- package/payload/server/public/assets/activity-B1rt4GIy.js.br +0 -0
- package/payload/server/public/assets/activity-B1rt4GIy.js.gz +0 -0
- package/payload/server/public/assets/admin-DE3lLNje.js +0 -1
- package/payload/server/public/assets/admin-DE3lLNje.js.br +0 -0
- package/payload/server/public/assets/admin-DE3lLNje.js.gz +0 -0
- package/payload/server/public/assets/agents-BXq8woVf.js.br +0 -0
- package/payload/server/public/assets/agents-BXq8woVf.js.gz +0 -0
- package/payload/server/public/assets/browser-1QSCPl3X.js.br +0 -0
- package/payload/server/public/assets/browser-1QSCPl3X.js.gz +0 -0
- package/payload/server/public/assets/calendar-D009qWVV.js.br +0 -0
- package/payload/server/public/assets/calendar-D009qWVV.js.gz +0 -0
- package/payload/server/public/assets/chat-CUg1fTqJ.js +0 -1
- package/payload/server/public/assets/chat-CUg1fTqJ.js.br +0 -1
- package/payload/server/public/assets/chat-CUg1fTqJ.js.gz +0 -0
- package/payload/server/public/assets/chevron-left-C2JEy7uU.js +0 -1
- package/payload/server/public/assets/chevron-left-C2JEy7uU.js.br +0 -0
- package/payload/server/public/assets/chevron-right-DWa047Ys.js +0 -1
- package/payload/server/public/assets/chevron-right-DWa047Ys.js.br +0 -0
- package/payload/server/public/assets/clock-C3OqfCnn.js +0 -1
- package/payload/server/public/assets/clock-C3OqfCnn.js.br +0 -0
- package/payload/server/public/assets/clock-C3OqfCnn.js.gz +0 -0
- package/payload/server/public/assets/data-Bu_yCScC.js +0 -1
- package/payload/server/public/assets/data-Bu_yCScC.js.br +0 -0
- package/payload/server/public/assets/data-Bu_yCScC.js.gz +0 -0
- package/payload/server/public/assets/file-text-DwGAfCsd.js.br +0 -0
- package/payload/server/public/assets/file-text-DwGAfCsd.js.gz +0 -0
- package/payload/server/public/assets/graph-D-DGlfhW.js.br +0 -0
- package/payload/server/public/assets/graph-D-DGlfhW.js.gz +0 -0
- package/payload/server/public/assets/graph-labels-BbX3fXzl.js.br +0 -0
- package/payload/server/public/assets/graph-labels-BbX3fXzl.js.gz +0 -0
- package/payload/server/public/assets/maximize-2-C_-KapxH.js.br +0 -0
- package/payload/server/public/assets/maximize-2-C_-KapxH.js.gz +0 -0
- package/payload/server/public/assets/operator-CFrZVcv6.js.br +0 -0
- package/payload/server/public/assets/operator-CFrZVcv6.js.gz +0 -0
- package/payload/server/public/assets/page-CHt62f1_.js.br +0 -0
- package/payload/server/public/assets/page-CHt62f1_.js.gz +0 -0
- package/payload/server/public/assets/page-E74MYB18.js.br +0 -0
- package/payload/server/public/assets/page-E74MYB18.js.gz +0 -0
- package/payload/server/public/assets/public-CI6K1sNW.js.br +0 -0
- package/payload/server/public/assets/public-CI6K1sNW.js.gz +0 -0
- package/payload/server/public/assets/rotate-ccw-PWu_QGrD.js.br +0 -0
- package/payload/server/public/assets/rotate-ccw-PWu_QGrD.js.gz +0 -0
- package/payload/server/public/assets/routines-Cp3_XS7S.js.br +0 -0
- package/payload/server/public/assets/routines-Cp3_XS7S.js.gz +0 -0
- package/payload/server/public/assets/skills-g8HvunPA.js.br +0 -0
- package/payload/server/public/assets/skills-g8HvunPA.js.gz +0 -0
- package/payload/server/public/assets/tasks-CMC_jDVm.js +0 -1
- package/payload/server/public/assets/tasks-CMC_jDVm.js.br +0 -0
- package/payload/server/public/assets/tasks-CMC_jDVm.js.gz +0 -0
- package/payload/server/public/assets/time-entry-format-BXWuQ6Sw.js.br +0 -2
- package/payload/server/public/assets/time-entry-format-BXWuQ6Sw.js.gz +0 -0
- package/payload/server/public/assets/triangle-alert-BNshRC13.js.br +0 -0
- package/payload/server/public/assets/triangle-alert-BNshRC13.js.gz +0 -0
- package/payload/server/public/assets/useCopyFeedback-CwTZ9DqH.js.br +0 -0
- package/payload/server/public/assets/useCopyFeedback-CwTZ9DqH.js.gz +0 -0
- package/payload/server/public/assets/useSubAccountSwitcher-BuUYMDWl.js.br +0 -0
- package/payload/server/public/assets/useSubAccountSwitcher-dzDnmWq9.css.br +0 -0
- package/payload/server/public/assets/useVoiceRecorder-BGqV5R6u.js.br +0 -0
- package/payload/server/public/assets/useVoiceRecorder-BGqV5R6u.js.gz +0 -0
- package/payload/server/public/assets/wrench-DQ045Pyk.js.br +0 -0
- package/payload/server/public/assets/wrench-DQ045Pyk.js.gz +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-CltuBf4Z.js";import{A as t,C as n,E as r,F as i,I as a,S as o,V as s,W as c,_ as l,a as u,b as d,c as f,d as p,f as m,i as h,k as g,m as ee,q as te,s as _,t as v,v as ne,x as y,y as re}from"./useSubAccountSwitcher-BuUYMDWl.js";import{D as b,O as ie,T as ae,f as x,n as oe,r as se,s as S,w as C}from"./useVoiceRecorder-BGqV5R6u.js";import{t as w}from"./chevron-left-C2JEy7uU.js";import{t as T}from"./file-text-DwGAfCsd.js";import{i as E,t as D}from"./graph-labels-BbX3fXzl.js";import{t as ce}from"./triangle-alert-BNshRC13.js";var le=i(`arrow-left`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),ue=i(`ellipsis`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`19`,cy:`12`,r:`1`,key:`1wjl8i`}],[`circle`,{cx:`5`,cy:`12`,r:`1`,key:`1pcz8c`}]]),de=i(`folder-plus`,[[`path`,{d:`M12 10v6`,key:`1bos4e`}],[`path`,{d:`M9 13h6`,key:`1uhe8q`}],[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),O=i(`image`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`circle`,{cx:`9`,cy:`9`,r:`2`,key:`af1f0g`}],[`path`,{d:`m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21`,key:`1xmnt7`}]]),fe=i(`layout-grid`,[[`rect`,{width:`7`,height:`7`,x:`3`,y:`3`,rx:`1`,key:`1g98yp`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`3`,rx:`1`,key:`6d4xhi`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`14`,rx:`1`,key:`nxv5o0`}],[`rect`,{width:`7`,height:`7`,x:`3`,y:`14`,rx:`1`,key:`1bb6yr`}]]),pe=i(`list`,[[`path`,{d:`M3 5h.01`,key:`18ugdj`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M3 19h.01`,key:`noohij`}],[`path`,{d:`M8 5h13`,key:`1pao27`}],[`path`,{d:`M8 12h13`,key:`1za7za`}],[`path`,{d:`M8 19h13`,key:`m83p4d`}]]),me=i(`mouse-pointer-click`,[[`path`,{d:`M14 4.1 12 6`,key:`ita8i4`}],[`path`,{d:`m5.1 8-2.9-.8`,key:`1go3kf`}],[`path`,{d:`m6 12-1.9 2`,key:`mnht97`}],[`path`,{d:`M7.2 2.2 8 5.1`,key:`1cfko1`}],[`path`,{d:`M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z`,key:`s0h3yz`}]]),he=i(`send-horizontal`,[[`path`,{d:`M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z`,key:`117uat`}],[`path`,{d:`M6 12h16`,key:`s4cdu5`}]]),ge=i(`smile`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M8 14s1.5 2 4 2 4-2 4-2`,key:`1y1vjs`}],[`line`,{x1:`9`,x2:`9.01`,y1:`9`,y2:`9`,key:`yxxnd0`}],[`line`,{x1:`15`,x2:`15.01`,y1:`9`,y2:`9`,key:`1p4y9e`}]]),_e=i(`upload`,[[`path`,{d:`M12 3v12`,key:`1x0j5s`}],[`path`,{d:`m17 8-5-5-5 5`,key:`7q97r8`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}]]),k=e(te(),1);function ve(){let[e,t]=(0,k.useState)([]),[n,r]=(0,k.useState)(!1),[i,a]=(0,k.useState)(null),o=(0,k.useRef)(null),s=(0,k.useCallback)(e=>{a(null);let n=e.find(e=>!se(e.type,ie));if(n){a(`Unsupported file type: "${n.type}". Supported: images, PDF, plain text, markdown, CSV, calendar, zip, voice notes.`);return}let r=e.find(e=>e.size>b);if(r){a(`"${r.name}" exceeds the 50 MB limit.`);return}t(t=>[...t,...e].slice(0,5))},[]);return{pendingFiles:e,setPendingFiles:t,isDragOver:n,attachError:i,setAttachError:a,fileInputRef:o,addFiles:s,clearFiles:(0,k.useCallback)(()=>{t([]),a(null)},[]),removeFile:(0,k.useCallback)(e=>{t(t=>t.filter((t,n)=>n!==e))},[]),onDragOver:(0,k.useCallback)(e=>{e.preventDefault(),r(!0)},[]),onDragLeave:(0,k.useCallback)(()=>{r(!1)},[]),onDrop:(0,k.useCallback)(e=>{e.preventDefault(),r(!1),s([...e.dataTransfer.files])},[s])}}var A=[[128512],[128515],[128516],[128513],[128518],[128517],[128514],[129315],[128578],[128579],[128521],[128522],[128519],[128525],[128536],[128535],[128540],[128541],[129303],[129300],[128528],[128566],[128564],[128526],[129395],[128546],[128557],[128548],[128544],[128533],[128556],[129393],[128077],[128078],[128076],[128591],[128079],[128588],[128170],[128075],[129309],[10084,65039],[128293],[11088],[127881],[10024],[128175],[128064]].map(e=>String.fromCodePoint(...e));function ye(e,t,n,r){let i=e.length,a=Math.max(0,Math.min(n??i,i)),o=Math.max(a,Math.min(r??a,i));return{value:e.slice(0,a)+t+e.slice(o),caret:a+t.length}}var j=s();function M({onSelect:e}){return(0,j.jsx)(`div`,{className:`wa-emoji-popover`,role:`menu`,"aria-label":`Emoji picker`,children:A.map((t,n)=>(0,j.jsx)(`button`,{type:`button`,role:`menuitem`,className:`wa-emoji-item`,onClick:()=>e(t),children:t},n))})}function be({sessionKey:e,onPick:t,onClose:n}){let[r,i]=(0,k.useState)(``),[a,o]=(0,k.useState)(null),[s,c]=(0,k.useState)(null),[u,d]=(0,k.useState)(!1),f=(0,k.useCallback)(t=>{d(!0),c(null),fetch(`/api/admin/files?path=${encodeURIComponent(t)}&session_key=${encodeURIComponent(e)}`).then(async e=>{let t=await e.json().catch(()=>({}));if(!e.ok)throw Error(t.error??`Could not list files`);return t}).then(e=>{o(e),i(e.path===`.`?``:e.path)}).catch(e=>c(e instanceof Error?e.message:String(e))).finally(()=>d(!1))},[e]);(0,k.useEffect)(()=>{f(``)},[f]);let p=e=>f(r?`${r}/${e}`:e),m=()=>{let e=r.split(`/`).filter(Boolean);e.pop(),f(e.join(`/`))},h=e=>{let n=e.entryPath??e.name;t({path:r?`${r}/${n}`:n,name:e.displayName??e.name})};return(0,j.jsx)(`div`,{className:`wa-picker-backdrop`,role:`dialog`,"aria-label":`Choose a device file`,onClick:n,children:(0,j.jsxs)(`div`,{className:`wa-picker`,onClick:e=>e.stopPropagation(),children:[(0,j.jsxs)(`div`,{className:`wa-picker-head`,children:[r&&(0,j.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:m,"aria-label":`Up one folder`,children:(0,j.jsx)(w,{size:18})}),(0,j.jsx)(`span`,{className:`wa-picker-title`,children:r||`Device storage`}),(0,j.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:n,"aria-label":`Close file picker`,children:(0,j.jsx)(l,{size:18})})]}),s&&(0,j.jsx)(`p`,{className:`wa-picker-error`,role:`alert`,children:s}),u&&(0,j.jsx)(`p`,{className:`wa-picker-empty`,children:`Loading…`}),a&&!u&&(0,j.jsxs)(`ul`,{className:`wa-picker-list`,children:[a.entries.length===0&&(0,j.jsx)(`li`,{className:`wa-picker-empty`,children:`This folder is empty.`}),a.entries.map(e=>(0,j.jsx)(`li`,{children:e.kind===`directory`?(0,j.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>p(e.name),children:[(0,j.jsx)(g,{size:16,"aria-hidden":!0}),(0,j.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):e.kind===`file`?(0,j.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>h(e),children:[(0,j.jsx)(T,{size:16,"aria-hidden":!0}),(0,j.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):null},e.name))]})]})})}function xe(e){return`${Math.floor(e/60)}:${String(e%60).padStart(2,`0`)}`}function N({accountId:e,remoteJid:t,sessionKey:n,replyTo:r,onClearReply:i}){let[a,s]=(0,k.useState)(``),[c,u]=(0,k.useState)(!1),[d,f]=(0,k.useState)(null),[p,m]=(0,k.useState)(!1),[h,g]=(0,k.useState)(!1),[ee,te]=(0,k.useState)(!1),[_,v]=(0,k.useState)([]),y=(0,k.useRef)(null),{pendingFiles:b,attachError:ie,addFiles:x,removeFile:se,clearFiles:S}=ve(),{state:w,elapsedSeconds:E,errorMessage:D,start:ce,send:le,discard:ue}=oe(),de=w===`recording`||w===`paused`,fe=(0,k.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=start ms=0`),ce()},[ce]),pe=(0,k.useCallback)(async()=>{let e=E*1e3,t=await le();if(console.info(`[operator-ui] op=voice-record state=stop ms=${e}`),t){let e=t.type===`audio/ogg`?`.ogg`:t.type===`audio/mp4`?`.m4a`:`.webm`;x([new File([t],`voice-note${e}`,{type:t.type})])}},[E,le,x]),me=(0,k.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=cancel ms=${E*1e3}`),ue()},[E,ue]),_e=(0,k.useRef)(!1),A=()=>Math.round((typeof window>`u`?900:window.innerHeight)/3),[N,P]=(0,k.useState)(null),[Se,Ce]=(0,k.useState)(null),we=(0,k.useRef)(null),Te=(0,k.useRef)(44),F=(0,k.useCallback)(e=>{let t=we.current;if(!t)return;t.moved=!0;let n=Math.min(A(),Math.max(44,t.startH+(t.startY-e.clientY)));Te.current=n,P(n)},[]),I=(0,k.useCallback)(()=>{let e=we.current?.moved??!1;we.current=null,window.removeEventListener(`pointermove`,F),window.removeEventListener(`pointerup`,I),e&&console.info(`[operator-ui] op=wa-composer-resize mode=drag h=${Te.current}`)},[F]),Ee=(0,k.useCallback)(e=>{we.current={startY:e.clientY,startH:y.current?.offsetHeight??44,moved:!1},window.addEventListener(`pointermove`,F),window.addEventListener(`pointerup`,I),e.preventDefault()},[F,I]),De=(0,k.useCallback)(e=>{let t=N??y.current?.offsetHeight??44,n=null;e.key===`ArrowUp`?(e.preventDefault(),n=Math.min(A(),t+24)):e.key===`ArrowDown`&&(e.preventDefault(),n=Math.max(44,t-24)),n!==null&&(P(n),console.info(`[operator-ui] op=wa-composer-resize mode=key h=${n}`))},[N]),L=(0,k.useRef)(``);(0,k.useEffect)(()=>{let e=y.current;if(!e)return;let t=L.current!==``&&a===``;if(L.current=a,N!==null){t&&P(null);return}let n=e.style.height;e.style.height=`auto`;let r=Math.min(A(),Math.max(44,e.scrollHeight));e.style.height=n,Ce(r)},[a,N]);let Oe=(a.trim().length>0||b.length>0||_.length>0)&&!c,ke=(0,k.useCallback)(async()=>{if(!_e.current&&!(a.trim().length===0&&b.length===0&&_.length===0)){_e.current=!0,u(!0),f(null);try{let o=`/api/whatsapp-reader/reply?session_key=${encodeURIComponent(n)}`,c;if(b.length>0||_.length>0){let n=new FormData;n.append(`accountId`,e),n.append(`remoteJid`,t),a.trim()&&n.append(`text`,a);for(let e of b)n.append(`files`,e);for(let e of _)n.append(`fileRefs`,e.path);r&&n.append(`quotedId`,r.msgKeyId),c=await fetch(o,{method:`POST`,body:n})}else c=await fetch(o,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({accountId:e,remoteJid:t,text:a,...r?{quotedId:r.msgKeyId}:{}})});let l=await c.json().catch(()=>({}));if(!c.ok){f(l.error??`Send failed.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${l.error??`unknown`}`);return}s(``),S(),v([]),i?.(),console.info(`[operator-ui] op=reply-sent remoteJid=${t} sent=${l.sent??0}`)}catch(e){f(`Could not reach the server. Try again.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${String(e)}`)}finally{_e.current=!1,u(!1)}}},[a,b,_,r,i,e,t,n,S]),Ae=(0,k.useCallback)(e=>{let t=y.current,{value:n,caret:r}=ye(a,e,t?t.selectionStart:null,t?t.selectionEnd:null);s(n),m(!1),requestAnimationFrame(()=>{let e=y.current;e&&(e.focus(),e.setSelectionRange(r,r))})},[a]),je=e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),Oe&&ke())},R=e=>e.dataTransfer.types.includes(`Files`),z=(0,k.useCallback)(e=>{R(e)&&(e.preventDefault(),te(!0))},[]),Me=(0,k.useCallback)(()=>te(!1),[]),Ne=(0,k.useCallback)(e=>{if(!R(e))return;e.preventDefault(),te(!1);let t=[...e.dataTransfer.files];if(t.length===0)return;let n=Math.max(0,b.length+t.length-5);console.info(`[operator-ui] op=composer-drop count=${t.length} rejected=${n}`),x(t)},[b.length,x]),B=e=>e.startsWith(`image/`)?(0,j.jsx)(O,{size:14}):e===`application/pdf`?(0,j.jsx)(T,{size:14}):(0,j.jsx)(ae,{size:14});return(0,j.jsxs)(`div`,{className:`wa-reply${ee?` wa-reply-drag-over`:``}`,onDragOver:z,onDragLeave:Me,onDrop:Ne,children:[h&&(0,j.jsx)(be,{sessionKey:n,onPick:e=>{v(t=>[...t,e].slice(0,5)),g(!1)},onClose:()=>g(!1)}),p&&(0,j.jsx)(M,{onSelect:Ae}),d&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:d}),ie&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:ie}),w===`error`&&D&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:D}),(b.length>0||_.length>0)&&(0,j.jsxs)(`div`,{className:`wa-reply-attachments`,children:[b.map((e,t)=>(0,j.jsxs)(`div`,{className:`wa-reply-chip`,children:[B(e.type),(0,j.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,j.jsx)(`button`,{type:`button`,onClick:()=>se(t),"aria-label":`Remove ${e.name}`,children:(0,j.jsx)(l,{size:12})})]},`f-${t}`)),_.map((e,t)=>(0,j.jsxs)(`div`,{className:`wa-reply-chip wa-reply-chip-ref`,children:[(0,j.jsx)(T,{size:14}),(0,j.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,j.jsx)(`button`,{type:`button`,onClick:()=>v(e=>e.filter((e,n)=>n!==t)),"aria-label":`Remove ${e.name}`,children:(0,j.jsx)(l,{size:12})})]},`r-${t}`))]}),r&&(0,j.jsxs)(`div`,{className:`wa-reply-quote`,children:[(0,j.jsxs)(`div`,{className:`wa-reply-quote-body`,children:[(0,j.jsx)(`span`,{className:`wa-reply-quote-who`,children:r.fromMe?`You`:r.senderName??`Contact`}),(0,j.jsx)(`span`,{className:`wa-reply-quote-text`,children:r.body||`Message`})]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-quote-cancel`,onClick:()=>i?.(),"aria-label":`Cancel reply`,children:(0,j.jsx)(l,{size:14})})]}),!de&&(0,j.jsx)(`div`,{className:`wa-reply-resize-handle`,role:`separator`,"aria-orientation":`horizontal`,"aria-label":`Resize input — drag up to enlarge`,tabIndex:0,onPointerDown:Ee,onKeyDown:De}),(0,j.jsx)(`div`,{className:`wa-reply-row`,children:de?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:me,"aria-label":`Cancel recording`,children:(0,j.jsx)(ne,{size:20})}),(0,j.jsxs)(`span`,{className:`wa-rec-live`,role:`status`,children:[(0,j.jsx)(`span`,{className:`wa-rec-dot`,"aria-hidden":!0}),xe(E)]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void pe(),"aria-label":`Stop recording`,children:(0,j.jsx)(re,{size:20})})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-emoji`,onClick:()=>m(e=>!e),disabled:c,"aria-label":`Emoji`,"aria-expanded":p,children:(0,j.jsx)(ge,{size:22})}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:()=>g(!0),disabled:c,"aria-label":`Attach files`,children:(0,j.jsx)(o,{size:22})}),(0,j.jsx)(`textarea`,{ref:y,className:`wa-reply-input`,value:a,rows:1,style:{height:`${N??Se??44}px`},placeholder:`Type a message`,disabled:c,onChange:e=>s(e.target.value),onKeyDown:je}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-mic`,onClick:()=>void fe(),disabled:c,"aria-label":`Record voice note`,children:(0,j.jsx)(C,{size:22})}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void ke(),disabled:!Oe,"aria-label":`Send`,children:(0,j.jsx)(he,{size:20})})]})})]})}function P({accountId:e,remoteJid:t,contactName:n,sessionKey:r,onBack:i}){let a=f(t),o=t.split(`@`)[0],s=a?`Group`:n===`+${o}`?void 0:`+${o}`,[c,u]=(0,k.useState)(!1),[d,p]=(0,k.useState)(``),m=()=>{u(!1),p(``)},[h,g]=(0,k.useState)(null);return(0,j.jsxs)(`div`,{className:`wa-web`,children:[(0,j.jsxs)(`header`,{className:`wa-web-header`,children:[i&&(0,j.jsx)(`button`,{type:`button`,className:`wa-web-back`,onClick:i,"aria-label":`Back`,children:(0,j.jsx)(w,{size:20})}),(0,j.jsx)(x,{accountId:e,jid:t,sessionKey:r}),c?(0,j.jsxs)(`div`,{className:`wa-web-search`,children:[(0,j.jsx)(E,{size:18,"aria-hidden":!0}),(0,j.jsx)(`input`,{className:`wa-web-search-input`,type:`text`,autoFocus:!0,placeholder:`Search messages`,"aria-label":`Search messages`,value:d,onChange:e=>p(e.target.value),onKeyDown:e=>{e.key===`Escape`&&m()}}),(0,j.jsx)(`button`,{type:`button`,className:`wa-web-search-close`,onClick:m,"aria-label":`Close search`,children:(0,j.jsx)(l,{size:18})})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`wa-web-titles`,children:[(0,j.jsx)(`span`,{className:`wa-web-name`,children:n}),s&&(0,j.jsx)(`span`,{className:`wa-web-subtitle`,children:s})]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-web-search-toggle`,onClick:()=>u(!0),"aria-label":`Search messages`,children:(0,j.jsx)(E,{size:20})})]})]}),(0,j.jsx)(`div`,{className:`wa-web-body`,children:(0,j.jsx)(S,{sessionId:``,projectDir:``,sessionKey:r,forceDeliveredOnly:!0,suppressDirectives:!0,store:{accountId:e,remoteJid:t},search:c?d:void 0,onReplyTo:g,groupThread:a})}),(0,j.jsx)(N,{accountId:e,remoteJid:t,sessionKey:r,replyTo:h,onClearReply:()=>g(null)})]})}function Se(e){let t=new Set,n=[];for(let r of e)for(let e of r.labels)e&&(t.has(e)||D.has(e)&&(t.add(e),n.push(e)));return n}function Ce(e,t,n=`data`){let r=`/api/admin/files/download?session_key=${encodeURIComponent(e)}&path=${encodeURIComponent(t)}`+(n===`data`?``:`&root=${encodeURIComponent(n)}`),i=document.createElement(`a`);i.href=r,i.rel=`noopener noreferrer`,document.body.appendChild(i),i.click(),i.remove()}function we(e,t){let n=new URLSearchParams;n.set(`session_key`,e);for(let e of t)n.append(`path`,e);let r=document.createElement(`a`);r.href=`/api/admin/files/download-zip?${n.toString()}`,r.rel=`noopener noreferrer`,document.body.appendChild(r),r.click(),r.remove()}function Te(e,t,n=`data`){return`/api/admin/files/download?session_key=${encodeURIComponent(e)}&path=${encodeURIComponent(t)}&disposition=inline`+(n===`data`?``:`&root=${encodeURIComponent(n)}`)}function F(e){if(!e)return``;let t=new Date(e).getTime();return Number.isFinite(t)?new Date(t).toLocaleString(void 0,{dateStyle:`medium`,timeStyle:`short`}):``}function I({conversations:e,sessionKey:t,onBack:n}){let[r,i]=(0,k.useState)(null),a=h(e);return r?r.source===`store`&&r.accountId&&r.remoteJid?(0,j.jsx)(P,{accountId:r.accountId,remoteJid:r.remoteJid,contactName:u(r),sessionKey:t,onBack:()=>i(null)},_(r)):(0,j.jsxs)(`div`,{className:`op-conv op-conv-reader`,children:[(0,j.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:()=>i(null),"aria-label":`Back to conversations`,children:[(0,j.jsx)(w,{size:16}),` Back`]}),(0,j.jsx)(`span`,{className:`op-conv-title`,children:u(r)})]}),(0,j.jsx)(S,{sessionId:r.sessionId,projectDir:r.projectDir,sessionKey:t,forceDeliveredOnly:!0,suppressDirectives:r.source===`store`,store:r.source===`store`?{accountId:r.accountId,remoteJid:r.remoteJid}:void 0},_(r))]}):(0,j.jsxs)(`div`,{className:`op-conv op-conv-list`,children:[(0,j.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:n,"aria-label":`Back to chat`,children:[(0,j.jsx)(w,{size:16}),` Chat`]}),(0,j.jsx)(`span`,{className:`op-conv-title`,children:`Conversations`})]}),a.map(e=>(0,j.jsxs)(`div`,{className:`op-conv-group`,children:[(0,j.jsxs)(`div`,{className:`op-conv-group-head`,children:[(0,j.jsx)(p,{channel:e.channel,size:14}),e.label]}),e.rows.map(e=>(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-row`,onClick:()=>{console.info(`[operator-ui] op=reader-open channel=${e.channel} key=${_(e)} readonly=true source=${e.source}`),i(e)},children:[e.source===`store`&&e.accountId&&e.remoteJid&&(0,j.jsx)(x,{accountId:e.accountId,jid:e.remoteJid,sessionKey:t,className:`op-conv-avatar`,size:16}),(0,j.jsx)(`span`,{className:`op-conv-name`,children:u(e)}),e.modelGated&&(0,j.jsx)(`span`,{className:`op-conv-gated`,role:`img`,"aria-label":`Model unavailable`,children:(0,j.jsx)(ce,{size:13})}),(0,j.jsx)(`span`,{className:`op-conv-when`,children:F(e.lastMessageAt)})]},_(e)))]},e.channel))]})}var Ee=/\.(png|jpe?g|gif|webp|svg)$/i;function De(e){return Ee.test(e)}function L(e){return e.entryPath??e.name}var Oe=`maxy-data-view`,ke=95*1024*1024,Ae=48*1024*1024;function je(){return typeof window>`u`?`list`:window.localStorage.getItem(Oe)===`grid`?`grid`:`list`}function R(){let[e,t]=(0,k.useState)(null),[n,r]=(0,k.useState)(!1);return(0,k.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(`maxy-admin-session-key`)}catch{}if(!n){t(null),r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`;return}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]),n?e?(0,j.jsx)(ee,{cacheKey:e,surface:`data`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=data`);try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},children:(0,j.jsx)(`div`,{className:`data-page data-page-full`,children:(0,j.jsx)(z,{cacheKey:e})})}):(0,j.jsx)(`div`,{className:`data-page`,children:(0,j.jsxs)(`div`,{className:`data-empty`,children:[(0,j.jsx)(`p`,{children:`You are not signed in.`}),(0,j.jsxs)(`p`,{children:[`Open the `,(0,j.jsx)(`a`,{href:`/`,className:`data-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,j.jsx)(a,{surface:`gate`})}function z({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=c({initialCacheKey:e,surface:`data`});return(0,j.jsx)(Le,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})}function Me(){if(typeof window>`u`)return`@home`;let e=new URLSearchParams(window.location.hash.replace(/^#/,``)).get(`path`);return e&&e.length>0?e:`@home`}function Ne(e){if(typeof window>`u`)return;let t=new URL(window.location.href);t.hash=e===`.`||e===`@home`?``:`path=${encodeURIComponent(e)}`,window.history.replaceState(window.history.state,``,t.toString())}function B(e){return new Promise((t,n)=>{let r=[],i=()=>e.readEntries(e=>{e.length===0?t(r):(r.push(...e),i())},n);i()})}function V(e){return new Promise((t,n)=>e.file(t,n))}async function Pe(e,t=``){let n=[];for(let r of e){if(!r)continue;let e=t?`${t}/${r.name}`:r.name;if(r.isFile)n.push({file:await V(r),relpath:e});else if(r.isDirectory){let t=await B(r.createReader());n.push(...await Pe(t,e))}}return n}function Fe(e,t){if(e===422&&typeof t==`string`){if(/exceeds the .* limit/i.test(t))return`size`;if(/unsupported file type/i.test(t))return`mime`}return`http=${e}`}function Ie({adminFetch:e,cacheKey:i,sessionRefetchNonce:o}){let[s,c]=(0,k.useState)(``),u=(0,k.useRef)(null),[f,p]=(0,k.useState)(``),[m,h]=(0,k.useState)(null),[ee,te]=(0,k.useState)(`hybrid`),[_,v]=(0,k.useState)(!1),[re,b]=(0,k.useState)(null),[ie,ae]=(0,k.useState)(null),[x,oe]=(0,k.useState)(0),[se,S]=(0,k.useState)(!1),[C,w]=(0,k.useState)(()=>Me()),[D,ce]=(0,k.useState)(null),[O,he]=(0,k.useState)(()=>je()),[ge,ve]=(0,k.useState)(null),[A,ye]=(0,k.useState)([]),[M,be]=(0,k.useState)(null),[xe,N]=(0,k.useState)(0),[P,F]=(0,k.useState)(null),I=(0,k.useRef)(null),Ee=A.slice(0,-1).map(e=>e.name).join(`/`),R=(()=>{let e=A.map(e=>e.name);return e.length>=2&&e[0]===`accounts`?`${e[0]}/${e[1]}`:null})(),z=M?Ee:C,B=(0,k.useCallback)(e=>z===`.`||z===``?e:`${z}/${e}`,[z]),[V,Ie]=(0,k.useState)(!1),[Le,Re]=(0,k.useState)(!1),[Ve,He]=(0,k.useState)(null),[Ue,Ke]=(0,k.useState)(!1),[H,U]=(0,k.useState)(null),[qe,Je]=(0,k.useState)(null),[Ye,Xe]=(0,k.useState)(null),[Ze,Qe]=(0,k.useState)(!1),[$e,et]=(0,k.useState)(null),tt=(0,k.useRef)(null),[nt,W]=(0,k.useState)(0),[rt,it]=(0,k.useState)(!1),[at,ot]=(0,k.useState)(``),[st,ct]=(0,k.useState)(null),[lt,ut]=(0,k.useState)(``),[dt,ft]=(0,k.useState)(null),G=(()=>{let e=C===`.`?[]:C.split(`/`).filter(Boolean);return e.some(e=>e.startsWith(`@`))?!1:e.length>=2&&e[0]===`accounts`})(),[pt,mt]=(0,k.useState)(!1),ht=(0,k.useRef)(null),[gt,K]=(0,k.useState)(!1),_t=(0,k.useRef)(null);(0,k.useEffect)(()=>{let e=s.trim();if(!e){p(``),h(null),b(null);return}S(!1);let t=setTimeout(()=>p(e),300);return()=>clearTimeout(t)},[s]),(0,k.useEffect)(()=>{if(!f){v(!1);return}let t=!1;return v(!0),b(null),e(`/api/admin/graph-search?q=${encodeURIComponent(f)}&labels=FileArtifact&limit=20${se?`&threshold=0`:``}`).then(async e=>{let t=await e.json().catch(()=>({error:`HTTP ${e.status}`}));if(!e.ok)throw Error(t.error??`HTTP ${e.status}`);return t}).then(e=>{t||(h(e.results),te(e.mode??`hybrid`),oe(typeof e.suppressed==`number`?e.suppressed:0))}).catch(e=>{t||b(e instanceof Error?e.message:String(e))}).finally(()=>{t||v(!1)}),()=>{t=!0}},[f,e,o,se]);let vt=(0,k.useMemo)(()=>m?Se(m):[],[m]),yt=ie&&vt.includes(ie)?ie:null,bt=(0,k.useMemo)(()=>m?yt?m.filter(e=>e.labels.includes(yt)):m:null,[m,yt]),xt=(0,k.useCallback)(e=>{let t=e.properties.relativePath;if(typeof t!=`string`||t.length===0)return;let n=`/api/admin/files/download?session_key=${encodeURIComponent(i)}&path=${encodeURIComponent(t)}`,r=document.createElement(`a`);r.href=n,r.rel=`noopener noreferrer`,document.body.appendChild(r),r.click(),r.remove()},[i]);(0,k.useEffect)(()=>{if(!m)return;let e=m.filter(e=>{let t=e.properties.relativePath;return typeof t!=`string`||t.length===0});e.length>0&&console.warn(`[data-search] op=locate-link-missing nodeId=${e.map(e=>e.nodeId).join(`,`)}`)},[m]),(0,k.useEffect)(()=>{let t=!1;return Ie(!0),He(null),e(`/api/admin/files?path=${encodeURIComponent(C===`.`?``:C)}`).then(async e=>{let t=await e.json().catch(()=>({error:`HTTP ${e.status}`}));if(!e.ok)throw Error(t.error??`HTTP ${e.status}`);return t}).then(e=>{t||(ce(e.entries),ye(e.displayPath??[]),be(e.view??null),N(typeof e.systemCount==`number`?e.systemCount:0))}).catch(e=>{t||(ce([]),ye([]),be(null),N(0),He(e instanceof Error?e.message:String(e)))}).finally(()=>{t||(Ie(!1),Re(!0))}),()=>{t=!0}},[e,C,nt,o]),(0,k.useEffect)(()=>{if(M!==null||!R||I.current===R)return;I.current=R;let t=!1;return e(`/api/admin/files?path=${encodeURIComponent(`${R}/@home`)}`).then(e=>e.ok?e.json():null).then(e=>{t||!e||F((e.entries??[]).map(e=>e.name))}).catch(e=>{console.warn(`[data-ui] op=rail-buckets status=error reason="${e instanceof Error?e.message:String(e)}"`)}),()=>{t=!0}},[e,M,R]),(0,k.useEffect)(()=>{Ne(C)},[C]);let St=(0,k.useCallback)(()=>{W(e=>e+1)},[]),q=(0,k.useCallback)(e=>{mt(!1),w(e)},[]),Ct=(0,k.useCallback)(e=>{let t=e.properties.relativePath;if(typeof t!=`string`||t.length===0)return;let n=t.lastIndexOf(`/`),r=n===-1?`.`:t.slice(0,n);console.log(`[data-search] op=locate nodeId=${e.nodeId} folder=${r}`),c(``),b(null),ae(null),q(r)},[q]),wt=(0,k.useCallback)(()=>{if(!C.split(`/`).some(e=>e.startsWith(`@`))){if(C===`.`||C===``)return;let e=C.split(`/`).filter(Boolean);e.pop(),w(e.length===0?`.`:e.join(`/`));return}A.length!==0&&w(A.length>=2?A.slice(0,A.length-1).map(e=>e.name).join(`/`):`.`)},[C,A]),Tt=(0,k.useCallback)(e=>{Ce(i,B(L(e)))},[B,i]),[J,Et]=(0,k.useState)(!1),[Y,Dt]=(0,k.useState)(new Set),Ot=(0,k.useRef)(null),X=(0,k.useRef)(!1),kt=typeof navigator<`u`&&typeof navigator.share==`function`&&typeof navigator.canShare==`function`,At=(0,k.useCallback)(e=>{Et(!0),Dt(new Set([e])),console.info(`[data-ui] op=select-enter count=1`)},[]),Z=(0,k.useCallback)(e=>{Et(!1),Dt(new Set),console.info(`[data-ui] op=select-exit reason=${e}`)},[]),Q=(0,k.useCallback)(e=>{Dt(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]),jt=(0,k.useCallback)(e=>{X.current=!1,Ot.current=setTimeout(()=>{X.current=!0,At(e)},500)},[At]),$=(0,k.useCallback)(()=>{Ot.current&&=(clearTimeout(Ot.current),null)},[]),Mt=(0,k.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}Tt(e)},[J,Q,Tt]),Nt=(0,k.useCallback)(e=>{he(e),typeof window<`u`&&window.localStorage.setItem(Oe,e),console.info(`[data] op=view-mode mode=${e}`)},[]),Pt=(0,k.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}ve({src:Te(i,B(L(e))),alt:e.displayName??e.name})},[J,Q,B,i]),Ft=(0,k.useCallback)(()=>(D??[]).filter(e=>e.kind===`file`&&Y.has(e.name)),[D,Y]),It=(0,k.useCallback)(()=>{if(Y.size!==1)return null;let e=(D??[]).find(e=>Y.has(e.name));return e&&!e.entryPath?e:null},[D,Y]),Lt=(0,k.useCallback)(()=>(D??[]).filter(e=>(e.kind===`file`||e.kind===`directory`)&&Y.has(e.name)),[D,Y]),Rt=(0,k.useCallback)(()=>{let e=Lt(),t=e.some(e=>e.kind===`directory`);e.length===1&&!t?Tt(e[0]):e.length>=1&&we(i,e.map(e=>B(L(e)))),Z(`action`)},[Lt,Tt,B,i,Z]),zt=(0,k.useCallback)(async()=>{let t=Ft(),n=t.filter(e=>!e.protected),r=t.length-n.length;et(r>0?`${r} protected file(s) kept`:null);for(let t of n){let n=B(L(t));try{let t=await e(`/api/admin/files?path=${encodeURIComponent(n)}`,{method:`DELETE`}),r=await t.json().catch(()=>({error:`HTTP ${t.status}`}));if(!t.ok)throw Error(r.error??`HTTP ${t.status}`)}catch(e){et(e instanceof Error?e.message:String(e))}}W(e=>e+1),Z(`action`)},[Ft,B,e,Z]),Bt=(0,k.useCallback)(async()=>{let e=Ft();if(console.info(`[data-ui] op=share supported=${kt} count=${e.length}`),kt)try{let t=await Promise.all(e.map(async e=>{let t=B(L(e)),n=`/api/admin/files/download?session_key=${encodeURIComponent(i)}&path=${encodeURIComponent(t)}`,r=await(await fetch(n)).blob();return new File([r],e.displayName??e.name,{type:r.type||`application/octet-stream`})}));navigator.canShare({files:t})&&await navigator.share({files:t})}catch(e){console.warn(`[data-ui] op=share-failed err=${e instanceof Error?e.message:String(e)}`)}},[Ft,kt,B,i]),Vt=(0,k.useCallback)(()=>{tt.current?.click()},[]),Ht=(0,k.useCallback)((e,t={})=>{let n=(n,r,a)=>{let o=new URLSearchParams({session_key:i,path:C===`.`?``:C,filename:e.name});t.relpath&&o.set(`relpath`,t.relpath),t.token&&o.set(`token`,t.token);for(let[e,t]of Object.entries(r))o.set(e,t);return new Promise(t=>{let r=new XMLHttpRequest;r.open(`POST`,`/api/admin/files/upload?${o.toString()}`),r.setRequestHeader(`Content-Type`,e.type||`application/octet-stream`),a&&(r.upload.onprogress=e=>{e.lengthComputable&&a(e.loaded)}),r.onload=()=>{let e={};try{e=JSON.parse(r.responseText)}catch{}t({status:r.status,data:e})},r.onerror=()=>t({status:0,data:{}}),r.onabort=()=>t({status:0,data:{error:`aborted`}}),r.send(n)})};if(e.size<=ke)return n(e,{},n=>t.onProgress?.(n,e.size));let r=`${Date.now().toString(36)}-${Math.random().toString(16).slice(2,10)}`,a=Math.ceil(e.size/Ae);return(async()=>{let i={status:0,data:{}};for(let o=0;o<a;o++){let s=o*Ae;if(i=await n(e.slice(s,Math.min(s+Ae,e.size)),{uploadId:r,seq:String(o),total:String(a)},n=>t.onProgress?.(s+n,e.size)),!(i.status>=200&&i.status<300))return i}return i})()},[i,C]),Ut=(0,k.useCallback)(async e=>{Je(null),Ke(!0),U({loaded:0,total:e.size});try{let{status:t,data:n}=await Ht(e,{onProgress:(e,t)=>U({loaded:e,total:t})});t>=200&&t<300&&n.path?(w(n.path.split(`/`).slice(0,-1).join(`/`)||`.`),W(e=>e+1)):Je(t===0?`Network error during upload — the connection failed before the server responded.`:n.error??`Upload failed (HTTP ${t}).`)}finally{Ke(!1),U(null),tt.current&&(tt.current.value=``)}},[Ht]),Wt=(0,k.useCallback)(e=>{G&&Array.from(e.dataTransfer.types).includes(`Files`)&&(e.preventDefault(),Qe(!0))},[G]),Gt=(0,k.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||Qe(!1)},[]),Kt=(0,k.useCallback)(async e=>{e.preventDefault(),Qe(!1);let t=Math.random().toString(16).slice(2,10),n=Array.from(e.dataTransfer.items);if(console.info(`[data-ui] op=drop-received token=${t} items=${n.length}`),n.length===0)return;if(!G){console.info(`[data-ui] op=drop-rejected token=${t} reason=no-write`),Je(`Open a folder inside your account to upload`);return}let r=n.map(e=>e.webkitGetAsEntry?.()).filter(e=>!!e);Ke(!0),Je(null),Xe(null);let i=performance.now();try{let e=await Pe(r),n=e.reduce((e,t)=>e+t.file.size,0),a=new Set(e.map(e=>e.relpath.split(`/`).slice(0,-1).join(`/`)).filter(Boolean)).size;console.info(`[data-ui] op=drop-walk token=${t} files=${e.length} dirs=${a} bytes=${n}`);let o=0,s=[];for(let n=0;n<e.length;n++){let{file:r,relpath:i}=e[n];console.info(`[data-ui] op=drop-file token=${t} rel="${i}" i=${n+1}/${e.length}`),U({loaded:0,total:r.size});let{status:a,data:c}=await Ht(r,{relpath:i,token:t,onProgress:(e,t)=>U({loaded:e,total:t})});if(a>=200&&a<300)o++,console.info(`[data-ui] op=drop-file-ok token=${t} rel="${i}"`);else{let e=a===0?`http=0`:Fe(a,c.error);s.push(`${i} (${e})`),console.info(`[data-ui] op=drop-file-skip token=${t} rel="${i}" reason=${e}`)}}let c=Math.round(performance.now()-i);console.info(`[data-ui] op=drop-done token=${t} uploaded=${o} skipped=${s.length} ms=${c}`),Xe(`Uploaded ${o}, skipped ${s.length}${s.length?`: ${s.join(`, `)}`:``}`),W(e=>e+1)}catch(e){Je(e instanceof Error?e.message:String(e))}finally{Ke(!1),U(null)}},[G,Ht]),qt=(0,k.useCallback)(async()=>{let t=at.trim();if(t){ft(null);try{let n=await e(`/api/admin/files/folder`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:C===`.`?``:C,name:t})}),r=await n.json().catch(()=>({error:`HTTP ${n.status}`}));if(!n.ok)throw Error(r.error??`HTTP ${n.status}`);it(!1),ot(``),W(e=>e+1)}catch(e){ft(e instanceof Error?e.message:String(e))}}},[e,at,C]),Jt=(0,k.useCallback)(async()=>{if(!st)return;let t=lt.trim();if(!t)return;ft(null);let n=B(st);try{let r=await e(`/api/admin/files/rename`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:n,newName:t})}),i=await r.json().catch(()=>({error:`HTTP ${r.status}`}));if(!r.ok)throw Error(i.error??`HTTP ${r.status}`);ct(null),ut(``),Z(`action`),W(e=>e+1)}catch(e){ft(e instanceof Error?e.message:String(e))}},[e,lt,st,B,Z]);(0,k.useEffect)(()=>{if(!pt)return;let e=e=>{ht.current&&!ht.current.contains(e.target)&&mt(!1)},t=e=>{e.key===`Escape`&&mt(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[pt]),(0,k.useEffect)(()=>{if(!gt)return;let e=e=>{_t.current&&!_t.current.contains(e.target)&&K(!1)},t=e=>{e.key===`Escape`&&K(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[gt]);let Yt=(0,k.useCallback)(e=>A.slice(0,e+1).map(e=>e.name).join(`/`),[A]),Xt=A.length>=2,Zt=Xt?[{name:`.`,label:`data`},...A.slice(0,A.length-2).map((e,t)=>({name:Yt(t),label:e.displayName??e.name}))]:[];return Le?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`data-toolbar`,children:[J?(0,j.jsxs)(`button`,{type:`button`,className:`data-select-cancel`,onClick:()=>Z(`cancel`),"aria-label":`Cancel selection`,children:[(0,j.jsx)(l,{size:14}),` Cancel`]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`data-search-input`,children:[s===``&&(0,j.jsx)(E,{size:14}),(0,j.jsx)(`input`,{ref:u,type:`text`,value:s,onChange:e=>c(e.target.value),autoFocus:!0,autoComplete:`off`,spellCheck:!1}),_&&(0,j.jsx)(r,{size:14,className:`spin`}),s!==``&&(0,j.jsx)(`button`,{type:`button`,className:`data-search-inline-btn`,onClick:()=>{c(``),u.current?.focus()},title:`Clear search`,"aria-label":`Clear search`,children:(0,j.jsx)(l,{size:14})})]}),(0,j.jsxs)(`div`,{className:`data-toolbar-actions`,ref:_t,children:[(0,j.jsx)(`button`,{type:`button`,className:`data-action-overflow`,onClick:()=>K(e=>!e),"aria-haspopup":`menu`,"aria-expanded":gt,"aria-label":`File actions`,title:`File actions`,children:(0,j.jsx)(ue,{size:16})}),(0,j.jsxs)(`div`,{className:`data-action-group`,role:`group`,"aria-label":`File actions`,"data-open":gt?`true`:void 0,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{St(),K(!1)},disabled:V,title:`Refresh this folder`,"aria-label":`Refresh this folder`,children:[V?(0,j.jsx)(r,{size:16,className:`spin`}):(0,j.jsx)(y,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`Refresh`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn admin-btn-cta`,onClick:()=>{Vt(),K(!1)},disabled:Ue||!G,title:G?`Upload a file`:`Open a folder inside your account to upload`,"aria-label":`Upload a file`,children:[Ue?H&&H.total>0?(0,j.jsxs)(`span`,{className:`data-upload-pct`,children:[Math.round(H.loaded/H.total*100),`%`]}):(0,j.jsx)(r,{size:16,className:`spin`}):(0,j.jsx)(_e,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`Upload`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{it(e=>!e),ot(``),ft(null),K(!1)},disabled:Ue||!G,title:G?`New folder`:`Open a folder inside your account to create one`,"aria-label":`New folder`,children:[(0,j.jsx)(de,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`New folder`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Nt(O===`grid`?`list`:`grid`),K(!1)},title:O===`grid`?`List view`:`Grid view`,"aria-label":O===`grid`?`Switch to list view`:`Switch to grid view`,"aria-pressed":O===`grid`,children:[O===`grid`?(0,j.jsx)(pe,{size:16}):(0,j.jsx)(fe,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:O===`grid`?`List view`:`Grid view`})]})]})]})]}),(0,j.jsxs)(`div`,{className:`data-breadcrumbs`,children:[C!==`.`&&(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost data-back-btn`,onClick:wt,title:`Up one level`,"aria-label":`Up one level`,children:(0,j.jsx)(le,{size:14})}),Xt?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,ref:ht,children:[(0,j.jsx)(`button`,{type:`button`,className:`data-crumb data-crumb-ellipsis`,onClick:()=>mt(e=>!e),"aria-haspopup":`menu`,"aria-expanded":pt,"aria-label":`Show parent folders`,title:`Show parent folders`,children:`…`}),pt&&(0,j.jsx)(`div`,{className:`data-crumb-menu`,role:`menu`,children:Zt.map(e=>(0,j.jsx)(`button`,{type:`button`,role:`menuitem`,className:`data-crumb-menu-item`,onClick:()=>q(e.name),title:e.label,children:e.label},e.name))})]}),[A.length-2,A.length-1].map(e=>{let t=A[e];return(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,j.jsx)(`span`,{className:`data-crumb-sep`,children:`›`}),(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Yt(e)),title:t.name,children:t.displayName??t.name})]},Yt(e))})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(`.`),children:`data`}),A.map((e,t)=>(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,j.jsx)(`span`,{className:`data-crumb-sep`,children:`›`}),(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Yt(t)),title:e.name,children:e.displayName??e.name})]},Yt(t)))]})]}),rt&&(0,j.jsxs)(`div`,{className:`data-inline-form`,children:[(0,j.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`Folder name`,value:at,autoFocus:!0,onChange:e=>ot(e.target.value),onKeyDown:e=>{e.key===`Enter`&&qt(),e.key===`Escape`&&it(!1)}}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:qt,children:`Create`}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>it(!1),children:`Cancel`})]}),st&&(0,j.jsxs)(`div`,{className:`data-inline-form`,children:[(0,j.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`New name`,value:lt,autoFocus:!0,onChange:e=>ut(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Jt(),e.key===`Escape`&&ct(null)}}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Jt,children:`Rename`}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>ct(null),children:`Cancel`})]}),dt&&(0,j.jsx)(`div`,{className:`data-error`,children:dt}),(0,j.jsx)(`input`,{type:`file`,ref:tt,hidden:!0,onChange:e=>{let t=e.target.files?.[0];t&&Ut(t)}})]}),(0,j.jsxs)(`div`,{className:`data-body`,"data-drag-active":Ze?`true`:void 0,onDragEnter:Wt,onDragOver:Wt,onDragLeave:Gt,onDrop:Kt,children:[M===null&&R&&P&&P.length>0&&(0,j.jsxs)(`aside`,{className:`data-rail`,"aria-label":`Folders`,children:[(0,j.jsx)(`span`,{className:`data-rail-label`,children:`Folders`}),(0,j.jsx)(`ul`,{className:`data-rail-list`,children:P.map(e=>{let t=`${R}/${e}`,n=C===t||C.startsWith(`${t}/`);return(0,j.jsx)(`li`,{children:(0,j.jsxs)(`button`,{type:`button`,className:`data-rail-item`,"aria-current":n?`true`:void 0,onClick:()=>q(t),children:[(0,j.jsx)(g,{size:13}),(0,j.jsx)(`span`,{className:`data-rail-item-name`,children:e})]})},e)})})]}),(0,j.jsxs)(`div`,{className:`data-content`,children:[(re!==null||m!==null)&&(0,j.jsxs)(`section`,{className:`data-panel admin-card`,children:[re&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Search failed: `,re]}),vt.length>0&&(0,j.jsx)(`div`,{className:`data-chip-row`,role:`group`,"aria-label":`Filter by type`,children:vt.map(e=>{let t=e===yt;return(0,j.jsx)(`button`,{type:`button`,className:`data-chip`,"data-active":t,onClick:()=>ae(t?null:e),children:Be([e])??e},e)})}),m&&!_&&(0,j.jsxs)(`div`,{className:`data-results-meta`,children:[bt.length,` of `,m.length,` result`,m.length===1?``:`s`]}),m&&!_&&!yt&&x>0&&!se&&(0,j.jsxs)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>S(!0),children:[x,` low-confidence result`,x===1?``:`s`,` hidden — show all`]}),m&&!_&&!yt&&se&&(0,j.jsx)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>S(!1),children:`Showing all results — hide low-confidence`}),m&&m.length===0&&!_&&(0,j.jsx)(`div`,{className:`data-empty-results`,children:`No matches. Try a different keyword.`}),bt&&bt.length>0&&(0,j.jsx)(`ul`,{className:`data-results`,children:bt.map(e=>(0,j.jsx)(ze,{hit:e,mode:ee,onDownload:xt,onLocate:Ct},e.nodeId))})]}),(0,j.jsxs)(`section`,{className:`data-panel data-panel--wide admin-card`,children:[H&&(0,j.jsxs)(`div`,{className:`data-upload-progress`,role:`progressbar`,"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":H.total>0?Math.round(H.loaded/H.total*100):void 0,children:[(0,j.jsx)(`div`,{className:`data-upload-progress-track`,children:(0,j.jsx)(`div`,{className:`data-upload-progress-fill`,style:{width:`${H.total>0?Math.round(H.loaded/H.total*100):0}%`}})}),(0,j.jsxs)(`span`,{className:`data-upload-progress-label`,children:[`Uploading… `,H.total>0?`${Math.round(H.loaded/H.total*100)}%`:``]})]}),qe&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Upload failed: `,qe]}),Ye&&(0,j.jsx)(`div`,{className:`data-status`,children:Ye}),$e&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Delete failed: `,$e]}),Ve&&(0,j.jsx)(`div`,{className:`data-error`,children:Ve}),V&&(0,j.jsxs)(`div`,{className:`data-loading`,children:[(0,j.jsx)(r,{size:14,className:`spin`}),` Loading…`]}),!J&&!V&&M!==`home`&&D&&D.length>0&&(0,j.jsxs)(`div`,{className:`data-select-hint`,children:[(0,j.jsx)(me,{size:13}),(0,j.jsx)(`span`,{children:`Press and hold a file to select, rename, or delete it.`})]}),!V&&M!==`home`&&D&&D.length===0&&!Ve&&(0,j.jsx)(`div`,{className:`data-empty-results`,children:`Empty directory.`}),!V&&M===`home`&&D&&(0,j.jsxs)(`ul`,{className:`routine-list data-home-list`,children:[D.map(e=>(0,j.jsxs)(`li`,{className:`data-home-card`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-home-card-head`,onClick:()=>q(B(e.name)),children:[(0,j.jsx)(`span`,{className:`data-home-card-title`,children:e.name}),(0,j.jsx)(`span`,{className:`data-home-card-count`,children:e.childCount===null||e.childCount===void 0?`—`:`${e.childCount} ${e.childCount===1?`item`:`items`}`})]}),(0,j.jsxs)(`ul`,{className:`data-home-card-children`,children:[e.childCount===null&&(0,j.jsx)(`li`,{className:`data-home-card-error`,children:`Could not read this folder.`}),e.childCount===0&&(0,j.jsx)(`li`,{className:`data-home-card-empty`,children:`Empty.`}),(e.children??[]).map(e=>(0,j.jsxs)(`li`,{className:`data-home-card-child`,children:[e.kind===`directory`?(0,j.jsx)(g,{size:12}):(0,j.jsx)(T,{size:12}),(0,j.jsx)(`span`,{className:`data-home-card-child-name`,children:e.name})]},e.name)),typeof e.childCount==`number`&&e.childCount>(e.children?.length??0)&&(0,j.jsxs)(`li`,{className:`data-home-card-more`,children:[`+`,e.childCount-(e.children?.length??0),` more`]})]})]},e.name)),(0,j.jsxs)(`li`,{className:`data-home-card`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-home-card-head`,onClick:()=>q(B(`@system`)),children:[(0,j.jsx)(`span`,{className:`data-home-card-title`,children:`system`}),(0,j.jsxs)(`span`,{className:`data-home-card-count`,children:[xe,` `,xe===1?`item`:`items`]})]}),(0,j.jsx)(`ul`,{className:`data-home-card-children`,children:(0,j.jsx)(`li`,{className:`data-home-card-empty`,children:`Platform and plugin folders.`})})]})]}),!V&&M!==`home`&&D&&D.length>0&&O===`grid`&&(0,j.jsx)(`ul`,{className:`data-grid`,children:D.map(e=>{let t=e.displayName??e.name,n=J&&Y.has(e.name);if(e.kind===`directory`)return(0,j.jsx)(`li`,{className:`data-grid-cell`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-grid-tile`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(B(e.name))},children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsx)(g,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:t})]})},e.name);if(e.kind===`file`){let r=De(L(e)),a=B(L(e));return(0,j.jsx)(`li`,{className:`data-grid-cell`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-grid-tile${r?` data-grid-tile-image`:``}`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>r?Pt(e):Mt(e),title:J?void 0:r?`Preview ${t}`:`Download ${t}`,children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),r?(0,j.jsx)(`img`,{className:`data-grid-thumb`,src:Te(i,a),alt:t,loading:`lazy`,onError:()=>console.warn(`[data] op=thumb-error path=${a}`)}):(0,j.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:t}),!r&&(0,j.jsx)(`span`,{className:`data-grid-sub`,children:We(e.sizeBytes)})]})},e.name)}return(0,j.jsx)(`li`,{className:`data-grid-cell`,children:(0,j.jsxs)(`div`,{className:`data-grid-tile data-entry-disabled`,children:[(0,j.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,children:t}),(0,j.jsx)(`span`,{className:`data-grid-sub`,children:`special`})]})},e.name)})}),!V&&M!==`home`&&D&&D.length>0&&O===`list`&&(0,j.jsx)(`ul`,{className:`data-entries`,children:D.map(e=>{let t=e.displayName??e.name;if(e.kind===`directory`){let n=J&&Y.has(e.name);return(0,j.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-entry-btn`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(B(e.name))},children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsx)(g,{size:14}),(0,j.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t})]})},e.name)}if(e.kind===`file`){let n=J&&Y.has(e.name);return(0,j.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-entry-btn data-entry-file`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>Mt(e),title:J?void 0:`Download ${t}`,children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsxs)(`span`,{className:`data-entry-text`,children:[(0,j.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t}),(0,j.jsxs)(`span`,{className:`data-entry-meta`,title:`Modified ${Ge(e.modifiedAt)}`,children:[We(e.sizeBytes),` · `,Ge(e.modifiedAt)]})]})]})},e.name)}return(0,j.jsx)(`li`,{className:`data-entry`,children:(0,j.jsx)(`div`,{className:`data-entry-btn data-entry-file data-entry-disabled`,children:(0,j.jsxs)(`span`,{className:`data-entry-text`,children:[(0,j.jsx)(`span`,{className:`data-entry-name`,children:t}),(0,j.jsx)(`span`,{className:`data-entry-meta`,children:`special`})]})})},e.name)})})]})]})]}),J&&(0,j.jsx)(`div`,{className:`data-select-bar`,role:`toolbar`,"aria-label":`Selection actions`,children:(0,j.jsxs)(`div`,{className:`data-select-bar-inner`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Bt,disabled:!kt||Y.size===0,title:kt?`Share selected files`:`Sharing is not supported on this device`,children:[(0,j.jsx)(d,{size:16}),` Share`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Rt,disabled:Y.size===0,children:[(0,j.jsx)(t,{size:16}),` Download`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:()=>{let e=It();e&&(ct(e.name),ut(e.name))},disabled:!It(),children:[(0,j.jsx)(n,{size:16}),` Rename`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action data-select-delete`,onClick:zt,disabled:Y.size===0,children:[(0,j.jsx)(ne,{size:16}),` Delete`]})]})}),ge&&(0,j.jsx)(`div`,{className:`chat-attachment-overlay`,role:`dialog`,"aria-label":ge.alt,onClick:()=>ve(null),children:(0,j.jsx)(`img`,{className:`chat-attachment-overlay-image`,src:ge.src,alt:ge.alt})})]}):(0,j.jsx)(a,{surface:`gate`})}function Le({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){(0,k.useEffect)(()=>{console.info(`[data-ui] op=mount header=operator home=absent`)},[]);let r=(0,k.useCallback)(()=>{try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},[]),i=(0,k.useCallback)(e=>{e===`chat`&&(window.location.href=`/`)},[]),[a,o]=(0,k.useState)([]),[s,c]=(0,k.useState)(`files`),{subAccounts:l,activeAccountId:u,switching:d,switchAccount:f}=v(t);return(0,k.useEffect)(()=>{if(!t)return;let e=!1;return fetch(`/api/operator-conversations/conversations?session_key=${encodeURIComponent(t)}`).then(e=>e.ok?e.json():{conversations:[]}).then(t=>{e||o(t.conversations??[])}).catch(()=>{}),()=>{e=!0}},[t]),(0,j.jsxs)(`main`,{className:`data-main`,children:[(0,j.jsx)(m,{variant:`operator`,onNavigate:i,onOpenConversations:a.length>0?()=>c(`conversations`):void 0,onToggleSidebar:()=>{},sidebarOpen:!1,onLogout:r,onDisconnect:async()=>!0,disconnecting:!1,subAccounts:l,activeAccountId:u,switchingAccount:d,onSwitchAccount:f}),s===`conversations`?(0,j.jsx)(I,{conversations:a,sessionKey:t,onBack:()=>c(`files`)}):(0,j.jsx)(Ie,{adminFetch:e,cacheKey:t,sessionRefetchNonce:n})]})}function Re({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=c({initialCacheKey:e,surface:`data`});return(0,j.jsx)(`div`,{className:`data-page`,children:(0,j.jsx)(`main`,{className:`data-main`,children:(0,j.jsx)(Ie,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})})})}function ze({hit:e,mode:t,onDownload:n,onLocate:r}){let i=Ve(e.properties),a=He(e.properties),o=Be(e.labels),s=Ue(e.properties),[c,l]=(0,k.useState)(!1),u=a&&a.length>280,d=c||!u?a:a?.slice(0,280)+`…`,f=t===`bm25`?`bm25 ${e.bm25Score.toFixed(2)}`:`vector ${e.vectorScore.toFixed(2)} · bm25 ${e.bm25Score.toFixed(2)} · combined ${e.score.toFixed(2)}`,p=e.properties.relativePath,m=typeof p==`string`&&p.length>0,h=m?p.lastIndexOf(`/`):-1,ee=m?h===-1?`data`:p.slice(0,h):null;return(0,j.jsxs)(`li`,{className:`data-result`,children:[(0,j.jsxs)(`div`,{role:`button`,tabIndex:0,className:`data-result-open`,onClick:()=>n(e),onKeyDown:t=>{(t.key===`Enter`||t.key===` `)&&(t.preventDefault(),n(e))},"aria-label":`Download ${i??o??`file`}`,children:[o&&(0,j.jsx)(`div`,{className:`data-result-header`,children:(0,j.jsx)(`span`,{className:`data-result-labels`,children:o})}),i&&(0,j.jsx)(`div`,{className:`data-result-title`,children:i}),a&&(0,j.jsx)(`pre`,{className:`data-result-body`,children:d}),(0,j.jsxs)(`div`,{className:`data-result-scores`,children:[s&&(0,j.jsxs)(`span`,{className:`data-result-updated`,children:[`Updated `,Ge(s),` · `]}),f]})]}),m&&(0,j.jsxs)(`button`,{type:`button`,className:`data-result-locate`,onClick:()=>r(e),title:`Locate in ${ee}`,"aria-label":`Locate in ${ee}`,children:[(0,j.jsx)(g,{size:12}),ee]}),u&&(0,j.jsx)(`button`,{type:`button`,className:`data-result-toggle`,onClick:()=>l(e=>!e),children:c?`Show less`:`Show more`})]})}function Be(e){if(e.length===0)return null;let t=e[0].replace(/([a-z])([A-Z])/g,`$1 $2`);return t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()}function Ve(e){for(let t of[`title`,`name`,`summary`,`headline`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n.length>140?n.slice(0,140)+`…`:n}return null}function He(e){for(let t of[`content`,`summary`,`body`,`description`,`text`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n}return null}function Ue(e){for(let t of[`updatedAt`,`modifiedAt`,`fetchedAt`,`createdAt`,`lastModified`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n}return null}function We(e){return e==null?``:e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:e<1024*1024*1024?`${(e/1024/1024).toFixed(1)} MB`:`${(e/1024/1024/1024).toFixed(1)} GB`}function Ge(e){try{let t=new Date(e);if(isNaN(t.getTime()))return`—`;let n=typeof navigator<`u`?navigator.languages&&navigator.languages.length>0?[...navigator.languages]:[navigator.language]:void 0;return t.toLocaleString(n,{dateStyle:`medium`,timeStyle:`short`})}catch{return`—`}}export{P as i,Re as n,Ce as r,R as t};
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{A as t,C as n,E as r,F as i,I as a,S as o,V as s,W as c,_ as l,a as u,b as d,c as f,d as p,f as m,i as h,k as g,m as ee,q as te,s as _,t as v,v as ne,x as y,y as re}from"./useSubAccountSwitcher-BwHqV55p.js";import{D as b,O as ie,T as ae,f as x,n as oe,r as se,s as S,w as C}from"./useVoiceRecorder-BT2738ZS.js";import{t as w}from"./chevron-left-Bl4vpOM0.js";import{t as T}from"./file-text-dYBnXNEX.js";import{i as E,t as D}from"./graph-labels-D1LkKiJr.js";import{t as ce}from"./triangle-alert-C_AcpTW5.js";var le=i(`arrow-left`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),ue=i(`ellipsis`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`19`,cy:`12`,r:`1`,key:`1wjl8i`}],[`circle`,{cx:`5`,cy:`12`,r:`1`,key:`1pcz8c`}]]),de=i(`folder-plus`,[[`path`,{d:`M12 10v6`,key:`1bos4e`}],[`path`,{d:`M9 13h6`,key:`1uhe8q`}],[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),O=i(`image`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`circle`,{cx:`9`,cy:`9`,r:`2`,key:`af1f0g`}],[`path`,{d:`m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21`,key:`1xmnt7`}]]),fe=i(`layout-grid`,[[`rect`,{width:`7`,height:`7`,x:`3`,y:`3`,rx:`1`,key:`1g98yp`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`3`,rx:`1`,key:`6d4xhi`}],[`rect`,{width:`7`,height:`7`,x:`14`,y:`14`,rx:`1`,key:`nxv5o0`}],[`rect`,{width:`7`,height:`7`,x:`3`,y:`14`,rx:`1`,key:`1bb6yr`}]]),pe=i(`list`,[[`path`,{d:`M3 5h.01`,key:`18ugdj`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M3 19h.01`,key:`noohij`}],[`path`,{d:`M8 5h13`,key:`1pao27`}],[`path`,{d:`M8 12h13`,key:`1za7za`}],[`path`,{d:`M8 19h13`,key:`m83p4d`}]]),me=i(`mouse-pointer-click`,[[`path`,{d:`M14 4.1 12 6`,key:`ita8i4`}],[`path`,{d:`m5.1 8-2.9-.8`,key:`1go3kf`}],[`path`,{d:`m6 12-1.9 2`,key:`mnht97`}],[`path`,{d:`M7.2 2.2 8 5.1`,key:`1cfko1`}],[`path`,{d:`M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z`,key:`s0h3yz`}]]),he=i(`send-horizontal`,[[`path`,{d:`M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z`,key:`117uat`}],[`path`,{d:`M6 12h16`,key:`s4cdu5`}]]),ge=i(`smile`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M8 14s1.5 2 4 2 4-2 4-2`,key:`1y1vjs`}],[`line`,{x1:`9`,x2:`9.01`,y1:`9`,y2:`9`,key:`yxxnd0`}],[`line`,{x1:`15`,x2:`15.01`,y1:`9`,y2:`9`,key:`1p4y9e`}]]),_e=i(`upload`,[[`path`,{d:`M12 3v12`,key:`1x0j5s`}],[`path`,{d:`m17 8-5-5-5 5`,key:`7q97r8`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}]]),k=e(te(),1);function ve(){let[e,t]=(0,k.useState)([]),[n,r]=(0,k.useState)(!1),[i,a]=(0,k.useState)(null),o=(0,k.useRef)(null),s=(0,k.useCallback)(e=>{a(null);let n=e.find(e=>!se(e.type,ie));if(n){a(`Unsupported file type: "${n.type}". Supported: images, PDF, plain text, markdown, CSV, calendar, zip, voice notes.`);return}let r=e.find(e=>e.size>b);if(r){a(`"${r.name}" exceeds the 50 MB limit.`);return}t(t=>[...t,...e].slice(0,5))},[]);return{pendingFiles:e,setPendingFiles:t,isDragOver:n,attachError:i,setAttachError:a,fileInputRef:o,addFiles:s,clearFiles:(0,k.useCallback)(()=>{t([]),a(null)},[]),removeFile:(0,k.useCallback)(e=>{t(t=>t.filter((t,n)=>n!==e))},[]),onDragOver:(0,k.useCallback)(e=>{e.preventDefault(),r(!0)},[]),onDragLeave:(0,k.useCallback)(()=>{r(!1)},[]),onDrop:(0,k.useCallback)(e=>{e.preventDefault(),r(!1),s([...e.dataTransfer.files])},[s])}}var A=[[128512],[128515],[128516],[128513],[128518],[128517],[128514],[129315],[128578],[128579],[128521],[128522],[128519],[128525],[128536],[128535],[128540],[128541],[129303],[129300],[128528],[128566],[128564],[128526],[129395],[128546],[128557],[128548],[128544],[128533],[128556],[129393],[128077],[128078],[128076],[128591],[128079],[128588],[128170],[128075],[129309],[10084,65039],[128293],[11088],[127881],[10024],[128175],[128064]].map(e=>String.fromCodePoint(...e));function ye(e,t,n,r){let i=e.length,a=Math.max(0,Math.min(n??i,i)),o=Math.max(a,Math.min(r??a,i));return{value:e.slice(0,a)+t+e.slice(o),caret:a+t.length}}var j=s();function M({onSelect:e}){return(0,j.jsx)(`div`,{className:`wa-emoji-popover`,role:`menu`,"aria-label":`Emoji picker`,children:A.map((t,n)=>(0,j.jsx)(`button`,{type:`button`,role:`menuitem`,className:`wa-emoji-item`,onClick:()=>e(t),children:t},n))})}function be({sessionKey:e,onPick:t,onClose:n}){let[r,i]=(0,k.useState)(``),[a,o]=(0,k.useState)(null),[s,c]=(0,k.useState)(null),[u,d]=(0,k.useState)(!1),f=(0,k.useCallback)(t=>{d(!0),c(null),fetch(`/api/admin/files?path=${encodeURIComponent(t)}&session_key=${encodeURIComponent(e)}`).then(async e=>{let t=await e.json().catch(()=>({}));if(!e.ok)throw Error(t.error??`Could not list files`);return t}).then(e=>{o(e),i(e.path===`.`?``:e.path)}).catch(e=>c(e instanceof Error?e.message:String(e))).finally(()=>d(!1))},[e]);(0,k.useEffect)(()=>{f(``)},[f]);let p=e=>f(r?`${r}/${e}`:e),m=()=>{let e=r.split(`/`).filter(Boolean);e.pop(),f(e.join(`/`))},h=e=>{let n=e.entryPath??e.name;t({path:r?`${r}/${n}`:n,name:e.displayName??e.name})};return(0,j.jsx)(`div`,{className:`wa-picker-backdrop`,role:`dialog`,"aria-label":`Choose a device file`,onClick:n,children:(0,j.jsxs)(`div`,{className:`wa-picker`,onClick:e=>e.stopPropagation(),children:[(0,j.jsxs)(`div`,{className:`wa-picker-head`,children:[r&&(0,j.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:m,"aria-label":`Up one folder`,children:(0,j.jsx)(w,{size:18})}),(0,j.jsx)(`span`,{className:`wa-picker-title`,children:r||`Device storage`}),(0,j.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:n,"aria-label":`Close file picker`,children:(0,j.jsx)(l,{size:18})})]}),s&&(0,j.jsx)(`p`,{className:`wa-picker-error`,role:`alert`,children:s}),u&&(0,j.jsx)(`p`,{className:`wa-picker-empty`,children:`Loading…`}),a&&!u&&(0,j.jsxs)(`ul`,{className:`wa-picker-list`,children:[a.entries.length===0&&(0,j.jsx)(`li`,{className:`wa-picker-empty`,children:`This folder is empty.`}),a.entries.map(e=>(0,j.jsx)(`li`,{children:e.kind===`directory`?(0,j.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>p(e.name),children:[(0,j.jsx)(g,{size:16,"aria-hidden":!0}),(0,j.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):e.kind===`file`?(0,j.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>h(e),children:[(0,j.jsx)(T,{size:16,"aria-hidden":!0}),(0,j.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):null},e.name))]})]})})}function xe(e){return`${Math.floor(e/60)}:${String(e%60).padStart(2,`0`)}`}function N({accountId:e,remoteJid:t,sessionKey:n,replyTo:r,onClearReply:i}){let[a,s]=(0,k.useState)(``),[c,u]=(0,k.useState)(!1),[d,f]=(0,k.useState)(null),[p,m]=(0,k.useState)(!1),[h,g]=(0,k.useState)(!1),[ee,te]=(0,k.useState)(!1),[_,v]=(0,k.useState)([]),y=(0,k.useRef)(null),{pendingFiles:b,attachError:ie,addFiles:x,removeFile:se,clearFiles:S}=ve(),{state:w,elapsedSeconds:E,errorMessage:D,start:ce,send:le,discard:ue}=oe(),de=w===`recording`||w===`paused`,fe=(0,k.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=start ms=0`),ce()},[ce]),pe=(0,k.useCallback)(async()=>{let e=E*1e3,t=await le();if(console.info(`[operator-ui] op=voice-record state=stop ms=${e}`),t){let e=t.type===`audio/ogg`?`.ogg`:t.type===`audio/mp4`?`.m4a`:`.webm`;x([new File([t],`voice-note${e}`,{type:t.type})])}},[E,le,x]),me=(0,k.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=cancel ms=${E*1e3}`),ue()},[E,ue]),_e=(0,k.useRef)(!1),A=()=>Math.round((typeof window>`u`?900:window.innerHeight)/3),[N,P]=(0,k.useState)(null),[Se,Ce]=(0,k.useState)(null),we=(0,k.useRef)(null),Te=(0,k.useRef)(44),F=(0,k.useCallback)(e=>{let t=we.current;if(!t)return;t.moved=!0;let n=Math.min(A(),Math.max(44,t.startH+(t.startY-e.clientY)));Te.current=n,P(n)},[]),I=(0,k.useCallback)(()=>{let e=we.current?.moved??!1;we.current=null,window.removeEventListener(`pointermove`,F),window.removeEventListener(`pointerup`,I),e&&console.info(`[operator-ui] op=wa-composer-resize mode=drag h=${Te.current}`)},[F]),Ee=(0,k.useCallback)(e=>{we.current={startY:e.clientY,startH:y.current?.offsetHeight??44,moved:!1},window.addEventListener(`pointermove`,F),window.addEventListener(`pointerup`,I),e.preventDefault()},[F,I]),De=(0,k.useCallback)(e=>{let t=N??y.current?.offsetHeight??44,n=null;e.key===`ArrowUp`?(e.preventDefault(),n=Math.min(A(),t+24)):e.key===`ArrowDown`&&(e.preventDefault(),n=Math.max(44,t-24)),n!==null&&(P(n),console.info(`[operator-ui] op=wa-composer-resize mode=key h=${n}`))},[N]),L=(0,k.useRef)(``);(0,k.useEffect)(()=>{let e=y.current;if(!e)return;let t=L.current!==``&&a===``;if(L.current=a,N!==null){t&&P(null);return}let n=e.style.height;e.style.height=`auto`;let r=Math.min(A(),Math.max(44,e.scrollHeight));e.style.height=n,Ce(r)},[a,N]);let Oe=(a.trim().length>0||b.length>0||_.length>0)&&!c,ke=(0,k.useCallback)(async()=>{if(!_e.current&&!(a.trim().length===0&&b.length===0&&_.length===0)){_e.current=!0,u(!0),f(null);try{let o=`/api/whatsapp-reader/reply?session_key=${encodeURIComponent(n)}`,c;if(b.length>0||_.length>0){let n=new FormData;n.append(`accountId`,e),n.append(`remoteJid`,t),a.trim()&&n.append(`text`,a);for(let e of b)n.append(`files`,e);for(let e of _)n.append(`fileRefs`,e.path);r&&n.append(`quotedId`,r.msgKeyId),c=await fetch(o,{method:`POST`,body:n})}else c=await fetch(o,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({accountId:e,remoteJid:t,text:a,...r?{quotedId:r.msgKeyId}:{}})});let l=await c.json().catch(()=>({}));if(!c.ok){f(l.error??`Send failed.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${l.error??`unknown`}`);return}s(``),S(),v([]),i?.(),console.info(`[operator-ui] op=reply-sent remoteJid=${t} sent=${l.sent??0}`)}catch(e){f(`Could not reach the server. Try again.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${String(e)}`)}finally{_e.current=!1,u(!1)}}},[a,b,_,r,i,e,t,n,S]),Ae=(0,k.useCallback)(e=>{let t=y.current,{value:n,caret:r}=ye(a,e,t?t.selectionStart:null,t?t.selectionEnd:null);s(n),m(!1),requestAnimationFrame(()=>{let e=y.current;e&&(e.focus(),e.setSelectionRange(r,r))})},[a]),je=e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),Oe&&ke())},R=e=>e.dataTransfer.types.includes(`Files`),z=(0,k.useCallback)(e=>{R(e)&&(e.preventDefault(),te(!0))},[]),Me=(0,k.useCallback)(()=>te(!1),[]),Ne=(0,k.useCallback)(e=>{if(!R(e))return;e.preventDefault(),te(!1);let t=[...e.dataTransfer.files];if(t.length===0)return;let n=Math.max(0,b.length+t.length-5);console.info(`[operator-ui] op=composer-drop count=${t.length} rejected=${n}`),x(t)},[b.length,x]),B=e=>e.startsWith(`image/`)?(0,j.jsx)(O,{size:14}):e===`application/pdf`?(0,j.jsx)(T,{size:14}):(0,j.jsx)(ae,{size:14});return(0,j.jsxs)(`div`,{className:`wa-reply${ee?` wa-reply-drag-over`:``}`,onDragOver:z,onDragLeave:Me,onDrop:Ne,children:[h&&(0,j.jsx)(be,{sessionKey:n,onPick:e=>{v(t=>[...t,e].slice(0,5)),g(!1)},onClose:()=>g(!1)}),p&&(0,j.jsx)(M,{onSelect:Ae}),d&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:d}),ie&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:ie}),w===`error`&&D&&(0,j.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:D}),(b.length>0||_.length>0)&&(0,j.jsxs)(`div`,{className:`wa-reply-attachments`,children:[b.map((e,t)=>(0,j.jsxs)(`div`,{className:`wa-reply-chip`,children:[B(e.type),(0,j.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,j.jsx)(`button`,{type:`button`,onClick:()=>se(t),"aria-label":`Remove ${e.name}`,children:(0,j.jsx)(l,{size:12})})]},`f-${t}`)),_.map((e,t)=>(0,j.jsxs)(`div`,{className:`wa-reply-chip wa-reply-chip-ref`,children:[(0,j.jsx)(T,{size:14}),(0,j.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,j.jsx)(`button`,{type:`button`,onClick:()=>v(e=>e.filter((e,n)=>n!==t)),"aria-label":`Remove ${e.name}`,children:(0,j.jsx)(l,{size:12})})]},`r-${t}`))]}),r&&(0,j.jsxs)(`div`,{className:`wa-reply-quote`,children:[(0,j.jsxs)(`div`,{className:`wa-reply-quote-body`,children:[(0,j.jsx)(`span`,{className:`wa-reply-quote-who`,children:r.fromMe?`You`:r.senderName??`Contact`}),(0,j.jsx)(`span`,{className:`wa-reply-quote-text`,children:r.body||`Message`})]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-quote-cancel`,onClick:()=>i?.(),"aria-label":`Cancel reply`,children:(0,j.jsx)(l,{size:14})})]}),!de&&(0,j.jsx)(`div`,{className:`wa-reply-resize-handle`,role:`separator`,"aria-orientation":`horizontal`,"aria-label":`Resize input — drag up to enlarge`,tabIndex:0,onPointerDown:Ee,onKeyDown:De}),(0,j.jsx)(`div`,{className:`wa-reply-row`,children:de?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:me,"aria-label":`Cancel recording`,children:(0,j.jsx)(ne,{size:20})}),(0,j.jsxs)(`span`,{className:`wa-rec-live`,role:`status`,children:[(0,j.jsx)(`span`,{className:`wa-rec-dot`,"aria-hidden":!0}),xe(E)]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void pe(),"aria-label":`Stop recording`,children:(0,j.jsx)(re,{size:20})})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-emoji`,onClick:()=>m(e=>!e),disabled:c,"aria-label":`Emoji`,"aria-expanded":p,children:(0,j.jsx)(ge,{size:22})}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:()=>g(!0),disabled:c,"aria-label":`Attach files`,children:(0,j.jsx)(o,{size:22})}),(0,j.jsx)(`textarea`,{ref:y,className:`wa-reply-input`,value:a,rows:1,style:{height:`${N??Se??44}px`},placeholder:`Type a message`,disabled:c,onChange:e=>s(e.target.value),onKeyDown:je}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-mic`,onClick:()=>void fe(),disabled:c,"aria-label":`Record voice note`,children:(0,j.jsx)(C,{size:22})}),(0,j.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void ke(),disabled:!Oe,"aria-label":`Send`,children:(0,j.jsx)(he,{size:20})})]})})]})}function P({accountId:e,remoteJid:t,contactName:n,sessionKey:r,onBack:i}){let a=f(t),o=t.split(`@`)[0],s=a?`Group`:n===`+${o}`?void 0:`+${o}`,[c,u]=(0,k.useState)(!1),[d,p]=(0,k.useState)(``),m=()=>{u(!1),p(``)},[h,g]=(0,k.useState)(null);return(0,j.jsxs)(`div`,{className:`wa-web`,children:[(0,j.jsxs)(`header`,{className:`wa-web-header`,children:[i&&(0,j.jsx)(`button`,{type:`button`,className:`wa-web-back`,onClick:i,"aria-label":`Back`,children:(0,j.jsx)(w,{size:20})}),(0,j.jsx)(x,{accountId:e,jid:t,sessionKey:r}),c?(0,j.jsxs)(`div`,{className:`wa-web-search`,children:[(0,j.jsx)(E,{size:18,"aria-hidden":!0}),(0,j.jsx)(`input`,{className:`wa-web-search-input`,type:`text`,autoFocus:!0,placeholder:`Search messages`,"aria-label":`Search messages`,value:d,onChange:e=>p(e.target.value),onKeyDown:e=>{e.key===`Escape`&&m()}}),(0,j.jsx)(`button`,{type:`button`,className:`wa-web-search-close`,onClick:m,"aria-label":`Close search`,children:(0,j.jsx)(l,{size:18})})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`wa-web-titles`,children:[(0,j.jsx)(`span`,{className:`wa-web-name`,children:n}),s&&(0,j.jsx)(`span`,{className:`wa-web-subtitle`,children:s})]}),(0,j.jsx)(`button`,{type:`button`,className:`wa-web-search-toggle`,onClick:()=>u(!0),"aria-label":`Search messages`,children:(0,j.jsx)(E,{size:20})})]})]}),(0,j.jsx)(`div`,{className:`wa-web-body`,children:(0,j.jsx)(S,{sessionId:``,projectDir:``,sessionKey:r,forceDeliveredOnly:!0,suppressDirectives:!0,store:{accountId:e,remoteJid:t},search:c?d:void 0,onReplyTo:g,groupThread:a})}),(0,j.jsx)(N,{accountId:e,remoteJid:t,sessionKey:r,replyTo:h,onClearReply:()=>g(null)})]})}function Se(e){let t=new Set,n=[];for(let r of e)for(let e of r.labels)e&&(t.has(e)||D.has(e)&&(t.add(e),n.push(e)));return n}function Ce(e,t,n=`data`){let r=`/api/admin/files/download?session_key=${encodeURIComponent(e)}&path=${encodeURIComponent(t)}`+(n===`data`?``:`&root=${encodeURIComponent(n)}`),i=document.createElement(`a`);i.href=r,i.rel=`noopener noreferrer`,document.body.appendChild(i),i.click(),i.remove()}function we(e,t){let n=new URLSearchParams;n.set(`session_key`,e);for(let e of t)n.append(`path`,e);let r=document.createElement(`a`);r.href=`/api/admin/files/download-zip?${n.toString()}`,r.rel=`noopener noreferrer`,document.body.appendChild(r),r.click(),r.remove()}function Te(e,t,n=`data`){return`/api/admin/files/download?session_key=${encodeURIComponent(e)}&path=${encodeURIComponent(t)}&disposition=inline`+(n===`data`?``:`&root=${encodeURIComponent(n)}`)}function F(e){if(!e)return``;let t=new Date(e).getTime();return Number.isFinite(t)?new Date(t).toLocaleString(void 0,{dateStyle:`medium`,timeStyle:`short`}):``}function I({conversations:e,sessionKey:t,onBack:n}){let[r,i]=(0,k.useState)(null),a=h(e);return r?r.source===`store`&&r.accountId&&r.remoteJid?(0,j.jsx)(P,{accountId:r.accountId,remoteJid:r.remoteJid,contactName:u(r),sessionKey:t,onBack:()=>i(null)},_(r)):(0,j.jsxs)(`div`,{className:`op-conv op-conv-reader`,children:[(0,j.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:()=>i(null),"aria-label":`Back to conversations`,children:[(0,j.jsx)(w,{size:16}),` Back`]}),(0,j.jsx)(`span`,{className:`op-conv-title`,children:u(r)})]}),(0,j.jsx)(S,{sessionId:r.sessionId,projectDir:r.projectDir,sessionKey:t,forceDeliveredOnly:!0,suppressDirectives:r.source===`store`,store:r.source===`store`?{accountId:r.accountId,remoteJid:r.remoteJid}:void 0},_(r))]}):(0,j.jsxs)(`div`,{className:`op-conv op-conv-list`,children:[(0,j.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:n,"aria-label":`Back to chat`,children:[(0,j.jsx)(w,{size:16}),` Chat`]}),(0,j.jsx)(`span`,{className:`op-conv-title`,children:`Conversations`})]}),a.map(e=>(0,j.jsxs)(`div`,{className:`op-conv-group`,children:[(0,j.jsxs)(`div`,{className:`op-conv-group-head`,children:[(0,j.jsx)(p,{channel:e.channel,size:14}),e.label]}),e.rows.map(e=>(0,j.jsxs)(`button`,{type:`button`,className:`op-conv-row`,onClick:()=>{console.info(`[operator-ui] op=reader-open channel=${e.channel} key=${_(e)} readonly=true source=${e.source}`),i(e)},children:[e.source===`store`&&e.accountId&&e.remoteJid&&(0,j.jsx)(x,{accountId:e.accountId,jid:e.remoteJid,sessionKey:t,className:`op-conv-avatar`,size:16}),(0,j.jsx)(`span`,{className:`op-conv-name`,children:u(e)}),e.modelGated&&(0,j.jsx)(`span`,{className:`op-conv-gated`,role:`img`,"aria-label":`Model unavailable`,children:(0,j.jsx)(ce,{size:13})}),(0,j.jsx)(`span`,{className:`op-conv-when`,children:F(e.lastMessageAt)})]},_(e)))]},e.channel))]})}var Ee=/\.(png|jpe?g|gif|webp|svg)$/i;function De(e){return Ee.test(e)}function L(e){return e.entryPath??e.name}var Oe=`maxy-data-view`,ke=95*1024*1024,Ae=48*1024*1024;function je(){return typeof window>`u`?`list`:window.localStorage.getItem(Oe)===`grid`?`grid`:`list`}function R(){let[e,t]=(0,k.useState)(null),[n,r]=(0,k.useState)(!1);return(0,k.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(`maxy-admin-session-key`)}catch{}if(!n){t(null),r(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(i=>{if(!e){if(i.status===401){try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`;return}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]),n?e?(0,j.jsx)(ee,{cacheKey:e,surface:`data`,onSessionExpired:({code:e,path:t})=>{console.warn(`[admin-auth] outcome=session-expired-redirect code=${e} path=${t} surface=data`);try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},children:(0,j.jsx)(`div`,{className:`data-page data-page-full`,children:(0,j.jsx)(z,{cacheKey:e})})}):(0,j.jsx)(`div`,{className:`data-page`,children:(0,j.jsxs)(`div`,{className:`data-empty`,children:[(0,j.jsx)(`p`,{children:`You are not signed in.`}),(0,j.jsxs)(`p`,{children:[`Open the `,(0,j.jsx)(`a`,{href:`/`,className:`data-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,j.jsx)(a,{surface:`gate`})}function z({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=c({initialCacheKey:e,surface:`data`});return(0,j.jsx)(Le,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})}function Me(){if(typeof window>`u`)return`@home`;let e=new URLSearchParams(window.location.hash.replace(/^#/,``)).get(`path`);return e&&e.length>0?e:`@home`}function Ne(e){if(typeof window>`u`)return;let t=new URL(window.location.href);t.hash=e===`.`||e===`@home`?``:`path=${encodeURIComponent(e)}`,window.history.replaceState(window.history.state,``,t.toString())}function B(e){return new Promise((t,n)=>{let r=[],i=()=>e.readEntries(e=>{e.length===0?t(r):(r.push(...e),i())},n);i()})}function V(e){return new Promise((t,n)=>e.file(t,n))}async function Pe(e,t=``){let n=[];for(let r of e){if(!r)continue;let e=t?`${t}/${r.name}`:r.name;if(r.isFile)n.push({file:await V(r),relpath:e});else if(r.isDirectory){let t=await B(r.createReader());n.push(...await Pe(t,e))}}return n}function Fe(e,t){if(e===422&&typeof t==`string`){if(/exceeds the .* limit/i.test(t))return`size`;if(/unsupported file type/i.test(t))return`mime`}return`http=${e}`}function Ie({adminFetch:e,cacheKey:i,sessionRefetchNonce:o}){let[s,c]=(0,k.useState)(``),u=(0,k.useRef)(null),[f,p]=(0,k.useState)(``),[m,h]=(0,k.useState)(null),[ee,te]=(0,k.useState)(`hybrid`),[_,v]=(0,k.useState)(!1),[re,b]=(0,k.useState)(null),[ie,ae]=(0,k.useState)(null),[x,oe]=(0,k.useState)(0),[se,S]=(0,k.useState)(!1),[C,w]=(0,k.useState)(()=>Me()),[D,ce]=(0,k.useState)(null),[O,he]=(0,k.useState)(()=>je()),[ge,ve]=(0,k.useState)(null),[A,ye]=(0,k.useState)([]),[M,be]=(0,k.useState)(null),[xe,N]=(0,k.useState)(0),[P,F]=(0,k.useState)(null),I=(0,k.useRef)(null),Ee=A.slice(0,-1).map(e=>e.name).join(`/`),R=(()=>{let e=A.map(e=>e.name);return e.length>=2&&e[0]===`accounts`?`${e[0]}/${e[1]}`:null})(),z=M?Ee:C,B=(0,k.useCallback)(e=>z===`.`||z===``?e:`${z}/${e}`,[z]),[V,Ie]=(0,k.useState)(!1),[Le,Re]=(0,k.useState)(!1),[Ve,He]=(0,k.useState)(null),[Ue,Ke]=(0,k.useState)(!1),[H,U]=(0,k.useState)(null),[qe,Je]=(0,k.useState)(null),[Ye,Xe]=(0,k.useState)(null),[Ze,Qe]=(0,k.useState)(!1),[$e,et]=(0,k.useState)(null),tt=(0,k.useRef)(null),[nt,W]=(0,k.useState)(0),[rt,it]=(0,k.useState)(!1),[at,ot]=(0,k.useState)(``),[st,ct]=(0,k.useState)(null),[lt,ut]=(0,k.useState)(``),[dt,ft]=(0,k.useState)(null),G=(()=>{let e=C===`.`?[]:C.split(`/`).filter(Boolean);return e.some(e=>e.startsWith(`@`))?!1:e.length>=2&&e[0]===`accounts`})(),[pt,mt]=(0,k.useState)(!1),ht=(0,k.useRef)(null),[gt,K]=(0,k.useState)(!1),_t=(0,k.useRef)(null);(0,k.useEffect)(()=>{let e=s.trim();if(!e){p(``),h(null),b(null);return}S(!1);let t=setTimeout(()=>p(e),300);return()=>clearTimeout(t)},[s]),(0,k.useEffect)(()=>{if(!f){v(!1);return}let t=!1;return v(!0),b(null),e(`/api/admin/graph-search?q=${encodeURIComponent(f)}&labels=FileArtifact&limit=20${se?`&threshold=0`:``}`).then(async e=>{let t=await e.json().catch(()=>({error:`HTTP ${e.status}`}));if(!e.ok)throw Error(t.error??`HTTP ${e.status}`);return t}).then(e=>{t||(h(e.results),te(e.mode??`hybrid`),oe(typeof e.suppressed==`number`?e.suppressed:0))}).catch(e=>{t||b(e instanceof Error?e.message:String(e))}).finally(()=>{t||v(!1)}),()=>{t=!0}},[f,e,o,se]);let vt=(0,k.useMemo)(()=>m?Se(m):[],[m]),yt=ie&&vt.includes(ie)?ie:null,bt=(0,k.useMemo)(()=>m?yt?m.filter(e=>e.labels.includes(yt)):m:null,[m,yt]),xt=(0,k.useCallback)(e=>{let t=e.properties.relativePath;if(typeof t!=`string`||t.length===0)return;let n=`/api/admin/files/download?session_key=${encodeURIComponent(i)}&path=${encodeURIComponent(t)}`,r=document.createElement(`a`);r.href=n,r.rel=`noopener noreferrer`,document.body.appendChild(r),r.click(),r.remove()},[i]);(0,k.useEffect)(()=>{if(!m)return;let e=m.filter(e=>{let t=e.properties.relativePath;return typeof t!=`string`||t.length===0});e.length>0&&console.warn(`[data-search] op=locate-link-missing nodeId=${e.map(e=>e.nodeId).join(`,`)}`)},[m]),(0,k.useEffect)(()=>{let t=!1;return Ie(!0),He(null),e(`/api/admin/files?path=${encodeURIComponent(C===`.`?``:C)}`).then(async e=>{let t=await e.json().catch(()=>({error:`HTTP ${e.status}`}));if(!e.ok)throw Error(t.error??`HTTP ${e.status}`);return t}).then(e=>{t||(ce(e.entries),ye(e.displayPath??[]),be(e.view??null),N(typeof e.systemCount==`number`?e.systemCount:0))}).catch(e=>{t||(ce([]),ye([]),be(null),N(0),He(e instanceof Error?e.message:String(e)))}).finally(()=>{t||(Ie(!1),Re(!0))}),()=>{t=!0}},[e,C,nt,o]),(0,k.useEffect)(()=>{if(M!==null||!R||I.current===R)return;I.current=R;let t=!1;return e(`/api/admin/files?path=${encodeURIComponent(`${R}/@home`)}`).then(e=>e.ok?e.json():null).then(e=>{t||!e||F((e.entries??[]).map(e=>e.name))}).catch(e=>{console.warn(`[data-ui] op=rail-buckets status=error reason="${e instanceof Error?e.message:String(e)}"`)}),()=>{t=!0}},[e,M,R]),(0,k.useEffect)(()=>{Ne(C)},[C]);let St=(0,k.useCallback)(()=>{W(e=>e+1)},[]),q=(0,k.useCallback)(e=>{mt(!1),w(e)},[]),Ct=(0,k.useCallback)(e=>{let t=e.properties.relativePath;if(typeof t!=`string`||t.length===0)return;let n=t.lastIndexOf(`/`),r=n===-1?`.`:t.slice(0,n);console.log(`[data-search] op=locate nodeId=${e.nodeId} folder=${r}`),c(``),b(null),ae(null),q(r)},[q]),wt=(0,k.useCallback)(()=>{if(!C.split(`/`).some(e=>e.startsWith(`@`))){if(C===`.`||C===``)return;let e=C.split(`/`).filter(Boolean);e.pop(),w(e.length===0?`.`:e.join(`/`));return}A.length!==0&&w(A.length>=2?A.slice(0,A.length-1).map(e=>e.name).join(`/`):`.`)},[C,A]),Tt=(0,k.useCallback)(e=>{Ce(i,B(L(e)))},[B,i]),[J,Et]=(0,k.useState)(!1),[Y,Dt]=(0,k.useState)(new Set),Ot=(0,k.useRef)(null),X=(0,k.useRef)(!1),kt=typeof navigator<`u`&&typeof navigator.share==`function`&&typeof navigator.canShare==`function`,At=(0,k.useCallback)(e=>{Et(!0),Dt(new Set([e])),console.info(`[data-ui] op=select-enter count=1`)},[]),Z=(0,k.useCallback)(e=>{Et(!1),Dt(new Set),console.info(`[data-ui] op=select-exit reason=${e}`)},[]),Q=(0,k.useCallback)(e=>{Dt(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]),jt=(0,k.useCallback)(e=>{X.current=!1,Ot.current=setTimeout(()=>{X.current=!0,At(e)},500)},[At]),$=(0,k.useCallback)(()=>{Ot.current&&=(clearTimeout(Ot.current),null)},[]),Mt=(0,k.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}Tt(e)},[J,Q,Tt]),Nt=(0,k.useCallback)(e=>{he(e),typeof window<`u`&&window.localStorage.setItem(Oe,e),console.info(`[data] op=view-mode mode=${e}`)},[]),Pt=(0,k.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}ve({src:Te(i,B(L(e))),alt:e.displayName??e.name})},[J,Q,B,i]),Ft=(0,k.useCallback)(()=>(D??[]).filter(e=>e.kind===`file`&&Y.has(e.name)),[D,Y]),It=(0,k.useCallback)(()=>{if(Y.size!==1)return null;let e=(D??[]).find(e=>Y.has(e.name));return e&&!e.entryPath?e:null},[D,Y]),Lt=(0,k.useCallback)(()=>(D??[]).filter(e=>(e.kind===`file`||e.kind===`directory`)&&Y.has(e.name)),[D,Y]),Rt=(0,k.useCallback)(()=>{let e=Lt(),t=e.some(e=>e.kind===`directory`);e.length===1&&!t?Tt(e[0]):e.length>=1&&we(i,e.map(e=>B(L(e)))),Z(`action`)},[Lt,Tt,B,i,Z]),zt=(0,k.useCallback)(async()=>{let t=Ft(),n=t.filter(e=>!e.protected),r=t.length-n.length;et(r>0?`${r} protected file(s) kept`:null);for(let t of n){let n=B(L(t));try{let t=await e(`/api/admin/files?path=${encodeURIComponent(n)}`,{method:`DELETE`}),r=await t.json().catch(()=>({error:`HTTP ${t.status}`}));if(!t.ok)throw Error(r.error??`HTTP ${t.status}`)}catch(e){et(e instanceof Error?e.message:String(e))}}W(e=>e+1),Z(`action`)},[Ft,B,e,Z]),Bt=(0,k.useCallback)(async()=>{let e=Ft();if(console.info(`[data-ui] op=share supported=${kt} count=${e.length}`),kt)try{let t=await Promise.all(e.map(async e=>{let t=B(L(e)),n=`/api/admin/files/download?session_key=${encodeURIComponent(i)}&path=${encodeURIComponent(t)}`,r=await(await fetch(n)).blob();return new File([r],e.displayName??e.name,{type:r.type||`application/octet-stream`})}));navigator.canShare({files:t})&&await navigator.share({files:t})}catch(e){console.warn(`[data-ui] op=share-failed err=${e instanceof Error?e.message:String(e)}`)}},[Ft,kt,B,i]),Vt=(0,k.useCallback)(()=>{tt.current?.click()},[]),Ht=(0,k.useCallback)((e,t={})=>{let n=(n,r,a)=>{let o=new URLSearchParams({session_key:i,path:C===`.`?``:C,filename:e.name});t.relpath&&o.set(`relpath`,t.relpath),t.token&&o.set(`token`,t.token);for(let[e,t]of Object.entries(r))o.set(e,t);return new Promise(t=>{let r=new XMLHttpRequest;r.open(`POST`,`/api/admin/files/upload?${o.toString()}`),r.setRequestHeader(`Content-Type`,e.type||`application/octet-stream`),a&&(r.upload.onprogress=e=>{e.lengthComputable&&a(e.loaded)}),r.onload=()=>{let e={};try{e=JSON.parse(r.responseText)}catch{}t({status:r.status,data:e})},r.onerror=()=>t({status:0,data:{}}),r.onabort=()=>t({status:0,data:{error:`aborted`}}),r.send(n)})};if(e.size<=ke)return n(e,{},n=>t.onProgress?.(n,e.size));let r=`${Date.now().toString(36)}-${Math.random().toString(16).slice(2,10)}`,a=Math.ceil(e.size/Ae);return(async()=>{let i={status:0,data:{}};for(let o=0;o<a;o++){let s=o*Ae;if(i=await n(e.slice(s,Math.min(s+Ae,e.size)),{uploadId:r,seq:String(o),total:String(a)},n=>t.onProgress?.(s+n,e.size)),!(i.status>=200&&i.status<300))return i}return i})()},[i,C]),Ut=(0,k.useCallback)(async e=>{Je(null),Ke(!0),U({loaded:0,total:e.size});try{let{status:t,data:n}=await Ht(e,{onProgress:(e,t)=>U({loaded:e,total:t})});t>=200&&t<300&&n.path?(w(n.path.split(`/`).slice(0,-1).join(`/`)||`.`),W(e=>e+1)):Je(t===0?`Network error during upload — the connection failed before the server responded.`:n.error??`Upload failed (HTTP ${t}).`)}finally{Ke(!1),U(null),tt.current&&(tt.current.value=``)}},[Ht]),Wt=(0,k.useCallback)(e=>{G&&Array.from(e.dataTransfer.types).includes(`Files`)&&(e.preventDefault(),Qe(!0))},[G]),Gt=(0,k.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||Qe(!1)},[]),Kt=(0,k.useCallback)(async e=>{e.preventDefault(),Qe(!1);let t=Math.random().toString(16).slice(2,10),n=Array.from(e.dataTransfer.items);if(console.info(`[data-ui] op=drop-received token=${t} items=${n.length}`),n.length===0)return;if(!G){console.info(`[data-ui] op=drop-rejected token=${t} reason=no-write`),Je(`Open a folder inside your account to upload`);return}let r=n.map(e=>e.webkitGetAsEntry?.()).filter(e=>!!e);Ke(!0),Je(null),Xe(null);let i=performance.now();try{let e=await Pe(r),n=e.reduce((e,t)=>e+t.file.size,0),a=new Set(e.map(e=>e.relpath.split(`/`).slice(0,-1).join(`/`)).filter(Boolean)).size;console.info(`[data-ui] op=drop-walk token=${t} files=${e.length} dirs=${a} bytes=${n}`);let o=0,s=[];for(let n=0;n<e.length;n++){let{file:r,relpath:i}=e[n];console.info(`[data-ui] op=drop-file token=${t} rel="${i}" i=${n+1}/${e.length}`),U({loaded:0,total:r.size});let{status:a,data:c}=await Ht(r,{relpath:i,token:t,onProgress:(e,t)=>U({loaded:e,total:t})});if(a>=200&&a<300)o++,console.info(`[data-ui] op=drop-file-ok token=${t} rel="${i}"`);else{let e=a===0?`http=0`:Fe(a,c.error);s.push(`${i} (${e})`),console.info(`[data-ui] op=drop-file-skip token=${t} rel="${i}" reason=${e}`)}}let c=Math.round(performance.now()-i);console.info(`[data-ui] op=drop-done token=${t} uploaded=${o} skipped=${s.length} ms=${c}`),Xe(`Uploaded ${o}, skipped ${s.length}${s.length?`: ${s.join(`, `)}`:``}`),W(e=>e+1)}catch(e){Je(e instanceof Error?e.message:String(e))}finally{Ke(!1),U(null)}},[G,Ht]),qt=(0,k.useCallback)(async()=>{let t=at.trim();if(t){ft(null);try{let n=await e(`/api/admin/files/folder`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:C===`.`?``:C,name:t})}),r=await n.json().catch(()=>({error:`HTTP ${n.status}`}));if(!n.ok)throw Error(r.error??`HTTP ${n.status}`);it(!1),ot(``),W(e=>e+1)}catch(e){ft(e instanceof Error?e.message:String(e))}}},[e,at,C]),Jt=(0,k.useCallback)(async()=>{if(!st)return;let t=lt.trim();if(!t)return;ft(null);let n=B(st);try{let r=await e(`/api/admin/files/rename`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:n,newName:t})}),i=await r.json().catch(()=>({error:`HTTP ${r.status}`}));if(!r.ok)throw Error(i.error??`HTTP ${r.status}`);ct(null),ut(``),Z(`action`),W(e=>e+1)}catch(e){ft(e instanceof Error?e.message:String(e))}},[e,lt,st,B,Z]);(0,k.useEffect)(()=>{if(!pt)return;let e=e=>{ht.current&&!ht.current.contains(e.target)&&mt(!1)},t=e=>{e.key===`Escape`&&mt(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[pt]),(0,k.useEffect)(()=>{if(!gt)return;let e=e=>{_t.current&&!_t.current.contains(e.target)&&K(!1)},t=e=>{e.key===`Escape`&&K(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[gt]);let Yt=(0,k.useCallback)(e=>A.slice(0,e+1).map(e=>e.name).join(`/`),[A]),Xt=A.length>=2,Zt=Xt?[{name:`.`,label:`data`},...A.slice(0,A.length-2).map((e,t)=>({name:Yt(t),label:e.displayName??e.name}))]:[];return Le?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`data-toolbar`,children:[J?(0,j.jsxs)(`button`,{type:`button`,className:`data-select-cancel`,onClick:()=>Z(`cancel`),"aria-label":`Cancel selection`,children:[(0,j.jsx)(l,{size:14}),` Cancel`]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`div`,{className:`data-search-input`,children:[s===``&&(0,j.jsx)(E,{size:14}),(0,j.jsx)(`input`,{ref:u,type:`text`,value:s,onChange:e=>c(e.target.value),autoFocus:!0,autoComplete:`off`,spellCheck:!1}),_&&(0,j.jsx)(r,{size:14,className:`spin`}),s!==``&&(0,j.jsx)(`button`,{type:`button`,className:`data-search-inline-btn`,onClick:()=>{c(``),u.current?.focus()},title:`Clear search`,"aria-label":`Clear search`,children:(0,j.jsx)(l,{size:14})})]}),(0,j.jsxs)(`div`,{className:`data-toolbar-actions`,ref:_t,children:[(0,j.jsx)(`button`,{type:`button`,className:`data-action-overflow`,onClick:()=>K(e=>!e),"aria-haspopup":`menu`,"aria-expanded":gt,"aria-label":`File actions`,title:`File actions`,children:(0,j.jsx)(ue,{size:16})}),(0,j.jsxs)(`div`,{className:`data-action-group`,role:`group`,"aria-label":`File actions`,"data-open":gt?`true`:void 0,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{St(),K(!1)},disabled:V,title:`Refresh this folder`,"aria-label":`Refresh this folder`,children:[V?(0,j.jsx)(r,{size:16,className:`spin`}):(0,j.jsx)(y,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`Refresh`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn admin-btn-cta`,onClick:()=>{Vt(),K(!1)},disabled:Ue||!G,title:G?`Upload a file`:`Open a folder inside your account to upload`,"aria-label":`Upload a file`,children:[Ue?H&&H.total>0?(0,j.jsxs)(`span`,{className:`data-upload-pct`,children:[Math.round(H.loaded/H.total*100),`%`]}):(0,j.jsx)(r,{size:16,className:`spin`}):(0,j.jsx)(_e,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`Upload`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{it(e=>!e),ot(``),ft(null),K(!1)},disabled:Ue||!G,title:G?`New folder`:`Open a folder inside your account to create one`,"aria-label":`New folder`,children:[(0,j.jsx)(de,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:`New folder`})]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Nt(O===`grid`?`list`:`grid`),K(!1)},title:O===`grid`?`List view`:`Grid view`,"aria-label":O===`grid`?`Switch to list view`:`Switch to grid view`,"aria-pressed":O===`grid`,children:[O===`grid`?(0,j.jsx)(pe,{size:16}):(0,j.jsx)(fe,{size:16}),(0,j.jsx)(`span`,{className:`data-action-label`,children:O===`grid`?`List view`:`Grid view`})]})]})]})]}),(0,j.jsxs)(`div`,{className:`data-breadcrumbs`,children:[C!==`.`&&(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost data-back-btn`,onClick:wt,title:`Up one level`,"aria-label":`Up one level`,children:(0,j.jsx)(le,{size:14})}),Xt?(0,j.jsxs)(j.Fragment,{children:[(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,ref:ht,children:[(0,j.jsx)(`button`,{type:`button`,className:`data-crumb data-crumb-ellipsis`,onClick:()=>mt(e=>!e),"aria-haspopup":`menu`,"aria-expanded":pt,"aria-label":`Show parent folders`,title:`Show parent folders`,children:`…`}),pt&&(0,j.jsx)(`div`,{className:`data-crumb-menu`,role:`menu`,children:Zt.map(e=>(0,j.jsx)(`button`,{type:`button`,role:`menuitem`,className:`data-crumb-menu-item`,onClick:()=>q(e.name),title:e.label,children:e.label},e.name))})]}),[A.length-2,A.length-1].map(e=>{let t=A[e];return(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,j.jsx)(`span`,{className:`data-crumb-sep`,children:`›`}),(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Yt(e)),title:t.name,children:t.displayName??t.name})]},Yt(e))})]}):(0,j.jsxs)(j.Fragment,{children:[(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(`.`),children:`data`}),A.map((e,t)=>(0,j.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,j.jsx)(`span`,{className:`data-crumb-sep`,children:`›`}),(0,j.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Yt(t)),title:e.name,children:e.displayName??e.name})]},Yt(t)))]})]}),rt&&(0,j.jsxs)(`div`,{className:`data-inline-form`,children:[(0,j.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`Folder name`,value:at,autoFocus:!0,onChange:e=>ot(e.target.value),onKeyDown:e=>{e.key===`Enter`&&qt(),e.key===`Escape`&&it(!1)}}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:qt,children:`Create`}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>it(!1),children:`Cancel`})]}),st&&(0,j.jsxs)(`div`,{className:`data-inline-form`,children:[(0,j.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`New name`,value:lt,autoFocus:!0,onChange:e=>ut(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Jt(),e.key===`Escape`&&ct(null)}}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Jt,children:`Rename`}),(0,j.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>ct(null),children:`Cancel`})]}),dt&&(0,j.jsx)(`div`,{className:`data-error`,children:dt}),(0,j.jsx)(`input`,{type:`file`,ref:tt,hidden:!0,onChange:e=>{let t=e.target.files?.[0];t&&Ut(t)}})]}),(0,j.jsxs)(`div`,{className:`data-body`,"data-drag-active":Ze?`true`:void 0,onDragEnter:Wt,onDragOver:Wt,onDragLeave:Gt,onDrop:Kt,children:[M===null&&R&&P&&P.length>0&&(0,j.jsxs)(`aside`,{className:`data-rail`,"aria-label":`Folders`,children:[(0,j.jsx)(`span`,{className:`data-rail-label`,children:`Folders`}),(0,j.jsx)(`ul`,{className:`data-rail-list`,children:P.map(e=>{let t=`${R}/${e}`,n=C===t||C.startsWith(`${t}/`);return(0,j.jsx)(`li`,{children:(0,j.jsxs)(`button`,{type:`button`,className:`data-rail-item`,"aria-current":n?`true`:void 0,onClick:()=>q(t),children:[(0,j.jsx)(g,{size:13}),(0,j.jsx)(`span`,{className:`data-rail-item-name`,children:e})]})},e)})})]}),(0,j.jsxs)(`div`,{className:`data-content`,children:[(re!==null||m!==null)&&(0,j.jsxs)(`section`,{className:`data-panel admin-card`,children:[re&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Search failed: `,re]}),vt.length>0&&(0,j.jsx)(`div`,{className:`data-chip-row`,role:`group`,"aria-label":`Filter by type`,children:vt.map(e=>{let t=e===yt;return(0,j.jsx)(`button`,{type:`button`,className:`data-chip`,"data-active":t,onClick:()=>ae(t?null:e),children:Be([e])??e},e)})}),m&&!_&&(0,j.jsxs)(`div`,{className:`data-results-meta`,children:[bt.length,` of `,m.length,` result`,m.length===1?``:`s`]}),m&&!_&&!yt&&x>0&&!se&&(0,j.jsxs)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>S(!0),children:[x,` low-confidence result`,x===1?``:`s`,` hidden — show all`]}),m&&!_&&!yt&&se&&(0,j.jsx)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>S(!1),children:`Showing all results — hide low-confidence`}),m&&m.length===0&&!_&&(0,j.jsx)(`div`,{className:`data-empty-results`,children:`No matches. Try a different keyword.`}),bt&&bt.length>0&&(0,j.jsx)(`ul`,{className:`data-results`,children:bt.map(e=>(0,j.jsx)(ze,{hit:e,mode:ee,onDownload:xt,onLocate:Ct},e.nodeId))})]}),(0,j.jsxs)(`section`,{className:`data-panel data-panel--wide admin-card`,children:[H&&(0,j.jsxs)(`div`,{className:`data-upload-progress`,role:`progressbar`,"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":H.total>0?Math.round(H.loaded/H.total*100):void 0,children:[(0,j.jsx)(`div`,{className:`data-upload-progress-track`,children:(0,j.jsx)(`div`,{className:`data-upload-progress-fill`,style:{width:`${H.total>0?Math.round(H.loaded/H.total*100):0}%`}})}),(0,j.jsxs)(`span`,{className:`data-upload-progress-label`,children:[`Uploading… `,H.total>0?`${Math.round(H.loaded/H.total*100)}%`:``]})]}),qe&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Upload failed: `,qe]}),Ye&&(0,j.jsx)(`div`,{className:`data-status`,children:Ye}),$e&&(0,j.jsxs)(`div`,{className:`data-error`,children:[`Delete failed: `,$e]}),Ve&&(0,j.jsx)(`div`,{className:`data-error`,children:Ve}),V&&(0,j.jsxs)(`div`,{className:`data-loading`,children:[(0,j.jsx)(r,{size:14,className:`spin`}),` Loading…`]}),!J&&!V&&M!==`home`&&D&&D.length>0&&(0,j.jsxs)(`div`,{className:`data-select-hint`,children:[(0,j.jsx)(me,{size:13}),(0,j.jsx)(`span`,{children:`Press and hold a file to select, rename, or delete it.`})]}),!V&&M!==`home`&&D&&D.length===0&&!Ve&&(0,j.jsx)(`div`,{className:`data-empty-results`,children:`Empty directory.`}),!V&&M===`home`&&D&&(0,j.jsxs)(`ul`,{className:`routine-list data-home-list`,children:[D.map(e=>(0,j.jsxs)(`li`,{className:`data-home-card`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-home-card-head`,onClick:()=>q(B(e.name)),children:[(0,j.jsx)(`span`,{className:`data-home-card-title`,children:e.name}),(0,j.jsx)(`span`,{className:`data-home-card-count`,children:e.childCount===null||e.childCount===void 0?`—`:`${e.childCount} ${e.childCount===1?`item`:`items`}`})]}),(0,j.jsxs)(`ul`,{className:`data-home-card-children`,children:[e.childCount===null&&(0,j.jsx)(`li`,{className:`data-home-card-error`,children:`Could not read this folder.`}),e.childCount===0&&(0,j.jsx)(`li`,{className:`data-home-card-empty`,children:`Empty.`}),(e.children??[]).map(e=>(0,j.jsxs)(`li`,{className:`data-home-card-child`,children:[e.kind===`directory`?(0,j.jsx)(g,{size:12}):(0,j.jsx)(T,{size:12}),(0,j.jsx)(`span`,{className:`data-home-card-child-name`,children:e.name})]},e.name)),typeof e.childCount==`number`&&e.childCount>(e.children?.length??0)&&(0,j.jsxs)(`li`,{className:`data-home-card-more`,children:[`+`,e.childCount-(e.children?.length??0),` more`]})]})]},e.name)),(0,j.jsxs)(`li`,{className:`data-home-card`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-home-card-head`,onClick:()=>q(B(`@system`)),children:[(0,j.jsx)(`span`,{className:`data-home-card-title`,children:`system`}),(0,j.jsxs)(`span`,{className:`data-home-card-count`,children:[xe,` `,xe===1?`item`:`items`]})]}),(0,j.jsx)(`ul`,{className:`data-home-card-children`,children:(0,j.jsx)(`li`,{className:`data-home-card-empty`,children:`Platform and plugin folders.`})})]})]}),!V&&M!==`home`&&D&&D.length>0&&O===`grid`&&(0,j.jsx)(`ul`,{className:`data-grid`,children:D.map(e=>{let t=e.displayName??e.name,n=J&&Y.has(e.name);if(e.kind===`directory`)return(0,j.jsx)(`li`,{className:`data-grid-cell`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-grid-tile`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(B(e.name))},children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsx)(g,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:t})]})},e.name);if(e.kind===`file`){let r=De(L(e)),a=B(L(e));return(0,j.jsx)(`li`,{className:`data-grid-cell`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-grid-tile${r?` data-grid-tile-image`:``}`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>r?Pt(e):Mt(e),title:J?void 0:r?`Preview ${t}`:`Download ${t}`,children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),r?(0,j.jsx)(`img`,{className:`data-grid-thumb`,src:Te(i,a),alt:t,loading:`lazy`,onError:()=>console.warn(`[data] op=thumb-error path=${a}`)}):(0,j.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:t}),!r&&(0,j.jsx)(`span`,{className:`data-grid-sub`,children:We(e.sizeBytes)})]})},e.name)}return(0,j.jsx)(`li`,{className:`data-grid-cell`,children:(0,j.jsxs)(`div`,{className:`data-grid-tile data-entry-disabled`,children:[(0,j.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,j.jsx)(`span`,{className:`data-grid-label`,children:t}),(0,j.jsx)(`span`,{className:`data-grid-sub`,children:`special`})]})},e.name)})}),!V&&M!==`home`&&D&&D.length>0&&O===`list`&&(0,j.jsx)(`ul`,{className:`data-entries`,children:D.map(e=>{let t=e.displayName??e.name;if(e.kind===`directory`){let n=J&&Y.has(e.name);return(0,j.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-entry-btn`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(B(e.name))},children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsx)(g,{size:14}),(0,j.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t})]})},e.name)}if(e.kind===`file`){let n=J&&Y.has(e.name);return(0,j.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,j.jsxs)(`button`,{type:`button`,className:`data-entry-btn data-entry-file`,onPointerDown:()=>jt(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>Mt(e),title:J?void 0:`Download ${t}`,children:[J&&(0,j.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,j.jsxs)(`span`,{className:`data-entry-text`,children:[(0,j.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t}),(0,j.jsxs)(`span`,{className:`data-entry-meta`,title:`Modified ${Ge(e.modifiedAt)}`,children:[We(e.sizeBytes),` · `,Ge(e.modifiedAt)]})]})]})},e.name)}return(0,j.jsx)(`li`,{className:`data-entry`,children:(0,j.jsx)(`div`,{className:`data-entry-btn data-entry-file data-entry-disabled`,children:(0,j.jsxs)(`span`,{className:`data-entry-text`,children:[(0,j.jsx)(`span`,{className:`data-entry-name`,children:t}),(0,j.jsx)(`span`,{className:`data-entry-meta`,children:`special`})]})})},e.name)})})]})]})]}),J&&(0,j.jsx)(`div`,{className:`data-select-bar`,role:`toolbar`,"aria-label":`Selection actions`,children:(0,j.jsxs)(`div`,{className:`data-select-bar-inner`,children:[(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Bt,disabled:!kt||Y.size===0,title:kt?`Share selected files`:`Sharing is not supported on this device`,children:[(0,j.jsx)(d,{size:16}),` Share`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Rt,disabled:Y.size===0,children:[(0,j.jsx)(t,{size:16}),` Download`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:()=>{let e=It();e&&(ct(e.name),ut(e.name))},disabled:!It(),children:[(0,j.jsx)(n,{size:16}),` Rename`]}),(0,j.jsxs)(`button`,{type:`button`,className:`data-select-action data-select-delete`,onClick:zt,disabled:Y.size===0,children:[(0,j.jsx)(ne,{size:16}),` Delete`]})]})}),ge&&(0,j.jsx)(`div`,{className:`chat-attachment-overlay`,role:`dialog`,"aria-label":ge.alt,onClick:()=>ve(null),children:(0,j.jsx)(`img`,{className:`chat-attachment-overlay-image`,src:ge.src,alt:ge.alt})})]}):(0,j.jsx)(a,{surface:`gate`})}function Le({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){(0,k.useEffect)(()=>{console.info(`[data-ui] op=mount header=operator home=absent`)},[]);let r=(0,k.useCallback)(()=>{try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},[]),i=(0,k.useCallback)(e=>{e===`chat`&&(window.location.href=`/`)},[]),[a,o]=(0,k.useState)([]),[s,c]=(0,k.useState)(`files`),{subAccounts:l,activeAccountId:u,switching:d,switchAccount:f}=v(t);return(0,k.useEffect)(()=>{if(!t)return;let e=!1;return fetch(`/api/operator-conversations/conversations?session_key=${encodeURIComponent(t)}`).then(e=>e.ok?e.json():{conversations:[]}).then(t=>{e||o(t.conversations??[])}).catch(()=>{}),()=>{e=!0}},[t]),(0,j.jsxs)(`main`,{className:`data-main`,children:[(0,j.jsx)(m,{variant:`operator`,onNavigate:i,onOpenConversations:a.length>0?()=>c(`conversations`):void 0,onToggleSidebar:()=>{},sidebarOpen:!1,onLogout:r,onDisconnect:async()=>!0,disconnecting:!1,subAccounts:l,activeAccountId:u,switchingAccount:d,onSwitchAccount:f}),s===`conversations`?(0,j.jsx)(I,{conversations:a,sessionKey:t,onBack:()=>c(`files`)}):(0,j.jsx)(Ie,{adminFetch:e,cacheKey:t,sessionRefetchNonce:n})]})}function Re({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=c({initialCacheKey:e,surface:`data`});return(0,j.jsx)(`div`,{className:`data-page`,children:(0,j.jsx)(`main`,{className:`data-main`,children:(0,j.jsx)(Ie,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})})})}function ze({hit:e,mode:t,onDownload:n,onLocate:r}){let i=Ve(e.properties),a=He(e.properties),o=Be(e.labels),s=Ue(e.properties),[c,l]=(0,k.useState)(!1),u=a&&a.length>280,d=c||!u?a:a?.slice(0,280)+`…`,f=t===`bm25`?`bm25 ${e.bm25Score.toFixed(2)}`:`vector ${e.vectorScore.toFixed(2)} · bm25 ${e.bm25Score.toFixed(2)} · combined ${e.score.toFixed(2)}`,p=e.properties.relativePath,m=typeof p==`string`&&p.length>0,h=m?p.lastIndexOf(`/`):-1,ee=m?h===-1?`data`:p.slice(0,h):null;return(0,j.jsxs)(`li`,{className:`data-result`,children:[(0,j.jsxs)(`div`,{role:`button`,tabIndex:0,className:`data-result-open`,onClick:()=>n(e),onKeyDown:t=>{(t.key===`Enter`||t.key===` `)&&(t.preventDefault(),n(e))},"aria-label":`Download ${i??o??`file`}`,children:[o&&(0,j.jsx)(`div`,{className:`data-result-header`,children:(0,j.jsx)(`span`,{className:`data-result-labels`,children:o})}),i&&(0,j.jsx)(`div`,{className:`data-result-title`,children:i}),a&&(0,j.jsx)(`pre`,{className:`data-result-body`,children:d}),(0,j.jsxs)(`div`,{className:`data-result-scores`,children:[s&&(0,j.jsxs)(`span`,{className:`data-result-updated`,children:[`Updated `,Ge(s),` · `]}),f]})]}),m&&(0,j.jsxs)(`button`,{type:`button`,className:`data-result-locate`,onClick:()=>r(e),title:`Locate in ${ee}`,"aria-label":`Locate in ${ee}`,children:[(0,j.jsx)(g,{size:12}),ee]}),u&&(0,j.jsx)(`button`,{type:`button`,className:`data-result-toggle`,onClick:()=>l(e=>!e),children:c?`Show less`:`Show more`})]})}function Be(e){if(e.length===0)return null;let t=e[0].replace(/([a-z])([A-Z])/g,`$1 $2`);return t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()}function Ve(e){for(let t of[`title`,`name`,`summary`,`headline`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n.length>140?n.slice(0,140)+`…`:n}return null}function He(e){for(let t of[`content`,`summary`,`body`,`description`,`text`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n}return null}function Ue(e){for(let t of[`updatedAt`,`modifiedAt`,`fetchedAt`,`createdAt`,`lastModified`]){let n=e[t];if(typeof n==`string`&&n.length>0)return n}return null}function We(e){return e==null?``:e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:e<1024*1024*1024?`${(e/1024/1024).toFixed(1)} MB`:`${(e/1024/1024/1024).toFixed(1)} GB`}function Ge(e){try{let t=new Date(e);if(isNaN(t.getTime()))return`—`;let n=typeof navigator<`u`?navigator.languages&&navigator.languages.length>0?[...navigator.languages]:[navigator.language]:void 0;return t.toLocaleString(n,{dateStyle:`medium`,timeStyle:`short`})}catch{return`—`}}export{P as i,Re as n,Ce as r,R as t};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-CltuBf4Z.js";import{G as t,V as n,q as r}from"./useSubAccountSwitcher-
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{G as t,V as n,q as r}from"./useSubAccountSwitcher-BwHqV55p.js";import"./useVoiceRecorder-BT2738ZS.js";import{w as i}from"./AdminShell-IGUdTx5q.js";import{a,c as o,i as s,o as c,r as l,s as u}from"./page-CZ-73FAk.js";import"./useCopyFeedback-TdimmPVR.js";var d=t(),f=e(r(),1),p=n();function m({gateState:e,setGateState:t,grantInfo:n,resolvedSlugRef:r}){let[a,o]=(0,f.useState)(``),[s,c]=(0,f.useState)(!1),[l,u]=(0,f.useState)(null);async function d(e){e.preventDefault();let n=a.trim().toLowerCase();if(!n){u(`Enter the email you were invited on.`);return}c(!0),u(null);try{let e=await fetch(`/api/access/request-magic-link`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({contactValue:n,agentSlug:r.current})});if(e.status===429){u((await e.json().catch(()=>({})))?.error||`Too many requests. Try again later.`);return}t(`request-sent`)}catch{u(`Could not reach the server. Check your connection and try again.`)}finally{c(!1)}}return(0,p.jsxs)(`div`,{className:`access-gate`,children:[e===`verifying`&&(0,p.jsxs)(`div`,{className:`access-gate-message`,children:[(0,p.jsx)(`h2`,{children:`Verifying your link…`}),(0,p.jsx)(`p`,{children:`This takes a moment.`})]}),e===`verify-failed`&&(0,p.jsxs)(`div`,{className:`access-gate-message`,children:[(0,p.jsx)(`h2`,{children:`That link did not work`}),(0,p.jsx)(`p`,{children:`It may have expired, already been used, or been for a different agent. You can request a fresh one below.`}),(0,p.jsx)(i,{onClick:()=>{t(`request-link`),u(null)},children:`Request a new link`})]}),e===`request-link`&&(0,p.jsxs)(`form`,{className:`access-gate-form`,onSubmit:d,children:[(0,p.jsx)(`h2`,{children:n?.displayName?`Welcome back, ${n.displayName}`:`Sign in`}),(0,p.jsx)(`p`,{children:`Enter the email you were invited on and we will send you a fresh link.`}),(0,p.jsx)(`label`,{htmlFor:`access-email`,children:`Email`}),(0,p.jsx)(`input`,{id:`access-email`,type:`email`,inputMode:`email`,autoComplete:`email`,value:a,onChange:e=>o(e.target.value),disabled:s}),l&&(0,p.jsx)(`p`,{className:`access-gate-error`,children:l}),(0,p.jsx)(i,{type:`submit`,disabled:s||!a.trim(),children:s?`Sending…`:`Send me a link`})]}),e===`request-sent`&&(0,p.jsxs)(`div`,{className:`access-gate-message`,children:[(0,p.jsx)(`h2`,{children:`Check your email`}),(0,p.jsx)(`p`,{children:`If that address is on the invite list, a fresh link is on the way. It expires in 15 minutes.`}),(0,p.jsx)(i,{onClick:()=>{t(`request-link`),o(``),u(null)},children:`Try a different email`})]})]})}function h(){let[e,t]=(0,f.useState)(null),[n,r]=(0,f.useState)(null),[i,l]=(0,f.useState)(`loading`),[d,p]=(0,f.useState)(``),[m,h]=(0,f.useState)(null),[g,_]=(0,f.useState)(null),[v,y]=(0,f.useState)(!1),[b,x]=(0,f.useState)(null),S=(0,f.useMemo)(()=>a(),[]),C=(0,f.useRef)(S||``),w=(0,f.useRef)(null),T=(0,f.useRef)(null),E=(0,f.useRef)(!1),D=(0,f.useRef)(null),[O,k]=(0,f.useState)(`request-link`),[A,j]=(0,f.useState)(null),M=(0,f.useRef)(null),N=(0,f.useRef)(null);(0,f.useEffect)(()=>{try{let e=sessionStorage.getItem(`maxy_session`);e&&(N.current=e)}catch{}},[]),(0,f.useEffect)(()=>{try{let e=c();e&&(sessionStorage.setItem(s,e),o&&console.info(`[public-webchat] op=seed-persisted len=${e.length} head=${e.slice(0,40)}`))}catch{}},[]);let P=(0,f.useCallback)(e=>{w.current=e,t(e);try{sessionStorage.setItem(`maxy_session`,e)}catch{}l(`chat`)},[]),F=(0,f.useCallback)(()=>{w.current=null;try{sessionStorage.removeItem(`maxy_session`)}catch{}t(null),l(`auth-required`),k(`request-link`)},[]),I=(0,f.useCallback)(async e=>{k(`verifying`);try{let t=C.current,n=await fetch(`/api/access/verify-token`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({token:e,agentSlug:t})});if(window.history.replaceState({},``,window.location.pathname),n.ok){let e=await n.json().catch(()=>({}));return e?.displayName&&j({displayName:e.displayName,contactValue:``,expiresAt:null,status:`active`}),!0}return k(`verify-failed`),!1}catch{return k(`verify-failed`),!1}},[]),L=(0,f.useCallback)(async()=>{if(w.current)return w.current;if(T.current)return T.current;let e=(async()=>{try{let e=N.current,n=await fetch(`/api/session`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({session_id:u(),...S?{agent:S}:{},...e?{session_key:e}:{}})});if(!n.ok){let e=await n.json().catch(()=>({error:``}));return o&&console.error(`[session] POST /api/session failed: ${n.status} ${n.statusText}`,e),n.status===404?r(e.error||`Agent not found`):n.status===503&&r(e.error||`Service unavailable`),null}let i=await n.json();if(i.auth_required){i.agent_id&&(C.current=i.agent_id),p(i.displayName||``),i.agentImage&&h(i.agentImage),i.agentImageShape&&_(i.agentImageShape),i.showAgentName&&y(i.showAgentName),i.branding&&x(i.branding),l(`auth-required`);let e=new URLSearchParams(window.location.search).get(`token`);return e?await I(e)&&window.location.reload():k(`request-link`),null}w.current=i.session_key,t(i.session_key),i.displayName&&p(i.displayName),i.agentImage&&h(i.agentImage),i.agentImageShape&&_(i.agentImageShape),i.showAgentName&&y(i.showAgentName),i.branding&&x(i.branding),l(`chat`),i.resumed&&i.messages&&(E.current=!0,D.current=i.messages);try{sessionStorage.setItem(`maxy_session`,i.session_key)}catch{}return i.session_key}catch(e){return o&&console.error(`[session] fetch /api/session threw:`,e),r(`Unable to connect. Please check your connection and try again.`),null}finally{T.current=null}})();return T.current=e,e},[S,I]);return{sessionId:e,cacheKeyRef:w,sessionError:n,pageState:i,setPageState:l,agentDisplayName:d,agentImage:m,agentImageShape:g,showAgentName:v,agentSlug:S,branding:b,resolvedSlugRef:C,ensureSession:L,startNewSession:(0,f.useCallback)(async()=>{w.current=null,T.current=null,N.current=null,E.current=!1,D.current=null,t(null),r(null);try{sessionStorage.removeItem(`maxy_session`)}catch{}await L()},[L]),enterChat:P,enterGate:F,resumedRef:E,resumeMessagesRef:D,gateState:O,setGateState:k,grantInfo:A,setGrantInfo:j,gateCacheKeyRef:M}}function g(){let{ensureSession:e,pageState:t,gateState:n,setGateState:r,grantInfo:i,resolvedSlugRef:a}=h();return(0,f.useEffect)(()=>{e()},[e]),t===`loading`?(0,p.jsx)(`div`,{className:`public-loading`,children:`Loading…`}):t===`auth-required`?(0,p.jsx)(m,{gateState:n,setGateState:r,grantInfo:i,resolvedSlugRef:a}):(0,p.jsx)(`div`,{className:`public-shell`,children:(0,p.jsx)(l,{cacheKey:``,variant:`public`})})}(0,d.createRoot)(document.getElementById(`root`)).render((0,p.jsx)(g,{}));
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{F as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{F as e}from"./useSubAccountSwitcher-BwHqV55p.js";var t=e(`rotate-ccw`,[[`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`}]]);export{t};
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-CltuBf4Z.js";import{C as t,E as n,F as r,G as i,I as a,V as o,W as s,_ as c,m as l,q as u,v as d}from"./useSubAccountSwitcher-BuUYMDWl.js";import{E as f,f as p,h as m,t as h}from"./AdminShell-CpaI2F_p.js";import{t as g}from"./clock-C3OqfCnn.js";import{t as _}from"./wrench-DQ045Pyk.js";var v=r(`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`}]]),y=i(),b=e(u(),1);function x(e){return/^\d+$/.test(e)?Number(e):null}function S(e){let t=e.trim().split(/\s+/);if(t.length!==5)return null;let[n,r,i,a,o]=t,s=x(n),c=x(r);if(s===null||c===null||s>59||c>23||a!==`*`)return null;if(i===`*`&&o===`*`)return{frequency:`daily`,minute:s,hour:c,weekdays:[],dayOfMonth:1};if(i===`*`&&o!==`*`){let e=o.split(`,`).map(x);return e.some(e=>e===null||e>6)?null:{frequency:`weekly`,minute:s,hour:c,weekdays:e,dayOfMonth:1}}if(o===`*`&&i!==`*`){let e=x(i);return e===null||e<1||e>31?null:{frequency:`monthly`,minute:s,hour:c,weekdays:[],dayOfMonth:e}}return null}function C(e){let t=String(e.minute),n=String(e.hour);return e.frequency===`daily`?`${t} ${n} * * *`:e.frequency===`weekly`?`${t} ${n} * * ${e.weekdays.length?[...e.weekdays].sort((e,t)=>e-t).join(`,`):`*`}`:`${t} ${n} ${e.dayOfMonth} * *`}var w=[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`];function T(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 E(e){return String(e).padStart(2,`0`)}function D(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`:`${w[e%7]} to ${w[n%7]}`}let n=e.split(`,`);return n.length>0&&n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?n.map(e=>w[Number(e)%7]).join(`, `):`invalid`}function O(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))return e;let s=T(n,59),c=T(r,23);if(!s||!c)return e;let l=D(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}, ${E(c.value)}:00 to ${E(c.value)}:59${u}`:`${e}, ${E(c.rangeStart)}:00 to ${E(d(c))}:00${u}`}if(c.kind===`step`){let e=E(s.value),t=s.value===0?``:` at :${e}`;return c.rangeStart===null?`Every ${c.step} hours${t}${u}`:c.step===1?`Hourly, ${E(c.rangeStart)}:${e} to ${E(c.rangeEnd)}:${e}${u}`:`Every ${c.step} hours, ${E(c.rangeStart)}:${e} to ${E(d(c))}:${e}${u}`}if(c.kind===`any`)return`${s.value===0?`Every hour`:`Every hour at :${E(s.value)}`}${u}`;let f=`${E(c.value)}:${E(s.value)}`;return i===`*`?l?`${l} at ${f}`:`Daily at ${f}`:`Monthly on day ${Number(i)} at ${f}`}var k=o(),A=[{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`}];function j(e){return`${String(e.hour).padStart(2,`0`)}:${String(e.minute).padStart(2,`0`)}`}var M={frequency:`daily`,minute:0,hour:9,weekdays:[1],dayOfMonth:1};function N({recurrence:e,onChange:t,disabled:n}){let r=e?S(e):M,[i,a]=(0,b.useState)(r??M),[o]=(0,b.useState)(e!=null&&r==null),[s,c]=(0,b.useState)(e??``);if(o)return(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Schedule (advanced)`}),(0,k.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,k.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(C(e))},u=e=>{let t=e===`weekly`&&i.weekdays.length===0?[1]:i.weekdays;l({...i,frequency:e,weekdays:t})},d=e=>{let[t,n]=e.split(`:`);l({...i,hour:Number(t)||0,minute:Number(n)||0})},f=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})},p=e=>l({...i,dayOfMonth:Number(e)||1});return(0,k.jsxs)(`div`,{className:`routine-sched`,children:[(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Frequency`}),(0,k.jsxs)(`select`,{value:i.frequency,disabled:n,onChange:e=>u(e.target.value),children:[(0,k.jsx)(`option`,{value:`daily`,children:`Daily`}),(0,k.jsx)(`option`,{value:`weekly`,children:`Weekly`}),(0,k.jsx)(`option`,{value:`monthly`,children:`Monthly`})]})]}),(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Time of day`}),(0,k.jsx)(`input`,{type:`time`,value:j(i),disabled:n,onChange:e=>d(e.target.value)})]}),i.frequency===`weekly`&&(0,k.jsxs)(`div`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Days`}),(0,k.jsx)(`div`,{className:`routine-weekdays`,children:A.map(e=>(0,k.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:()=>f(e.value),children:e.label},e.value))})]}),i.frequency===`monthly`&&(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Day of month`}),(0,k.jsx)(`select`,{value:i.dayOfMonth,disabled:n,onChange:e=>p(e.target.value),children:Array.from({length:31},(e,t)=>t+1).map(e=>(0,k.jsx)(`option`,{value:e,children:e},e))})]})]})}function P(e){if(!e)return`—`;let t=Date.parse(e);return Number.isFinite(t)?new Date(t).toLocaleString():e}function F({routine:e,adminFetch:r,onClose:i,onSaved:a,onDeleted:o}){let[s,l]=(0,b.useState)(!1),[u,f]=(0,b.useState)(!1),[h,y]=(0,b.useState)(null),[x,S]=(0,b.useState)(e),[C,w]=(0,b.useState)(!1),T=x.agentChannel!=null,[E,D]=(0,b.useState)(e.agentPrompt??``),[A,j]=(0,b.useState)(e.recurrence);(0,b.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!u&&i()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[u,i]);let M=(0,b.useCallback)(()=>{let e={};return T&&E!==(x.agentPrompt??``)&&(e.agentPrompt=E),A!=null&&A!==(x.recurrence??null)&&(e.recurrence=A),e},[T,E,A,x]),F=(0,b.useCallback)(async()=>{let t=M();if(Object.keys(t).length===0){l(!1);return}f(!0),y(null);try{let n=await r(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`PATCH`,headers:{"content-type":`application/json`},body:JSON.stringify(t)});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`HTTP ${n.status}`)}let i=await n.json();S(i.routine),D(i.routine.agentPrompt??``),j(i.routine.recurrence),a(i.routine),l(!1)}catch(e){y(e instanceof Error?e.message:`Save failed`)}finally{f(!1)}},[r,M,e.eventId,a]),I=(0,b.useCallback)(async()=>{if(!u){if(!C){w(!0);return}f(!0),y(null);try{let t=await r(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`DELETE`});if(!t.ok){let e=await t.json().catch(()=>({}));throw Error(e.error??`HTTP ${t.status}`)}o(e.eventId)}catch(e){y(e instanceof Error?e.message:`Delete failed`),w(!1)}finally{f(!1)}}},[r,u,C,e.eventId,o]);return(0,k.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{u||i()},children:(0,k.jsxs)(`div`,{className:`cal-modal cal-modal-wide`,role:`dialog`,"aria-modal":`true`,"aria-label":s?`Edit routine`:`Routine detail`,onClick:e=>e.stopPropagation(),children:[(0,k.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,k.jsxs)(`span`,{className:`cal-modal-kind`,children:[(0,k.jsx)(p,{size:13}),` Routine`]}),(0,k.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:i,"aria-label":`Close`,autoFocus:!0,disabled:u,children:(0,k.jsx)(c,{size:16})})]}),!s&&(0,k.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,k.jsx)(`div`,{className:`cal-modal-title`,children:x.name??`Untitled routine`}),(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(g,{size:14}),(0,k.jsx)(`span`,{children:x.recurrence?O(x.recurrence):`One-time`})]}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,k.jsxs)(`span`,{children:[`Status: `,x.eventStatus??`unknown`]})}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,k.jsxs)(`span`,{children:[`Next run: `,P(x.nextRun)]})}),(0,k.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,k.jsx)(v,{size:14}),(0,k.jsxs)(`span`,{children:[`Last run: `,P(x.lastTriggered),x.lastDispatchResult?` (${x.lastDispatchResult})`:``]})]}),T?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(m,{size:14}),(0,k.jsxs)(`span`,{children:[x.agentChannel,` to `,x.agentDestination??`—`]})]}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,children:(0,k.jsx)(`span`,{children:x.agentPrompt??`No instruction set.`})})]}):x.actionPlugin?(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(_,{size:14}),(0,k.jsxs)(`span`,{children:[x.actionPlugin,`.`,x.actionTool,x.actionArgs?` ${x.actionArgs}`:``]})]}):(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(g,{size:14}),(0,k.jsx)(`span`,{children:`Scheduled trigger (no dispatch)`})]})]}),s&&(0,k.jsxs)(`div`,{className:`cal-modal-body`,children:[T&&(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Instruction`}),(0,k.jsx)(`textarea`,{className:`cal-modal-textarea`,value:E,onChange:e=>D(e.target.value),disabled:u,rows:16,placeholder:`What should the agent do when this routine fires?`})]}),(0,k.jsx)(N,{recurrence:x.recurrence,onChange:j,disabled:u})]}),h&&(0,k.jsx)(`div`,{className:`cal-modal-error`,children:h}),(0,k.jsxs)(`div`,{className:`cal-modal-actions`,children:[!s&&(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{w(!1),l(!0)},disabled:u,children:[(0,k.jsx)(t,{size:14}),` Edit`]}),(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:I,disabled:u,children:[u&&C?(0,k.jsx)(n,{size:14,className:`spin`}):(0,k.jsx)(d,{size:14}),C?`Confirm delete`:`Delete`]})]}),s&&(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-primary`,onClick:F,disabled:u,children:[u?(0,k.jsx)(n,{size:14,className:`spin`}):null,` Save`]}),(0,k.jsx)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{l(!1),y(null)},disabled:u,children:`Cancel`})]})]})]})})}var I=`maxy-admin-session-key`;function L(e){return e?O(e):`One-time`}function R(e){if(!e)return`—`;let t=Date.parse(e);return Number.isFinite(t)?new Date(t).toLocaleString():e}function z(){let[e,t]=(0,b.useState)(null),[n,r]=(0,b.useState)(!1),[i,o]=(0,b.useState)(void 0),[s,c]=(0,b.useState)(null),[u,d]=(0,b.useState)(void 0),[p,m]=(0,b.useState)(null),[g,_]=(0,b.useState)(null);(0,b.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(I)}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(I)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&o(e.businessName),e.sessionId!==void 0&&c(e.sessionId??null),_(e.role??null),d(e.userName===void 0?null:e.userName),m(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let v=(0,b.useCallback)(()=>{try{sessionStorage.removeItem(I)}catch{}window.location.href=`/`},[]),[y,x]=(0,b.useState)(!1),S=(0,b.useCallback)(async()=>{x(!0);try{let e=await f();if(e){try{sessionStorage.removeItem(I)}catch{}window.location.href=`/`}return e}finally{x(!1)}},[]);return n?e?(0,k.jsx)(l,{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(I)}catch{}window.location.href=`/`},children:(0,k.jsx)(h,{cacheKey:e,businessName:i,sessionId:s,onLogout:v,onDisconnect:S,disconnecting:y,userName:u,userAvatar:p,role:g,children:(0,k.jsx)(B,{cacheKey:e})})}):(0,k.jsx)(`div`,{className:`cal-page`,children:(0,k.jsxs)(`div`,{className:`cal-empty`,children:[(0,k.jsx)(`p`,{children:`You are not signed in.`}),(0,k.jsxs)(`p`,{children:[`Open the `,(0,k.jsx)(`a`,{href:`/`,className:`cal-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,k.jsx)(a,{surface:`gate`})}function B({cacheKey:e}){let{adminFetch:t,sessionRefetchNonce:r}=s({initialCacheKey:e,surface:`routines`}),[i,o]=(0,b.useState)([]),[c,l]=(0,b.useState)(!1),[u,d]=(0,b.useState)(!1),[f,h]=(0,b.useState)(null),[v,y]=(0,b.useState)(null),x=(0,b.useCallback)(()=>{let e=!1;return l(!0),h(null),t(`/api/admin/routines`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();o(Array.isArray(n.routines)?n.routines:[])}).catch(t=>{e||(h(t instanceof Error?t.message:`Failed to load`),o([]))}).finally(()=>{e||(l(!1),d(!0))}),()=>{e=!0}},[t]);(0,b.useEffect)(()=>x(),[x,r]);let S=(0,b.useCallback)(e=>{o(t=>t.map(t=>t.eventId===e.eventId?e:t)),y(e)},[]),C=(0,b.useCallback)(e=>{o(t=>t.filter(t=>t.eventId!==e)),y(null)},[]);return u?(0,k.jsxs)(`div`,{className:`cal-page`,children:[(0,k.jsx)(`header`,{className:`cal-header`,children:(0,k.jsxs)(`div`,{className:`cal-nav`,children:[(0,k.jsxs)(`span`,{className:`cal-range-label`,children:[(0,k.jsx)(p,{size:16}),` Routines`]}),c&&(0,k.jsx)(n,{size:16,className:`spin`})]})}),(0,k.jsxs)(`div`,{className:`cal-body`,children:[f&&(0,k.jsxs)(`div`,{className:`cal-error`,children:[`Could not load routines: `,f]}),!f&&!c&&i.length===0&&(0,k.jsx)(`div`,{className:`cal-empty`,children:(0,k.jsx)(`p`,{children:`No routines yet.`})}),(0,k.jsx)(`div`,{className:`routine-list`,children:i.map(e=>(0,k.jsxs)(`button`,{type:`button`,className:`routine-card`,onClick:()=>y(e),children:[(0,k.jsx)(`span`,{className:`routine-card-title`,children:e.name??`Untitled routine`}),(0,k.jsxs)(`span`,{className:`routine-card-sched`,children:[(0,k.jsx)(g,{size:13}),` `,L(e.recurrence)]}),(0,k.jsx)(`span`,{className:`routine-card-target`,children:e.agentChannel?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(m,{size:13}),` `,e.agentChannel,` to `,e.agentDestination??`—`]}):e.actionPlugin?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(_,{size:13}),` `,e.actionPlugin,`.`,e.actionTool]}):(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(g,{size:13}),` Scheduled trigger`]})}),(0,k.jsxs)(`span`,{className:`routine-card-meta`,children:[`Next: `,R(e.nextRun),` · `,e.eventStatus??`unknown`]})]},e.eventId))})]}),v&&(0,k.jsx)(F,{routine:v,adminFetch:t,onClose:()=>y(null),onSaved:S,onDeleted:C})]}):(0,k.jsx)(a,{surface:`gate`})}(0,y.createRoot)(document.getElementById(`root`)).render((0,k.jsx)(z,{}));
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{C as t,E as n,F as r,G as i,I as a,V as o,W as s,_ as c,m as l,q as u,v as d}from"./useSubAccountSwitcher-BwHqV55p.js";import{E as f,f as p,h as m,t as h}from"./AdminShell-IGUdTx5q.js";import{t as g}from"./clock-D8TJvgJC.js";import{t as _}from"./wrench-B51s5kGA.js";var v=r(`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`}]]),y=i(),b=e(u(),1);function x(e){return/^\d+$/.test(e)?Number(e):null}function S(e){let t=e.trim().split(/\s+/);if(t.length!==5)return null;let[n,r,i,a,o]=t,s=x(n),c=x(r);if(s===null||c===null||s>59||c>23||a!==`*`)return null;if(i===`*`&&o===`*`)return{frequency:`daily`,minute:s,hour:c,weekdays:[],dayOfMonth:1};if(i===`*`&&o!==`*`){let e=o.split(`,`).map(x);return e.some(e=>e===null||e>6)?null:{frequency:`weekly`,minute:s,hour:c,weekdays:e,dayOfMonth:1}}if(o===`*`&&i!==`*`){let e=x(i);return e===null||e<1||e>31?null:{frequency:`monthly`,minute:s,hour:c,weekdays:[],dayOfMonth:e}}return null}function C(e){let t=String(e.minute),n=String(e.hour);return e.frequency===`daily`?`${t} ${n} * * *`:e.frequency===`weekly`?`${t} ${n} * * ${e.weekdays.length?[...e.weekdays].sort((e,t)=>e-t).join(`,`):`*`}`:`${t} ${n} ${e.dayOfMonth} * *`}var w=[`Sun`,`Mon`,`Tue`,`Wed`,`Thu`,`Fri`,`Sat`];function T(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 E(e){return String(e).padStart(2,`0`)}function D(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`:`${w[e%7]} to ${w[n%7]}`}let n=e.split(`,`);return n.length>0&&n.every(e=>/^\d+$/.test(e)&&Number(e)<=7)?n.map(e=>w[Number(e)%7]).join(`, `):`invalid`}function O(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))return e;let s=T(n,59),c=T(r,23);if(!s||!c)return e;let l=D(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}, ${E(c.value)}:00 to ${E(c.value)}:59${u}`:`${e}, ${E(c.rangeStart)}:00 to ${E(d(c))}:00${u}`}if(c.kind===`step`){let e=E(s.value),t=s.value===0?``:` at :${e}`;return c.rangeStart===null?`Every ${c.step} hours${t}${u}`:c.step===1?`Hourly, ${E(c.rangeStart)}:${e} to ${E(c.rangeEnd)}:${e}${u}`:`Every ${c.step} hours, ${E(c.rangeStart)}:${e} to ${E(d(c))}:${e}${u}`}if(c.kind===`any`)return`${s.value===0?`Every hour`:`Every hour at :${E(s.value)}`}${u}`;let f=`${E(c.value)}:${E(s.value)}`;return i===`*`?l?`${l} at ${f}`:`Daily at ${f}`:`Monthly on day ${Number(i)} at ${f}`}var k=o(),A=[{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`}];function j(e){return`${String(e.hour).padStart(2,`0`)}:${String(e.minute).padStart(2,`0`)}`}var M={frequency:`daily`,minute:0,hour:9,weekdays:[1],dayOfMonth:1};function N({recurrence:e,onChange:t,disabled:n}){let r=e?S(e):M,[i,a]=(0,b.useState)(r??M),[o]=(0,b.useState)(e!=null&&r==null),[s,c]=(0,b.useState)(e??``);if(o)return(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Schedule (advanced)`}),(0,k.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,k.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(C(e))},u=e=>{let t=e===`weekly`&&i.weekdays.length===0?[1]:i.weekdays;l({...i,frequency:e,weekdays:t})},d=e=>{let[t,n]=e.split(`:`);l({...i,hour:Number(t)||0,minute:Number(n)||0})},f=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})},p=e=>l({...i,dayOfMonth:Number(e)||1});return(0,k.jsxs)(`div`,{className:`routine-sched`,children:[(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Frequency`}),(0,k.jsxs)(`select`,{value:i.frequency,disabled:n,onChange:e=>u(e.target.value),children:[(0,k.jsx)(`option`,{value:`daily`,children:`Daily`}),(0,k.jsx)(`option`,{value:`weekly`,children:`Weekly`}),(0,k.jsx)(`option`,{value:`monthly`,children:`Monthly`})]})]}),(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Time of day`}),(0,k.jsx)(`input`,{type:`time`,value:j(i),disabled:n,onChange:e=>d(e.target.value)})]}),i.frequency===`weekly`&&(0,k.jsxs)(`div`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Days`}),(0,k.jsx)(`div`,{className:`routine-weekdays`,children:A.map(e=>(0,k.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:()=>f(e.value),children:e.label},e.value))})]}),i.frequency===`monthly`&&(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Day of month`}),(0,k.jsx)(`select`,{value:i.dayOfMonth,disabled:n,onChange:e=>p(e.target.value),children:Array.from({length:31},(e,t)=>t+1).map(e=>(0,k.jsx)(`option`,{value:e,children:e},e))})]})]})}function P(e){if(!e)return`—`;let t=Date.parse(e);return Number.isFinite(t)?new Date(t).toLocaleString():e}function F({routine:e,adminFetch:r,onClose:i,onSaved:a,onDeleted:o}){let[s,l]=(0,b.useState)(!1),[u,f]=(0,b.useState)(!1),[h,y]=(0,b.useState)(null),[x,S]=(0,b.useState)(e),[C,w]=(0,b.useState)(!1),T=x.agentChannel!=null,[E,D]=(0,b.useState)(e.agentPrompt??``),[A,j]=(0,b.useState)(e.recurrence);(0,b.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!u&&i()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[u,i]);let M=(0,b.useCallback)(()=>{let e={};return T&&E!==(x.agentPrompt??``)&&(e.agentPrompt=E),A!=null&&A!==(x.recurrence??null)&&(e.recurrence=A),e},[T,E,A,x]),F=(0,b.useCallback)(async()=>{let t=M();if(Object.keys(t).length===0){l(!1);return}f(!0),y(null);try{let n=await r(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`PATCH`,headers:{"content-type":`application/json`},body:JSON.stringify(t)});if(!n.ok){let e=await n.json().catch(()=>({}));throw Error(e.error??`HTTP ${n.status}`)}let i=await n.json();S(i.routine),D(i.routine.agentPrompt??``),j(i.routine.recurrence),a(i.routine),l(!1)}catch(e){y(e instanceof Error?e.message:`Save failed`)}finally{f(!1)}},[r,M,e.eventId,a]),I=(0,b.useCallback)(async()=>{if(!u){if(!C){w(!0);return}f(!0),y(null);try{let t=await r(`/api/admin/routines/${encodeURIComponent(e.eventId)}`,{method:`DELETE`});if(!t.ok){let e=await t.json().catch(()=>({}));throw Error(e.error??`HTTP ${t.status}`)}o(e.eventId)}catch(e){y(e instanceof Error?e.message:`Delete failed`),w(!1)}finally{f(!1)}}},[r,u,C,e.eventId,o]);return(0,k.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{u||i()},children:(0,k.jsxs)(`div`,{className:`cal-modal cal-modal-wide`,role:`dialog`,"aria-modal":`true`,"aria-label":s?`Edit routine`:`Routine detail`,onClick:e=>e.stopPropagation(),children:[(0,k.jsxs)(`div`,{className:`cal-modal-header`,children:[(0,k.jsxs)(`span`,{className:`cal-modal-kind`,children:[(0,k.jsx)(p,{size:13}),` Routine`]}),(0,k.jsx)(`button`,{type:`button`,className:`cal-modal-close`,onClick:i,"aria-label":`Close`,autoFocus:!0,disabled:u,children:(0,k.jsx)(c,{size:16})})]}),!s&&(0,k.jsxs)(`div`,{className:`cal-modal-body`,children:[(0,k.jsx)(`div`,{className:`cal-modal-title`,children:x.name??`Untitled routine`}),(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(g,{size:14}),(0,k.jsx)(`span`,{children:x.recurrence?O(x.recurrence):`One-time`})]}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,k.jsxs)(`span`,{children:[`Status: `,x.eventStatus??`unknown`]})}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,k.jsxs)(`span`,{children:[`Next run: `,P(x.nextRun)]})}),(0,k.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,k.jsx)(v,{size:14}),(0,k.jsxs)(`span`,{children:[`Last run: `,P(x.lastTriggered),x.lastDispatchResult?` (${x.lastDispatchResult})`:``]})]}),T?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(m,{size:14}),(0,k.jsxs)(`span`,{children:[x.agentChannel,` to `,x.agentDestination??`—`]})]}),(0,k.jsx)(`div`,{className:`cal-modal-row cal-modal-row-top routine-prose`,children:(0,k.jsx)(`span`,{children:x.agentPrompt??`No instruction set.`})})]}):x.actionPlugin?(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(_,{size:14}),(0,k.jsxs)(`span`,{children:[x.actionPlugin,`.`,x.actionTool,x.actionArgs?` ${x.actionArgs}`:``]})]}):(0,k.jsxs)(`div`,{className:`cal-modal-row`,children:[(0,k.jsx)(g,{size:14}),(0,k.jsx)(`span`,{children:`Scheduled trigger (no dispatch)`})]})]}),s&&(0,k.jsxs)(`div`,{className:`cal-modal-body`,children:[T&&(0,k.jsxs)(`label`,{className:`cal-modal-field`,children:[(0,k.jsx)(`span`,{children:`Instruction`}),(0,k.jsx)(`textarea`,{className:`cal-modal-textarea`,value:E,onChange:e=>D(e.target.value),disabled:u,rows:16,placeholder:`What should the agent do when this routine fires?`})]}),(0,k.jsx)(N,{recurrence:x.recurrence,onChange:j,disabled:u})]}),h&&(0,k.jsx)(`div`,{className:`cal-modal-error`,children:h}),(0,k.jsxs)(`div`,{className:`cal-modal-actions`,children:[!s&&(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{w(!1),l(!0)},disabled:u,children:[(0,k.jsx)(t,{size:14}),` Edit`]}),(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-danger`,onClick:I,disabled:u,children:[u&&C?(0,k.jsx)(n,{size:14,className:`spin`}):(0,k.jsx)(d,{size:14}),C?`Confirm delete`:`Delete`]})]}),s&&(0,k.jsxs)(k.Fragment,{children:[(0,k.jsxs)(`button`,{type:`button`,className:`cal-modal-btn cal-modal-btn-primary`,onClick:F,disabled:u,children:[u?(0,k.jsx)(n,{size:14,className:`spin`}):null,` Save`]}),(0,k.jsx)(`button`,{type:`button`,className:`cal-modal-btn`,onClick:()=>{l(!1),y(null)},disabled:u,children:`Cancel`})]})]})]})})}var I=`maxy-admin-session-key`;function L(e){return e?O(e):`One-time`}function R(e){if(!e)return`—`;let t=Date.parse(e);return Number.isFinite(t)?new Date(t).toLocaleString():e}function z(){let[e,t]=(0,b.useState)(null),[n,r]=(0,b.useState)(!1),[i,o]=(0,b.useState)(void 0),[s,c]=(0,b.useState)(null),[u,d]=(0,b.useState)(void 0),[p,m]=(0,b.useState)(null),[g,_]=(0,b.useState)(null);(0,b.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(I)}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(I)}catch{}window.location.href=`/`;return}if(i.ok)try{let e=await i.json();typeof e.businessName==`string`&&o(e.businessName),e.sessionId!==void 0&&c(e.sessionId??null),_(e.role??null),d(e.userName===void 0?null:e.userName),m(e.avatar??null)}catch{}t(n),r(!0)}}).catch(()=>{e||(t(n),r(!0))}),()=>{e=!0}},[]);let v=(0,b.useCallback)(()=>{try{sessionStorage.removeItem(I)}catch{}window.location.href=`/`},[]),[y,x]=(0,b.useState)(!1),S=(0,b.useCallback)(async()=>{x(!0);try{let e=await f();if(e){try{sessionStorage.removeItem(I)}catch{}window.location.href=`/`}return e}finally{x(!1)}},[]);return n?e?(0,k.jsx)(l,{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(I)}catch{}window.location.href=`/`},children:(0,k.jsx)(h,{cacheKey:e,businessName:i,sessionId:s,onLogout:v,onDisconnect:S,disconnecting:y,userName:u,userAvatar:p,role:g,children:(0,k.jsx)(B,{cacheKey:e})})}):(0,k.jsx)(`div`,{className:`cal-page`,children:(0,k.jsxs)(`div`,{className:`cal-empty`,children:[(0,k.jsx)(`p`,{children:`You are not signed in.`}),(0,k.jsxs)(`p`,{children:[`Open the `,(0,k.jsx)(`a`,{href:`/`,className:`cal-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,k.jsx)(a,{surface:`gate`})}function B({cacheKey:e}){let{adminFetch:t,sessionRefetchNonce:r}=s({initialCacheKey:e,surface:`routines`}),[i,o]=(0,b.useState)([]),[c,l]=(0,b.useState)(!1),[u,d]=(0,b.useState)(!1),[f,h]=(0,b.useState)(null),[v,y]=(0,b.useState)(null),x=(0,b.useCallback)(()=>{let e=!1;return l(!0),h(null),t(`/api/admin/routines`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();o(Array.isArray(n.routines)?n.routines:[])}).catch(t=>{e||(h(t instanceof Error?t.message:`Failed to load`),o([]))}).finally(()=>{e||(l(!1),d(!0))}),()=>{e=!0}},[t]);(0,b.useEffect)(()=>x(),[x,r]);let S=(0,b.useCallback)(e=>{o(t=>t.map(t=>t.eventId===e.eventId?e:t)),y(e)},[]),C=(0,b.useCallback)(e=>{o(t=>t.filter(t=>t.eventId!==e)),y(null)},[]);return u?(0,k.jsxs)(`div`,{className:`cal-page`,children:[(0,k.jsx)(`header`,{className:`cal-header`,children:(0,k.jsxs)(`div`,{className:`cal-nav`,children:[(0,k.jsxs)(`span`,{className:`cal-range-label`,children:[(0,k.jsx)(p,{size:16}),` Routines`]}),c&&(0,k.jsx)(n,{size:16,className:`spin`})]})}),(0,k.jsxs)(`div`,{className:`cal-body`,children:[f&&(0,k.jsxs)(`div`,{className:`cal-error`,children:[`Could not load routines: `,f]}),!f&&!c&&i.length===0&&(0,k.jsx)(`div`,{className:`cal-empty`,children:(0,k.jsx)(`p`,{children:`No routines yet.`})}),(0,k.jsx)(`div`,{className:`routine-list`,children:i.map(e=>(0,k.jsxs)(`button`,{type:`button`,className:`routine-card`,onClick:()=>y(e),children:[(0,k.jsx)(`span`,{className:`routine-card-title`,children:e.name??`Untitled routine`}),(0,k.jsxs)(`span`,{className:`routine-card-sched`,children:[(0,k.jsx)(g,{size:13}),` `,L(e.recurrence)]}),(0,k.jsx)(`span`,{className:`routine-card-target`,children:e.agentChannel?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(m,{size:13}),` `,e.agentChannel,` to `,e.agentDestination??`—`]}):e.actionPlugin?(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(_,{size:13}),` `,e.actionPlugin,`.`,e.actionTool]}):(0,k.jsxs)(k.Fragment,{children:[(0,k.jsx)(g,{size:13}),` Scheduled trigger`]})}),(0,k.jsxs)(`span`,{className:`routine-card-meta`,children:[`Next: `,R(e.nextRun),` · `,e.eventStatus??`unknown`]})]},e.eventId))})]}),v&&(0,k.jsx)(F,{routine:v,adminFetch:t,onClose:()=>y(null),onSaved:S,onDeleted:C})]}):(0,k.jsx)(a,{surface:`gate`})}(0,y.createRoot)(document.getElementById(`root`)).render((0,k.jsx)(z,{}));
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-CltuBf4Z.js";import{E as t,G as n,I as r,O as i,V as a,W as o,_ as s,m as c,q as l,v as u}from"./useSubAccountSwitcher-
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{E as t,G as n,I as r,O as i,V as a,W as o,_ as s,m as c,q as l,v as u}from"./useSubAccountSwitcher-BwHqV55p.js";import{E as d,p as f,t as p}from"./AdminShell-IGUdTx5q.js";import{t as m}from"./file-text-dYBnXNEX.js";var h=n(),g=e(l(),1),_=a();function v({summary:e,adminFetch:n,onClose:r,onDeleted:a}){let[o,c]=(0,g.useState)(null),[l,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 t=!1;return d(!0),h(null),n(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`).then(async e=>{if(!t){if(!e.ok)throw Error(`HTTP ${e.status}`);c((await e.json()).skill)}}).catch(e=>{t||h(e instanceof Error?e.message:`Failed to load`)}).finally(()=>{t||d(!1)}),()=>{t=!0}},[n,e.plugin,e.skill]),(0,g.useEffect)(()=>{let e=e=>{e.key===`Escape`&&!b&&r()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[b,r]);let S=(0,g.useCallback)(async()=>{x(!0),h(null);try{let t=await n(`/api/admin/skills/${encodeURIComponent(e.plugin)}/${encodeURIComponent(e.skill)}`,{method:`DELETE`,headers:{"content-type":`application/json`}});if(!t.ok){let e=await t.json().catch(()=>({}));throw Error(e.error??`HTTP ${t.status}`)}a(e)}catch(e){h(e instanceof Error?e.message:`Delete failed`),x(!1),y(!1)}},[n,e,a]);return(0,_.jsx)(`div`,{className:`cal-modal-overlay`,onClick:()=>{b||r()},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:r,"aria-label":`Close`,autoFocus:!0,disabled:b,children:(0,_.jsx)(s,{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})]}),l&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(t,{size:14,className:`spin`}),(0,_.jsx)(`span`,{children:`Loading…`})]}),o&&(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)(`div`,{className:`cal-modal-row cal-modal-meta`,children:(0,_.jsx)(`span`,{children:o.frontmatter.description||`No description.`})}),o.frontmatter.publicEmbed&&(0,_.jsxs)(`div`,{className:`cal-modal-row cal-modal-meta`,children:[(0,_.jsx)(i,{size:14}),(0,_.jsx)(`span`,{children:`Public embed`})]}),(0,_.jsx)(`pre`,{className:`skill-body`,children:o.body.trim()||`No body content.`}),o.references.length>0&&(0,_.jsxs)(`div`,{className:`skill-refs`,children:[(0,_.jsx)(`span`,{className:`skill-refs-label`,children:`References`}),o.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||l,children:[(0,_.jsx)(u,{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)(t,{size:14,className:`spin`}):(0,_.jsx)(u,{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,i]=(0,g.useState)(!1),[a,o]=(0,g.useState)(void 0),[s,l]=(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){i(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async r=>{if(!e){if(r.status===401){try{sessionStorage.removeItem(y)}catch{}window.location.href=`/`;return}if(r.ok)try{let e=await r.json();typeof e.businessName==`string`&&o(e.businessName),e.sessionId!==void 0&&l(e.sessionId??null),b(e.role??null),f(e.userName===void 0?null:e.userName),h(e.avatar??null)}catch{}t(n),i(!0)}}).catch(()=>{e||(t(n),i(!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)(c,{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:a,sessionId:s,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)(r,{surface:`gate`})}function x({cacheKey:e}){let{adminFetch:n,sessionRefetchNonce:i}=o({initialCacheKey:e,surface:`skills`}),[a,s]=(0,g.useState)([]),[c,l]=(0,g.useState)(!1),[u,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 l(!0),h(null),n(`/api/admin/skills`).then(async t=>{if(e)return;if(!t.ok)throw Error(`HTTP ${t.status}`);let n=await t.json();s(Array.isArray(n.skills)?n.skills:[])}).catch(t=>{e||(h(t instanceof Error?t.message:`Failed to load`),s([]))}).finally(()=>{e||(l(!1),d(!0))}),()=>{e=!0}},[n]);(0,g.useEffect)(()=>x(),[x,i]);let S=(0,g.useCallback)(e=>{s(t=>t.filter(t=>!(t.plugin===e.plugin&&t.skill===e.skill))),b(null),x()},[x]);return u?(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`]}),c&&(0,_.jsx)(t,{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&&!c&&a.length===0&&(0,_.jsx)(`div`,{className:`cal-empty`,children:(0,_.jsx)(`p`,{children:`No skills yet. Ask in chat to create one.`})}),a.length>0&&(0,_.jsx)(`div`,{className:`routine-list`,children:a.map(e=>(0,_.jsxs)(`button`,{type:`button`,className:`routine-card`,onClick:()=>b(e),children:[(0,_.jsx)(`span`,{className:`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:n,onClose:()=>b(null),onDeleted:S})]}):(0,_.jsx)(r,{surface:`gate`})}(0,h.createRoot)(document.getElementById(`root`)).render((0,_.jsx)(b,{}));
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{C as t,G as n,I as r,M as i,V as a,W as o,_ as s,m as c,q as l,y as u}from"./useSubAccountSwitcher-BwHqV55p.js";import{E as d,h as f,r as p,t as m}from"./AdminShell-IGUdTx5q.js";import{n as h,t as g}from"./time-entry-format-BBokCF-D.js";import{t as _}from"./rotate-ccw-Buopsc22.js";var v=n(),y=e(l(),1);function b(e=3e4){let[t,n]=(0,y.useState)(()=>Date.now());return(0,y.useEffect)(()=>{let t=setInterval(()=>n(Date.now()),e);return()=>clearInterval(t)},[e]),t}function x(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 ee(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=a();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 A(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 j(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 M(e){return e.assigneeName?e.assigneeName:e.assigneeUserId?e.assigneeUserId.slice(0,8):`Unassigned`}function N(e,t){return[t,j(e.createdAt),M(e)].filter(Boolean).join(` · `)}function te(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 ne({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 · `,g(e.totalSeconds),` logged`]})]})},e.name))]})}function re({task:e,roster:t,busy:n,onAssign:r,onClose:i}){return(0,y.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)(s,{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:g(e.secondsLogged)}),(0,D.jsx)(`dt`,{children:`Created`}),(0,D.jsx)(`dd`,{children:j(e.createdAt)||`Not recorded`}),(0,D.jsx)(`dt`,{children:`Assignee`}),(0,D.jsx)(`dd`,{children:e.taskId===null?M(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:[M(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 P({adminFetch:e}){let[n,a]=(0,y.useState)({open:[],completed:[]}),[o,c]=(0,y.useState)(!1),[l,d]=(0,y.useState)(!1),m=(0,y.useRef)(!1),v=(0,y.useRef)(``),S=b(1e3),[C,w]=(0,y.useState)(`open`),[T,O]=(0,y.useState)(null),[k,j]=(0,y.useState)(null),[M,P]=(0,y.useState)(null),[F,I]=(0,y.useState)(``),[L,R]=(0,y.useState)(null),[z,B]=(0,y.useState)(null),V=(0,y.useRef)(new Set),[ie,H]=(0,y.useState)(new Set),U=(0,y.useMemo)(()=>{if(L!==null)return[...n.open,...n.completed].find(e=>e.rowKey===L)??null},[n,L]);(0,y.useEffect)(()=>{L!==null&&U===null&&console.error(`[tasks-ui] op=detail-failed rowKey=${L} reason=not-in-list`)},[L,U]);let W=(0,y.useMemo)(()=>x(n.open,n.completed),[n]),G=(0,y.useMemo)(()=>T===null?{open:n.open,completed:n.completed}:{open:n.open.filter(e=>e.clientName===T),completed:n.completed.filter(e=>e.clientName===T)},[n,T]),K=(0,y.useMemo)(()=>ee(G.open,G.completed),[G]),ae=(0,y.useCallback)(e=>{O(e),w(`open`)},[]);(0,y.useEffect)(()=>{T&&!W.some(e=>e.name===T)&&O(null)},[W,T]),(0,y.useEffect)(()=>{k&&!K.some(e=>e.userId===k)&&j(null)},[K,k]),(0,y.useEffect)(()=>{B(null)},[C,T,k]);let q=n.open.filter(e=>e.running||(T===null||e.clientName===T)&&E(e,k)),J=(T?n.completed.filter(e=>e.clientName===T):n.completed).filter(e=>E(e,k)),[oe,se]=(0,y.useState)([]),Y=(0,y.useCallback)(async()=>{let t=await e(`/api/admin/tasks-list`);t.ok&&a(await t.json()),c(!0)},[e]);(0,y.useEffect)(()=>{Y()},[Y]),(0,y.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)&&se(e.users)}})()},[e]);let X=(0,y.useCallback)(async(t,n,r)=>{if(m.current)return!1;m.current=!0,d(!0);try{return await e(t,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({taskId:n,...r})}),await Y(),!0}finally{m.current=!1,d(!1)}},[e,Y]),ce=(0,y.useCallback)(async e=>{await X(`/api/admin/task-complete`,e)&&console.log(`[tasks-ui] op=complete taskId=${e.slice(0,8)} confirmed=true`)},[X]),le=(0,y.useCallback)((e,t)=>{let n=String(Math.round(e.secondsLogged/60));v.current=n,P(t),I(n)},[]),Z=(0,y.useCallback)(()=>{P(null),I(``)},[]),ue=(0,y.useCallback)(async e=>{let t=F.trim(),n=Number(t);if(!(t===``||!Number.isInteger(n)||n<0)){if(t===v.current){Z();return}P(null),I(``),await X(`/api/admin/task-time-adjust`,e,{newSeconds:n*60})}},[F,X,Z]),de=(0,y.useCallback)(e=>{X(`/api/admin/task-time-adjust`,e,{newSeconds:0})},[X]),fe=(0,y.useCallback)((e,t)=>{X(`/api/admin/task-assign`,e,{assigneeUserId:t})},[X]),pe=(0,y.useCallback)(async t=>{if(!V.current.has(t)){V.current.add(t),H(new Set(V.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,accountId:a}=await n.json(),o=r===null?`new`:`resume`,s=r===null?{title:i}:{sessionId:r,name:i,...a?{targetAccountId:a}:{}},c=await e(`/api/admin/session-rc-spawn`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify(s)}),l=await c.json().catch(()=>({})),u=p(c.ok,c.status,l),d=l.sessionId??r??null;if(console.info(`[admin-ui] task-session op=spawn taskId=${t} kind=${o} status=${c.status} outcome=${u.kind} requested=${r??`new`} landed=${d??`none`}`),u.kind!==`navigate`){console.error(`[admin-ui] task-session op=spawn-failed taskId=${t} reason=${u.reason}`);return}let f=!1;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})});f=n.ok&&(await n.json().catch(()=>({}))).linked===!0}else console.error(`[admin-ui] task-session op=link-skipped taskId=${t} reason=no-landed-session-id`);console.info(`[admin-ui] task-session op=navigate taskId=${t} sessionId=${d??`none`} linked=${f} sameOrigin=${u.sameOrigin}`),u.sameOrigin?window.location.assign(u.url):window.open(u.url,`_blank`)}catch(e){console.error(`[admin-ui] task-session op=failed taskId=${t} error=${e instanceof Error?e.message:String(e)}`)}finally{V.current.delete(t),H(new Set(V.current))}}},[e]);if(!o)return(0,D.jsx)(r,{surface:`gate`});let Q=e=>e.taskId!==null&&M===e.taskId,$=(e,n)=>Q(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:F,onChange:e=>I(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:l,onClick:()=>void ue(n),children:[(0,D.jsx)(i,{size:14}),` Save`]}),(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,onClick:Z,children:[(0,D.jsx)(s,{size:14}),` Cancel`]})]}):(0,D.jsxs)(D.Fragment,{children:[(0,D.jsx)(`button`,{className:`tasks-time-btn`,"aria-label":`Edit time`,disabled:l||e.running,title:e.running?`Stop the timer before editing time`:void 0,onClick:()=>le(e,n),children:(0,D.jsx)(t,{size:14})}),(0,D.jsx)(`button`,{className:`tasks-time-btn`,"aria-label":`Reset time`,disabled:l||e.running,title:e.running?`Stop the timer before resetting time`:void 0,onClick:()=>de(n),children:(0,D.jsx)(_,{size:14})})]});return(0,D.jsxs)(`div`,{className:`tasks-body`,children:[L!==null&&(0,D.jsx)(re,{task:U??null,roster:oe,busy:l,onAssign:fe,onClose:()=>R(null)}),(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:n.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:n.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:W.length})]})]}),C===`clients`?(0,D.jsx)(ne,{clients:W,onSelect:ae}):(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`})]}),K.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:()=>j(null),children:[`All `,(0,D.jsx)(`span`,{className:`tasks-assignee-count`,children:G.open.length})]}),K.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:()=>j(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:[q.length,` to do`]})]}),q.length===0&&(0,D.jsx)(`div`,{className:`tasks-empty`,children:`No open tasks.`}),q.map(e=>(0,D.jsxs)(`div`,{className:`tasks-row`,children:[(0,D.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>R(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:N(e,A(e))})]})}),(0,D.jsx)(`div`,{className:`tasks-row-elapsed ${e.running?`tasks-row-elapsed-running`:``}`,children:g(te(e,S))}),(0,D.jsx)(`div`,{className:`tasks-row-controls`,children:e.taskId!==null&&z===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:l,onClick:()=>{B(null),ce(e.taskId)},children:[(0,D.jsx)(i,{size:14}),` Confirm complete`]}),(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,onClick:()=>B(null),children:[(0,D.jsx)(s,{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`}):(0,D.jsxs)(D.Fragment,{children:[$(e,e.taskId),Q(e)?null:(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,"aria-label":`Open session for task: ${e.name}`,disabled:ie.has(e.taskId),title:e.sessionId?`Resume this task’s session`:`Start a session for this task`,onClick:()=>void pe(e.taskId),children:[(0,D.jsx)(f,{size:14}),` Session`]}),Q(e)?null:(0,D.jsxs)(`button`,{className:`tasks-btn-secondary tasks-btn-action`,"aria-label":`Complete task: ${e.name}`,disabled:l||e.running,title:e.running?`Stop the timer before completing`:void 0,onClick:()=>B(e.taskId),children:[(0,D.jsx)(i,{size:14}),` Complete`]}),Q(e)?null:e.running?(0,D.jsxs)(`button`,{className:`admin-btn-danger tasks-btn-action`,disabled:l,onClick:()=>void X(`/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:l,onClick:()=>void X(`/api/admin/task-timer-start`,e.taskId),children:[(0,D.jsx)(h,{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:[J.length,` done`]})]}),J.length===0&&(0,D.jsx)(`div`,{className:`tasks-empty`,children:`Nothing completed yet.`}),J.map(e=>(0,D.jsxs)(`div`,{className:`tasks-row tasks-row-done`,children:[(0,D.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>R(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:N(e,A(e))})]})}),(0,D.jsx)(`div`,{className:`tasks-row-elapsed`,children:g(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`}):$(e,e.taskId)})]},e.rowKey))]})]})]})}function F({cacheKey:e}){let{adminFetch:t}=o({initialCacheKey:e,surface:`tasks`});return(0,D.jsx)(P,{adminFetch:t})}function I(){let[e,t]=(0,y.useState)(null),[n,i]=(0,y.useState)(!1),[a,o]=(0,y.useState)(void 0),[s,l]=(0,y.useState)(null),[u,f]=(0,y.useState)(null),[p,h]=(0,y.useState)(null),[g,_]=(0,y.useState)(null);(0,y.useEffect)(()=>{let e=!1,n=null;try{n=sessionStorage.getItem(k)}catch{}if(!n){t(null),i(!0);return}return fetch(`/api/admin/session?session_key=${encodeURIComponent(n)}`).then(async r=>{if(!e){if(r.status===401){try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`;return}if(r.ok)try{let e=await r.json();typeof e.businessName==`string`&&o(e.businessName),e.sessionId!==void 0&&l(e.sessionId??null),f(e.role??null),h(e.userName===void 0?null:e.userName),_(e.avatar??null)}catch{}t(n),i(!0)}}).catch(()=>{e||(t(n),i(!0))}),()=>{e=!0}},[]);let v=(0,y.useCallback)(()=>{try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`},[]),[b,x]=(0,y.useState)(!1),S=(0,y.useCallback)(async()=>{x(!0);try{let e=await d();if(e){try{sessionStorage.removeItem(k)}catch{}window.location.href=`/`}return e}finally{x(!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)(m,{cacheKey:e,businessName:a,sessionId:s,onLogout:v,onDisconnect:S,disconnecting:b,userName:p,userAvatar:g,role:u,children:(0,D.jsx)(F,{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)(r,{surface:`gate`})}(0,v.createRoot)(document.getElementById(`root`)).render((0,D.jsx)(I,{}));
|
|
Binary file
|
|
Binary file
|
package/payload/server/public/assets/{time-entry-format-BXWuQ6Sw.js → time-entry-format-BBokCF-D.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{F as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{F as e}from"./useSubAccountSwitcher-BwHqV55p.js";var t=e(`play`,[[`path`,{d:`M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z`,key:`10ikf1`}]]);function n(e){let t=Math.max(0,Math.floor(e)),n=Math.floor(t/3600),r=Math.floor(t%3600/60),i=t%60;return n>0?`${n}:${String(r).padStart(2,`0`)}`:`${r}:${String(i).padStart(2,`0`)}`}export{t as n,n as t};
|
|
Binary file
|
|
Binary file
|
package/payload/server/public/assets/{triangle-alert-BNshRC13.js → triangle-alert-C_AcpTW5.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{F as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{F as e}from"./useSubAccountSwitcher-BwHqV55p.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};
|
|
Binary file
|
|
Binary file
|
package/payload/server/public/assets/{useCopyFeedback-CwTZ9DqH.js → useCopyFeedback-TdimmPVR.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-CltuBf4Z.js";import{q as t,r as n}from"./useSubAccountSwitcher-
|
|
1
|
+
import{o as e}from"./chunk-CltuBf4Z.js";import{q as t,r as n}from"./useSubAccountSwitcher-BwHqV55p.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};
|
|
Binary file
|
|
Binary file
|