@rubytech/create-maxy-code 0.1.477 → 0.1.479
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/package.json +1 -1
- package/payload/platform/docs/superpowers/plans/2026-07-20-task-1704-data-portal-standing-audit.md +673 -0
- package/payload/platform/docs/superpowers/plans/2026-07-20-task-1789-reseat-channel-row-fork.md +1244 -0
- package/payload/platform/docs/superpowers/plans/2026-07-20-task-1818-loop-gate-app-routes.md +462 -0
- package/payload/platform/docs/superpowers/plans/2026-07-20-task-1819-top-level-label-allowlist.md +321 -0
- package/payload/platform/docs/superpowers/plans/2026-07-20-task-1831-data-portal-class-derived-allowlist.md +2177 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1704-data-portal-standing-audit-design.md +177 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1789-reseat-channel-row-fork-design.md +201 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1818-loop-gate-app-routes-design.md +217 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1819-top-level-label-allowlist-design.md +80 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1820-cpu-triage-admin-tools-design.md +97 -0
- package/payload/platform/docs/superpowers/specs/2026-07-20-task-1831-data-portal-class-derived-allowlist-design.md +163 -0
- package/payload/platform/lib/graph-style/dist/index.d.ts.map +1 -1
- package/payload/platform/lib/graph-style/dist/index.js +22 -0
- package/payload/platform/lib/graph-style/dist/index.js.map +1 -1
- package/payload/platform/lib/graph-style/src/__tests__/parity.test.ts +6 -0
- package/payload/platform/lib/graph-style/src/index.ts +20 -0
- package/payload/platform/lib/storage-broker/dist/__tests__/audit.test.js +44 -0
- package/payload/platform/lib/storage-broker/dist/__tests__/audit.test.js.map +1 -1
- package/payload/platform/lib/storage-broker/dist/audit.d.ts +56 -0
- package/payload/platform/lib/storage-broker/dist/audit.d.ts.map +1 -1
- package/payload/platform/lib/storage-broker/dist/audit.js +34 -0
- package/payload/platform/lib/storage-broker/dist/audit.js.map +1 -1
- package/payload/platform/lib/storage-broker/src/__tests__/audit.test.ts +70 -1
- package/payload/platform/lib/storage-broker/src/audit.ts +111 -0
- package/payload/platform/plugins/admin/.claude-plugin/plugin.json +1 -1
- package/payload/platform/plugins/admin/PLUGIN.md +7 -1
- package/payload/platform/plugins/admin/mcp/dist/index.js +72 -0
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/admin/mcp/dist/tools/cpu-triage.d.ts +94 -0
- package/payload/platform/plugins/admin/mcp/dist/tools/cpu-triage.d.ts.map +1 -0
- package/payload/platform/plugins/admin/mcp/dist/tools/cpu-triage.js +229 -0
- package/payload/platform/plugins/admin/mcp/dist/tools/cpu-triage.js.map +1 -0
- package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +14 -2
- package/payload/platform/plugins/cloudflare/PLUGIN.md +26 -1
- package/payload/platform/plugins/cloudflare/bin/d1-http.mjs +80 -0
- package/payload/platform/plugins/cloudflare/bin/portal-enrol.mjs +17 -2
- package/payload/platform/plugins/cloudflare/bin/portal-index-push.mjs +357 -0
- package/payload/platform/plugins/cloudflare/bin/schema-exposed-dirs.mjs +103 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/authorize.test.ts +2 -2
- package/payload/platform/plugins/cloudflare/mcp/__tests__/d1-http.test.ts +96 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-directory-listing.test.ts +120 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-enrol.test.ts +59 -4
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-index-push.test.ts +176 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-index-state-contract.test.ts +75 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-indexed-download.test.ts +131 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/portal-sign.test.ts +68 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/schema-exposed-dirs.test.ts +88 -0
- package/payload/platform/plugins/cloudflare/mcp/__tests__/template-config.test.ts +39 -0
- package/payload/platform/plugins/cloudflare/skills/data-portal/SKILL.md +68 -1
- package/payload/platform/plugins/cloudflare/skills/data-portal/schema.sql +30 -1
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/functions/api/_lib/portal-sign.mjs +87 -0
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/functions/api/_lib/session.ts +8 -4
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/functions/api/_lib/types.ts +10 -0
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/functions/api/download.ts +107 -1
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/functions/api/files.ts +82 -2
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/index.html +9 -0
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/portal.css +56 -0
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/portal.js +98 -2
- package/payload/platform/plugins/cloudflare/skills/data-portal/template/wrangler.toml +12 -0
- package/payload/platform/plugins/docs/references/admin-ui.md +1 -1
- package/payload/platform/plugins/docs/references/cloudflare.md +12 -0
- package/payload/platform/plugins/email/PLUGIN.md +2 -1
- package/payload/platform/plugins/email/mcp/dist/__tests__/confirm-sent-copy.test.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/confirm-sent-copy.test.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/confirm-sent-copy.test.js +92 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/confirm-sent-copy.test.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-draft-send.test.js +112 -12
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-draft-send.test.js.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-send-sent-copy.test.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-send-sent-copy.test.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-send-sent-copy.test.js +54 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/email-send-sent-copy.test.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/imap-drafts.test.js +170 -1
- package/payload/platform/plugins/email/mcp/dist/__tests__/imap-drafts.test.js.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-note.test.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-note.test.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-note.test.js +86 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-note.test.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-sweep.test.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-sweep.test.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-sweep.test.js +164 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-copy-sweep.test.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-ledger.test.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-ledger.test.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-ledger.test.js +82 -0
- package/payload/platform/plugins/email/mcp/dist/__tests__/sent-ledger.test.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/imap.d.ts +95 -0
- package/payload/platform/plugins/email/mcp/dist/lib/imap.d.ts.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/lib/imap.js +223 -0
- package/payload/platform/plugins/email/mcp/dist/lib/imap.js.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-note.d.ts +18 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-note.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-note.js +59 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-note.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-sweep.d.ts +48 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-sweep.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-sweep.js +79 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-copy-sweep.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-ledger.d.ts +44 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-ledger.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-ledger.js +63 -0
- package/payload/platform/plugins/email/mcp/dist/lib/sent-ledger.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/scripts/sent-copy-sweep.d.ts +2 -0
- package/payload/platform/plugins/email/mcp/dist/scripts/sent-copy-sweep.d.ts.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/scripts/sent-copy-sweep.js +55 -0
- package/payload/platform/plugins/email/mcp/dist/scripts/sent-copy-sweep.js.map +1 -0
- package/payload/platform/plugins/email/mcp/dist/tools/email-draft-send.d.ts.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-draft-send.js +64 -13
- package/payload/platform/plugins/email/mcp/dist/tools/email-draft-send.js.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-reply.d.ts.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-reply.js +11 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-reply.js.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-send.d.ts.map +1 -1
- package/payload/platform/plugins/email/mcp/dist/tools/email-send.js +16 -3
- package/payload/platform/plugins/email/mcp/dist/tools/email-send.js.map +1 -1
- package/payload/platform/plugins/email/references/email-reference.md +36 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/portal-index-audit.test.d.ts +2 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/portal-index-audit.test.d.ts.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/portal-index-audit.test.js +66 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/portal-index-audit.test.js.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/sent-sweep-throttle.test.d.ts +2 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/sent-sweep-throttle.test.d.ts.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/sent-sweep-throttle.test.js +18 -0
- package/payload/platform/plugins/scheduling/mcp/dist/__tests__/sent-sweep-throttle.test.js.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/portal-index-audit.d.ts +41 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/portal-index-audit.d.ts.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/portal-index-audit.js +75 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/portal-index-audit.js.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/sent-sweep-throttle.d.ts +13 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/sent-sweep-throttle.d.ts.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/sent-sweep-throttle.js +10 -0
- package/payload/platform/plugins/scheduling/mcp/dist/lib/sent-sweep-throttle.js.map +1 -0
- package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js +175 -0
- package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js.map +1 -1
- package/payload/platform/scripts/cpu-triage-run.sh +117 -0
- package/payload/platform/scripts/cpu-triage.sh +23 -4
- package/payload/platform/services/claude-session-manager/dist/activity-range.d.ts +40 -0
- package/payload/platform/services/claude-session-manager/dist/activity-range.d.ts.map +1 -0
- package/payload/platform/services/claude-session-manager/dist/activity-range.js +68 -0
- package/payload/platform/services/claude-session-manager/dist/activity-range.js.map +1 -0
- package/payload/platform/services/claude-session-manager/dist/activity-rows.d.ts +40 -8
- package/payload/platform/services/claude-session-manager/dist/activity-rows.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/activity-rows.js +74 -7
- package/payload/platform/services/claude-session-manager/dist/activity-rows.js.map +1 -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/services/claude-session-manager/dist/http-server.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/http-server.js +9 -0
- package/payload/platform/services/claude-session-manager/dist/http-server.js.map +1 -1
- package/payload/server/{chunk-56WJMBQQ.js → chunk-3XLLTG6R.js} +14 -0
- package/payload/server/{chunk-JECAP3Z2.js → chunk-XGNRSM57.js} +3 -0
- package/payload/server/maxy-edge.js +1 -1
- package/payload/server/public/activity.html +8 -6
- package/payload/server/public/assets/{AdminLoginScreens-mEKP4pDi.js → AdminLoginScreens-DkxQZnvB.js} +1 -1
- package/payload/server/public/assets/AdminShell-Cv_nIFGe.js +2 -0
- package/payload/server/public/assets/Checkbox-CsTWK8mm.js +1 -0
- package/payload/server/public/assets/activity-BbnTiVBT.js +1 -0
- package/payload/server/public/assets/{admin-BVhgfgs1.js → admin-BZY3i_Ff.js} +1 -1
- package/payload/server/public/assets/{browser-D-HMmHcM.js → browser-BbIiSFKr.js} +1 -1
- package/payload/server/public/assets/{calendar-tGWvFyFn.js → calendar-BvxeTHvQ.js} +1 -1
- package/payload/server/public/assets/chat-DUKxufRk.js +1 -0
- package/payload/server/public/assets/chevron-left-BtfJD6LL.js +1 -0
- package/payload/server/public/assets/data-hl1wa-Ax.js +1 -0
- package/payload/server/public/assets/{graph-zEw610xK.js → graph-CDSGRoeb.js} +1 -1
- package/payload/server/public/assets/graph-labels-C5qLwnWA.js +1 -0
- package/payload/server/public/assets/{maximize-2-BlTjXT_Y.js → maximize-2-CAzH8dED.js} +1 -1
- package/payload/server/public/assets/{operator-C7oIw2PG.js → operator-BK7r8DAB.js} +1 -1
- package/payload/server/public/assets/{page-CTP7OFZa.js → page-B5YngOrK.js} +1 -1
- package/payload/server/public/assets/{page-DL6Zsdvk.js → page-BsCS0Dmc.js} +1 -1
- package/payload/server/public/assets/{public-r1A9dqR_.js → public-C1Pz-IBs.js} +1 -1
- package/payload/server/public/assets/{rotate-ccw-CzkkKx4-.js → rotate-ccw-UDln4Tou.js} +1 -1
- package/payload/server/public/assets/tasks-B-cLsn3p.js +1 -0
- package/payload/server/public/assets/{time-entry-format-j669DgXj.js → time-entry-format-DPOBIE18.js} +1 -1
- package/payload/server/public/assets/{triangle-alert-BPgCgIef.js → triangle-alert-Dz-CZKo5.js} +1 -1
- package/payload/server/public/assets/{useCopyFeedback-BmLa2aes.js → useCopyFeedback-wtUHGohk.js} +1 -1
- package/payload/server/public/assets/{useSelectionMode-DnnM7A8-.js → useSelectionMode-sph7AQT5.js} +1 -1
- package/payload/server/public/assets/useSubAccountSwitcher-BRIluIKf.css +1 -0
- package/payload/server/public/assets/{useVoiceRecorder-u2dwZfen.js → useVoiceRecorder-DN4jYQ0A.js} +1 -1
- package/payload/server/public/brand-defaults.css +1 -0
- package/payload/server/public/browser.html +5 -5
- package/payload/server/public/calendar.html +6 -6
- package/payload/server/public/chat.html +12 -12
- package/payload/server/public/data.html +11 -11
- package/payload/server/public/graph.html +11 -11
- package/payload/server/public/index.html +14 -14
- package/payload/server/public/operator.html +14 -14
- package/payload/server/public/privacy.html +1 -0
- package/payload/server/public/public.html +12 -12
- package/payload/server/public/tasks.html +6 -5
- package/payload/server/public/vnc-popout.html +1 -0
- package/payload/server/server.js +894 -384
- package/payload/server/{src-JYPKMWJR.js → src-XQ63FPRE.js} +3 -1
- package/payload/server/public/assets/AdminShell-BwSaZ88d.js +0 -2
- package/payload/server/public/assets/Checkbox-CN4uQ80w.js +0 -1
- package/payload/server/public/assets/activity-CIQ8ozNZ.js +0 -1
- package/payload/server/public/assets/chat-DkttVxAz.js +0 -1
- package/payload/server/public/assets/chevron-left-CZ4ez9G5.js +0 -1
- package/payload/server/public/assets/data-P-mcmnNi.js +0 -1
- package/payload/server/public/assets/graph-labels-qnBleOE6.js +0 -1
- package/payload/server/public/assets/tasks-fIJwYFWG.js +0 -1
- package/payload/server/public/assets/useSubAccountSwitcher-C_E8h07P.css +0 -1
- /package/payload/server/public/assets/{useSubAccountSwitcher-CFa6ZAT1.js → useSubAccountSwitcher-v8LyBzZN.js} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,S as n,_ as r,a as i,c as a,d as o,l as s,n as c,o as l,r as u,s as d,t as f,w as p}from"./useSubAccountSwitcher-CFa6ZAT1.js";import{S as m,T as h,n as ee,r as g,s as _,w as v,x as te}from"./useVoiceRecorder-u2dwZfen.js";import{t as y}from"./chevron-left-CZ4ez9G5.js";import{a as b,c as x,d as ne,f as S,h as C,i as re,l as w,m as T,n as ie,o as E,p as D,r as ae}from"./useSelectionMode-DnnM7A8-.js";import{i as O,t as k}from"./graph-labels-qnBleOE6.js";import{t as A}from"./triangle-alert-BPgCgIef.js";var oe=r(`arrow-left`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),se=r(`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`}]]),ce=r(`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`}]]),le=r(`folder`,[[`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`}]]),ue=r(`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`}]]),de=r(`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`}]]),fe=r(`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`}]]),pe=r(`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`}]]),j=r(`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`}]]),me=r(`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`}]]),he=r(`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`}]]),M=r(`user`,[[`path`,{d:`M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2`,key:`975kel`}],[`circle`,{cx:`12`,cy:`7`,r:`4`,key:`17ys0d`}]]),N=e(t(),1);function ge(){let[e,t]=(0,N.useState)([]),[n,r]=(0,N.useState)(!1),[i,a]=(0,N.useState)(null),o=(0,N.useRef)(null),s=(0,N.useCallback)(e=>{a(null);let n=e.find(e=>!g(e.type,h));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>v);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,N.useCallback)(()=>{t([]),a(null)},[]),removeFile:(0,N.useCallback)(e=>{t(t=>t.filter((t,n)=>n!==e))},[]),onDragOver:(0,N.useCallback)(e=>{e.preventDefault(),r(!0)},[]),onDragLeave:(0,N.useCallback)(()=>{r(!1)},[]),onDrop:(0,N.useCallback)(e=>{e.preventDefault(),r(!1),s([...e.dataTransfer.files])},[s])}}var P=[[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 _e(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 F=n();function I({onSelect:e}){return(0,F.jsx)(`div`,{className:`wa-emoji-popover`,role:`menu`,"aria-label":`Emoji picker`,children:P.map((t,n)=>(0,F.jsx)(`button`,{type:`button`,role:`menuitem`,className:`wa-emoji-item`,onClick:()=>e(t),children:t},n))})}function ve({sessionKey:e,onPick:t,onClose:n}){let[r,a]=(0,N.useState)(``),[o,s]=(0,N.useState)(null),[c,l]=(0,N.useState)(null),[u,d]=(0,N.useState)(!1),f=(0,N.useCallback)(t=>{d(!0),l(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=>{s(e),a(e.path===`.`?``:e.path)}).catch(e=>l(e instanceof Error?e.message:String(e))).finally(()=>d(!1))},[e]);(0,N.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,F.jsx)(`div`,{className:`wa-picker-backdrop`,role:`dialog`,"aria-label":`Choose a device file`,onClick:n,children:(0,F.jsxs)(`div`,{className:`wa-picker`,onClick:e=>e.stopPropagation(),children:[(0,F.jsxs)(`div`,{className:`wa-picker-head`,children:[r&&(0,F.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:m,"aria-label":`Up one folder`,children:(0,F.jsx)(y,{size:18})}),(0,F.jsx)(`span`,{className:`wa-picker-title`,children:r||`Device storage`}),(0,F.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:n,"aria-label":`Close file picker`,children:(0,F.jsx)(i,{size:18})})]}),c&&(0,F.jsx)(`p`,{className:`wa-picker-error`,role:`alert`,children:c}),u&&(0,F.jsx)(`p`,{className:`wa-picker-empty`,children:`Loading…`}),o&&!u&&(0,F.jsxs)(`ul`,{className:`wa-picker-list`,children:[o.entries.length===0&&(0,F.jsx)(`li`,{className:`wa-picker-empty`,children:`This folder is empty.`}),o.entries.map(e=>(0,F.jsx)(`li`,{children:e.kind===`directory`?(0,F.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>p(e.name),children:[(0,F.jsx)(le,{size:16,"aria-hidden":!0}),(0,F.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):e.kind===`file`?(0,F.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>h(e),children:[(0,F.jsx)(T,{size:16,"aria-hidden":!0}),(0,F.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):null},e.name))]})]})})}function ye(e){return`${Math.floor(e/60)}:${String(e%60).padStart(2,`0`)}`}function be({accountId:e,remoteJid:t,sessionKey:n,replyTo:r,onClearReply:a}){let[o,s]=(0,N.useState)(``),[c,u]=(0,N.useState)(!1),[f,p]=(0,N.useState)(null),[h,g]=(0,N.useState)(!1),[_,v]=(0,N.useState)(!1),[y,b]=(0,N.useState)(!1),[x,ne]=(0,N.useState)([]),S=(0,N.useRef)(null),{pendingFiles:C,attachError:re,addFiles:w,removeFile:ie,clearFiles:E}=ge(),{state:ae,elapsedSeconds:O,errorMessage:k,start:A,send:oe,discard:se}=ee(),ce=ae===`recording`||ae===`paused`,le=(0,N.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=start ms=0`),A()},[A]),de=(0,N.useCallback)(async()=>{let e=O*1e3,t=await oe();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`;w([new File([t],`voice-note${e}`,{type:t.type})])}},[O,oe,w]),fe=(0,N.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=cancel ms=${O*1e3}`),se()},[O,se]),pe=(0,N.useRef)(!1),he=()=>Math.round((typeof window>`u`?900:window.innerHeight)/3),[M,P]=(0,N.useState)(null),[be,L]=(0,N.useState)(null),xe=(0,N.useRef)(null),R=(0,N.useRef)(44),z=(0,N.useCallback)(e=>{let t=xe.current;if(!t)return;t.moved=!0;let n=Math.min(he(),Math.max(44,t.startH+(t.startY-e.clientY)));R.current=n,P(n)},[]),B=(0,N.useCallback)(()=>{let e=xe.current?.moved??!1;xe.current=null,window.removeEventListener(`pointermove`,z),window.removeEventListener(`pointerup`,B),e&&console.info(`[operator-ui] op=wa-composer-resize mode=drag h=${R.current}`)},[z]),Se=(0,N.useCallback)(e=>{xe.current={startY:e.clientY,startH:S.current?.offsetHeight??44,moved:!1},window.addEventListener(`pointermove`,z),window.addEventListener(`pointerup`,B),e.preventDefault()},[z,B]),V=(0,N.useCallback)(e=>{let t=M??S.current?.offsetHeight??44,n=null;e.key===`ArrowUp`?(e.preventDefault(),n=Math.min(he(),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}`))},[M]),Ce=(0,N.useRef)(``);(0,N.useEffect)(()=>{let e=S.current;if(!e)return;let t=Ce.current!==``&&o===``;if(Ce.current=o,M!==null){t&&P(null);return}let n=e.style.height;e.style.height=`auto`;let r=Math.min(he(),Math.max(44,e.scrollHeight));e.style.height=n,L(r)},[o,M]);let we=(o.trim().length>0||C.length>0||x.length>0)&&!c,Te=(0,N.useCallback)(async()=>{if(!pe.current&&!(o.trim().length===0&&C.length===0&&x.length===0)){pe.current=!0,u(!0),p(null);try{let i=`/api/whatsapp-reader/reply?session_key=${encodeURIComponent(n)}`,c;if(C.length>0||x.length>0){let n=new FormData;n.append(`accountId`,e),n.append(`remoteJid`,t),o.trim()&&n.append(`text`,o);for(let e of C)n.append(`files`,e);for(let e of x)n.append(`fileRefs`,e.path);r&&n.append(`quotedId`,r.msgKeyId),c=await fetch(i,{method:`POST`,body:n})}else c=await fetch(i,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({accountId:e,remoteJid:t,text:o,...r?{quotedId:r.msgKeyId}:{}})});let l=await c.json().catch(()=>({}));if(!c.ok){p(l.error??`Send failed.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${l.error??`unknown`}`);return}s(``),E(),ne([]),a?.(),console.info(`[operator-ui] op=reply-sent remoteJid=${t} sent=${l.sent??0}`)}catch(e){p(`Could not reach the server. Try again.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${String(e)}`)}finally{pe.current=!1,u(!1)}}},[o,C,x,r,a,e,t,n,E]),Ee=(0,N.useCallback)(e=>{let t=S.current,{value:n,caret:r}=_e(o,e,t?t.selectionStart:null,t?t.selectionEnd:null);s(n),g(!1),requestAnimationFrame(()=>{let e=S.current;e&&(e.focus(),e.setSelectionRange(r,r))})},[o]),De=e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),we&&Te())},H=e=>e.dataTransfer.types.includes(`Files`),Oe=(0,N.useCallback)(e=>{H(e)&&(e.preventDefault(),b(!0))},[]),ke=(0,N.useCallback)(()=>b(!1),[]),Ae=(0,N.useCallback)(e=>{if(!H(e))return;e.preventDefault(),b(!1);let t=[...e.dataTransfer.files];if(t.length===0)return;let n=Math.max(0,C.length+t.length-5);console.info(`[operator-ui] op=composer-drop count=${t.length} rejected=${n}`),w(t)},[C.length,w]),je=e=>e.startsWith(`image/`)?(0,F.jsx)(ue,{size:14}):e===`application/pdf`?(0,F.jsx)(T,{size:14}):(0,F.jsx)(m,{size:14});return(0,F.jsxs)(`div`,{className:`wa-reply${y?` wa-reply-drag-over`:``}`,onDragOver:Oe,onDragLeave:ke,onDrop:Ae,children:[_&&(0,F.jsx)(ve,{sessionKey:n,onPick:e=>{ne(t=>[...t,e].slice(0,5)),v(!1)},onClose:()=>v(!1)}),h&&(0,F.jsx)(I,{onSelect:Ee}),f&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:f}),re&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:re}),ae===`error`&&k&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:k}),(C.length>0||x.length>0)&&(0,F.jsxs)(`div`,{className:`wa-reply-attachments`,children:[C.map((e,t)=>(0,F.jsxs)(`div`,{className:`wa-reply-chip`,children:[je(e.type),(0,F.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,F.jsx)(`button`,{type:`button`,onClick:()=>ie(t),"aria-label":`Remove ${e.name}`,children:(0,F.jsx)(i,{size:12})})]},`f-${t}`)),x.map((e,t)=>(0,F.jsxs)(`div`,{className:`wa-reply-chip wa-reply-chip-ref`,children:[(0,F.jsx)(T,{size:14}),(0,F.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,F.jsx)(`button`,{type:`button`,onClick:()=>ne(e=>e.filter((e,n)=>n!==t)),"aria-label":`Remove ${e.name}`,children:(0,F.jsx)(i,{size:12})})]},`r-${t}`))]}),r&&(0,F.jsxs)(`div`,{className:`wa-reply-quote`,children:[(0,F.jsxs)(`div`,{className:`wa-reply-quote-body`,children:[(0,F.jsx)(`span`,{className:`wa-reply-quote-who`,children:r.fromMe?`You`:r.senderName??`Contact`}),(0,F.jsx)(`span`,{className:`wa-reply-quote-text`,children:r.body||`Message`})]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-quote-cancel`,onClick:()=>a?.(),"aria-label":`Cancel reply`,children:(0,F.jsx)(i,{size:14})})]}),!ce&&(0,F.jsx)(`div`,{className:`wa-reply-resize-handle`,role:`separator`,"aria-orientation":`horizontal`,"aria-label":`Resize input — drag up to enlarge`,tabIndex:0,onPointerDown:Se,onKeyDown:V}),(0,F.jsx)(`div`,{className:`wa-reply-row`,children:ce?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:fe,"aria-label":`Cancel recording`,children:(0,F.jsx)(l,{size:20})}),(0,F.jsxs)(`span`,{className:`wa-rec-live`,role:`status`,children:[(0,F.jsx)(`span`,{className:`wa-rec-dot`,"aria-hidden":!0}),ye(O)]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void de(),"aria-label":`Stop recording`,children:(0,F.jsx)(d,{size:20})})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-emoji`,onClick:()=>g(e=>!e),disabled:c,"aria-label":`Emoji`,"aria-expanded":h,children:(0,F.jsx)(me,{size:22})}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:()=>v(!0),disabled:c,"aria-label":`Attach files`,children:(0,F.jsx)(D,{size:22})}),(0,F.jsx)(`textarea`,{ref:S,className:`wa-reply-input`,value:o,rows:1,style:{height:`${M??be??44}px`},placeholder:`Type a message`,disabled:c,onChange:e=>s(e.target.value),onKeyDown:De}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-mic`,onClick:()=>void le(),disabled:c,"aria-label":`Record voice note`,children:(0,F.jsx)(te,{size:22})}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void Te(),disabled:!we,"aria-label":`Send`,children:(0,F.jsx)(j,{size:20})})]})})]})}function L({accountId:e,remoteJid:t,contactName:n,sessionKey:r,onBack:a}){let o=w(t),s=t.split(`@`)[0],c=o?`Group`:n===`+${s}`?void 0:`+${s}`,[l,u]=(0,N.useState)(!1),[d,f]=(0,N.useState)(``),p=()=>{u(!1),f(``)},[m,h]=(0,N.useState)(null);return(0,F.jsxs)(`div`,{className:`wa-web`,children:[(0,F.jsxs)(`header`,{className:`wa-web-header`,children:[a&&(0,F.jsx)(`button`,{type:`button`,className:`wa-web-back`,onClick:a,"aria-label":`Back`,children:(0,F.jsx)(y,{size:20})}),(0,F.jsx)(`span`,{className:`wa-web-avatar`,"aria-hidden":!0,children:(0,F.jsx)(M,{size:20})}),l?(0,F.jsxs)(`div`,{className:`wa-web-search`,children:[(0,F.jsx)(O,{size:18,"aria-hidden":!0}),(0,F.jsx)(`input`,{className:`wa-web-search-input`,type:`text`,autoFocus:!0,placeholder:`Search messages`,"aria-label":`Search messages`,value:d,onChange:e=>f(e.target.value),onKeyDown:e=>{e.key===`Escape`&&p()}}),(0,F.jsx)(`button`,{type:`button`,className:`wa-web-search-close`,onClick:p,"aria-label":`Close search`,children:(0,F.jsx)(i,{size:18})})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`wa-web-titles`,children:[(0,F.jsx)(`span`,{className:`wa-web-name`,children:n}),c&&(0,F.jsx)(`span`,{className:`wa-web-subtitle`,children:c})]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-web-search-toggle`,onClick:()=>u(!0),"aria-label":`Search messages`,children:(0,F.jsx)(O,{size:20})})]})]}),(0,F.jsx)(`div`,{className:`wa-web-body`,children:(0,F.jsx)(_,{sessionId:``,projectDir:``,sessionKey:r,forceDeliveredOnly:!0,suppressDirectives:!0,store:{accountId:e,remoteJid:t},search:l?d:void 0,onReplyTo:o?void 0:h})}),o?(0,F.jsx)(`p`,{className:`wa-reply wa-reply-readonly`,children:`Group messages are read-only.`}):(0,F.jsx)(be,{accountId:e,remoteJid:t,sessionKey:r,replyTo:m,onClearReply:()=>h(null)})]})}function xe(e){let t=new Set,n=[];for(let r of e)for(let e of r.labels)e&&(t.has(e)||k.has(e)&&(t.add(e),n.push(e)));return n}function R(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 z({conversations:e,sessionKey:t,onBack:n}){let[r,i]=(0,N.useState)(null),a=b(e);return r?r.source===`store`&&r.accountId&&r.remoteJid?(0,F.jsx)(L,{accountId:r.accountId,remoteJid:r.remoteJid,contactName:E(r),sessionKey:t,onBack:()=>i(null)},x(r)):(0,F.jsxs)(`div`,{className:`op-conv op-conv-reader`,children:[(0,F.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:()=>i(null),"aria-label":`Back to conversations`,children:[(0,F.jsx)(y,{size:16}),` Back`]}),(0,F.jsx)(`span`,{className:`op-conv-title`,children:E(r)})]}),(0,F.jsx)(_,{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},x(r))]}):(0,F.jsxs)(`div`,{className:`op-conv op-conv-list`,children:[(0,F.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:n,"aria-label":`Back to chat`,children:[(0,F.jsx)(y,{size:16}),` Chat`]}),(0,F.jsx)(`span`,{className:`op-conv-title`,children:`Conversations`})]}),a.map(e=>(0,F.jsxs)(`div`,{className:`op-conv-group`,children:[(0,F.jsxs)(`div`,{className:`op-conv-group-head`,children:[(0,F.jsx)(ne,{channel:e.channel,size:14}),e.label]}),e.rows.map(e=>(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-row`,onClick:()=>{console.info(`[operator-ui] op=reader-open channel=${e.channel} key=${x(e)} readonly=true source=${e.source}`),i(e)},children:[(0,F.jsx)(`span`,{className:`op-conv-name`,children:E(e)}),e.modelGated&&(0,F.jsx)(`span`,{className:`op-conv-gated`,role:`img`,"aria-label":`Model unavailable`,children:(0,F.jsx)(A,{size:13})}),(0,F.jsx)(`span`,{className:`op-conv-when`,children:R(e.lastMessageAt)})]},x(e)))]},e.channel))]})}var B=/\.(png|jpe?g|gif|webp|svg)$/i;function Se(e){return B.test(e)}function V(e){return e.entryPath??e.name}var Ce=`maxy-data-view`,we=95*1024*1024,Te=48*1024*1024;function Ee(){return typeof window>`u`?`list`:window.localStorage.getItem(Ce)===`grid`?`grid`:`list`}function De(){let[e,t]=(0,N.useState)(null),[n,r]=(0,N.useState)(!1);return(0,N.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,F.jsx)(u,{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,F.jsx)(`div`,{className:`data-page data-page-full`,children:(0,F.jsx)(H,{cacheKey:e})})}):(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsxs)(`div`,{className:`data-empty`,children:[(0,F.jsx)(`p`,{children:`You are not signed in.`}),(0,F.jsxs)(`p`,{children:[`Open the `,(0,F.jsx)(`a`,{href:`/`,className:`data-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsxs)(`div`,{className:`data-loading`,children:[(0,F.jsx)(o,{size:18,className:`spin`}),` Loading…`]})})}function H({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=p({initialCacheKey:e,surface:`data`});return(0,F.jsx)(Fe,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})}function Oe(){if(typeof window>`u`)return`.`;let e=new URLSearchParams(window.location.hash.replace(/^#/,``)).get(`path`);return e&&e.length>0?e:`.`}function ke(e){if(typeof window>`u`)return;let t=new URL(window.location.href);t.hash=e===`.`?``:`path=${encodeURIComponent(e)}`,window.history.replaceState(window.history.state,``,t.toString())}function Ae(e){return new Promise((t,n)=>{let r=[],i=()=>e.readEntries(e=>{e.length===0?t(r):(r.push(...e),i())},n);i()})}function je(e){return new Promise((t,n)=>e.file(t,n))}async function Me(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 je(r),relpath:e});else if(r.isDirectory){let t=await Ae(r.createReader());n.push(...await Me(t,e))}}return n}function Ne(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 Pe({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){let[r,c]=(0,N.useState)(``),u=(0,N.useRef)(null),[d,f]=(0,N.useState)(``),[p,m]=(0,N.useState)(null),[h,ee]=(0,N.useState)(`hybrid`),[g,_]=(0,N.useState)(!1),[v,te]=(0,N.useState)(null),[y,b]=(0,N.useState)(null),[x,ne]=(0,N.useState)(0),[w,E]=(0,N.useState)(!1),[D,k]=(0,N.useState)(()=>Oe()),[A,ue]=(0,N.useState)(null),[j,me]=(0,N.useState)(()=>Ee()),[M,ge]=(0,N.useState)(null),[P,_e]=(0,N.useState)([]),[I,ve]=(0,N.useState)(!1),[ye,be]=(0,N.useState)(null),[L,R]=(0,N.useState)(!1),[z,B]=(0,N.useState)(null),[De,H]=(0,N.useState)(null),[Ae,je]=(0,N.useState)(null),[Pe,Fe]=(0,N.useState)(!1),[Ie,ze]=(0,N.useState)(null),Be=(0,N.useRef)(null),[Ve,U]=(0,N.useState)(0),[We,Ge]=(0,N.useState)(!1),[Ke,qe]=(0,N.useState)(``),[Je,Ye]=(0,N.useState)(null),[Xe,Ze]=(0,N.useState)(``),[Qe,$e]=(0,N.useState)(null),W=(()=>{let e=D===`.`?[]:D.split(`/`).filter(Boolean);return e.length>=2&&e[0]===`accounts`})(),[et,tt]=(0,N.useState)(!1),nt=(0,N.useRef)(null),[rt,G]=(0,N.useState)(!1),it=(0,N.useRef)(null);(0,N.useEffect)(()=>{let e=r.trim();if(!e){f(``),m(null),te(null);return}E(!1);let t=setTimeout(()=>f(e),300);return()=>clearTimeout(t)},[r]),(0,N.useEffect)(()=>{if(!d){_(!1);return}let t=!1;return _(!0),te(null),e(`/api/admin/graph-search?q=${encodeURIComponent(d)}&labels=FileArtifact&limit=20${w?`&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||(m(e.results),ee(e.mode??`hybrid`),ne(typeof e.suppressed==`number`?e.suppressed:0))}).catch(e=>{t||te(e instanceof Error?e.message:String(e))}).finally(()=>{t||_(!1)}),()=>{t=!0}},[d,e,n,w]);let at=(0,N.useMemo)(()=>p?xe(p):[],[p]),K=y&&at.includes(y)?y:null,ot=(0,N.useMemo)(()=>p?K?p.filter(e=>e.labels.includes(K)):p:null,[p,K]),st=(0,N.useCallback)(e=>{let n=e.properties.relativePath;if(typeof n!=`string`||n.length===0)return;let r=`/api/admin/files/download?session_key=${encodeURIComponent(t)}&path=${encodeURIComponent(n)}`,i=document.createElement(`a`);i.href=r,i.rel=`noopener noreferrer`,document.body.appendChild(i),i.click(),i.remove()},[t]);(0,N.useEffect)(()=>{if(!p)return;let e=p.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(`,`)}`)},[p]),(0,N.useEffect)(()=>{let t=!1;return ve(!0),be(null),e(`/api/admin/files?path=${encodeURIComponent(D===`.`?``:D)}`).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||(ue(e.entries),_e(e.displayPath??[]))}).catch(e=>{t||(ue([]),_e([]),be(e instanceof Error?e.message:String(e)))}).finally(()=>{t||ve(!1)}),()=>{t=!0}},[e,D,Ve,n]),(0,N.useEffect)(()=>{ke(D)},[D]);let ct=(0,N.useCallback)(()=>{U(e=>e+1)},[]),q=(0,N.useCallback)(e=>{tt(!1),k(e)},[]),lt=(0,N.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(``),te(null),b(null),q(r)},[q]),ut=(0,N.useCallback)(()=>{if(D===`.`||D===``)return;let e=D.split(`/`).filter(Boolean);e.pop(),k(e.length===0?`.`:e.join(`/`))},[D]),dt=(0,N.useCallback)(e=>{ae(t,D===`.`?V(e):`${D}/${V(e)}`)},[D,t]),[J,ft]=(0,N.useState)(!1),[Y,pt]=(0,N.useState)(new Set),mt=(0,N.useRef)(null),X=(0,N.useRef)(!1),ht=typeof navigator<`u`&&typeof navigator.share==`function`&&typeof navigator.canShare==`function`,gt=(0,N.useCallback)(e=>{ft(!0),pt(new Set([e])),console.info(`[data-ui] op=select-enter count=1`)},[]),Z=(0,N.useCallback)(e=>{ft(!1),pt(new Set),console.info(`[data-ui] op=select-exit reason=${e}`)},[]),Q=(0,N.useCallback)(e=>{pt(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]),_t=(0,N.useCallback)(e=>{X.current=!1,mt.current=setTimeout(()=>{X.current=!0,gt(e)},500)},[gt]),$=(0,N.useCallback)(()=>{mt.current&&=(clearTimeout(mt.current),null)},[]),vt=(0,N.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}dt(e)},[J,Q,dt]),yt=(0,N.useCallback)(e=>{me(e),typeof window<`u`&&window.localStorage.setItem(Ce,e),console.info(`[data] op=view-mode mode=${e}`)},[]),bt=(0,N.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}ge({src:ie(t,D===`.`?V(e):`${D}/${V(e)}`),alt:e.displayName??e.name})},[J,Q,D,t]),xt=(0,N.useCallback)(()=>(A??[]).filter(e=>e.kind===`file`&&Y.has(e.name)),[A,Y]),St=(0,N.useCallback)(()=>{if(Y.size!==1)return null;let e=(A??[]).find(e=>Y.has(e.name));return e&&!e.entryPath?e:null},[A,Y]),Ct=(0,N.useCallback)(()=>(A??[]).filter(e=>(e.kind===`file`||e.kind===`directory`)&&Y.has(e.name)),[A,Y]),wt=(0,N.useCallback)(()=>{let e=Ct(),n=e.some(e=>e.kind===`directory`);e.length===1&&!n?dt(e[0]):e.length>=1&&re(t,e.map(e=>D===`.`?V(e):`${D}/${V(e)}`)),Z(`action`)},[Ct,dt,D,t,Z]),Tt=(0,N.useCallback)(async()=>{let t=xt(),n=t.filter(e=>!e.protected),r=t.length-n.length;ze(r>0?`${r} protected file(s) kept`:null);for(let t of n){let n=D===`.`?V(t):`${D}/${V(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){ze(e instanceof Error?e.message:String(e))}}U(e=>e+1),Z(`action`)},[xt,D,e,Z]),Et=(0,N.useCallback)(async()=>{let e=xt();if(console.info(`[data-ui] op=share supported=${ht} count=${e.length}`),ht)try{let n=await Promise.all(e.map(async e=>{let n=D===`.`?V(e):`${D}/${V(e)}`,r=`/api/admin/files/download?session_key=${encodeURIComponent(t)}&path=${encodeURIComponent(n)}`,i=await(await fetch(r)).blob();return new File([i],e.displayName??e.name,{type:i.type||`application/octet-stream`})}));navigator.canShare({files:n})&&await navigator.share({files:n})}catch(e){console.warn(`[data-ui] op=share-failed err=${e instanceof Error?e.message:String(e)}`)}},[xt,ht,D,t]),Dt=(0,N.useCallback)(()=>{Be.current?.click()},[]),Ot=(0,N.useCallback)((e,n={})=>{let r=(r,i,a)=>{let o=new URLSearchParams({session_key:t,path:D===`.`?``:D,filename:e.name});n.relpath&&o.set(`relpath`,n.relpath),n.token&&o.set(`token`,n.token);for(let[e,t]of Object.entries(i))o.set(e,t);return new Promise(t=>{let n=new XMLHttpRequest;n.open(`POST`,`/api/admin/files/upload?${o.toString()}`),n.setRequestHeader(`Content-Type`,e.type||`application/octet-stream`),a&&(n.upload.onprogress=e=>{e.lengthComputable&&a(e.loaded)}),n.onload=()=>{let e={};try{e=JSON.parse(n.responseText)}catch{}t({status:n.status,data:e})},n.onerror=()=>t({status:0,data:{}}),n.onabort=()=>t({status:0,data:{error:`aborted`}}),n.send(r)})};if(e.size<=we)return r(e,{},t=>n.onProgress?.(t,e.size));let i=`${Date.now().toString(36)}-${Math.random().toString(16).slice(2,10)}`,a=Math.ceil(e.size/Te);return(async()=>{let t={status:0,data:{}};for(let o=0;o<a;o++){let s=o*Te;if(t=await r(e.slice(s,Math.min(s+Te,e.size)),{uploadId:i,seq:String(o),total:String(a)},t=>n.onProgress?.(s+t,e.size)),!(t.status>=200&&t.status<300))return t}return t})()},[t,D]),kt=(0,N.useCallback)(async e=>{H(null),R(!0),B({loaded:0,total:e.size});try{let{status:t,data:n}=await Ot(e,{onProgress:(e,t)=>B({loaded:e,total:t})});t>=200&&t<300&&n.path?(k(n.path.split(`/`).slice(0,-1).join(`/`)||`.`),U(e=>e+1)):H(t===0?`Network error during upload — the connection failed before the server responded.`:n.error??`Upload failed (HTTP ${t}).`)}finally{R(!1),B(null),Be.current&&(Be.current.value=``)}},[Ot]),At=(0,N.useCallback)(e=>{W&&Array.from(e.dataTransfer.types).includes(`Files`)&&(e.preventDefault(),Fe(!0))},[W]),jt=(0,N.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||Fe(!1)},[]),Mt=(0,N.useCallback)(async e=>{e.preventDefault(),Fe(!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(!W){console.info(`[data-ui] op=drop-rejected token=${t} reason=no-write`),H(`Open a folder inside your account to upload`);return}let r=n.map(e=>e.webkitGetAsEntry?.()).filter(e=>!!e);R(!0),H(null),je(null);let i=performance.now();try{let e=await Me(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}`),B({loaded:0,total:r.size});let{status:a,data:c}=await Ot(r,{relpath:i,token:t,onProgress:(e,t)=>B({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`:Ne(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}`),je(`Uploaded ${o}, skipped ${s.length}${s.length?`: ${s.join(`, `)}`:``}`),U(e=>e+1)}catch(e){H(e instanceof Error?e.message:String(e))}finally{R(!1),B(null)}},[W,Ot]),Nt=(0,N.useCallback)(async()=>{let t=Ke.trim();if(t){$e(null);try{let n=await e(`/api/admin/files/folder`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:D===`.`?``:D,name:t})}),r=await n.json().catch(()=>({error:`HTTP ${n.status}`}));if(!n.ok)throw Error(r.error??`HTTP ${n.status}`);Ge(!1),qe(``),U(e=>e+1)}catch(e){$e(e instanceof Error?e.message:String(e))}}},[e,Ke,D]),Pt=(0,N.useCallback)(async()=>{if(!Je)return;let t=Xe.trim();if(!t)return;$e(null);let n=D===`.`?Je:`${D}/${Je}`;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}`);Ye(null),Ze(``),Z(`action`),U(e=>e+1)}catch(e){$e(e instanceof Error?e.message:String(e))}},[e,Xe,Je,D,Z]);(0,N.useEffect)(()=>{if(!et)return;let e=e=>{nt.current&&!nt.current.contains(e.target)&&tt(!1)},t=e=>{e.key===`Escape`&&tt(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[et]),(0,N.useEffect)(()=>{if(!rt)return;let e=e=>{it.current&&!it.current.contains(e.target)&&G(!1)},t=e=>{e.key===`Escape`&&G(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[rt]);let Ft=(0,N.useCallback)(e=>P.slice(0,e+1).map(e=>e.name).join(`/`),[P]),It=P.length>=2,Lt=It?[{name:`.`,label:`data`},...P.slice(0,P.length-2).map((e,t)=>({name:Ft(t),label:e.displayName??e.name}))]:[];return(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`data-toolbar`,children:[J?(0,F.jsxs)(`button`,{type:`button`,className:`data-select-cancel`,onClick:()=>Z(`cancel`),"aria-label":`Cancel selection`,children:[(0,F.jsx)(i,{size:14}),` Cancel`]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`data-search-input`,children:[r===``&&(0,F.jsx)(O,{size:14}),(0,F.jsx)(`input`,{ref:u,type:`text`,value:r,onChange:e=>c(e.target.value),autoFocus:!0,autoComplete:`off`,spellCheck:!1}),g&&(0,F.jsx)(o,{size:14,className:`spin`}),r!==``&&(0,F.jsx)(`button`,{type:`button`,className:`data-search-inline-btn`,onClick:()=>{c(``),u.current?.focus()},title:`Clear search`,"aria-label":`Clear search`,children:(0,F.jsx)(i,{size:14})})]}),(0,F.jsxs)(`div`,{className:`data-toolbar-actions`,ref:it,children:[(0,F.jsx)(`button`,{type:`button`,className:`data-action-overflow`,onClick:()=>G(e=>!e),"aria-haspopup":`menu`,"aria-expanded":rt,"aria-label":`File actions`,title:`File actions`,children:(0,F.jsx)(se,{size:16})}),(0,F.jsxs)(`div`,{className:`data-action-group`,role:`group`,"aria-label":`File actions`,"data-open":rt?`true`:void 0,children:[(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{ct(),G(!1)},disabled:I,title:`Refresh this folder`,"aria-label":`Refresh this folder`,children:[I?(0,F.jsx)(o,{size:16,className:`spin`}):(0,F.jsx)(S,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`Refresh`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Dt(),G(!1)},disabled:L||!W,title:W?`Upload a file`:`Open a folder inside your account to upload`,"aria-label":`Upload a file`,children:[L?z&&z.total>0?(0,F.jsxs)(`span`,{className:`data-upload-pct`,children:[Math.round(z.loaded/z.total*100),`%`]}):(0,F.jsx)(o,{size:16,className:`spin`}):(0,F.jsx)(he,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`Upload`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Ge(e=>!e),qe(``),$e(null),G(!1)},disabled:L||!W,title:W?`New folder`:`Open a folder inside your account to create one`,"aria-label":`New folder`,children:[(0,F.jsx)(ce,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`New folder`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{yt(j===`grid`?`list`:`grid`),G(!1)},title:j===`grid`?`List view`:`Grid view`,"aria-label":j===`grid`?`Switch to list view`:`Switch to grid view`,"aria-pressed":j===`grid`,children:[j===`grid`?(0,F.jsx)(fe,{size:16}):(0,F.jsx)(de,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:j===`grid`?`List view`:`Grid view`})]})]})]})]}),(0,F.jsxs)(`div`,{className:`data-breadcrumbs`,children:[D!==`.`&&(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost data-back-btn`,onClick:ut,title:`Up one level`,"aria-label":`Up one level`,children:(0,F.jsx)(oe,{size:14})}),It?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,ref:nt,children:[(0,F.jsx)(`button`,{type:`button`,className:`data-crumb data-crumb-ellipsis`,onClick:()=>tt(e=>!e),"aria-haspopup":`menu`,"aria-expanded":et,"aria-label":`Show parent folders`,title:`Show parent folders`,children:`…`}),et&&(0,F.jsx)(`div`,{className:`data-crumb-menu`,role:`menu`,children:Lt.map(e=>(0,F.jsx)(`button`,{type:`button`,role:`menuitem`,className:`data-crumb-menu-item`,onClick:()=>q(e.name),title:e.label,children:e.label},e.name))})]}),[P.length-2,P.length-1].map(e=>{let t=P[e];return(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,F.jsx)(`span`,{className:`data-crumb-sep`,children:`/`}),(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Ft(e)),title:t.name,children:t.displayName??t.name})]},Ft(e))})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(`.`),children:`data`}),P.map((e,t)=>(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,F.jsx)(`span`,{className:`data-crumb-sep`,children:`/`}),(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Ft(t)),title:e.name,children:e.displayName??e.name})]},Ft(t)))]})]}),We&&(0,F.jsxs)(`div`,{className:`data-inline-form`,children:[(0,F.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`Folder name`,value:Ke,autoFocus:!0,onChange:e=>qe(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Nt(),e.key===`Escape`&&Ge(!1)}}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Nt,children:`Create`}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>Ge(!1),children:`Cancel`})]}),Je&&(0,F.jsxs)(`div`,{className:`data-inline-form`,children:[(0,F.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`New name`,value:Xe,autoFocus:!0,onChange:e=>Ze(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Pt(),e.key===`Escape`&&Ye(null)}}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Pt,children:`Rename`}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>Ye(null),children:`Cancel`})]}),Qe&&(0,F.jsx)(`div`,{className:`data-error`,children:Qe}),(0,F.jsx)(`input`,{type:`file`,ref:Be,hidden:!0,onChange:e=>{let t=e.target.files?.[0];t&&kt(t)}})]}),(0,F.jsxs)(`div`,{className:`data-body`,"data-drag-active":Pe?`true`:void 0,onDragEnter:At,onDragOver:At,onDragLeave:jt,onDrop:Mt,children:[(v!==null||p!==null)&&(0,F.jsxs)(`section`,{className:`data-panel`,children:[v&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Search failed: `,v]}),at.length>0&&(0,F.jsx)(`div`,{className:`data-chip-row`,role:`group`,"aria-label":`Filter by type`,children:at.map(e=>{let t=e===K;return(0,F.jsx)(`button`,{type:`button`,className:`data-chip`,"data-active":t,onClick:()=>b(t?null:e),children:Re([e])??e},e)})}),p&&!g&&(0,F.jsxs)(`div`,{className:`data-results-meta`,children:[ot.length,` of `,p.length,` result`,p.length===1?``:`s`]}),p&&!g&&!K&&x>0&&!w&&(0,F.jsxs)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>E(!0),children:[x,` low-confidence result`,x===1?``:`s`,` hidden — show all`]}),p&&!g&&!K&&w&&(0,F.jsx)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>E(!1),children:`Showing all results — hide low-confidence`}),p&&p.length===0&&!g&&(0,F.jsx)(`div`,{className:`data-empty-results`,children:`No matches. Try a different keyword.`}),ot&&ot.length>0&&(0,F.jsx)(`ul`,{className:`data-results`,children:ot.map(e=>(0,F.jsx)(Le,{hit:e,mode:h,onDownload:st,onLocate:lt},e.nodeId))})]}),(0,F.jsxs)(`section`,{className:`data-panel`,children:[z&&(0,F.jsxs)(`div`,{className:`data-upload-progress`,role:`progressbar`,"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":z.total>0?Math.round(z.loaded/z.total*100):void 0,children:[(0,F.jsx)(`div`,{className:`data-upload-progress-track`,children:(0,F.jsx)(`div`,{className:`data-upload-progress-fill`,style:{width:`${z.total>0?Math.round(z.loaded/z.total*100):0}%`}})}),(0,F.jsxs)(`span`,{className:`data-upload-progress-label`,children:[`Uploading… `,z.total>0?`${Math.round(z.loaded/z.total*100)}%`:``]})]}),De&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Upload failed: `,De]}),Ae&&(0,F.jsx)(`div`,{className:`data-status`,children:Ae}),Ie&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Delete failed: `,Ie]}),ye&&(0,F.jsx)(`div`,{className:`data-error`,children:ye}),I&&(0,F.jsxs)(`div`,{className:`data-loading`,children:[(0,F.jsx)(o,{size:14,className:`spin`}),` Loading…`]}),!J&&!I&&A&&A.length>0&&(0,F.jsxs)(`div`,{className:`data-select-hint`,children:[(0,F.jsx)(pe,{size:13}),(0,F.jsx)(`span`,{children:`Press and hold a file to select, rename, or delete it.`})]}),!I&&A&&A.length===0&&!ye&&(0,F.jsx)(`div`,{className:`data-empty-results`,children:`Empty directory.`}),!I&&A&&A.length>0&&j===`grid`&&(0,F.jsx)(`ul`,{className:`data-grid`,children:A.map(e=>{let n=e.displayName??e.name,r=J&&Y.has(e.name);if(e.kind===`directory`)return(0,F.jsx)(`li`,{className:`data-grid-cell`,"data-selected":r?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-grid-tile`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(D===`.`?e.name:`${D}/${e.name}`)},children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsx)(le,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:n})]})},e.name);if(e.kind===`file`){let i=Se(V(e)),a=D===`.`?V(e):`${D}/${V(e)}`;return(0,F.jsx)(`li`,{className:`data-grid-cell`,"data-selected":r?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-grid-tile${i?` data-grid-tile-image`:``}`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>i?bt(e):vt(e),title:J?void 0:i?`Preview ${n}`:`Download ${n}`,children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),i?(0,F.jsx)(`img`,{className:`data-grid-thumb`,src:ie(t,a),alt:n,loading:`lazy`,onError:()=>console.warn(`[data] op=thumb-error path=${a}`)}):(0,F.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:n}),!i&&(0,F.jsx)(`span`,{className:`data-grid-sub`,children:He(e.sizeBytes)})]})},e.name)}return(0,F.jsx)(`li`,{className:`data-grid-cell`,children:(0,F.jsxs)(`div`,{className:`data-grid-tile data-entry-disabled`,children:[(0,F.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,children:n}),(0,F.jsx)(`span`,{className:`data-grid-sub`,children:`special`})]})},e.name)})}),!I&&A&&A.length>0&&j===`list`&&(0,F.jsx)(`ul`,{className:`data-entries`,children:A.map(e=>{let t=e.displayName??e.name;if(e.kind===`directory`){let n=J&&Y.has(e.name);return(0,F.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-entry-btn`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(D===`.`?e.name:`${D}/${e.name}`)},children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsx)(le,{size:14}),(0,F.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,F.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-entry-btn data-entry-file`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>vt(e),title:J?void 0:`Download ${t}`,children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsxs)(`span`,{className:`data-entry-text`,children:[(0,F.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t}),(0,F.jsxs)(`span`,{className:`data-entry-meta`,title:`Modified ${Ue(e.modifiedAt)}`,children:[He(e.sizeBytes),` · `,Ue(e.modifiedAt)]})]})]})},e.name)}return(0,F.jsx)(`li`,{className:`data-entry`,children:(0,F.jsx)(`div`,{className:`data-entry-btn data-entry-file data-entry-disabled`,children:(0,F.jsxs)(`span`,{className:`data-entry-text`,children:[(0,F.jsx)(`span`,{className:`data-entry-name`,children:t}),(0,F.jsx)(`span`,{className:`data-entry-meta`,children:`special`})]})})},e.name)})})]})]}),J&&(0,F.jsx)(`div`,{className:`data-select-bar`,role:`toolbar`,"aria-label":`Selection actions`,children:(0,F.jsxs)(`div`,{className:`data-select-bar-inner`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Et,disabled:!ht||Y.size===0,title:ht?`Share selected files`:`Sharing is not supported on this device`,children:[(0,F.jsx)(a,{size:16}),` Share`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:wt,disabled:Y.size===0,children:[(0,F.jsx)(C,{size:16}),` Download`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:()=>{let e=St();e&&(Ye(e.name),Ze(e.name))},disabled:!St(),children:[(0,F.jsx)(s,{size:16}),` Rename`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action data-select-delete`,onClick:Tt,disabled:Y.size===0,children:[(0,F.jsx)(l,{size:16}),` Delete`]})]})}),M&&(0,F.jsx)(`div`,{className:`chat-attachment-overlay`,role:`dialog`,"aria-label":M.alt,onClick:()=>ge(null),children:(0,F.jsx)(`img`,{className:`chat-attachment-overlay-image`,src:M.src,alt:M.alt})})]})}function Fe({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){(0,N.useEffect)(()=>{console.info(`[data-ui] op=mount header=operator home=absent`)},[]);let r=(0,N.useCallback)(()=>{try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},[]),i=(0,N.useCallback)(e=>{e===`chat`&&(window.location.href=`/`)},[]),[a,o]=(0,N.useState)([]),[s,l]=(0,N.useState)(`files`),{subAccounts:u,activeAccountId:d,switching:p,switchAccount:m}=f(t);return(0,N.useEffect)(()=>{if(!t)return;let e=!1;return fetch(`/api/whatsapp-reader/conversations?session_key=${encodeURIComponent(t)}`).then(e=>e.ok?e.json():{conversations:[]}).then(t=>{e||o(t.conversations??[])}).catch(()=>{}),()=>{e=!0}},[t]),(0,F.jsxs)(`main`,{className:`data-main`,children:[(0,F.jsx)(c,{variant:`operator`,onNavigate:i,onOpenConversations:a.length>0?()=>l(`conversations`):void 0,onToggleSidebar:()=>{},sidebarOpen:!1,onLogout:r,onDisconnect:async()=>!0,disconnecting:!1,subAccounts:u,activeAccountId:d,switchingAccount:p,onSwitchAccount:m}),s===`conversations`?(0,F.jsx)(z,{conversations:a,sessionKey:t,onBack:()=>l(`files`)}):(0,F.jsx)(Pe,{adminFetch:e,cacheKey:t,sessionRefetchNonce:n})]})}function Ie({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=p({initialCacheKey:e,surface:`data`});return(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsx)(`main`,{className:`data-main`,children:(0,F.jsx)(Pe,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})})})}function Le({hit:e,mode:t,onDownload:n,onLocate:r}){let i=ze(e.properties),a=Be(e.properties),o=Re(e.labels),s=Ve(e.properties),[c,l]=(0,N.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,F.jsxs)(`li`,{className:`data-result`,children:[(0,F.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,F.jsx)(`div`,{className:`data-result-header`,children:(0,F.jsx)(`span`,{className:`data-result-labels`,children:o})}),i&&(0,F.jsx)(`div`,{className:`data-result-title`,children:i}),a&&(0,F.jsx)(`pre`,{className:`data-result-body`,children:d}),(0,F.jsxs)(`div`,{className:`data-result-scores`,children:[s&&(0,F.jsxs)(`span`,{className:`data-result-updated`,children:[`Updated `,Ue(s),` · `]}),f]})]}),m&&(0,F.jsxs)(`button`,{type:`button`,className:`data-result-locate`,onClick:()=>r(e),title:`Locate in ${ee}`,"aria-label":`Locate in ${ee}`,children:[(0,F.jsx)(le,{size:12}),ee]}),u&&(0,F.jsx)(`button`,{type:`button`,className:`data-result-toggle`,onClick:()=>l(e=>!e),children:c?`Show less`:`Show more`})]})}function Re(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 ze(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 Be(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 Ve(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 He(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 Ue(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{Ie as n,L as r,De as t};
|
|
1
|
+
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,S as n,_ as r,a as i,c as a,d as o,l as s,n as c,o as l,r as u,s as d,t as f,w as p}from"./useSubAccountSwitcher-v8LyBzZN.js";import{S as m,T as h,n as ee,r as g,s as _,w as v,x as te}from"./useVoiceRecorder-DN4jYQ0A.js";import{t as y}from"./chevron-left-BtfJD6LL.js";import{a as b,c as x,d as ne,f as S,h as C,i as re,l as w,m as T,n as ie,o as E,p as D,r as ae}from"./useSelectionMode-sph7AQT5.js";import{i as O,t as k}from"./graph-labels-C5qLwnWA.js";import{t as A}from"./triangle-alert-Dz-CZKo5.js";var oe=r(`arrow-left`,[[`path`,{d:`m12 19-7-7 7-7`,key:`1l729n`}],[`path`,{d:`M19 12H5`,key:`x3x0zl`}]]),se=r(`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`}]]),ce=r(`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`}]]),le=r(`folder`,[[`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`}]]),ue=r(`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`}]]),de=r(`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`}]]),fe=r(`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`}]]),pe=r(`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`}]]),j=r(`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`}]]),me=r(`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`}]]),he=r(`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`}]]),M=r(`user`,[[`path`,{d:`M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2`,key:`975kel`}],[`circle`,{cx:`12`,cy:`7`,r:`4`,key:`17ys0d`}]]),N=e(t(),1);function ge(){let[e,t]=(0,N.useState)([]),[n,r]=(0,N.useState)(!1),[i,a]=(0,N.useState)(null),o=(0,N.useRef)(null),s=(0,N.useCallback)(e=>{a(null);let n=e.find(e=>!g(e.type,h));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>v);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,N.useCallback)(()=>{t([]),a(null)},[]),removeFile:(0,N.useCallback)(e=>{t(t=>t.filter((t,n)=>n!==e))},[]),onDragOver:(0,N.useCallback)(e=>{e.preventDefault(),r(!0)},[]),onDragLeave:(0,N.useCallback)(()=>{r(!1)},[]),onDrop:(0,N.useCallback)(e=>{e.preventDefault(),r(!1),s([...e.dataTransfer.files])},[s])}}var P=[[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 _e(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 F=n();function I({onSelect:e}){return(0,F.jsx)(`div`,{className:`wa-emoji-popover`,role:`menu`,"aria-label":`Emoji picker`,children:P.map((t,n)=>(0,F.jsx)(`button`,{type:`button`,role:`menuitem`,className:`wa-emoji-item`,onClick:()=>e(t),children:t},n))})}function ve({sessionKey:e,onPick:t,onClose:n}){let[r,a]=(0,N.useState)(``),[o,s]=(0,N.useState)(null),[c,l]=(0,N.useState)(null),[u,d]=(0,N.useState)(!1),f=(0,N.useCallback)(t=>{d(!0),l(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=>{s(e),a(e.path===`.`?``:e.path)}).catch(e=>l(e instanceof Error?e.message:String(e))).finally(()=>d(!1))},[e]);(0,N.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,F.jsx)(`div`,{className:`wa-picker-backdrop`,role:`dialog`,"aria-label":`Choose a device file`,onClick:n,children:(0,F.jsxs)(`div`,{className:`wa-picker`,onClick:e=>e.stopPropagation(),children:[(0,F.jsxs)(`div`,{className:`wa-picker-head`,children:[r&&(0,F.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:m,"aria-label":`Up one folder`,children:(0,F.jsx)(y,{size:18})}),(0,F.jsx)(`span`,{className:`wa-picker-title`,children:r||`Device storage`}),(0,F.jsx)(`button`,{type:`button`,className:`wa-picker-icon-btn`,onClick:n,"aria-label":`Close file picker`,children:(0,F.jsx)(i,{size:18})})]}),c&&(0,F.jsx)(`p`,{className:`wa-picker-error`,role:`alert`,children:c}),u&&(0,F.jsx)(`p`,{className:`wa-picker-empty`,children:`Loading…`}),o&&!u&&(0,F.jsxs)(`ul`,{className:`wa-picker-list`,children:[o.entries.length===0&&(0,F.jsx)(`li`,{className:`wa-picker-empty`,children:`This folder is empty.`}),o.entries.map(e=>(0,F.jsx)(`li`,{children:e.kind===`directory`?(0,F.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>p(e.name),children:[(0,F.jsx)(le,{size:16,"aria-hidden":!0}),(0,F.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):e.kind===`file`?(0,F.jsxs)(`button`,{type:`button`,className:`wa-picker-row`,onClick:()=>h(e),children:[(0,F.jsx)(T,{size:16,"aria-hidden":!0}),(0,F.jsx)(`span`,{className:`wa-picker-name`,children:e.displayName??e.name})]}):null},e.name))]})]})})}function ye(e){return`${Math.floor(e/60)}:${String(e%60).padStart(2,`0`)}`}function be({accountId:e,remoteJid:t,sessionKey:n,replyTo:r,onClearReply:a}){let[o,s]=(0,N.useState)(``),[c,u]=(0,N.useState)(!1),[f,p]=(0,N.useState)(null),[h,g]=(0,N.useState)(!1),[_,v]=(0,N.useState)(!1),[y,b]=(0,N.useState)(!1),[x,ne]=(0,N.useState)([]),S=(0,N.useRef)(null),{pendingFiles:C,attachError:re,addFiles:w,removeFile:ie,clearFiles:E}=ge(),{state:ae,elapsedSeconds:O,errorMessage:k,start:A,send:oe,discard:se}=ee(),ce=ae===`recording`||ae===`paused`,le=(0,N.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=start ms=0`),A()},[A]),de=(0,N.useCallback)(async()=>{let e=O*1e3,t=await oe();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`;w([new File([t],`voice-note${e}`,{type:t.type})])}},[O,oe,w]),fe=(0,N.useCallback)(()=>{console.info(`[operator-ui] op=voice-record state=cancel ms=${O*1e3}`),se()},[O,se]),pe=(0,N.useRef)(!1),he=()=>Math.round((typeof window>`u`?900:window.innerHeight)/3),[M,P]=(0,N.useState)(null),[be,L]=(0,N.useState)(null),xe=(0,N.useRef)(null),R=(0,N.useRef)(44),z=(0,N.useCallback)(e=>{let t=xe.current;if(!t)return;t.moved=!0;let n=Math.min(he(),Math.max(44,t.startH+(t.startY-e.clientY)));R.current=n,P(n)},[]),B=(0,N.useCallback)(()=>{let e=xe.current?.moved??!1;xe.current=null,window.removeEventListener(`pointermove`,z),window.removeEventListener(`pointerup`,B),e&&console.info(`[operator-ui] op=wa-composer-resize mode=drag h=${R.current}`)},[z]),Se=(0,N.useCallback)(e=>{xe.current={startY:e.clientY,startH:S.current?.offsetHeight??44,moved:!1},window.addEventListener(`pointermove`,z),window.addEventListener(`pointerup`,B),e.preventDefault()},[z,B]),V=(0,N.useCallback)(e=>{let t=M??S.current?.offsetHeight??44,n=null;e.key===`ArrowUp`?(e.preventDefault(),n=Math.min(he(),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}`))},[M]),Ce=(0,N.useRef)(``);(0,N.useEffect)(()=>{let e=S.current;if(!e)return;let t=Ce.current!==``&&o===``;if(Ce.current=o,M!==null){t&&P(null);return}let n=e.style.height;e.style.height=`auto`;let r=Math.min(he(),Math.max(44,e.scrollHeight));e.style.height=n,L(r)},[o,M]);let we=(o.trim().length>0||C.length>0||x.length>0)&&!c,Te=(0,N.useCallback)(async()=>{if(!pe.current&&!(o.trim().length===0&&C.length===0&&x.length===0)){pe.current=!0,u(!0),p(null);try{let i=`/api/whatsapp-reader/reply?session_key=${encodeURIComponent(n)}`,c;if(C.length>0||x.length>0){let n=new FormData;n.append(`accountId`,e),n.append(`remoteJid`,t),o.trim()&&n.append(`text`,o);for(let e of C)n.append(`files`,e);for(let e of x)n.append(`fileRefs`,e.path);r&&n.append(`quotedId`,r.msgKeyId),c=await fetch(i,{method:`POST`,body:n})}else c=await fetch(i,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({accountId:e,remoteJid:t,text:o,...r?{quotedId:r.msgKeyId}:{}})});let l=await c.json().catch(()=>({}));if(!c.ok){p(l.error??`Send failed.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${l.error??`unknown`}`);return}s(``),E(),ne([]),a?.(),console.info(`[operator-ui] op=reply-sent remoteJid=${t} sent=${l.sent??0}`)}catch(e){p(`Could not reach the server. Try again.`),console.info(`[operator-ui] op=reply-fail remoteJid=${t} error=${String(e)}`)}finally{pe.current=!1,u(!1)}}},[o,C,x,r,a,e,t,n,E]),Ee=(0,N.useCallback)(e=>{let t=S.current,{value:n,caret:r}=_e(o,e,t?t.selectionStart:null,t?t.selectionEnd:null);s(n),g(!1),requestAnimationFrame(()=>{let e=S.current;e&&(e.focus(),e.setSelectionRange(r,r))})},[o]),De=e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),we&&Te())},H=e=>e.dataTransfer.types.includes(`Files`),Oe=(0,N.useCallback)(e=>{H(e)&&(e.preventDefault(),b(!0))},[]),ke=(0,N.useCallback)(()=>b(!1),[]),Ae=(0,N.useCallback)(e=>{if(!H(e))return;e.preventDefault(),b(!1);let t=[...e.dataTransfer.files];if(t.length===0)return;let n=Math.max(0,C.length+t.length-5);console.info(`[operator-ui] op=composer-drop count=${t.length} rejected=${n}`),w(t)},[C.length,w]),je=e=>e.startsWith(`image/`)?(0,F.jsx)(ue,{size:14}):e===`application/pdf`?(0,F.jsx)(T,{size:14}):(0,F.jsx)(m,{size:14});return(0,F.jsxs)(`div`,{className:`wa-reply${y?` wa-reply-drag-over`:``}`,onDragOver:Oe,onDragLeave:ke,onDrop:Ae,children:[_&&(0,F.jsx)(ve,{sessionKey:n,onPick:e=>{ne(t=>[...t,e].slice(0,5)),v(!1)},onClose:()=>v(!1)}),h&&(0,F.jsx)(I,{onSelect:Ee}),f&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:f}),re&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:re}),ae===`error`&&k&&(0,F.jsx)(`p`,{className:`wa-reply-error`,role:`alert`,children:k}),(C.length>0||x.length>0)&&(0,F.jsxs)(`div`,{className:`wa-reply-attachments`,children:[C.map((e,t)=>(0,F.jsxs)(`div`,{className:`wa-reply-chip`,children:[je(e.type),(0,F.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,F.jsx)(`button`,{type:`button`,onClick:()=>ie(t),"aria-label":`Remove ${e.name}`,children:(0,F.jsx)(i,{size:12})})]},`f-${t}`)),x.map((e,t)=>(0,F.jsxs)(`div`,{className:`wa-reply-chip wa-reply-chip-ref`,children:[(0,F.jsx)(T,{size:14}),(0,F.jsx)(`span`,{className:`wa-reply-chip-name`,children:e.name}),(0,F.jsx)(`button`,{type:`button`,onClick:()=>ne(e=>e.filter((e,n)=>n!==t)),"aria-label":`Remove ${e.name}`,children:(0,F.jsx)(i,{size:12})})]},`r-${t}`))]}),r&&(0,F.jsxs)(`div`,{className:`wa-reply-quote`,children:[(0,F.jsxs)(`div`,{className:`wa-reply-quote-body`,children:[(0,F.jsx)(`span`,{className:`wa-reply-quote-who`,children:r.fromMe?`You`:r.senderName??`Contact`}),(0,F.jsx)(`span`,{className:`wa-reply-quote-text`,children:r.body||`Message`})]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-quote-cancel`,onClick:()=>a?.(),"aria-label":`Cancel reply`,children:(0,F.jsx)(i,{size:14})})]}),!ce&&(0,F.jsx)(`div`,{className:`wa-reply-resize-handle`,role:`separator`,"aria-orientation":`horizontal`,"aria-label":`Resize input — drag up to enlarge`,tabIndex:0,onPointerDown:Se,onKeyDown:V}),(0,F.jsx)(`div`,{className:`wa-reply-row`,children:ce?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:fe,"aria-label":`Cancel recording`,children:(0,F.jsx)(l,{size:20})}),(0,F.jsxs)(`span`,{className:`wa-rec-live`,role:`status`,children:[(0,F.jsx)(`span`,{className:`wa-rec-dot`,"aria-hidden":!0}),ye(O)]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void de(),"aria-label":`Stop recording`,children:(0,F.jsx)(d,{size:20})})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-emoji`,onClick:()=>g(e=>!e),disabled:c,"aria-label":`Emoji`,"aria-expanded":h,children:(0,F.jsx)(me,{size:22})}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-attach`,onClick:()=>v(!0),disabled:c,"aria-label":`Attach files`,children:(0,F.jsx)(D,{size:22})}),(0,F.jsx)(`textarea`,{ref:S,className:`wa-reply-input`,value:o,rows:1,style:{height:`${M??be??44}px`},placeholder:`Type a message`,disabled:c,onChange:e=>s(e.target.value),onKeyDown:De}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-mic`,onClick:()=>void le(),disabled:c,"aria-label":`Record voice note`,children:(0,F.jsx)(te,{size:22})}),(0,F.jsx)(`button`,{type:`button`,className:`wa-reply-send`,onClick:()=>void Te(),disabled:!we,"aria-label":`Send`,children:(0,F.jsx)(j,{size:20})})]})})]})}function L({accountId:e,remoteJid:t,contactName:n,sessionKey:r,onBack:a}){let o=w(t),s=t.split(`@`)[0],c=o?`Group`:n===`+${s}`?void 0:`+${s}`,[l,u]=(0,N.useState)(!1),[d,f]=(0,N.useState)(``),p=()=>{u(!1),f(``)},[m,h]=(0,N.useState)(null);return(0,F.jsxs)(`div`,{className:`wa-web`,children:[(0,F.jsxs)(`header`,{className:`wa-web-header`,children:[a&&(0,F.jsx)(`button`,{type:`button`,className:`wa-web-back`,onClick:a,"aria-label":`Back`,children:(0,F.jsx)(y,{size:20})}),(0,F.jsx)(`span`,{className:`wa-web-avatar`,"aria-hidden":!0,children:(0,F.jsx)(M,{size:20})}),l?(0,F.jsxs)(`div`,{className:`wa-web-search`,children:[(0,F.jsx)(O,{size:18,"aria-hidden":!0}),(0,F.jsx)(`input`,{className:`wa-web-search-input`,type:`text`,autoFocus:!0,placeholder:`Search messages`,"aria-label":`Search messages`,value:d,onChange:e=>f(e.target.value),onKeyDown:e=>{e.key===`Escape`&&p()}}),(0,F.jsx)(`button`,{type:`button`,className:`wa-web-search-close`,onClick:p,"aria-label":`Close search`,children:(0,F.jsx)(i,{size:18})})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`wa-web-titles`,children:[(0,F.jsx)(`span`,{className:`wa-web-name`,children:n}),c&&(0,F.jsx)(`span`,{className:`wa-web-subtitle`,children:c})]}),(0,F.jsx)(`button`,{type:`button`,className:`wa-web-search-toggle`,onClick:()=>u(!0),"aria-label":`Search messages`,children:(0,F.jsx)(O,{size:20})})]})]}),(0,F.jsx)(`div`,{className:`wa-web-body`,children:(0,F.jsx)(_,{sessionId:``,projectDir:``,sessionKey:r,forceDeliveredOnly:!0,suppressDirectives:!0,store:{accountId:e,remoteJid:t},search:l?d:void 0,onReplyTo:o?void 0:h})}),o?(0,F.jsx)(`p`,{className:`wa-reply wa-reply-readonly`,children:`Group messages are read-only.`}):(0,F.jsx)(be,{accountId:e,remoteJid:t,sessionKey:r,replyTo:m,onClearReply:()=>h(null)})]})}function xe(e){let t=new Set,n=[];for(let r of e)for(let e of r.labels)e&&(t.has(e)||k.has(e)&&(t.add(e),n.push(e)));return n}function R(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 z({conversations:e,sessionKey:t,onBack:n}){let[r,i]=(0,N.useState)(null),a=b(e);return r?r.source===`store`&&r.accountId&&r.remoteJid?(0,F.jsx)(L,{accountId:r.accountId,remoteJid:r.remoteJid,contactName:E(r),sessionKey:t,onBack:()=>i(null)},x(r)):(0,F.jsxs)(`div`,{className:`op-conv op-conv-reader`,children:[(0,F.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:()=>i(null),"aria-label":`Back to conversations`,children:[(0,F.jsx)(y,{size:16}),` Back`]}),(0,F.jsx)(`span`,{className:`op-conv-title`,children:E(r)})]}),(0,F.jsx)(_,{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},x(r))]}):(0,F.jsxs)(`div`,{className:`op-conv op-conv-list`,children:[(0,F.jsxs)(`div`,{className:`op-conv-bar`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-back`,onClick:n,"aria-label":`Back to chat`,children:[(0,F.jsx)(y,{size:16}),` Chat`]}),(0,F.jsx)(`span`,{className:`op-conv-title`,children:`Conversations`})]}),a.map(e=>(0,F.jsxs)(`div`,{className:`op-conv-group`,children:[(0,F.jsxs)(`div`,{className:`op-conv-group-head`,children:[(0,F.jsx)(ne,{channel:e.channel,size:14}),e.label]}),e.rows.map(e=>(0,F.jsxs)(`button`,{type:`button`,className:`op-conv-row`,onClick:()=>{console.info(`[operator-ui] op=reader-open channel=${e.channel} key=${x(e)} readonly=true source=${e.source}`),i(e)},children:[(0,F.jsx)(`span`,{className:`op-conv-name`,children:E(e)}),e.modelGated&&(0,F.jsx)(`span`,{className:`op-conv-gated`,role:`img`,"aria-label":`Model unavailable`,children:(0,F.jsx)(A,{size:13})}),(0,F.jsx)(`span`,{className:`op-conv-when`,children:R(e.lastMessageAt)})]},x(e)))]},e.channel))]})}var B=/\.(png|jpe?g|gif|webp|svg)$/i;function Se(e){return B.test(e)}function V(e){return e.entryPath??e.name}var Ce=`maxy-data-view`,we=95*1024*1024,Te=48*1024*1024;function Ee(){return typeof window>`u`?`list`:window.localStorage.getItem(Ce)===`grid`?`grid`:`list`}function De(){let[e,t]=(0,N.useState)(null),[n,r]=(0,N.useState)(!1);return(0,N.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,F.jsx)(u,{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,F.jsx)(`div`,{className:`data-page data-page-full`,children:(0,F.jsx)(H,{cacheKey:e})})}):(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsxs)(`div`,{className:`data-empty`,children:[(0,F.jsx)(`p`,{children:`You are not signed in.`}),(0,F.jsxs)(`p`,{children:[`Open the `,(0,F.jsx)(`a`,{href:`/`,className:`data-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsxs)(`div`,{className:`data-loading`,children:[(0,F.jsx)(o,{size:18,className:`spin`}),` Loading…`]})})}function H({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=p({initialCacheKey:e,surface:`data`});return(0,F.jsx)(Fe,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})}function Oe(){if(typeof window>`u`)return`.`;let e=new URLSearchParams(window.location.hash.replace(/^#/,``)).get(`path`);return e&&e.length>0?e:`.`}function ke(e){if(typeof window>`u`)return;let t=new URL(window.location.href);t.hash=e===`.`?``:`path=${encodeURIComponent(e)}`,window.history.replaceState(window.history.state,``,t.toString())}function Ae(e){return new Promise((t,n)=>{let r=[],i=()=>e.readEntries(e=>{e.length===0?t(r):(r.push(...e),i())},n);i()})}function je(e){return new Promise((t,n)=>e.file(t,n))}async function Me(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 je(r),relpath:e});else if(r.isDirectory){let t=await Ae(r.createReader());n.push(...await Me(t,e))}}return n}function Ne(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 Pe({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){let[r,c]=(0,N.useState)(``),u=(0,N.useRef)(null),[d,f]=(0,N.useState)(``),[p,m]=(0,N.useState)(null),[h,ee]=(0,N.useState)(`hybrid`),[g,_]=(0,N.useState)(!1),[v,te]=(0,N.useState)(null),[y,b]=(0,N.useState)(null),[x,ne]=(0,N.useState)(0),[w,E]=(0,N.useState)(!1),[D,k]=(0,N.useState)(()=>Oe()),[A,ue]=(0,N.useState)(null),[j,me]=(0,N.useState)(()=>Ee()),[M,ge]=(0,N.useState)(null),[P,_e]=(0,N.useState)([]),[I,ve]=(0,N.useState)(!1),[ye,be]=(0,N.useState)(null),[L,R]=(0,N.useState)(!1),[z,B]=(0,N.useState)(null),[De,H]=(0,N.useState)(null),[Ae,je]=(0,N.useState)(null),[Pe,Fe]=(0,N.useState)(!1),[Ie,ze]=(0,N.useState)(null),Be=(0,N.useRef)(null),[Ve,U]=(0,N.useState)(0),[We,Ge]=(0,N.useState)(!1),[Ke,qe]=(0,N.useState)(``),[Je,Ye]=(0,N.useState)(null),[Xe,Ze]=(0,N.useState)(``),[Qe,$e]=(0,N.useState)(null),W=(()=>{let e=D===`.`?[]:D.split(`/`).filter(Boolean);return e.length>=2&&e[0]===`accounts`})(),[et,tt]=(0,N.useState)(!1),nt=(0,N.useRef)(null),[rt,G]=(0,N.useState)(!1),it=(0,N.useRef)(null);(0,N.useEffect)(()=>{let e=r.trim();if(!e){f(``),m(null),te(null);return}E(!1);let t=setTimeout(()=>f(e),300);return()=>clearTimeout(t)},[r]),(0,N.useEffect)(()=>{if(!d){_(!1);return}let t=!1;return _(!0),te(null),e(`/api/admin/graph-search?q=${encodeURIComponent(d)}&labels=FileArtifact&limit=20${w?`&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||(m(e.results),ee(e.mode??`hybrid`),ne(typeof e.suppressed==`number`?e.suppressed:0))}).catch(e=>{t||te(e instanceof Error?e.message:String(e))}).finally(()=>{t||_(!1)}),()=>{t=!0}},[d,e,n,w]);let at=(0,N.useMemo)(()=>p?xe(p):[],[p]),K=y&&at.includes(y)?y:null,ot=(0,N.useMemo)(()=>p?K?p.filter(e=>e.labels.includes(K)):p:null,[p,K]),st=(0,N.useCallback)(e=>{let n=e.properties.relativePath;if(typeof n!=`string`||n.length===0)return;let r=`/api/admin/files/download?session_key=${encodeURIComponent(t)}&path=${encodeURIComponent(n)}`,i=document.createElement(`a`);i.href=r,i.rel=`noopener noreferrer`,document.body.appendChild(i),i.click(),i.remove()},[t]);(0,N.useEffect)(()=>{if(!p)return;let e=p.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(`,`)}`)},[p]),(0,N.useEffect)(()=>{let t=!1;return ve(!0),be(null),e(`/api/admin/files?path=${encodeURIComponent(D===`.`?``:D)}`).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||(ue(e.entries),_e(e.displayPath??[]))}).catch(e=>{t||(ue([]),_e([]),be(e instanceof Error?e.message:String(e)))}).finally(()=>{t||ve(!1)}),()=>{t=!0}},[e,D,Ve,n]),(0,N.useEffect)(()=>{ke(D)},[D]);let ct=(0,N.useCallback)(()=>{U(e=>e+1)},[]),q=(0,N.useCallback)(e=>{tt(!1),k(e)},[]),lt=(0,N.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(``),te(null),b(null),q(r)},[q]),ut=(0,N.useCallback)(()=>{if(D===`.`||D===``)return;let e=D.split(`/`).filter(Boolean);e.pop(),k(e.length===0?`.`:e.join(`/`))},[D]),dt=(0,N.useCallback)(e=>{ae(t,D===`.`?V(e):`${D}/${V(e)}`)},[D,t]),[J,ft]=(0,N.useState)(!1),[Y,pt]=(0,N.useState)(new Set),mt=(0,N.useRef)(null),X=(0,N.useRef)(!1),ht=typeof navigator<`u`&&typeof navigator.share==`function`&&typeof navigator.canShare==`function`,gt=(0,N.useCallback)(e=>{ft(!0),pt(new Set([e])),console.info(`[data-ui] op=select-enter count=1`)},[]),Z=(0,N.useCallback)(e=>{ft(!1),pt(new Set),console.info(`[data-ui] op=select-exit reason=${e}`)},[]),Q=(0,N.useCallback)(e=>{pt(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]),_t=(0,N.useCallback)(e=>{X.current=!1,mt.current=setTimeout(()=>{X.current=!0,gt(e)},500)},[gt]),$=(0,N.useCallback)(()=>{mt.current&&=(clearTimeout(mt.current),null)},[]),vt=(0,N.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}dt(e)},[J,Q,dt]),yt=(0,N.useCallback)(e=>{me(e),typeof window<`u`&&window.localStorage.setItem(Ce,e),console.info(`[data] op=view-mode mode=${e}`)},[]),bt=(0,N.useCallback)(e=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}ge({src:ie(t,D===`.`?V(e):`${D}/${V(e)}`),alt:e.displayName??e.name})},[J,Q,D,t]),xt=(0,N.useCallback)(()=>(A??[]).filter(e=>e.kind===`file`&&Y.has(e.name)),[A,Y]),St=(0,N.useCallback)(()=>{if(Y.size!==1)return null;let e=(A??[]).find(e=>Y.has(e.name));return e&&!e.entryPath?e:null},[A,Y]),Ct=(0,N.useCallback)(()=>(A??[]).filter(e=>(e.kind===`file`||e.kind===`directory`)&&Y.has(e.name)),[A,Y]),wt=(0,N.useCallback)(()=>{let e=Ct(),n=e.some(e=>e.kind===`directory`);e.length===1&&!n?dt(e[0]):e.length>=1&&re(t,e.map(e=>D===`.`?V(e):`${D}/${V(e)}`)),Z(`action`)},[Ct,dt,D,t,Z]),Tt=(0,N.useCallback)(async()=>{let t=xt(),n=t.filter(e=>!e.protected),r=t.length-n.length;ze(r>0?`${r} protected file(s) kept`:null);for(let t of n){let n=D===`.`?V(t):`${D}/${V(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){ze(e instanceof Error?e.message:String(e))}}U(e=>e+1),Z(`action`)},[xt,D,e,Z]),Et=(0,N.useCallback)(async()=>{let e=xt();if(console.info(`[data-ui] op=share supported=${ht} count=${e.length}`),ht)try{let n=await Promise.all(e.map(async e=>{let n=D===`.`?V(e):`${D}/${V(e)}`,r=`/api/admin/files/download?session_key=${encodeURIComponent(t)}&path=${encodeURIComponent(n)}`,i=await(await fetch(r)).blob();return new File([i],e.displayName??e.name,{type:i.type||`application/octet-stream`})}));navigator.canShare({files:n})&&await navigator.share({files:n})}catch(e){console.warn(`[data-ui] op=share-failed err=${e instanceof Error?e.message:String(e)}`)}},[xt,ht,D,t]),Dt=(0,N.useCallback)(()=>{Be.current?.click()},[]),Ot=(0,N.useCallback)((e,n={})=>{let r=(r,i,a)=>{let o=new URLSearchParams({session_key:t,path:D===`.`?``:D,filename:e.name});n.relpath&&o.set(`relpath`,n.relpath),n.token&&o.set(`token`,n.token);for(let[e,t]of Object.entries(i))o.set(e,t);return new Promise(t=>{let n=new XMLHttpRequest;n.open(`POST`,`/api/admin/files/upload?${o.toString()}`),n.setRequestHeader(`Content-Type`,e.type||`application/octet-stream`),a&&(n.upload.onprogress=e=>{e.lengthComputable&&a(e.loaded)}),n.onload=()=>{let e={};try{e=JSON.parse(n.responseText)}catch{}t({status:n.status,data:e})},n.onerror=()=>t({status:0,data:{}}),n.onabort=()=>t({status:0,data:{error:`aborted`}}),n.send(r)})};if(e.size<=we)return r(e,{},t=>n.onProgress?.(t,e.size));let i=`${Date.now().toString(36)}-${Math.random().toString(16).slice(2,10)}`,a=Math.ceil(e.size/Te);return(async()=>{let t={status:0,data:{}};for(let o=0;o<a;o++){let s=o*Te;if(t=await r(e.slice(s,Math.min(s+Te,e.size)),{uploadId:i,seq:String(o),total:String(a)},t=>n.onProgress?.(s+t,e.size)),!(t.status>=200&&t.status<300))return t}return t})()},[t,D]),kt=(0,N.useCallback)(async e=>{H(null),R(!0),B({loaded:0,total:e.size});try{let{status:t,data:n}=await Ot(e,{onProgress:(e,t)=>B({loaded:e,total:t})});t>=200&&t<300&&n.path?(k(n.path.split(`/`).slice(0,-1).join(`/`)||`.`),U(e=>e+1)):H(t===0?`Network error during upload — the connection failed before the server responded.`:n.error??`Upload failed (HTTP ${t}).`)}finally{R(!1),B(null),Be.current&&(Be.current.value=``)}},[Ot]),At=(0,N.useCallback)(e=>{W&&Array.from(e.dataTransfer.types).includes(`Files`)&&(e.preventDefault(),Fe(!0))},[W]),jt=(0,N.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||Fe(!1)},[]),Mt=(0,N.useCallback)(async e=>{e.preventDefault(),Fe(!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(!W){console.info(`[data-ui] op=drop-rejected token=${t} reason=no-write`),H(`Open a folder inside your account to upload`);return}let r=n.map(e=>e.webkitGetAsEntry?.()).filter(e=>!!e);R(!0),H(null),je(null);let i=performance.now();try{let e=await Me(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}`),B({loaded:0,total:r.size});let{status:a,data:c}=await Ot(r,{relpath:i,token:t,onProgress:(e,t)=>B({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`:Ne(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}`),je(`Uploaded ${o}, skipped ${s.length}${s.length?`: ${s.join(`, `)}`:``}`),U(e=>e+1)}catch(e){H(e instanceof Error?e.message:String(e))}finally{R(!1),B(null)}},[W,Ot]),Nt=(0,N.useCallback)(async()=>{let t=Ke.trim();if(t){$e(null);try{let n=await e(`/api/admin/files/folder`,{method:`POST`,headers:{"content-type":`application/json`},body:JSON.stringify({path:D===`.`?``:D,name:t})}),r=await n.json().catch(()=>({error:`HTTP ${n.status}`}));if(!n.ok)throw Error(r.error??`HTTP ${n.status}`);Ge(!1),qe(``),U(e=>e+1)}catch(e){$e(e instanceof Error?e.message:String(e))}}},[e,Ke,D]),Pt=(0,N.useCallback)(async()=>{if(!Je)return;let t=Xe.trim();if(!t)return;$e(null);let n=D===`.`?Je:`${D}/${Je}`;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}`);Ye(null),Ze(``),Z(`action`),U(e=>e+1)}catch(e){$e(e instanceof Error?e.message:String(e))}},[e,Xe,Je,D,Z]);(0,N.useEffect)(()=>{if(!et)return;let e=e=>{nt.current&&!nt.current.contains(e.target)&&tt(!1)},t=e=>{e.key===`Escape`&&tt(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[et]),(0,N.useEffect)(()=>{if(!rt)return;let e=e=>{it.current&&!it.current.contains(e.target)&&G(!1)},t=e=>{e.key===`Escape`&&G(!1)};return document.addEventListener(`mousedown`,e),document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`mousedown`,e),document.removeEventListener(`keydown`,t)}},[rt]);let Ft=(0,N.useCallback)(e=>P.slice(0,e+1).map(e=>e.name).join(`/`),[P]),It=P.length>=2,Lt=It?[{name:`.`,label:`data`},...P.slice(0,P.length-2).map((e,t)=>({name:Ft(t),label:e.displayName??e.name}))]:[];return(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`data-toolbar`,children:[J?(0,F.jsxs)(`button`,{type:`button`,className:`data-select-cancel`,onClick:()=>Z(`cancel`),"aria-label":`Cancel selection`,children:[(0,F.jsx)(i,{size:14}),` Cancel`]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`div`,{className:`data-search-input`,children:[r===``&&(0,F.jsx)(O,{size:14}),(0,F.jsx)(`input`,{ref:u,type:`text`,value:r,onChange:e=>c(e.target.value),autoFocus:!0,autoComplete:`off`,spellCheck:!1}),g&&(0,F.jsx)(o,{size:14,className:`spin`}),r!==``&&(0,F.jsx)(`button`,{type:`button`,className:`data-search-inline-btn`,onClick:()=>{c(``),u.current?.focus()},title:`Clear search`,"aria-label":`Clear search`,children:(0,F.jsx)(i,{size:14})})]}),(0,F.jsxs)(`div`,{className:`data-toolbar-actions`,ref:it,children:[(0,F.jsx)(`button`,{type:`button`,className:`data-action-overflow`,onClick:()=>G(e=>!e),"aria-haspopup":`menu`,"aria-expanded":rt,"aria-label":`File actions`,title:`File actions`,children:(0,F.jsx)(se,{size:16})}),(0,F.jsxs)(`div`,{className:`data-action-group`,role:`group`,"aria-label":`File actions`,"data-open":rt?`true`:void 0,children:[(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{ct(),G(!1)},disabled:I,title:`Refresh this folder`,"aria-label":`Refresh this folder`,children:[I?(0,F.jsx)(o,{size:16,className:`spin`}):(0,F.jsx)(S,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`Refresh`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Dt(),G(!1)},disabled:L||!W,title:W?`Upload a file`:`Open a folder inside your account to upload`,"aria-label":`Upload a file`,children:[L?z&&z.total>0?(0,F.jsxs)(`span`,{className:`data-upload-pct`,children:[Math.round(z.loaded/z.total*100),`%`]}):(0,F.jsx)(o,{size:16,className:`spin`}):(0,F.jsx)(he,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`Upload`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{Ge(e=>!e),qe(``),$e(null),G(!1)},disabled:L||!W,title:W?`New folder`:`Open a folder inside your account to create one`,"aria-label":`New folder`,children:[(0,F.jsx)(ce,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:`New folder`})]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-action-btn`,onClick:()=>{yt(j===`grid`?`list`:`grid`),G(!1)},title:j===`grid`?`List view`:`Grid view`,"aria-label":j===`grid`?`Switch to list view`:`Switch to grid view`,"aria-pressed":j===`grid`,children:[j===`grid`?(0,F.jsx)(fe,{size:16}):(0,F.jsx)(de,{size:16}),(0,F.jsx)(`span`,{className:`data-action-label`,children:j===`grid`?`List view`:`Grid view`})]})]})]})]}),(0,F.jsxs)(`div`,{className:`data-breadcrumbs`,children:[D!==`.`&&(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost data-back-btn`,onClick:ut,title:`Up one level`,"aria-label":`Up one level`,children:(0,F.jsx)(oe,{size:14})}),It?(0,F.jsxs)(F.Fragment,{children:[(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,ref:nt,children:[(0,F.jsx)(`button`,{type:`button`,className:`data-crumb data-crumb-ellipsis`,onClick:()=>tt(e=>!e),"aria-haspopup":`menu`,"aria-expanded":et,"aria-label":`Show parent folders`,title:`Show parent folders`,children:`…`}),et&&(0,F.jsx)(`div`,{className:`data-crumb-menu`,role:`menu`,children:Lt.map(e=>(0,F.jsx)(`button`,{type:`button`,role:`menuitem`,className:`data-crumb-menu-item`,onClick:()=>q(e.name),title:e.label,children:e.label},e.name))})]}),[P.length-2,P.length-1].map(e=>{let t=P[e];return(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,F.jsx)(`span`,{className:`data-crumb-sep`,children:`/`}),(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Ft(e)),title:t.name,children:t.displayName??t.name})]},Ft(e))})]}):(0,F.jsxs)(F.Fragment,{children:[(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(`.`),children:`data`}),P.map((e,t)=>(0,F.jsxs)(`span`,{className:`data-crumb-wrap`,children:[(0,F.jsx)(`span`,{className:`data-crumb-sep`,children:`/`}),(0,F.jsx)(`button`,{type:`button`,className:`data-crumb`,onClick:()=>q(Ft(t)),title:e.name,children:e.displayName??e.name})]},Ft(t)))]})]}),We&&(0,F.jsxs)(`div`,{className:`data-inline-form`,children:[(0,F.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`Folder name`,value:Ke,autoFocus:!0,onChange:e=>qe(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Nt(),e.key===`Escape`&&Ge(!1)}}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Nt,children:`Create`}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>Ge(!1),children:`Cancel`})]}),Je&&(0,F.jsxs)(`div`,{className:`data-inline-form`,children:[(0,F.jsx)(`input`,{type:`text`,className:`data-inline-input`,placeholder:`New name`,value:Xe,autoFocus:!0,onChange:e=>Ze(e.target.value),onKeyDown:e=>{e.key===`Enter`&&Pt(),e.key===`Escape`&&Ye(null)}}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn`,onClick:Pt,children:`Rename`}),(0,F.jsx)(`button`,{type:`button`,className:`data-btn data-btn-ghost`,onClick:()=>Ye(null),children:`Cancel`})]}),Qe&&(0,F.jsx)(`div`,{className:`data-error`,children:Qe}),(0,F.jsx)(`input`,{type:`file`,ref:Be,hidden:!0,onChange:e=>{let t=e.target.files?.[0];t&&kt(t)}})]}),(0,F.jsxs)(`div`,{className:`data-body`,"data-drag-active":Pe?`true`:void 0,onDragEnter:At,onDragOver:At,onDragLeave:jt,onDrop:Mt,children:[(v!==null||p!==null)&&(0,F.jsxs)(`section`,{className:`data-panel`,children:[v&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Search failed: `,v]}),at.length>0&&(0,F.jsx)(`div`,{className:`data-chip-row`,role:`group`,"aria-label":`Filter by type`,children:at.map(e=>{let t=e===K;return(0,F.jsx)(`button`,{type:`button`,className:`data-chip`,"data-active":t,onClick:()=>b(t?null:e),children:Re([e])??e},e)})}),p&&!g&&(0,F.jsxs)(`div`,{className:`data-results-meta`,children:[ot.length,` of `,p.length,` result`,p.length===1?``:`s`]}),p&&!g&&!K&&x>0&&!w&&(0,F.jsxs)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>E(!0),children:[x,` low-confidence result`,x===1?``:`s`,` hidden — show all`]}),p&&!g&&!K&&w&&(0,F.jsx)(`button`,{type:`button`,className:`data-suppressed-banner`,onClick:()=>E(!1),children:`Showing all results — hide low-confidence`}),p&&p.length===0&&!g&&(0,F.jsx)(`div`,{className:`data-empty-results`,children:`No matches. Try a different keyword.`}),ot&&ot.length>0&&(0,F.jsx)(`ul`,{className:`data-results`,children:ot.map(e=>(0,F.jsx)(Le,{hit:e,mode:h,onDownload:st,onLocate:lt},e.nodeId))})]}),(0,F.jsxs)(`section`,{className:`data-panel`,children:[z&&(0,F.jsxs)(`div`,{className:`data-upload-progress`,role:`progressbar`,"aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":z.total>0?Math.round(z.loaded/z.total*100):void 0,children:[(0,F.jsx)(`div`,{className:`data-upload-progress-track`,children:(0,F.jsx)(`div`,{className:`data-upload-progress-fill`,style:{width:`${z.total>0?Math.round(z.loaded/z.total*100):0}%`}})}),(0,F.jsxs)(`span`,{className:`data-upload-progress-label`,children:[`Uploading… `,z.total>0?`${Math.round(z.loaded/z.total*100)}%`:``]})]}),De&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Upload failed: `,De]}),Ae&&(0,F.jsx)(`div`,{className:`data-status`,children:Ae}),Ie&&(0,F.jsxs)(`div`,{className:`data-error`,children:[`Delete failed: `,Ie]}),ye&&(0,F.jsx)(`div`,{className:`data-error`,children:ye}),I&&(0,F.jsxs)(`div`,{className:`data-loading`,children:[(0,F.jsx)(o,{size:14,className:`spin`}),` Loading…`]}),!J&&!I&&A&&A.length>0&&(0,F.jsxs)(`div`,{className:`data-select-hint`,children:[(0,F.jsx)(pe,{size:13}),(0,F.jsx)(`span`,{children:`Press and hold a file to select, rename, or delete it.`})]}),!I&&A&&A.length===0&&!ye&&(0,F.jsx)(`div`,{className:`data-empty-results`,children:`Empty directory.`}),!I&&A&&A.length>0&&j===`grid`&&(0,F.jsx)(`ul`,{className:`data-grid`,children:A.map(e=>{let n=e.displayName??e.name,r=J&&Y.has(e.name);if(e.kind===`directory`)return(0,F.jsx)(`li`,{className:`data-grid-cell`,"data-selected":r?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-grid-tile`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(D===`.`?e.name:`${D}/${e.name}`)},children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsx)(le,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:n})]})},e.name);if(e.kind===`file`){let i=Se(V(e)),a=D===`.`?V(e):`${D}/${V(e)}`;return(0,F.jsx)(`li`,{className:`data-grid-cell`,"data-selected":r?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-grid-tile${i?` data-grid-tile-image`:``}`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>i?bt(e):vt(e),title:J?void 0:i?`Preview ${n}`:`Download ${n}`,children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),i?(0,F.jsx)(`img`,{className:`data-grid-thumb`,src:ie(t,a),alt:n,loading:`lazy`,onError:()=>console.warn(`[data] op=thumb-error path=${a}`)}):(0,F.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,title:e.name,children:n}),!i&&(0,F.jsx)(`span`,{className:`data-grid-sub`,children:He(e.sizeBytes)})]})},e.name)}return(0,F.jsx)(`li`,{className:`data-grid-cell`,children:(0,F.jsxs)(`div`,{className:`data-grid-tile data-entry-disabled`,children:[(0,F.jsx)(T,{size:28,className:`data-grid-glyph`}),(0,F.jsx)(`span`,{className:`data-grid-label`,children:n}),(0,F.jsx)(`span`,{className:`data-grid-sub`,children:`special`})]})},e.name)})}),!I&&A&&A.length>0&&j===`list`&&(0,F.jsx)(`ul`,{className:`data-entries`,children:A.map(e=>{let t=e.displayName??e.name;if(e.kind===`directory`){let n=J&&Y.has(e.name);return(0,F.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-entry-btn`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>{if(X.current){X.current=!1;return}if(J){Q(e.name);return}q(D===`.`?e.name:`${D}/${e.name}`)},children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsx)(le,{size:14}),(0,F.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,F.jsx)(`li`,{className:`data-entry`,"data-selected":n?`true`:void 0,children:(0,F.jsxs)(`button`,{type:`button`,className:`data-entry-btn data-entry-file`,onPointerDown:()=>_t(e.name),onPointerUp:$,onPointerMove:$,onPointerLeave:$,onPointerCancel:$,onClick:()=>vt(e),title:J?void 0:`Download ${t}`,children:[J&&(0,F.jsx)(`span`,{className:`data-entry-select-indicator`,"aria-hidden":`true`}),(0,F.jsxs)(`span`,{className:`data-entry-text`,children:[(0,F.jsx)(`span`,{className:`data-entry-name`,title:e.name,children:t}),(0,F.jsxs)(`span`,{className:`data-entry-meta`,title:`Modified ${Ue(e.modifiedAt)}`,children:[He(e.sizeBytes),` · `,Ue(e.modifiedAt)]})]})]})},e.name)}return(0,F.jsx)(`li`,{className:`data-entry`,children:(0,F.jsx)(`div`,{className:`data-entry-btn data-entry-file data-entry-disabled`,children:(0,F.jsxs)(`span`,{className:`data-entry-text`,children:[(0,F.jsx)(`span`,{className:`data-entry-name`,children:t}),(0,F.jsx)(`span`,{className:`data-entry-meta`,children:`special`})]})})},e.name)})})]})]}),J&&(0,F.jsx)(`div`,{className:`data-select-bar`,role:`toolbar`,"aria-label":`Selection actions`,children:(0,F.jsxs)(`div`,{className:`data-select-bar-inner`,children:[(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:Et,disabled:!ht||Y.size===0,title:ht?`Share selected files`:`Sharing is not supported on this device`,children:[(0,F.jsx)(a,{size:16}),` Share`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:wt,disabled:Y.size===0,children:[(0,F.jsx)(C,{size:16}),` Download`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action`,onClick:()=>{let e=St();e&&(Ye(e.name),Ze(e.name))},disabled:!St(),children:[(0,F.jsx)(s,{size:16}),` Rename`]}),(0,F.jsxs)(`button`,{type:`button`,className:`data-select-action data-select-delete`,onClick:Tt,disabled:Y.size===0,children:[(0,F.jsx)(l,{size:16}),` Delete`]})]})}),M&&(0,F.jsx)(`div`,{className:`chat-attachment-overlay`,role:`dialog`,"aria-label":M.alt,onClick:()=>ge(null),children:(0,F.jsx)(`img`,{className:`chat-attachment-overlay-image`,src:M.src,alt:M.alt})})]})}function Fe({adminFetch:e,cacheKey:t,sessionRefetchNonce:n}){(0,N.useEffect)(()=>{console.info(`[data-ui] op=mount header=operator home=absent`)},[]);let r=(0,N.useCallback)(()=>{try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},[]),i=(0,N.useCallback)(e=>{e===`chat`&&(window.location.href=`/`)},[]),[a,o]=(0,N.useState)([]),[s,l]=(0,N.useState)(`files`),{subAccounts:u,activeAccountId:d,switching:p,switchAccount:m}=f(t);return(0,N.useEffect)(()=>{if(!t)return;let e=!1;return fetch(`/api/whatsapp-reader/conversations?session_key=${encodeURIComponent(t)}`).then(e=>e.ok?e.json():{conversations:[]}).then(t=>{e||o(t.conversations??[])}).catch(()=>{}),()=>{e=!0}},[t]),(0,F.jsxs)(`main`,{className:`data-main`,children:[(0,F.jsx)(c,{variant:`operator`,onNavigate:i,onOpenConversations:a.length>0?()=>l(`conversations`):void 0,onToggleSidebar:()=>{},sidebarOpen:!1,onLogout:r,onDisconnect:async()=>!0,disconnecting:!1,subAccounts:u,activeAccountId:d,switchingAccount:p,onSwitchAccount:m}),s===`conversations`?(0,F.jsx)(z,{conversations:a,sessionKey:t,onBack:()=>l(`files`)}):(0,F.jsx)(Pe,{adminFetch:e,cacheKey:t,sessionRefetchNonce:n})]})}function Ie({cacheKey:e}){let{adminFetch:t,cacheKey:n,sessionRefetchNonce:r}=p({initialCacheKey:e,surface:`data`});return(0,F.jsx)(`div`,{className:`data-page`,children:(0,F.jsx)(`main`,{className:`data-main`,children:(0,F.jsx)(Pe,{adminFetch:t,cacheKey:n,sessionRefetchNonce:r})})})}function Le({hit:e,mode:t,onDownload:n,onLocate:r}){let i=ze(e.properties),a=Be(e.properties),o=Re(e.labels),s=Ve(e.properties),[c,l]=(0,N.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,F.jsxs)(`li`,{className:`data-result`,children:[(0,F.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,F.jsx)(`div`,{className:`data-result-header`,children:(0,F.jsx)(`span`,{className:`data-result-labels`,children:o})}),i&&(0,F.jsx)(`div`,{className:`data-result-title`,children:i}),a&&(0,F.jsx)(`pre`,{className:`data-result-body`,children:d}),(0,F.jsxs)(`div`,{className:`data-result-scores`,children:[s&&(0,F.jsxs)(`span`,{className:`data-result-updated`,children:[`Updated `,Ue(s),` · `]}),f]})]}),m&&(0,F.jsxs)(`button`,{type:`button`,className:`data-result-locate`,onClick:()=>r(e),title:`Locate in ${ee}`,"aria-label":`Locate in ${ee}`,children:[(0,F.jsx)(le,{size:12}),ee]}),u&&(0,F.jsx)(`button`,{type:`button`,className:`data-result-toggle`,onClick:()=>l(e=>!e),children:c?`Show less`:`Show more`})]})}function Re(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 ze(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 Be(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 Ve(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 He(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 Ue(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{Ie as n,L as r,De as t};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,S as n,T as r}from"./useSubAccountSwitcher-
|
|
1
|
+
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,S as n,T as r}from"./useSubAccountSwitcher-v8LyBzZN.js";import"./useVoiceRecorder-DN4jYQ0A.js";import{v as i}from"./AdminShell-Cv_nIFGe.js";import{a,c as o,i as s,o as c,r as l,s as u}from"./page-B5YngOrK.js";import"./useCopyFeedback-wtUHGohk.js";import"./useSelectionMode-sph7AQT5.js";var d=r(),f=e(t(),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,{}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{_ as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{_ as e}from"./useSubAccountSwitcher-v8LyBzZN.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};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,S as n,T as r,_ as i,a,d as o,h as s,l as c,n as l,r as u,s as d,t as f,w as p}from"./useSubAccountSwitcher-v8LyBzZN.js";import{n as ee,t as m}from"./time-entry-format-DPOBIE18.js";import{t as te}from"./rotate-ccw-UDln4Tou.js";var h=i(`circle-check`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),g=i(`circle`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}]]),_=r(),v=e(t(),1);function y(e=3e4){let[t,n]=(0,v.useState)(()=>Date.now());return(0,v.useEffect)(()=>{let t=setInterval(()=>n(Date.now()),e);return()=>clearInterval(t)},[e]),t}function ne(e,t){let n=new Map,r=(e,t,r)=>{let i=n.get(e)??{openCount:0,totalSeconds:0};i.totalSeconds+=t,r&&(i.openCount+=1),n.set(e,i)};for(let t of e)t.clientName&&r(t.clientName,t.secondsLogged,!0);for(let e of t)e.clientName&&r(e.clientName,e.secondsLogged,!1);let i=[...n.entries()].map(([e,t])=>({name:e,openCount:t.openCount,totalSeconds:t.totalSeconds}));return i.sort((e,t)=>t.openCount-e.openCount||e.name.localeCompare(t.name)),b(e,i),i}function b(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 x=`__unassigned__`;function S(e,t){return e===`__unassigned__`?`Unassigned`:t||e.slice(0,8)}function C(e){return e===null||e===``?x:e}function w(e,t){let n=new Map,r=(e,t)=>{let r=C(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:S(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 T(e,t){return t===null?!0:C(e.assigneeUserId)===t}var E=n();function D(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 re(e){return[e.clientName,e.propertyAddress].filter(Boolean).join(` · `)}function O(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 k(e){return e.assigneeName?e.assigneeName:e.assigneeUserId?e.assigneeUserId.slice(0,8):`Unassigned`}function A(e,t){return[t,O(e.createdAt),k(e)].filter(Boolean).join(` · `)}function j(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 M({clients:e,onSelect:t}){return(0,E.jsxs)(`section`,{className:`tasks-card`,children:[(0,E.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,E.jsx)(`span`,{className:`tasks-card-title`,children:`Clients`}),(0,E.jsxs)(`span`,{className:`tasks-card-count`,children:[e.length,` total`]})]}),e.length===0&&(0,E.jsx)(`div`,{className:`tasks-empty`,children:`No clients yet.`}),e.map(e=>(0,E.jsx)(`button`,{className:`tasks-row tasks-client-row`,onClick:()=>t(e.name),children:(0,E.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,E.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,E.jsxs)(`div`,{className:`tasks-row-sub`,children:[e.openCount,` open · `,m(e.totalSeconds),` logged`]})]})},e.name))]})}function N({task:e,onClose:t}){return(0,v.useEffect)(()=>{let e=e=>{e.key===`Escape`&&t()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[t]),(0,E.jsx)(`div`,{className:`tasks-detail-backdrop`,onClick:t,children:(0,E.jsxs)(`div`,{className:`tasks-detail`,role:`dialog`,"aria-modal":`true`,"aria-label":`Task detail`,onClick:e=>e.stopPropagation(),children:[(0,E.jsxs)(`div`,{className:`tasks-detail-head`,children:[(0,E.jsx)(`h2`,{className:`tasks-detail-title`,children:e?e.name:`Task no longer available`}),(0,E.jsx)(`button`,{className:`tasks-detail-close`,"aria-label":`Close`,onClick:t,children:(0,E.jsx)(a,{size:16})})]}),e===null?(0,E.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,E.jsxs)(`dl`,{className:`tasks-detail-fields`,children:[(0,E.jsx)(`dt`,{children:`Status`}),(0,E.jsx)(`dd`,{children:e.status}),(0,E.jsx)(`dt`,{children:`Logged`}),(0,E.jsx)(`dd`,{children:m(e.secondsLogged)}),(0,E.jsx)(`dt`,{children:`Created`}),(0,E.jsx)(`dd`,{children:O(e.createdAt)||`Not recorded`}),(0,E.jsx)(`dt`,{children:`Assignee`}),(0,E.jsx)(`dd`,{children:k(e)}),e.clientName&&(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(`dt`,{children:`Client`}),(0,E.jsx)(`dd`,{children:e.clientName})]}),e.propertyAddress&&(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(`dt`,{children:`Property`}),(0,E.jsx)(`dd`,{children:e.propertyAddress})]}),e.fee!=null&&(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(`dt`,{children:`Fee`}),(0,E.jsxs)(`dd`,{children:[`£`,e.fee]})]})]})]})})}function P({adminFetch:e}){let[t,n]=(0,v.useState)({open:[],completed:[]}),[r,i]=(0,v.useState)(!1),[l,u]=(0,v.useState)(!1),f=(0,v.useRef)(!1),p=(0,v.useRef)(``),_=y(1e3),[b,x]=(0,v.useState)(`open`),[S,C]=(0,v.useState)(null),[O,k]=(0,v.useState)(null),[P,F]=(0,v.useState)(null),[I,L]=(0,v.useState)(``),[R,z]=(0,v.useState)(null),[B,V]=(0,v.useState)(null),H=(0,v.useMemo)(()=>{if(R!==null)return[...t.open,...t.completed].find(e=>e.rowKey===R)??null},[t,R]);(0,v.useEffect)(()=>{R!==null&&H===null&&console.error(`[tasks-ui] op=detail-failed rowKey=${R} reason=not-in-list`)},[R,H]);let U=(0,v.useMemo)(()=>ne(t.open,t.completed),[t]),W=(0,v.useMemo)(()=>S===null?{open:t.open,completed:t.completed}:{open:t.open.filter(e=>e.clientName===S),completed:t.completed.filter(e=>e.clientName===S)},[t,S]),G=(0,v.useMemo)(()=>w(W.open,W.completed),[W]),K=(0,v.useCallback)(e=>{C(e),x(`open`)},[]);(0,v.useEffect)(()=>{S&&!U.some(e=>e.name===S)&&C(null)},[U,S]),(0,v.useEffect)(()=>{O&&!G.some(e=>e.userId===O)&&k(null)},[G,O]),(0,v.useEffect)(()=>{V(null)},[b,S,O]);let q=t.open.filter(e=>e.running||(S===null||e.clientName===S)&&T(e,O)),J=(S?t.completed.filter(e=>e.clientName===S):t.completed).filter(e=>T(e,O)),Y=(0,v.useCallback)(async()=>{let t=await e(`/api/admin/tasks-list`);t.ok&&n(await t.json()),i(!0)},[e]);(0,v.useEffect)(()=>{Y()},[Y]);let X=(0,v.useCallback)(async(t,n,r)=>{if(f.current)return!1;f.current=!0,u(!0);try{return await e(t,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({taskId:n,...r})}),await Y(),!0}finally{f.current=!1,u(!1)}},[e,Y]),ie=(0,v.useCallback)(async e=>{await X(`/api/admin/task-complete`,e)&&console.log(`[tasks-ui] op=complete taskId=${e.slice(0,8)} confirmed=true`)},[X]),ae=(0,v.useCallback)((e,t)=>{let n=String(Math.round(e.secondsLogged/60));p.current=n,F(t),L(n)},[]),Z=(0,v.useCallback)(()=>{F(null),L(``)},[]),oe=(0,v.useCallback)(async e=>{let t=I.trim(),n=Number(t);if(!(t===``||!Number.isInteger(n)||n<0)){if(t===p.current){Z();return}F(null),L(``),await X(`/api/admin/task-time-adjust`,e,{newSeconds:n*60})}},[I,X,Z]),se=(0,v.useCallback)(e=>{X(`/api/admin/task-time-adjust`,e,{newSeconds:0})},[X]);if(!r)return(0,E.jsxs)(`div`,{className:`tasks-loading`,children:[(0,E.jsx)(o,{size:18,className:`spin`}),` Loading…`]});let Q=e=>e.taskId!==null&&P===e.taskId,$=(e,t)=>Q(e)?(0,E.jsxs)(`div`,{className:`tasks-edit`,children:[(0,E.jsx)(`input`,{className:`tasks-edit-input`,type:`number`,min:0,step:1,"aria-label":`Logged minutes`,value:I,onChange:e=>L(e.target.value)}),(0,E.jsx)(`span`,{className:`tasks-edit-unit`,children:`min`}),(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-start`,disabled:l,onClick:()=>void oe(t),children:[(0,E.jsx)(s,{size:14}),` Save`]}),(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-stop`,onClick:Z,children:[(0,E.jsx)(a,{size:14}),` Cancel`]})]}):(0,E.jsxs)(E.Fragment,{children:[(0,E.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:()=>ae(e,t),children:(0,E.jsx)(c,{size:14})}),(0,E.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:()=>se(t),children:(0,E.jsx)(te,{size:14})})]});return(0,E.jsxs)(`div`,{className:`tasks-body`,children:[R!==null&&(0,E.jsx)(N,{task:H??null,onClose:()=>z(null)}),(0,E.jsxs)(`div`,{className:`tasks-tabs`,children:[(0,E.jsxs)(`button`,{className:`tasks-tab ${b===`open`?`tasks-tab-active`:``}`,onClick:()=>x(`open`),children:[`Open `,(0,E.jsx)(`span`,{className:`tasks-tab-badge`,children:t.open.length})]}),(0,E.jsxs)(`button`,{className:`tasks-tab ${b===`completed`?`tasks-tab-active`:``}`,onClick:()=>x(`completed`),children:[`Completed `,(0,E.jsx)(`span`,{className:`tasks-tab-badge`,children:t.completed.length})]}),(0,E.jsxs)(`button`,{className:`tasks-tab ${b===`clients`?`tasks-tab-active`:``}`,onClick:()=>x(`clients`),children:[`Clients `,(0,E.jsx)(`span`,{className:`tasks-tab-badge`,children:U.length})]})]}),b===`clients`?(0,E.jsx)(M,{clients:U,onSelect:K}):(0,E.jsxs)(E.Fragment,{children:[S&&(0,E.jsxs)(`div`,{className:`tasks-filter-banner`,children:[(0,E.jsxs)(`span`,{children:[`Showing `,S]}),(0,E.jsx)(`button`,{className:`tasks-filter-clear`,onClick:()=>C(null),children:`Clear`})]}),G.length>0&&(0,E.jsxs)(`div`,{className:`tasks-assignee-bar`,children:[(0,E.jsxs)(`button`,{className:`tasks-assignee-chip ${O===null?`tasks-assignee-chip-active`:``}`,"aria-pressed":O===null,onClick:()=>k(null),children:[`All `,(0,E.jsx)(`span`,{className:`tasks-assignee-count`,children:W.open.length})]}),G.map(e=>(0,E.jsxs)(`button`,{className:`tasks-assignee-chip ${O===e.userId?`tasks-assignee-chip-active`:``}`,"aria-pressed":O===e.userId,"aria-label":`Assignee ${e.label}`,title:e.userId===`__unassigned__`?`Tasks with no assigned admin`:`AdminUser ${e.userId}`,onClick:()=>k(O===e.userId?null:e.userId),children:[e.label,` `,(0,E.jsx)(`span`,{className:`tasks-assignee-count`,children:e.openCount})]},e.userId))]}),b===`open`?(0,E.jsxs)(`section`,{className:`tasks-card`,children:[(0,E.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,E.jsx)(`span`,{className:`tasks-card-title`,children:`Open tasks`}),(0,E.jsxs)(`span`,{className:`tasks-card-count`,children:[q.length,` to do`]})]}),q.length===0&&(0,E.jsx)(`div`,{className:`tasks-empty`,children:`No open tasks.`}),q.map(e=>(0,E.jsxs)(`div`,{className:`tasks-row`,children:[e.taskId===null?(0,E.jsx)(`span`,{className:`tasks-check tasks-check-done`,title:`This task has no id, so it cannot be completed. Repair it by running platform/scripts/backfill-task-ids.sh on this install.`,children:(0,E.jsx)(g,{size:18})}):(0,E.jsx)(`button`,{className:`tasks-check`,"aria-label":`Complete task: ${e.name}`,disabled:l||e.running,title:e.running?`Stop the timer before completing`:`Complete this task`,onClick:()=>V(e.taskId),children:(0,E.jsx)(g,{size:18})}),(0,E.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>z(e.rowKey),children:(0,E.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,E.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,E.jsx)(`div`,{className:`tasks-row-sub`,children:A(e,D(e))})]})}),(0,E.jsx)(`div`,{className:`tasks-row-elapsed`,children:m(j(e,_))}),(0,E.jsx)(`div`,{className:`tasks-row-controls`,children:e.taskId!==null&&B===e.taskId?(0,E.jsxs)(E.Fragment,{children:[(0,E.jsx)(`span`,{className:`tasks-confirm-label`,children:`Complete?`}),(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-start`,disabled:l,onClick:()=>{V(null),ie(e.taskId)},children:[(0,E.jsx)(s,{size:14}),` Confirm complete`]}),(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-stop`,onClick:()=>V(null),children:[(0,E.jsx)(a,{size:14}),` Keep open`]})]}):e.taskId===null?(0,E.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,E.jsxs)(E.Fragment,{children:[$(e,e.taskId),Q(e)?null:e.running?(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-stop`,disabled:l,onClick:()=>void X(`/api/admin/task-timer-stop`,e.taskId),children:[(0,E.jsx)(d,{size:14}),` Stop`]}):(0,E.jsxs)(`button`,{className:`tasks-btn tasks-btn-start`,disabled:l,onClick:()=>void X(`/api/admin/task-timer-start`,e.taskId),children:[(0,E.jsx)(ee,{size:14}),` Start`]})]})})]},e.rowKey))]}):(0,E.jsxs)(`section`,{className:`tasks-card`,children:[(0,E.jsxs)(`div`,{className:`tasks-card-head`,children:[(0,E.jsx)(`span`,{className:`tasks-card-title`,children:`Completed`}),(0,E.jsxs)(`span`,{className:`tasks-card-count`,children:[J.length,` done`]})]}),J.length===0&&(0,E.jsx)(`div`,{className:`tasks-empty`,children:`Nothing completed yet.`}),J.map(e=>(0,E.jsxs)(`div`,{className:`tasks-row tasks-row-done`,children:[(0,E.jsx)(`span`,{className:`tasks-check tasks-check-done`,children:(0,E.jsx)(h,{size:18})}),(0,E.jsx)(`button`,{className:`tasks-row-open`,"aria-label":`Open task detail: ${e.name}`,onClick:()=>z(e.rowKey),children:(0,E.jsxs)(`div`,{className:`tasks-row-main`,children:[(0,E.jsx)(`div`,{className:`tasks-row-name`,children:e.name}),(0,E.jsx)(`div`,{className:`tasks-row-sub`,children:A(e,re(e))})]})}),(0,E.jsxs)(`div`,{className:`tasks-row-elapsed`,children:[m(e.secondsLogged),e.fee==null?``:` · £${e.fee}`]}),(0,E.jsx)(`div`,{className:`tasks-row-controls`,children:e.taskId===null?(0,E.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,cacheKey:n}=p({initialCacheKey:e,surface:`tasks`}),{subAccounts:r,activeAccountId:i,switching:a,switchAccount:o}=f(n),s=(0,v.useCallback)(()=>{try{sessionStorage.removeItem(`maxy-admin-session-key`)}catch{}window.location.href=`/`},[]);return(0,E.jsxs)(`main`,{className:`tasks-main`,children:[(0,E.jsx)(l,{variant:`operator`,onNavigate:(0,v.useCallback)(e=>{e===`chat`&&(window.location.href=`/`)},[]),onToggleSidebar:()=>{},sidebarOpen:!1,onLogout:s,onDisconnect:async()=>!0,disconnecting:!1,cacheKey:n,subAccounts:r,activeAccountId:i,switchingAccount:a,onSwitchAccount:o}),(0,E.jsx)(P,{adminFetch:t})]})}function I(){let[e,t]=(0,v.useState)(null),[n,r]=(0,v.useState)(!1);return(0,v.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,E.jsx)(u,{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(`maxy-admin-session-key`)}catch{}window.location.href=`/`},children:(0,E.jsx)(`div`,{className:`tasks-page tasks-page-full`,children:(0,E.jsx)(F,{cacheKey:e})})}):(0,E.jsx)(`div`,{className:`tasks-page`,children:(0,E.jsxs)(`div`,{className:`tasks-empty`,children:[(0,E.jsx)(`p`,{children:`You are not signed in.`}),(0,E.jsxs)(`p`,{children:[`Open the `,(0,E.jsx)(`a`,{href:`/`,className:`tasks-link`,children:`main admin page`}),` and log in, then return here.`]})]})}):(0,E.jsx)(`div`,{className:`tasks-page`,children:(0,E.jsxs)(`div`,{className:`tasks-loading`,children:[(0,E.jsx)(o,{size:18,className:`spin`}),` Loading…`]})})}(0,_.createRoot)(document.getElementById(`root`)).render((0,E.jsx)(I,{}));
|
package/payload/server/public/assets/{time-entry-format-j669DgXj.js → time-entry-format-DPOBIE18.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{_ as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{_ as e}from"./useSubAccountSwitcher-v8LyBzZN.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};
|
package/payload/server/public/assets/{triangle-alert-BPgCgIef.js → triangle-alert-Dz-CZKo5.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{_ as e}from"./useSubAccountSwitcher-
|
|
1
|
+
import{_ as e}from"./useSubAccountSwitcher-v8LyBzZN.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};
|
package/payload/server/public/assets/{useCopyFeedback-BmLa2aes.js → useCopyFeedback-wtUHGohk.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,_ as n}from"./useSubAccountSwitcher-
|
|
1
|
+
import{o as e}from"./chunk-TPjIAO9U.js";import{D as t,_ as n}from"./useSubAccountSwitcher-v8LyBzZN.js";import{t as r}from"./useSelectionMode-sph7AQT5.js";var i=n(`chevron-down`,[[`path`,{d:`m6 9 6 6 6-6`,key:`qrunsl`}]]),a=e(t(),1);function o(e){let[t,n]=(0,a.useState)(`idle`),i=(0,a.useRef)(null),o=(0,a.useRef)(e?.onResult);return o.current=e?.onResult,(0,a.useEffect)(()=>()=>{i.current&&clearTimeout(i.current)},[]),{status:t,copy:(0,a.useCallback)(async e=>{let t=await r(e);n(t?`ok`:`fail`),o.current?.(t),i.current&&clearTimeout(i.current),i.current=setTimeout(()=>n(`idle`),1500)},[])}}export{i as n,o as t};
|
package/payload/server/public/assets/{useSelectionMode-DnnM7A8-.js → useSelectionMode-sph7AQT5.js}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
import"./chunk-TPjIAO9U.js";import{D as e,S as t,_ as n,f as r}from"./useSubAccountSwitcher-
|
|
1
|
+
import"./chunk-TPjIAO9U.js";import{D as e,S as t,_ as n,f as r}from"./useSubAccountSwitcher-v8LyBzZN.js";var i=n(`download`,[[`path`,{d:`M12 15V3`,key:`m9g1x1`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}],[`path`,{d:`m7 10 5 5 5-5`,key:`brsn70`}]]),a=n(`file-text`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 9H8`,key:`b1mrlr`}],[`path`,{d:`M16 13H8`,key:`t4e002`}],[`path`,{d:`M16 17H8`,key:`z1uh3a`}]]),o=n(`message-circle`,[[`path`,{d:`M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719`,key:`1sd12s`}]]),s=n(`plus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`M12 5v14`,key:`s699le`}]]),c=n(`refresh-cw`,[[`path`,{d:`M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8`,key:`v9h5vc`}],[`path`,{d:`M21 3v5h-5`,key:`1q7to0`}],[`path`,{d:`M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16`,key:`3uifl3`}],[`path`,{d:`M8 16H3v5`,key:`1cv678`}]]),l=t(),u={whatsapp:{fill:`#25D366`,label:`WhatsApp`,path:`M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.71.306 1.263.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.247-.694.247-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.885-9.885 9.885M20.52 3.449C18.24 1.245 15.24.044 12.045.044 5.463.044.103 5.404.1 11.99c0 2.096.546 4.142 1.588 5.945L0 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.585 0 11.946-5.36 11.949-11.946 0-3.193-1.24-6.19-3.495-8.445`},telegram:{fill:`#229ED9`,label:`Telegram`,path:`M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z`}};function d({channel:e,size:t=16}){let n=u[e];return(0,l.jsx)(`svg`,{width:t,height:t,viewBox:`0 0 24 24`,fill:n.fill,role:`img`,"aria-label":n.label,className:`channel-icon`,children:(0,l.jsx)(`path`,{d:n.path})})}var f={whatsapp:`whatsapp`,telegram:`telegram`};function p({channel:e,size:t=13}){let n=f[e];return n?(0,l.jsx)(d,{channel:n,size:t}):e===`webchat`?(0,l.jsx)(r,{size:t,className:`channel-icon`,role:`img`,"aria-label":`Web chat`,style:{color:`var(--text-tertiary)`}}):(0,l.jsx)(o,{size:t,className:`channel-icon`,role:`img`,"aria-label":e,style:{color:`var(--text-tertiary)`}})}function m(e){let t=h(e);if(!t.toLowerCase().endsWith(`@g.us`))return!1;let n=t.slice(0,t.length-5);return!n||n.includes(`@`)?!1:/^[0-9]+(-[0-9]+)*$/.test(n)}function h(e){let t=e.trim();for(;;){let e=t;if(t=t.replace(/^whatsapp:/i,``).trim(),t===e)return t}}var g=[`whatsapp`,`telegram`];function _(e){return e.source===`store`?`store:${e.remoteJid??``}`:e.sessionId}var v=[`whatsapp`,`telegram`,`webchat`],y={whatsapp:`WhatsApp`,telegram:`Telegram`,webchat:`Webchat`};function b(e){return v.map(t=>({channel:t,label:y[t],rows:e.filter(e=>e.channel===t)})).filter(e=>e.rows.length>0)}function x(e){let t=e.operatorName??e.whatsappName;return t?e.senderId?`${t} ${e.senderId}`:t:e.senderId??e.title}function S(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 C(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 w(e,t,n=`data`){return`/api/admin/files/download?session_key=${encodeURIComponent(e)}&path=${encodeURIComponent(t)}&disposition=inline`+(n===`data`?``:`&root=${encodeURIComponent(n)}`)}e();async function T(e){if(navigator.clipboard)try{return await navigator.clipboard.writeText(e),!0}catch{}try{let t=document.createElement(`textarea`);t.value=e,t.style.position=`fixed`,t.style.opacity=`0`,document.body.appendChild(t),t.select();let n=document.execCommand(`copy`);return document.body.removeChild(t),n}catch{return!1}}export{b as a,_ as c,p as d,c as f,i as h,C as i,m as l,a as m,w as n,x as o,s as p,S as r,g as s,T as t,d as u};
|