@hienlh/ppm 0.8.92 → 0.8.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/.claude.bak/agent-memory/tester/MEMORY.md +3 -0
  2. package/.claude.bak/agent-memory/tester/project-ppm-test-conventions.md +32 -0
  3. package/CHANGELOG.md +3 -34
  4. package/dist/web/assets/api-settings-Dh4oFOpX.js +1 -0
  5. package/dist/web/assets/{browser-tab-CQojbRRg.js → browser-tab-DJLH0eDY.js} +1 -1
  6. package/dist/web/assets/chat-tab-C8HFXqGS.js +8 -0
  7. package/dist/web/assets/{code-editor-Dp3w7ZdH.js → code-editor-CaGdx-lS.js} +1 -1
  8. package/dist/web/assets/{database-viewer-DXEZ9XyO.js → database-viewer-i4Ddk6mO.js} +1 -1
  9. package/dist/web/assets/{diff-viewer-gjTmjJxA.js → diff-viewer-DQDS7yjv.js} +1 -1
  10. package/dist/web/assets/{git-graph-BPP0uvo6.js → git-graph-DUs-TN1u.js} +1 -1
  11. package/dist/web/assets/index-DhtLEnPD.css +2 -0
  12. package/dist/web/assets/{index-BiKAvKp1.js → index-Dm6RN1A1.js} +11 -11
  13. package/dist/web/assets/keybindings-store-qVLDZz97.js +1 -0
  14. package/dist/web/assets/{markdown-renderer-DJTeCvlY.js → markdown-renderer-L1NgC2Rw.js} +1 -1
  15. package/dist/web/assets/{postgres-viewer-D-_FH_ZH.js → postgres-viewer-_uDispGW.js} +1 -1
  16. package/dist/web/assets/{settings-tab-BQxPvO96.js → settings-tab-Bp4041i6.js} +1 -1
  17. package/dist/web/assets/{sqlite-viewer-DTZx5FY3.js → sqlite-viewer-GW-QCjHn.js} +1 -1
  18. package/dist/web/assets/{terminal-tab-BVllaZ_J.js → terminal-tab-E4cWujj4.js} +1 -1
  19. package/dist/web/assets/{use-monaco-theme-FpL5fLOV.js → use-monaco-theme-zABXAAla.js} +1 -1
  20. package/dist/web/index.html +3 -3
  21. package/dist/web/sw.js +1 -1
  22. package/package.json +1 -1
  23. package/src/providers/claude-agent-sdk.ts +9 -61
  24. package/src/providers/cli-provider-base.ts +0 -6
  25. package/src/server/routes/chat.ts +14 -33
  26. package/src/server/routes/settings.ts +0 -27
  27. package/src/server/ws/chat.ts +1 -7
  28. package/src/services/account.service.ts +2 -2
  29. package/src/services/claude-usage.service.ts +7 -2
  30. package/src/services/cloud-ws.service.ts +0 -1
  31. package/src/services/cloud.service.ts +0 -1
  32. package/src/services/db.service.ts +23 -11
  33. package/src/services/mcp-config.service.ts +6 -15
  34. package/src/services/supervisor.ts +2 -22
  35. package/src/types/api.ts +0 -1
  36. package/src/types/chat.ts +0 -2
  37. package/src/web/app.tsx +2 -3
  38. package/src/web/components/chat/chat-history-bar.tsx +7 -21
  39. package/src/web/components/chat/chat-tab.tsx +10 -15
  40. package/src/web/components/chat/message-list.tsx +3 -7
  41. package/src/web/components/chat/session-picker.tsx +0 -1
  42. package/src/web/components/chat/usage-badge.tsx +8 -58
  43. package/src/web/components/layout/upgrade-banner.tsx +5 -15
  44. package/src/web/components/settings/settings-tab.tsx +0 -4
  45. package/src/web/hooks/use-chat.ts +0 -17
  46. package/dist/web/assets/api-settings-Bid0NHuI.js +0 -1
  47. package/dist/web/assets/chat-tab-DLpVS21v.js +0 -8
  48. package/dist/web/assets/index-CqhIj4Ko.css +0 -2
  49. package/dist/web/assets/keybindings-store-CRWbpzzj.js +0 -1
  50. package/docs/streaming-input-guide.md +0 -267
  51. package/snapshot-state.md +0 -1526
  52. package/src/web/components/settings/change-password-section.tsx +0 -128
  53. package/test-session-ops.mjs +0 -444
  54. package/test-tokens.mjs +0 -212
@@ -1,5 +1,5 @@
1
1
  import { useState, useEffect, useRef } from "react";
2
- import { Activity, RefreshCw, Eye, Download, Upload, Plus, X, Settings, Trash2 } from "lucide-react";
2
+ import { Activity, RefreshCw, Eye, Download, Upload, Plus, X, Settings } from "lucide-react";
3
3
  import { Switch } from "@/components/ui/switch";
4
4
  import type { UsageInfo, LimitBucket } from "../../../types/chat";
5
5
  import {
@@ -7,7 +7,6 @@ import {
7
7
  getActiveAccount,
8
8
  getAllAccountUsages,
9
9
  patchAccount,
10
- deleteAccount,
11
10
  type AccountInfo,
12
11
  type AccountUsageEntry,
13
12
  type OAuthProfileData,
@@ -153,12 +152,11 @@ function formatLastUpdated(ts: number | null | undefined): string | null {
153
152
  return `${days}d ago`;
154
153
  }
155
154
 
156
- function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onDelete, onExport, onViewProfile, flash }: {
155
+ function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onExport, onViewProfile, flash }: {
157
156
  entry: AccountUsageEntry;
158
157
  isActive: boolean;
159
158
  accountInfo?: AccountInfo;
160
159
  onToggle?: (id: string, status: string) => void;
161
- onDelete?: (id: string, display: string) => void;
162
160
  onExport?: (id: string) => void;
163
161
  onViewProfile?: (profile: OAuthProfileData) => void;
164
162
  flash?: boolean;
@@ -166,24 +164,19 @@ function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onDelete, on
166
164
  const { usage } = entry;
167
165
  const hasBuckets = usage.session || usage.weekly || usage.weeklyOpus || usage.weeklySonnet;
168
166
  const status = accountInfo?.status ?? entry.accountStatus;
169
- // Expired: has expiresAt in the past AND no refresh token to auto-renew
170
- const isExpired = !!(accountInfo && !accountInfo.hasRefreshToken && accountInfo.expiresAt && accountInfo.expiresAt < Math.floor(Date.now() / 1000));
171
167
 
172
168
  return (
173
- <div className={`rounded-md border p-2 space-y-1.5 transition-colors duration-500 min-w-[200px] shrink-0 snap-start ${isExpired ? "opacity-50" : ""} ${flash ? "bg-primary/10 border-primary/40" : ""} ${isActive ? "border-primary/30 bg-primary/5" : "border-border/50"}`}>
169
+ <div className={`rounded-md border p-2 space-y-1.5 transition-colors duration-500 min-w-[200px] shrink-0 snap-start ${flash ? "bg-primary/10 border-primary/40" : ""} ${isActive ? "border-primary/30 bg-primary/5" : "border-border/50"}`}>
174
170
  <div className="flex items-center gap-1.5">
175
171
  <span className="text-xs font-medium truncate flex-1 min-w-0">
176
172
  {entry.accountLabel ?? entry.accountId.slice(0, 8)}
177
173
  </span>
178
- {isExpired && (
179
- <span className="text-[9px] text-red-500 shrink-0 font-medium">Expired</span>
180
- )}
181
- {!entry.isOAuth && !isExpired && (
174
+ {!entry.isOAuth && (
182
175
  <span className="text-[9px] text-text-subtle shrink-0">API key</span>
183
176
  )}
184
177
  {/* Account controls */}
185
178
  <div className="flex items-center gap-0.5 shrink-0">
186
- {!isExpired && onViewProfile && accountInfo?.profileData && (
179
+ {onViewProfile && accountInfo?.profileData && (
187
180
  <button
188
181
  className="p-1 rounded cursor-pointer text-text-subtle hover:text-foreground hover:bg-surface-elevated transition-colors"
189
182
  onClick={() => onViewProfile(accountInfo.profileData!)}
@@ -192,7 +185,7 @@ function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onDelete, on
192
185
  <Eye className="size-3" />
193
186
  </button>
194
187
  )}
195
- {!isExpired && onExport && entry.isOAuth && (
188
+ {onExport && entry.isOAuth && (
196
189
  <button
197
190
  className="p-1 rounded cursor-pointer text-text-subtle hover:text-blue-500 hover:bg-surface-elevated transition-colors"
198
191
  onClick={() => onExport(entry.accountId)}
@@ -201,7 +194,7 @@ function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onDelete, on
201
194
  <Download className="size-3" />
202
195
  </button>
203
196
  )}
204
- {!isExpired && onToggle && (
197
+ {onToggle && (
205
198
  <Switch
206
199
  checked={status !== "disabled"}
207
200
  onCheckedChange={() => onToggle(entry.accountId, status)}
@@ -209,15 +202,6 @@ function AccountUsageCard({ entry, isActive, accountInfo, onToggle, onDelete, on
209
202
  className="scale-[0.6] cursor-pointer"
210
203
  />
211
204
  )}
212
- {onDelete && (
213
- <button
214
- className="p-1 rounded cursor-pointer text-text-subtle hover:text-red-500 hover:bg-surface-elevated transition-colors"
215
- onClick={() => onDelete(entry.accountId, entry.accountLabel ?? entry.accountId.slice(0, 8))}
216
- title="Remove account"
217
- >
218
- <Trash2 className="size-3" />
219
- </button>
220
- )}
221
205
  </div>
222
206
  </div>
223
207
  {hasBuckets ? (
@@ -263,7 +247,6 @@ export function UsageDetailPanel({ usage, visible, onClose, onReload, loading, l
263
247
  const [showExportDialog, setShowExportDialog] = useState(false);
264
248
  const [showImportDialog, setShowImportDialog] = useState(false);
265
249
  const [showRotationSettings, setShowRotationSettings] = useState(false);
266
- const [deleteTarget, setDeleteTarget] = useState<{ id: string; display: string } | null>(null);
267
250
  const [exportPreselect, setExportPreselect] = useState<string | null>(null);
268
251
  const [message, setMessage] = useState<string | null>(null);
269
252
  const msgTimer = useRef<ReturnType<typeof setTimeout>>(undefined);
@@ -342,26 +325,13 @@ export function UsageDetailPanel({ usage, visible, onClose, onReload, loading, l
342
325
  onReload?.();
343
326
  }
344
327
 
345
- async function confirmDeleteAccount() {
346
- if (!deleteTarget) return;
347
- try {
348
- await deleteAccount(deleteTarget.id);
349
- showMessage(`Account "${deleteTarget.display}" removed.`);
350
- loadAll();
351
- onReload?.();
352
- } catch (e) {
353
- showMessage(`Failed to remove: ${(e as Error).message}`);
354
- }
355
- setDeleteTarget(null);
356
- }
357
-
358
328
  function openExportAll() {
359
329
  setExportPreselect(null);
360
330
  setShowExportDialog(true);
361
331
  }
362
332
 
363
333
  return (
364
- <div className="relative border-b border-border bg-surface px-3 py-2.5 space-y-2.5 max-h-[350px] overflow-y-auto">
334
+ <div className="border-b border-border bg-surface px-3 py-2.5 space-y-2.5 max-h-[350px] overflow-y-auto">
365
335
  <div className="flex items-center justify-between">
366
336
  <div className="flex items-center gap-2">
367
337
  <span className="text-xs font-semibold text-text-primary">Usage & Accounts</span>
@@ -414,7 +384,6 @@ export function UsageDetailPanel({ usage, visible, onClose, onReload, loading, l
414
384
  isActive={entry.accountId === (activeAccountId ?? usage.activeAccountId)}
415
385
  accountInfo={accountMap.get(entry.accountId)}
416
386
  onToggle={handleToggle}
417
- onDelete={(id, display) => setDeleteTarget({ id, display })}
418
387
  onExport={(id) => { setExportPreselect(id); setShowExportDialog(true); }}
419
388
  onViewProfile={setProfileView}
420
389
  flash={flashIds.has(entry.accountId)}
@@ -491,25 +460,6 @@ export function UsageDetailPanel({ usage, visible, onClose, onReload, loading, l
491
460
  </button>
492
461
  </div>
493
462
 
494
- {/* Delete confirmation overlay */}
495
- {deleteTarget && (
496
- <div className="absolute inset-0 z-10 flex items-center justify-center bg-background/80 backdrop-blur-sm rounded-md">
497
- <div className="bg-surface border border-border rounded-lg shadow-lg p-4 mx-4 max-w-[280px] w-full space-y-3">
498
- <p className="text-xs text-text-primary text-center">
499
- Remove <strong className="text-foreground">{deleteTarget.display}</strong>?
500
- </p>
501
- <div className="flex gap-2">
502
- <button onClick={() => setDeleteTarget(null)} className="flex-1 px-3 py-1.5 rounded-md text-xs border border-border text-text-secondary hover:bg-surface-hover cursor-pointer transition-colors">
503
- Cancel
504
- </button>
505
- <button onClick={confirmDeleteAccount} className="flex-1 px-3 py-1.5 rounded-md text-xs bg-red-500 text-white hover:bg-red-600 cursor-pointer transition-colors">
506
- Remove
507
- </button>
508
- </div>
509
- </div>
510
- </div>
511
- )}
512
-
513
463
  {/* Account dialogs */}
514
464
  <AddAccountDialog open={showAddDialog} onOpenChange={setShowAddDialog} onSuccess={handleSuccess} />
515
465
  <ExportAccountsDialog open={showExportDialog} onOpenChange={(v) => { setShowExportDialog(v); if (!v) setExportPreselect(null); }} accounts={accounts} preselectId={exportPreselect} onMessage={showMessage} />
@@ -12,11 +12,7 @@ interface UpgradeStatus {
12
12
  installMethod: string;
13
13
  }
14
14
 
15
- interface UpgradeBannerProps {
16
- onVisibilityChange?: (visible: boolean) => void;
17
- }
18
-
19
- export function UpgradeBanner({ onVisibilityChange }: UpgradeBannerProps) {
15
+ export function UpgradeBanner() {
20
16
  const [availableVersion, setAvailableVersion] = useState<string | null>(null);
21
17
  const [upgrading, setUpgrading] = useState(false);
22
18
  const [dismissed, setDismissed] = useState(false);
@@ -65,16 +61,10 @@ export function UpgradeBanner({ onVisibilityChange }: UpgradeBannerProps) {
65
61
  setDismissed(true);
66
62
  }, [availableVersion]);
67
63
 
68
- const visible = !!availableVersion && !dismissed;
69
-
70
- useEffect(() => {
71
- onVisibilityChange?.(visible);
72
- }, [visible, onVisibilityChange]);
73
-
74
- if (!visible) return null;
64
+ if (!availableVersion || dismissed) return null;
75
65
 
76
66
  return (
77
- <div className="w-full bg-blue-600 dark:bg-blue-700 text-white px-3 py-1 flex items-center justify-between gap-2 z-50 text-sm shrink-0">
67
+ <div className="w-full bg-blue-600 dark:bg-blue-700 text-white px-3 py-2 flex items-center justify-between gap-2 z-50 text-sm shrink-0">
78
68
  {upgrading ? (
79
69
  <div className="flex items-center gap-2 flex-1 min-w-0">
80
70
  <Loader2 className="size-4 animate-spin shrink-0" />
@@ -93,13 +83,13 @@ export function UpgradeBanner({ onVisibilityChange }: UpgradeBannerProps) {
93
83
  <div className="flex items-center gap-1 shrink-0">
94
84
  <button
95
85
  onClick={handleUpgrade}
96
- className="bg-white text-blue-600 font-medium rounded-full px-3 py-0.5 text-xs min-h-[28px] min-w-[28px] flex items-center justify-center hover:bg-blue-50 active:bg-blue-100 transition-colors"
86
+ className="bg-white text-blue-600 font-medium rounded-full px-3 min-h-[44px] min-w-[44px] flex items-center justify-center hover:bg-blue-50 active:bg-blue-100 transition-colors"
97
87
  >
98
88
  Upgrade
99
89
  </button>
100
90
  <button
101
91
  onClick={handleDismiss}
102
- className="min-h-[28px] min-w-[28px] flex items-center justify-center rounded-full hover:bg-blue-500 active:bg-blue-800 transition-colors"
92
+ className="min-h-[44px] min-w-[44px] flex items-center justify-center rounded-full hover:bg-blue-500 active:bg-blue-800 transition-colors"
103
93
  aria-label="Dismiss upgrade notification"
104
94
  >
105
95
  <X className="size-4" />
@@ -14,7 +14,6 @@ import { KeyboardShortcutsSection } from "./keyboard-shortcuts-section";
14
14
  import { TelegramSettingsSection } from "./telegram-settings-section";
15
15
  import { ProxySettingsSection } from "./proxy-settings-section";
16
16
  import { McpSettingsSection } from "./mcp-settings-section";
17
- import { ChangePasswordSection } from "./change-password-section";
18
17
  import { usePushNotification } from "@/hooks/use-push-notification";
19
18
 
20
19
  const THEME_OPTIONS: { value: Theme; label: string; icon: React.ElementType }[] = [
@@ -129,9 +128,6 @@ export function SettingsTab() {
129
128
  </p>
130
129
  </section>
131
130
 
132
- {/* Security: Change Password */}
133
- <ChangePasswordSection />
134
-
135
131
  {/* Quick: Theme */}
136
132
  <section className="space-y-2">
137
133
  <h3 className="text-xs font-medium text-muted-foreground">Theme</h3>
@@ -22,7 +22,6 @@ interface UseChatReturn {
22
22
  connectingElapsed: number;
23
23
  pendingApproval: ApprovalRequest | null;
24
24
  contextWindowPct: number | null;
25
- compactStatus: "compacting" | null;
26
25
  sessionTitle: string | null;
27
26
  /** When CLI provider assigns a different session ID, this holds the new ID */
28
27
  migratedSessionId: string | null;
@@ -52,7 +51,6 @@ export function useChat(sessionId: string | null, providerId = "claude", project
52
51
  const [connectingElapsed, setConnectingElapsed] = useState(0);
53
52
  const [pendingApproval, setPendingApproval] = useState<ApprovalRequest | null>(null);
54
53
  const [contextWindowPct, setContextWindowPct] = useState<number | null>(null);
55
- const [compactStatus, setCompactStatus] = useState<"compacting" | null>(null);
56
54
  const [sessionTitle, setSessionTitle] = useState<string | null>(null);
57
55
  const [isConnected, setIsConnected] = useState(false);
58
56
  const [migratedSessionId, setMigratedSessionId] = useState<string | null>(null);
@@ -272,19 +270,6 @@ export function useChat(sessionId: string | null, providerId = "claude", project
272
270
  return;
273
271
  }
274
272
 
275
- // Handle compact status events
276
- if ((data as any).type === "compact_status") {
277
- const status = (data as any).status;
278
- if (status === "compacting") {
279
- setCompactStatus("compacting");
280
- } else if (status === "done") {
281
- setCompactStatus(null);
282
- // Refresh messages to show compacted history
283
- refetchRef.current?.();
284
- }
285
- return;
286
- }
287
-
288
273
  // Handle phase transitions from BE
289
274
  if ((data as any).type === "phase_changed") {
290
275
  const p = (data as any).phase as SessionPhase;
@@ -377,7 +362,6 @@ export function useChat(sessionId: string | null, providerId = "claude", project
377
362
  setPhase("idle");
378
363
  phaseRef.current = "idle";
379
364
  setPendingApproval(null);
380
- setCompactStatus(null);
381
365
  streamingContentRef.current = "";
382
366
  streamingEventsRef.current = [];
383
367
  setIsConnected(false);
@@ -566,7 +550,6 @@ export function useChat(sessionId: string | null, providerId = "claude", project
566
550
  connectingElapsed,
567
551
  pendingApproval,
568
552
  contextWindowPct,
569
- compactStatus,
570
553
  sessionTitle,
571
554
  migratedSessionId,
572
555
  sendMessage,
@@ -1 +0,0 @@
1
- import{r as e}from"./chunk-CFjPhJqf.js";import{t}from"./api-client-BKIT_Qeg.js";var n=e({addAccount:()=>a,deleteAccount:()=>o,exchangeOAuthCode:()=>d,getAISettings:()=>h,getAccountSettings:()=>c,getAccounts:()=>r,getActiveAccount:()=>i,getAllAccountUsages:()=>f,getOAuthUrl:()=>u,getProxySettings:()=>_,importAccounts:()=>p,patchAccount:()=>s,updateAISettings:()=>g,updateAccountSettings:()=>l,updateDeviceName:()=>m,updateProxySettings:()=>v});function r(){return t.get(`/api/accounts`)}function i(){return t.get(`/api/accounts/active`)}function a(e){return t.post(`/api/accounts`,e)}function o(e){return t.del(`/api/accounts/${e}`)}function s(e,n){return t.patch(`/api/accounts/${e}`,n)}function c(){return t.get(`/api/accounts/settings`)}function l(e){return t.put(`/api/accounts/settings`,e)}function u(){return t.get(`/api/accounts/oauth/url`)}function d(e,n){return t.post(`/api/accounts/oauth/exchange`,{code:e,state:n})}function f(){return t.get(`/api/accounts/usage`)}function p(e){return t.post(`/api/accounts/import`,e)}function m(e){return t.put(`/api/settings/device-name`,{device_name:e})}function h(){return t.get(`/api/settings/ai`)}function g(e){return t.put(`/api/settings/ai`,e)}function _(){return t.get(`/api/settings/proxy`)}function v(e){return t.put(`/api/settings/proxy`,e)}export{h as a,i as c,_ as d,p as f,v as g,l as h,d as i,f as l,g as m,n,c as o,s as p,o as r,r as s,a as t,u};
@@ -1,8 +0,0 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/api-client-BKIT_Qeg.js","assets/chunk-CFjPhJqf.js"])))=>i.map(i=>d[i]);
2
- import{o as e}from"./chunk-CFjPhJqf.js";import{t}from"./react-nm2Ru1Pt.js";import"./react-dom-Bpkvzu3U.js";import{n,t as r}from"./jsx-runtime-BRW_vwa9.js";import{t as i}from"./arrow-up--LjUXLEt.js";import{t as a}from"./chevron-right-CHnjJt4E.js";import{n as o,t as s}from"./markdown-renderer-DJTeCvlY.js";import{t as c}from"./columns-2-DbesTfa7.js";import{l,n as u,t as d}from"./tab-store--SlERlDs.js";import{t as f}from"./tag-Q2dZiSPX.js";import{t as p}from"./preload-helper-Bf_JiD2A.js";import"./dist-CALwEtco.js";import{n as m,r as h,t as g}from"./utils-DMiycH3O.js";import{i as _,r as v,t as y}from"./api-client-BKIT_Qeg.js";import{a as b,c as x,f as S,h as C,i as w,l as T,o as E,p as D,r as O,s as k,t as A,u as j}from"./api-settings-Bid0NHuI.js";import{$ as M,C as N,D as P,Dt as F,E as I,Et as L,G as R,H as z,I as B,J as V,K as H,O as U,Ot as ee,Q as W,S as G,St as te,T as K,Tt as ne,U as re,W as q,X as ie,Y as ae,Z as oe,_t as se,a as ce,at as J,bt as le,c as ue,ct as de,d as fe,dt as pe,et as me,f as he,ht as ge,it as _e,k as Y,l as ve,lt as ye,m as be,mt as xe,n as Se,o as Ce,ot as we,p as Te,q as Ee,r as De,rt as Oe,s as ke,tt as Ae,u as je,vt as Me,w as Ne,wt as Pe,xt as Fe}from"./index-BiKAvKp1.js";import"./chunk-GEFDOKGD-tDjHsAUs.js";import"./src-Dw4QhedI.js";import"./chunk-7R4GIKGN-Dvbyu4Zw.js";import"./chunk-HHEYEP7N-BBw_z0fW.js";import"./dist-Cep75xXf.js";import"./chunk-PU5JKC2W-C7Gry6md.js";import"./chunk-MX3YWQON-C2UEioMs.js";import"./chunk-YBOYWFTD-av5aeHLq.js";import"./chunk-PQ6SQG4A-DX0xW7kO.js";import"./chunk-KYZI473N-Djw13C-3.js";import"./chunk-O4XLMI2P-BsUWb9d0.js";import"./chunk-GLR3WWYH-DBdWQ3zy.js";import"./chunk-XPW4576I-BPEX8KhL.js";var Ie=n(`activity`,[[`path`,{d:`M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2`,key:`169zse`}]]),Le=n(`circle-x`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m15 9-6 6`,key:`1uzhvr`}],[`path`,{d:`m9 9 6 6`,key:`z0biqf`}]]),Re=n(`clipboard-check`,[[`rect`,{width:`8`,height:`4`,x:`8`,y:`2`,rx:`1`,ry:`1`,key:`tgr4d6`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2`,key:`116196`}],[`path`,{d:`m9 14 2 2 4-4`,key:`df797q`}]]),ze=n(`clipboard-list`,[[`rect`,{width:`8`,height:`4`,x:`8`,y:`2`,rx:`1`,ry:`1`,key:`tgr4d6`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2`,key:`116196`}],[`path`,{d:`M12 11h4`,key:`1jrz19`}],[`path`,{d:`M12 16h4`,key:`n85exb`}],[`path`,{d:`M8 11h.01`,key:`1dfujw`}],[`path`,{d:`M8 16h.01`,key:`18s6g9`}]]),Be=n(`hand`,[[`path`,{d:`M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2`,key:`1fvzgz`}],[`path`,{d:`M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2`,key:`1kc0my`}],[`path`,{d:`M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8`,key:`10h0bg`}],[`path`,{d:`M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15`,key:`1s1gnw`}]]),Ve=n(`history`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),He=n(`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`}]]),Ue=n(`list-ordered`,[[`path`,{d:`M11 5h10`,key:`1cz7ny`}],[`path`,{d:`M11 12h10`,key:`1438ji`}],[`path`,{d:`M11 19h10`,key:`11t30w`}],[`path`,{d:`M4 4h1v5`,key:`10yrso`}],[`path`,{d:`M4 9h2`,key:`r1h2o0`}],[`path`,{d:`M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02`,key:`xtkcd5`}]]),We=n(`list-todo`,[[`path`,{d:`M13 5h8`,key:`a7qcls`}],[`path`,{d:`M13 12h8`,key:`h98zly`}],[`path`,{d:`M13 19h8`,key:`c3s6r1`}],[`path`,{d:`m3 17 2 2 4-4`,key:`1jhpwq`}],[`rect`,{x:`3`,y:`4`,width:`6`,height:`6`,rx:`1`,key:`cif1o7`}]]),Ge=n(`mic-off`,[[`path`,{d:`M12 19v3`,key:`npa21l`}],[`path`,{d:`M15 9.34V5a3 3 0 0 0-5.68-1.33`,key:`1gzdoj`}],[`path`,{d:`M16.95 16.95A7 7 0 0 1 5 12v-2`,key:`cqa7eg`}],[`path`,{d:`M18.89 13.23A7 7 0 0 0 19 12v-2`,key:`16hl24`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}],[`path`,{d:`M9 9v3a3 3 0 0 0 5.12 2.12`,key:`r2i35w`}]]),Ke=n(`paperclip`,[[`path`,{d:`m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551`,key:`1miecu`}]]),qe=n(`settings-2`,[[`path`,{d:`M14 17H5`,key:`gfn3mx`}],[`path`,{d:`M19 7h-9`,key:`6i9tg`}],[`circle`,{cx:`17`,cy:`17`,r:`3`,key:`18b49y`}],[`circle`,{cx:`7`,cy:`7`,r:`3`,key:`dfmy0x`}]]),Je=n(`shield-alert`,[[`path`,{d:`M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z`,key:`oel41y`}],[`path`,{d:`M12 8v4`,key:`1got3b`}],[`path`,{d:`M12 16h.01`,key:`1drbdi`}]]),Ye=n(`shield-off`,[[`path`,{d:`m2 2 20 20`,key:`1ooewy`}],[`path`,{d:`M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71`,key:`1jlk70`}],[`path`,{d:`M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264`,key:`18rp1v`}]]),Xe=n(`sparkles`,[[`path`,{d:`M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z`,key:`1s2grr`}],[`path`,{d:`M20 2v4`,key:`1rf3ol`}],[`path`,{d:`M22 4h-4`,key:`gwowj6`}],[`circle`,{cx:`4`,cy:`20`,r:`2`,key:`6kqj1y`}]]),Ze=n(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),Qe=n(`zap`,[[`path`,{d:`M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z`,key:`1xq2db`}]]),X=e(t(),1),$e=3e4,et=1e3,tt=class{ws=null;url;handlers=[];reconnectAttempts=0;reconnectTimer=null;intentionalClose=!1;pendingMessages=[];constructor(e){this.url=e}connect(){this.intentionalClose=!1,this.cleanup();let e=window.location.protocol===`https:`?`wss:`:`ws:`,t=this.url.startsWith(`ws`)?this.url:`${e}//${window.location.host}${this.url}`;this.ws=new WebSocket(t),this.ws.onopen=()=>{this.reconnectAttempts=0;try{this.ws?.send(JSON.stringify({type:`ready`}))}catch{}if(this.pendingMessages.length>0){console.log(`[ws] flushing ${this.pendingMessages.length} queued message(s)`);for(let e of this.pendingMessages)try{this.ws?.send(e)}catch{}this.pendingMessages=[]}},this.ws.onmessage=e=>{for(let t of this.handlers)t(e)},this.ws.onclose=()=>{this.intentionalClose||this.scheduleReconnect()},this.ws.onerror=()=>{this.ws?.close()}}disconnect(){this.intentionalClose=!0,this.pendingMessages=[],this.cleanup(),this.reconnectTimer&&=(clearTimeout(this.reconnectTimer),null)}send(e){this.ws?.readyState===WebSocket.OPEN?this.ws.send(e):this.ws?.readyState===WebSocket.CONNECTING?(console.warn(`[ws] WS still CONNECTING — queuing message`),this.pendingMessages.push(e)):console.warn(`[ws] message dropped — readyState=${this.ws?.readyState??`no-ws`}`)}onMessage(e){return this.handlers.push(e),()=>{this.handlers=this.handlers.filter(t=>t!==e)}}get isConnected(){return this.ws?.readyState===WebSocket.OPEN}cleanup(){this.ws&&=(this.ws.onopen=null,this.ws.onclose=null,this.ws.onmessage=null,this.ws.onerror=null,(this.ws.readyState===WebSocket.OPEN||this.ws.readyState===WebSocket.CONNECTING)&&this.ws.close(),null)}scheduleReconnect(){let e=Math.min(et*2**this.reconnectAttempts,$e);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}};function nt({url:e,onMessage:t,autoConnect:n=!0}){let r=(0,X.useRef)(null);return(0,X.useEffect)(()=>{let i=new tt(e);return r.current=i,t&&i.onMessage(t),n&&i.connect(),()=>{i.disconnect(),r.current=null}},[e,n]),{send:(0,X.useCallback)(e=>{r.current?.send(e)},[]),connect:(0,X.useCallback)(()=>{r.current?.connect()},[]),disconnect:(0,X.useCallback)(()=>{r.current?.disconnect()},[])}}var rt=null;function it(){return rt||=new AudioContext,rt}function Z(e,t,n,r,i=`sine`){let a=it(),o=a.createOscillator(),s=a.createGain();o.type=i,o.frequency.value=e,s.gain.setValueAtTime(r,n),s.gain.exponentialRampToValueAtTime(.001,n+t),o.connect(s),s.connect(a.destination),o.start(n),o.stop(n+t)}function at(){let e=it().currentTime;Z(523,.15,e,.15),Z(659,.2,e+.12,.15)}function ot(){let e=it().currentTime;Z(880,.12,e,.18,`square`),Z(698,.12,e+.15,.18,`square`),Z(880,.15,e+.3,.15,`square`)}function st(){let e=it().currentTime;Z(440,.12,e,.12),Z(523,.12,e+.1,.12),Z(659,.18,e+.2,.12)}var ct={done:at,approval_request:ot,question:st};function lt(e){try{ct[e]?.()}catch{}}function ut(e){if(document.hidden)return!1;let{panels:t,focusedPanelId:n}=u.getState(),r=t[n];if(!r)return!1;let i=r.tabs.find(e=>e.id===r.activeTabId);return i?.type===`chat`&&i.metadata?.sessionId===e}function dt(e,t=`claude`,n=``){let[r,i]=(0,X.useState)([]),[a,o]=(0,X.useState)(!1),[s,c]=(0,X.useState)(`idle`),[l,u]=(0,X.useState)(!1),[d,f]=(0,X.useState)(0),[p,m]=(0,X.useState)(null),[h,g]=(0,X.useState)(null),[y,b]=(0,X.useState)(null),[x,S]=(0,X.useState)(null),[C,w]=(0,X.useState)(!1),[T,E]=(0,X.useState)(null),D=(0,X.useRef)(``),O=(0,X.useRef)([]),k=(0,X.useRef)(null),A=(0,X.useRef)(`idle`),j=(0,X.useRef)(null),M=(0,X.useRef)(()=>{}),N=(0,X.useRef)(null),P=(0,X.useRef)(e);P.current=e;let F=(0,X.useRef)(n);F.current=n;let I=s!==`idle`,L=(0,X.useCallback)((e,t)=>{let n=O.current.findIndex(e=>e.type===`tool_use`&&(e.tool===`Agent`||e.tool===`Task`)&&e.toolUseId===t);if(n===-1)return!1;let r=O.current[n];if(r.type!==`tool_use`)return!1;let i=[...r.children??[],e];return O.current[n]={...r,children:i},!0},[]),R=(0,X.useCallback)(()=>{let e=D.current,t=[...O.current],n=k.current;i(r=>{let i=r[r.length-1];return i?.role===`assistant`&&!i.id.startsWith(`final-`)?[...r.slice(0,-1),{...i,content:e,events:t,...n}]:[...r,{id:`streaming-${Date.now()}`,role:`assistant`,content:e,events:t,timestamp:new Date().toISOString(),...n}]})},[]),z=(0,X.useCallback)(e=>{let t=e,n=t?.type;if(n)switch(n){case`account_info`:k.current={accountId:t.accountId,accountLabel:t.accountLabel};break;case`account_retry`:t.accountId&&t.accountLabel&&(k.current={accountId:t.accountId,accountLabel:t.accountLabel}),O.current.push(t),R();break;case`text`:{let e=t.parentToolUseId;if(e&&L(t,e)){R();break}D.current+=t.content,O.current.push(t),R();break}case`thinking`:{let e=t.parentToolUseId;if(e&&L(t,e)){R();break}O.current.push(t),R();break}case`tool_use`:{let e=t.parentToolUseId;if(e&&L(t,e)){R();break}O.current.push(t),R();break}case`tool_result`:{let e=t.parentToolUseId;if(e&&L(t,e)){R();break}O.current.push(t),R();break}case`approval_request`:if(O.current.push(t),m({requestId:t.requestId,tool:t.tool,input:t.input}),P.current&&!ut(P.current)){let e=t.tool===`AskUserQuestion`?`question`:`approval_request`;B.getState().addNotification(P.current,e,F.current),lt(e)}break;case`error`:{O.current.push(t);let e=[...O.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,events:e}]:[...n,{id:`error-${Date.now()}`,role:`system`,content:t.message,events:[t],timestamp:new Date().toISOString()}]});break}case`done`:{if(A.current===`idle`)break;t.contextWindowPct!=null&&g(t.contextWindowPct),P.current&&!ut(P.current)&&(B.getState().addNotification(P.current,`done`,F.current),lt(`done`));let e=D.current,n=[...O.current];i(t=>{let r=t[t.length-1];return r?.role===`assistant`?[...t.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:n.length>0?n:r.events}]:t}),D.current=``,O.current=[],k.current=null;break}}},[L,R]),V=(0,X.useCallback)(e=>{let t;try{t=JSON.parse(e.data)}catch{return}if(t.type!==`ping`){if(t.type===`session_migrated`){let e=t.newSessionId;e&&E(e);return}if(t.type===`title_updated`){S(t.title??null);return}if(t.type===`compact_status`){let e=t.status;e===`compacting`?b(`compacting`):e===`done`&&(b(null),N.current?.());return}if(t.type===`phase_changed`){let e=t.phase;c(e),A.current=e,f(e===`connecting`?t.elapsed??0:0);return}if(t.type===`session_state`){w(!0);let e=t,n=e.phase;c(n),A.current=n,e.sessionTitle&&S(e.sessionTitle),e.pendingApproval&&m({requestId:e.pendingApproval.requestId,tool:e.pendingApproval.tool,input:e.pendingApproval.input}),n===`idle`&&(N.current?.(),u(!1));return}if(t.type===`turn_events`){let e=t.events;if(!e?.length){u(!1);return}i(e=>{let t=e.findLastIndex(e=>e.role===`user`);return t>=0?e.slice(0,t+1):e}),D.current=``,O.current=[],k.current=null;let n=0,r=()=>{let t=Math.min(n+100,e.length);for(let r=n;r<t;r++)z(e[r]);n=t,n<e.length?requestAnimationFrame(r):u(!1)};requestAnimationFrame(r);return}z(t)}},[z]),{send:H,connect:U}=nt({url:e&&n?`/ws/project/${encodeURIComponent(n)}/chat/${e}`:``,onMessage:V,autoConnect:!!e&&!!n});M.current=H,(0,X.useEffect)(()=>{let r=!1;return c(`idle`),A.current=`idle`,m(null),b(null),D.current=``,O.current=[],w(!1),e&&n?(o(!0),fetch(`${_(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${v()}`}}).then(e=>e.json()).then(e=>{r||A.current!==`idle`||(e.ok&&Array.isArray(e.data)&&e.data.length>0?i(e.data):i([]))}).catch(()=>{!r&&A.current===`idle`&&i([])}).finally(()=>{r||o(!1)})):i([]),()=>{r=!0}},[e,t,n]);let ee=(0,X.useCallback)((e,t)=>{if(!e.trim())return;let n=A.current!==`idle`;if(n){let e=D.current,t=[...O.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:t.length>0?t:r.events}]:n})}i(t=>[...t,{id:`user-${Date.now()}`,role:`user`,content:e,timestamp:new Date().toISOString()}]),D.current=``,O.current=[],j.current=null,n?(c(`thinking`),A.current=`thinking`):(c(`initializing`),A.current=`initializing`),m(null),H(JSON.stringify({type:`message`,content:e,permissionMode:t?.permissionMode,priority:t?.priority,images:t?.images}))},[H]),W=(0,X.useCallback)((e,t,n)=>{if(H(JSON.stringify({type:`approval_response`,requestId:e,approved:t,data:n})),t&&n){let t=O.current.find(t=>t.type===`approval_request`&&t.requestId===e&&t.tool===`AskUserQuestion`);if(t){let e=t.input;e&&typeof e==`object`&&(e.answers=n)}i(e=>[...e])}m(null)},[H]),G=(0,X.useCallback)(()=>{if(A.current===`idle`)return;H(JSON.stringify({type:`cancel`}));let e=D.current,t=[...O.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:t.length>0?t:r.events}]:n}),D.current=``,O.current=[],j.current=null,c(`idle`),A.current=`idle`,m(null)},[H]),te=(0,X.useCallback)(()=>{w(!1),u(!0),U()},[U]),K=(0,X.useCallback)(()=>{!e||!n||(o(!0),fetch(`${_(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${v()}`}}).then(e=>e.json()).then(e=>{e.ok&&Array.isArray(e.data)&&e.data.length>0&&(i(e.data),D.current=``,O.current=[])}).catch(()=>{}).finally(()=>o(!1)))},[e,t,n]);return N.current=K,{messages:r,messagesLoading:a,isStreaming:I,phase:s,isReconnecting:l,connectingElapsed:d,pendingApproval:p,contextWindowPct:h,compactStatus:y,sessionTitle:x,migratedSessionId:T,sendMessage:ee,respondToApproval:W,cancelStreaming:G,reconnect:te,refetchMessages:K,isConnected:C}}var ft=12e4;function pt(e,t=`claude`){let[n,r]=(0,X.useState)({}),[i,a]=(0,X.useState)(!1),[o,s]=(0,X.useState)(null),c=(0,X.useRef)(null),l=(0,X.useCallback)((n=!1)=>{if(!e)return;a(!0);let i=n?`&refresh=1`:``;fetch(`${_(e)}/chat/usage?providerId=${t}${i}`,{headers:{Authorization:`Bearer ${v()}`}}).then(e=>e.json()).then(e=>{e.ok&&e.data&&(r(t=>({...t,...e.data})),e.data.lastFetchedAt&&s(e.data.lastFetchedAt))}).catch(()=>{}).finally(()=>a(!1))},[e,t]);return(0,X.useEffect)(()=>(l(),c.current=setInterval(()=>l(),ft),()=>{c.current&&clearInterval(c.current)}),[l]),{usageInfo:n,usageLoading:i,lastFetchedAt:o,refreshUsage:(0,X.useCallback)(()=>l(!0),[l])}}var mt={damping:.7,stiffness:.05,mass:1.25},ht=70,gt=1e3/60,_t=350,vt=!1;globalThis.document?.addEventListener(`mousedown`,()=>{vt=!0}),globalThis.document?.addEventListener(`mouseup`,()=>{vt=!1}),globalThis.document?.addEventListener(`click`,()=>{vt=!1});var yt=(e={})=>{let[t,n]=(0,X.useState)(!1),[r,i]=(0,X.useState)(e.initial!==!1),[a,o]=(0,X.useState)(!1),s=(0,X.useRef)(null);s.current=e;let c=(0,X.useCallback)(()=>{if(!vt)return!1;let e=window.getSelection();if(!e||!e.rangeCount)return!1;let t=e.getRangeAt(0);return t.commonAncestorContainer.contains(g.current)||g.current?.contains(t.commonAncestorContainer)},[]),l=(0,X.useCallback)(e=>{d.isAtBottom=e,i(e)},[]),u=(0,X.useCallback)(e=>{d.escapedFromLock=e,n(e)},[]),d=(0,X.useMemo)(()=>{let n;return{escapedFromLock:t,isAtBottom:r,resizeDifference:0,accumulated:0,velocity:0,listeners:new Set,get scrollTop(){return g.current?.scrollTop??0},set scrollTop(e){g.current&&(g.current.scrollTop=e,d.ignoreScrollToTop=g.current.scrollTop)},get targetScrollTop(){return!g.current||!_.current?0:g.current.scrollHeight-1-g.current.clientHeight},get calculatedTargetScrollTop(){if(!g.current||!_.current)return 0;let{targetScrollTop:t}=this;if(!e.targetScrollTop)return t;if(n?.targetScrollTop===t)return n.calculatedScrollTop;let r=Math.max(Math.min(e.targetScrollTop(t,{scrollElement:g.current,contentElement:_.current}),t),0);return n={targetScrollTop:t,calculatedScrollTop:r},requestAnimationFrame(()=>{n=void 0}),r},get scrollDifference(){return this.calculatedTargetScrollTop-this.scrollTop},get isNearBottom(){return this.scrollDifference<=ht}}},[]),f=(0,X.useCallback)((e={})=>{typeof e==`string`&&(e={animation:e}),e.preserveScrollPosition||l(!0);let t=Date.now()+(Number(e.wait)||0),n=St(s.current,e.animation),{ignoreEscapes:r=!1}=e,i,a=d.calculatedTargetScrollTop;e.duration instanceof Promise?e.duration.finally(()=>{i=Date.now()}):i=t+(e.duration??0);let o=async()=>{let e=new Promise(requestAnimationFrame).then(()=>{if(!d.isAtBottom)return d.animation=void 0,!1;let{scrollTop:l}=d,u=performance.now(),p=(u-(d.lastTick??u))/gt;if(d.animation||={behavior:n,promise:e,ignoreEscapes:r},d.animation.behavior===n&&(d.lastTick=u),c()||t>Date.now())return o();if(l<Math.min(a,d.calculatedTargetScrollTop)){if(d.animation?.behavior===n){if(n===`instant`)return d.scrollTop=d.calculatedTargetScrollTop,o();d.velocity=(n.damping*d.velocity+n.stiffness*d.scrollDifference)/n.mass,d.accumulated+=d.velocity*p,d.scrollTop+=d.accumulated,d.scrollTop!==l&&(d.accumulated=0)}return o()}return i>Date.now()?(a=d.calculatedTargetScrollTop,o()):(d.animation=void 0,d.scrollTop<d.calculatedTargetScrollTop?f({animation:St(s.current,s.current.resize),ignoreEscapes:r,duration:Math.max(0,i-Date.now())||void 0}):d.isAtBottom)});return e.then(e=>(requestAnimationFrame(()=>{d.animation||(d.lastTick=void 0,d.velocity=0)}),e))};return e.wait!==!0&&(d.animation=void 0),d.animation?.behavior===n?d.animation.promise:o()},[l,c,d]),p=(0,X.useCallback)(()=>{u(!0),l(!1)},[u,l]),m=(0,X.useCallback)(({target:e})=>{if(e!==g.current)return;let{scrollTop:t,ignoreScrollToTop:n}=d,{lastScrollTop:r=t}=d;d.lastScrollTop=t,d.ignoreScrollToTop=void 0,n&&n>t&&(r=n),o(d.isNearBottom),setTimeout(()=>{if(d.resizeDifference||t===n)return;if(c()){u(!0),l(!1);return}let e=t>r,i=t<r;if(d.animation?.ignoreEscapes){d.scrollTop=r;return}i&&(u(!0),l(!1)),e&&u(!1),!d.escapedFromLock&&d.isNearBottom&&l(!0)},1)},[u,l,c,d]),h=(0,X.useCallback)(({target:e,deltaY:t})=>{let n=e;for(;![`scroll`,`auto`].includes(getComputedStyle(n).overflow);){if(!n.parentElement)return;n=n.parentElement}n===g.current&&t<0&&g.current.scrollHeight>g.current.clientHeight&&!d.animation?.ignoreEscapes&&(u(!0),l(!1))},[u,l,d]),g=bt(e=>{g.current?.removeEventListener(`scroll`,m),g.current?.removeEventListener(`wheel`,h),e?.addEventListener(`scroll`,m,{passive:!0}),e?.addEventListener(`wheel`,h,{passive:!0})},[]),_=bt(e=>{if(d.resizeObserver?.disconnect(),!e)return;let t;d.resizeObserver=new ResizeObserver(([e])=>{let{height:n}=e.contentRect,r=n-(t??n);if(d.resizeDifference=r,d.scrollTop>d.targetScrollTop&&(d.scrollTop=d.targetScrollTop),o(d.isNearBottom),r>=0){let e=St(s.current,t?s.current.resize:s.current.initial);f({animation:e,wait:!0,preserveScrollPosition:!0,duration:e===`instant`?void 0:_t})}else d.isNearBottom&&(u(!1),l(!0));t=n,requestAnimationFrame(()=>{setTimeout(()=>{d.resizeDifference===r&&(d.resizeDifference=0)},1)})}),d.resizeObserver?.observe(e)},[]);return{contentRef:_,scrollRef:g,scrollToBottom:f,stopScroll:p,isAtBottom:r||a,isNearBottom:a,escapedFromLock:t,state:d}};function bt(e,t){let n=(0,X.useCallback)(t=>(n.current=t,e(t)),t);return n}var xt=new Map;function St(...e){let t={...mt},n=!1;for(let r of e){if(r===`instant`){n=!0;continue}typeof r==`object`&&(n=!1,t.damping=r.damping??t.damping,t.stiffness=r.stiffness??t.stiffness,t.mass=r.mass??t.mass)}let r=JSON.stringify(t);return xt.has(r)||xt.set(r,Object.freeze(t)),n?`instant`:xt.get(r)}var Ct=(0,X.createContext)(null),wt=typeof window<`u`?X.useLayoutEffect:X.useEffect;function Tt({instance:e,children:t,resize:n,initial:r,mass:i,damping:a,stiffness:o,targetScrollTop:s,contextRef:c,...l}){let u=(0,X.useRef)(null),d=yt({mass:i,damping:a,stiffness:o,resize:n,initial:r,targetScrollTop:X.useCallback((e,t)=>(y?.targetScrollTop??s)?.(e,t)??e,[s])}),{scrollRef:f,contentRef:p,scrollToBottom:m,stopScroll:h,isAtBottom:g,escapedFromLock:_,state:v}=e??d,y=(0,X.useMemo)(()=>({scrollToBottom:m,stopScroll:h,scrollRef:f,isAtBottom:g,escapedFromLock:_,contentRef:p,state:v,get targetScrollTop(){return u.current},set targetScrollTop(e){u.current=e}}),[m,g,p,f,h,_,v]);return(0,X.useImperativeHandle)(c,()=>y,[y]),wt(()=>{f.current&&getComputedStyle(f.current).overflow===`visible`&&(f.current.style.overflow=`auto`)},[]),X.createElement(Ct.Provider,{value:y},X.createElement(`div`,{...l},typeof t==`function`?t(y):t))}(function(e){function t({children:e,scrollClassName:t,...n}){let r=Et();return X.createElement(`div`,{ref:r.scrollRef,style:{height:`100%`,width:`100%`,scrollbarGutter:`stable both-edges`},className:t},X.createElement(`div`,{...n,ref:r.contentRef},typeof e==`function`?e(r):e))}e.Content=t})(Tt||={});function Et(){let e=(0,X.useContext)(Ct);if(!e)throw Error(`use-stick-to-bottom component context must be used within a StickToBottom component`);return e}var Q=r();function Dt(e){let t=e.type===`approval_request`;return{toolName:e.type===`tool_use`?e.tool:t?e.tool??`Tool`:`Tool`,input:e.type===`tool_use`?e.input:t?e.input??{}:{}}}function Ot({tool:e,result:t,completed:n,projectName:r}){let[i,o]=(0,X.useState)(!1);if(e.type===`error`)return(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 rounded bg-red-500/10 border border-red-500/20 px-2 py-1.5 text-xs text-red-400`,children:[(0,Q.jsx)(Fe,{className:`size-3`}),(0,Q.jsx)(`span`,{children:e.message})]});let{toolName:s,input:c}=Dt(e),l=t?.type===`tool_result`,u=l&&!!t.isError,d=s===`AskUserQuestion`&&!!c?.answers,f=(s===`Agent`||s===`Task`)&&e.type===`tool_use`,p=f?e.children:void 0,m=p&&p.length>0;return(0,Q.jsxs)(`div`,{className:`rounded border text-xs ${f?`border-accent/30 bg-accent/5`:`border-border bg-background`}`,children:[(0,Q.jsxs)(`button`,{onClick:()=>o(!i),className:`flex items-center gap-2 px-2 py-1.5 w-full text-left hover:bg-surface transition-colors min-w-0`,children:[i?(0,Q.jsx)(Pe,{className:`size-3 shrink-0`}):(0,Q.jsx)(a,{className:`size-3 shrink-0`}),u?(0,Q.jsx)(Le,{className:`size-3 text-red-400 shrink-0`}):l||d||n?(0,Q.jsx)(le,{className:`size-3 text-green-400 shrink-0`}):(0,Q.jsx)(J,{className:`size-3 text-yellow-400 shrink-0 animate-spin`}),(0,Q.jsx)(`span`,{className:`truncate text-text-primary`,children:(0,Q.jsx)(kt,{name:s,input:c})}),m&&(0,Q.jsxs)(`span`,{className:`ml-auto text-[10px] text-text-subtle shrink-0`,children:[p.length,` steps`]})]}),i&&(0,Q.jsxs)(`div`,{className:`px-2 pb-2 space-y-1.5`,children:[(e.type===`tool_use`||e.type===`approval_request`)&&(0,Q.jsx)(At,{name:s,input:c,projectName:r}),m&&(0,Q.jsx)(Pt,{events:p,projectName:r}),l&&(0,Q.jsx)(Mt,{toolName:s,output:t.output})]})]})}function kt({name:e,input:t}){let n=e=>String(e??``);switch(e){case`Read`:case`Write`:case`Edit`:case`MultiEdit`:case`NotebookEdit`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:g(n(t.file_path))})]});case`Bash`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:$(n(t.command),60)})]});case`Glob`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:n(t.pattern)})]});case`Grep`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:$(n(t.pattern),40)})]});case`WebSearch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(ae,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.query),50)})]});case`WebFetch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(we,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.url),50)})]});case`ToolSearch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(ae,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.query),50)})]});case`Agent`:case`Task`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(F,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.description||t.prompt),60)})]});case`TodoWrite`:{let n=Array.isArray(t.todos)?t.todos:[],r=n.filter(e=>e.status===`completed`).length;return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(We,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsxs)(`span`,{className:`text-text-subtle`,children:[r,`/`,n.length,` done`]})]})}case`AskUserQuestion`:{let n=Array.isArray(t.questions)?t.questions:[],r=!!t.answers;return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsxs)(`span`,{className:`text-text-subtle`,children:[n.length,` question`,n.length===1?``:`s`,r?` ✓`:``]})]})}default:return(0,Q.jsx)(Q.Fragment,{children:e})}}function At({name:e,input:t,projectName:n}){let r=e=>String(e??``),{openTab:i}=d(),a=e=>{n&&i({type:`editor`,title:g(e),metadata:{filePath:e,projectName:n},projectId:n,closable:!0})},o=(e,t,r)=>{i({type:`git-diff`,title:`Diff ${g(e)}`,metadata:{filePath:e,projectName:n,original:t,modified:r},projectId:n??null,closable:!0})};switch(e){case`Bash`:return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,Q.jsx)(`p`,{className:`text-text-subtle italic`,children:r(t.description)}),(0,Q.jsx)(`pre`,{className:`font-mono text-text-secondary overflow-x-auto whitespace-pre-wrap break-all`,children:r(t.command)})]});case`Read`:case`Write`:case`Edit`:case`MultiEdit`:case`NotebookEdit`:{let n=r(t.file_path);return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[(0,Q.jsxs)(`button`,{type:`button`,className:`font-mono text-text-secondary break-all hover:text-primary hover:underline text-left flex items-center gap-1`,onClick:()=>a(n),title:`Open file in editor`,children:[(0,Q.jsx)(l,{className:`size-3 shrink-0`}),n]}),e===`Edit`&&(!!t.old_string||!!t.new_string)&&(0,Q.jsxs)(`button`,{type:`button`,className:`text-text-subtle hover:text-primary hover:underline text-left flex items-center gap-1`,onClick:()=>o(n,r(t.old_string),r(t.new_string)),title:`View diff in new tab`,children:[(0,Q.jsx)(c,{className:`size-3 shrink-0`}),`View Diff`]}),e===`Write`&&!!t.content&&(0,Q.jsx)(`pre`,{className:`font-mono text-text-subtle overflow-x-auto max-h-32 whitespace-pre-wrap`,children:$(r(t.content),300)})]})}case`Glob`:return(0,Q.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[r(t.pattern),t.path?` in ${r(t.path)}`:``]});case`Grep`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[`/`,r(t.pattern),`/`]}),!!t.path&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`in `,r(t.path)]})]});case`TodoWrite`:return(0,Q.jsx)(jt,{todos:t.todos??[]});case`Agent`:case`Task`:return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,Q.jsx)(`p`,{className:`text-text-secondary font-medium`,children:r(t.description)}),!!t.subagent_type&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`Type: `,r(t.subagent_type)]}),!!t.prompt&&(0,Q.jsx)(Ft,{content:r(t.prompt),maxHeight:`max-h-48`})]});case`ToolSearch`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsx)(`p`,{className:`font-mono text-text-secondary`,children:r(t.query)}),!!t.max_results&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`Max results: `,r(t.max_results)]})]});case`WebFetch`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`a`,{href:r(t.url),target:`_blank`,rel:`noopener noreferrer`,className:`font-mono text-primary hover:underline break-all flex items-center gap-1`,children:[(0,Q.jsx)(we,{className:`size-3 shrink-0`}),r(t.url)]}),!!t.prompt&&(0,Q.jsx)(`p`,{className:`text-text-subtle`,children:$(r(t.prompt),100)})]});case`AskUserQuestion`:{let e=t.questions??[],n=t.answers??{};return(0,Q.jsx)(`div`,{className:`space-y-2`,children:e.map((e,t)=>(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`p`,{className:`text-text-primary font-medium`,children:[e.header?`${e.header}: `:``,e.question]}),(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1`,children:e.options.map((t,r)=>(0,Q.jsx)(`span`,{className:`inline-block rounded px-1.5 py-0.5 text-xs border ${(n[e.question]??``).split(`, `).includes(t.label)?`border-accent bg-accent/20 text-text-primary`:`border-border text-text-subtle`}`,children:t.label},r))}),n[e.question]&&(0,Q.jsxs)(`p`,{className:`text-foreground text-xs`,children:[`Answer: `,n[e.question]]})]},t))})}default:return(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-secondary font-mono whitespace-pre-wrap break-all`,children:JSON.stringify(t,null,2)})}}function jt({todos:e}){return(0,Q.jsx)(`div`,{className:`space-y-0.5`,children:e.map((e,t)=>(0,Q.jsxs)(`div`,{className:`flex items-start gap-1.5`,children:[(0,Q.jsx)(`span`,{className:`shrink-0 mt-0.5 ${e.status===`completed`?`text-green-400`:e.status===`in_progress`?`text-yellow-400`:`text-text-subtle`}`,children:e.status===`completed`?`✓`:e.status===`in_progress`?`▶`:`○`}),(0,Q.jsx)(`span`,{className:e.status===`completed`?`line-through text-text-subtle`:`text-text-secondary`,children:e.content})]},t))})}function Mt({toolName:e,output:t}){let[n,r]=(0,X.useState)(!1),i=(0,X.useMemo)(()=>{if(e!==`Agent`&&e!==`Task`)return null;try{let e=JSON.parse(t);if(Array.isArray(e)){let t=e.filter(e=>e.type===`text`&&e.text).map(e=>e.text).join(`
3
-
4
- `);if(t)return t}if(typeof e==`string`)return e}catch{if(t&&!t.startsWith(`[{`))return t}return null},[e,t]);return i?(0,Q.jsxs)(`div`,{className:`border-t border-border pt-1.5 space-y-1`,children:[(0,Q.jsx)(Ft,{content:i,maxHeight:`max-h-60`}),(0,Q.jsxs)(`button`,{type:`button`,onClick:()=>r(!n),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors`,children:[(0,Q.jsx)(o,{className:`size-3`}),n?`Hide`:`Show`,` raw`]}),n&&(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono max-h-40 whitespace-pre-wrap break-all text-[10px]`,children:t})]}):(0,Q.jsx)(Nt,{output:t})}function Nt({output:e}){let t=e.split(`
5
- `).length,n=t>3||e.length>200,[r,i]=(0,X.useState)(n);return(0,Q.jsxs)(`div`,{className:`border-t border-border pt-1.5`,children:[n&&(0,Q.jsxs)(`button`,{type:`button`,onClick:()=>i(!r),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors mb-1`,children:[r?(0,Q.jsx)(a,{className:`size-3`}):(0,Q.jsx)(Pe,{className:`size-3`}),`Output (`,t,` lines)`]}),(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono whitespace-pre-wrap break-all ${r?`max-h-16 overflow-hidden`:`max-h-60`}`,children:e})]})}function Pt({events:e,projectName:t}){let n=[],r=``;for(let t of e)if(t.type===`text`)r+=t.content;else if(t.type===`tool_use`)r&&=(n.push({kind:`text`,content:r}),``),n.push({kind:`tool`,tool:t});else if(t.type===`tool_result`){let e=t.toolUseId,r=e?n.find(t=>t.kind===`tool`&&t.tool.type===`tool_use`&&t.tool.toolUseId===e&&!t.result):n.findLast(e=>e.kind===`tool`&&!e.result);r&&(r.result=t)}return r&&n.push({kind:`text`,content:r}),(0,Q.jsx)(`div`,{className:`border-l-2 border-accent/20 pl-2 space-y-1 mt-1`,children:n.map((e,n)=>e.kind===`text`?(0,Q.jsx)(`div`,{className:`text-text-secondary text-[11px]`,children:(0,Q.jsx)(Ft,{content:e.content,maxHeight:`max-h-24`})},`st-${n}`):(0,Q.jsx)(Ot,{tool:e.tool,result:e.result,completed:!!e.result,projectName:t},`sc-${n}`))})}function Ft({content:e,maxHeight:t=`max-h-48`}){return(0,Q.jsx)(s,{content:e,className:`text-text-secondary overflow-auto ${t}`})}function $(e,t=50){return e?e.length>t?e.slice(0,t)+`…`:e:``}function It(e){let[t,n]=(0,X.useState)({}),[r,i]=(0,X.useState)({}),[a,o]=(0,X.useState)(0),s=(0,X.useCallback)((e,t)=>{n(n=>({...n,[e]:[t]})),i(t=>({...t,[e]:``}))},[]),c=(0,X.useCallback)((e,t)=>{n(n=>{let r=n[e]||[];return{...n,[e]:r.includes(t)?r.filter(e=>e!==t):[...r,t]}})},[]),l=(0,X.useCallback)((e,t)=>{i(n=>({...n,[e]:t})),t&&n(t=>({...t,[e]:[]}))},[]),u=(0,X.useCallback)(e=>(t[e]?.length??0)>0||(r[e]?.trim().length??0)>0,[t,r]);return{answers:t,customInputs:r,activeTab:a,setActiveTab:o,handleSingleSelect:s,handleMultiSelect:c,handleCustomInput:l,hasAnswer:u,allAnswered:(0,X.useMemo)(()=>e.every((e,t)=>u(t)),[e,u]),getFinalAnswer:(0,X.useCallback)(e=>r[e]?.trim()||(t[e]??[]).join(`, `),[t,r]),goToNextTab:(0,X.useCallback)(()=>o(t=>Math.min(t+1,e.length-1)),[e.length]),goToPrevTab:(0,X.useCallback)(()=>o(e=>Math.max(e-1,0)),[])}}function Lt(e){let[t,n]=(0,X.useState)(0),r=(0,X.useRef)(null);return(0,X.useEffect)(()=>n(0),[e.activeTab]),(0,X.useEffect)(()=>{if(!e.enabled)return;let i=r=>{let i=document.activeElement===e.customInputRef.current;if(!i&&r.key>=`1`&&r.key<=`9`){r.preventDefault();let t=parseInt(r.key)-1;t<e.totalOptions-1&&(n(t),e.onSelectOption(t));return}if(!i&&(r.key===`o`||r.key===`O`||r.key===`0`)){r.preventDefault(),e.customInputRef.current?.focus(),n(e.totalOptions-1);return}if(r.key===`Tab`&&e.questions.length>1){r.preventDefault(),r.shiftKey?e.goToPrevTab():e.goToNextTab();return}if(!i){if(r.key===`ArrowLeft`){r.preventDefault(),e.goToPrevTab();return}if(r.key===`ArrowRight`){r.preventDefault(),e.goToNextTab();return}if(r.key===`ArrowUp`){r.preventDefault(),n(e=>Math.max(0,e-1));return}if(r.key===`ArrowDown`){r.preventDefault(),n(t=>Math.min(e.totalOptions-1,t+1));return}if(r.key===` `){r.preventDefault(),e.onSelectOption(t);return}}if(r.key===`Enter`){r.preventDefault(),e.allAnswered?e.onSubmit():e.hasAnswer(e.activeTab)&&e.goToNextTab();return}r.key===`Escape`&&i&&e.customInputRef.current?.blur()},a=r.current;return a&&(a.addEventListener(`keydown`,i),a.setAttribute(`tabindex`,`0`),a.contains(document.activeElement)||a.focus()),()=>{a?.removeEventListener(`keydown`,i)}},[e,t]),{focusedOption:t,setFocusedOption:n,containerRef:r}}function Rt({questions:e,onSubmit:t,onSkip:n}){let r=(0,X.useRef)(null),i=It(e),a=e[i.activeTab],o=a?a.options.length+1:0,s=e.length>1,c=(0,X.useCallback)(()=>{if(!i.allAnswered)return;let n={};e.forEach((e,t)=>{n[e.question]=i.getFinalAnswer(t)}),t(n)},[i.allAnswered,i.getFinalAnswer,e,t]),l=(0,X.useCallback)(e=>{if(!(!a||e<0))if(e<a.options.length){let t=a.options[e]?.label;if(!t)return;a.multiSelect?i.handleMultiSelect(i.activeTab,t):i.handleSingleSelect(i.activeTab,t)}else e===a.options.length&&r.current?.focus()},[a,i]),u=Lt({questions:e,activeTab:i.activeTab,totalOptions:o,allAnswered:i.allAnswered,hasAnswer:i.hasAnswer,onSelectOption:l,goToNextTab:i.goToNextTab,goToPrevTab:i.goToPrevTab,onSubmit:c,customInputRef:r,enabled:!0}),d=(0,X.useCallback)(e=>{l(e),u.setFocusedOption(e)},[l,u.setFocusedOption]);return(0,Q.jsxs)(`div`,{ref:u.containerRef,className:`rounded-lg border-2 border-primary/30 bg-primary/5 p-3 space-y-3 outline-none animate-in slide-in-from-bottom-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-sm font-medium text-text-primary`,children:[(0,Q.jsxs)(`span`,{children:[`AI has `,s?`${e.length} questions`:`a question`]}),(0,Q.jsxs)(`span`,{className:`text-[10px] text-text-secondary font-normal`,children:[s?`←→ tabs · `:``,`↑↓ options · 1-`,Math.min(o-1,9),` select · Enter submit`]})]}),s&&(0,Q.jsx)(`div`,{className:`flex gap-1 p-1 bg-background rounded-md overflow-x-auto border border-border`,children:e.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-center gap-1.5 px-3 py-1.5 rounded text-xs whitespace-nowrap transition-all ${i.activeTab===t?`bg-primary text-primary-foreground`:i.hasAnswer(t)?`text-primary bg-transparent`:`text-text-secondary hover:bg-surface-elevated`}`,onClick:()=>{i.setActiveTab(t),u.setFocusedOption(0)},tabIndex:-1,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4 h-4 rounded-full text-[10px] font-semibold ${i.activeTab===t?`bg-white/20`:i.hasAnswer(t)?`bg-primary/20 text-primary`:`bg-surface-elevated text-text-secondary`}`,children:i.hasAnswer(t)?`✓`:t+1}),(0,Q.jsx)(`span`,{className:`max-w-[100px] overflow-hidden text-ellipsis`,children:e.header||`Q${t+1}`})]},t))}),a&&(0,Q.jsxs)(`div`,{className:`space-y-2`,children:[!s&&a.header&&(0,Q.jsx)(`div`,{className:`text-[11px] font-semibold uppercase tracking-wide text-text-secondary`,children:a.header}),(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:a.question}),a.multiSelect&&(0,Q.jsx)(`div`,{className:`text-[11px] text-text-secondary`,children:`Select multiple`}),(0,Q.jsxs)(`div`,{className:`flex flex-col gap-1.5`,children:[a.options.map((e,t)=>{let n=(i.answers[i.activeTab]||[]).includes(e.label),r=u.focusedOption===t;return(0,Q.jsxs)(`button`,{onClick:()=>d(t),className:`text-left flex items-start gap-2.5 rounded px-2.5 py-2 text-xs border transition-all ${n?`border-primary bg-primary/10 text-text-primary`:`border-border bg-background text-text-secondary hover:border-primary/40 hover:bg-primary/5`} ${r?`ring-2 ring-primary/40 ring-offset-1 ring-offset-background`:``}`,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4.5 h-4.5 rounded text-[10px] font-semibold shrink-0 mt-px ${n?`bg-primary/20 text-primary`:`bg-surface-elevated text-text-secondary`}`,children:t+1}),(0,Q.jsxs)(`div`,{className:`flex flex-col gap-0.5 flex-1`,children:[(0,Q.jsx)(`span`,{className:`font-medium text-text-primary`,children:e.label}),e.description&&(0,Q.jsx)(`span`,{className:`text-[11px] text-text-secondary`,children:e.description})]})]},t)}),(0,Q.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded px-2.5 py-2 text-xs border border-dashed transition-all border-border bg-transparent ${u.focusedOption===o-1?`ring-2 ring-primary/40 ring-offset-1 ring-offset-background`:``}`,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4.5 h-4.5 rounded bg-surface-elevated text-text-secondary text-[10px] font-semibold shrink-0 mt-px`,children:`O`}),(0,Q.jsx)(`input`,{ref:r,type:`text`,className:`flex-1 px-2 py-1 text-xs bg-surface border border-border rounded text-text-primary outline-none placeholder:text-text-subtle focus:border-primary`,placeholder:`Other (press O to type)...`,value:i.customInputs[i.activeTab]||``,onChange:e=>i.handleCustomInput(i.activeTab,e.target.value),onFocus:()=>u.setFocusedOption(o-1)})]})]})]}),(0,Q.jsxs)(`div`,{className:`flex gap-2 justify-end pt-1`,children:[s&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`button`,{className:`px-3 py-1.5 text-xs rounded border border-border bg-background text-text-primary hover:bg-surface-elevated disabled:opacity-40 disabled:cursor-not-allowed transition-colors`,onClick:i.goToPrevTab,disabled:i.activeTab===0,tabIndex:-1,children:`← Prev`}),(0,Q.jsx)(`button`,{className:`px-3 py-1.5 text-xs rounded border border-border bg-background text-text-primary hover:bg-surface-elevated disabled:opacity-40 disabled:cursor-not-allowed transition-colors`,onClick:i.goToNextTab,disabled:i.activeTab===e.length-1,tabIndex:-1,children:`Next →`})]}),(0,Q.jsx)(`button`,{onClick:n,className:`px-4 py-1.5 rounded border border-border bg-background text-text-secondary text-xs hover:bg-surface-elevated transition-colors`,tabIndex:-1,children:`Skip`}),(0,Q.jsxs)(`button`,{onClick:c,disabled:!i.allAnswered,className:`px-4 py-1.5 rounded bg-primary text-primary-foreground text-xs font-medium hover:bg-primary/80 transition-colors disabled:opacity-40 disabled:cursor-not-allowed`,tabIndex:-1,children:[`Submit `,i.allAnswered?`✓`:`(${e.filter((e,t)=>i.hasAnswer(t)).length}/${e.length})`]})]})]})}function zt({messages:e,messagesLoading:t,pendingApproval:n,onApprovalResponse:r,isStreaming:i,phase:a,connectingElapsed:o,projectName:s,onFork:c}){if(t)return(0,Q.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,Q.jsx)(F,{className:`size-10 text-text-subtle animate-pulse`}),(0,Q.jsx)(`p`,{className:`text-sm`,children:`Loading messages...`})]});if(e.length===0&&!i)return(0,Q.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,Q.jsx)(F,{className:`size-10 text-text-subtle`}),(0,Q.jsx)(`p`,{className:`text-sm`,children:`Send a message to start the conversation`})]});let l=(0,X.useMemo)(()=>e.filter(e=>{let t=e.content&&e.content.trim().length>0,n=e.events&&e.events.length>0;return e.role===`user`?t:t||n}),[e]);return(0,Q.jsx)(`div`,{className:`relative flex-1 overflow-hidden flex flex-col min-h-0`,children:(0,Q.jsxs)(Tt,{className:`flex-1 overflow-y-auto overflow-x-hidden`,resize:`smooth`,initial:`instant`,children:[(0,Q.jsxs)(Tt.Content,{className:`p-4 space-y-4`,children:[l.map((e,t)=>(0,Q.jsx)(Vt,{message:e,isStreaming:i&&e.id.startsWith(`streaming-`),projectName:s,onFork:e.role===`user`&&c?()=>{let n=t>0?l[t-1]:void 0;c(e.content,n?.id)}:void 0},e.id)),n&&(n.tool===`AskUserQuestion`?(0,Q.jsx)(dn,{approval:n,onRespond:r}):(0,Q.jsx)(un,{approval:n,onRespond:r})),i&&(0,Q.jsx)(cn,{lastMessage:e[e.length-1],phase:a,elapsed:o})]}),(0,Q.jsx)(Bt,{})]})})}function Bt(){let{isAtBottom:e,scrollToBottom:t}=Et();return e?null:(0,Q.jsxs)(`button`,{onClick:()=>t(),className:`absolute bottom-4 left-1/2 -translate-x-1/2 z-10 flex items-center gap-1 px-3 py-1 rounded-full bg-surface-elevated border border-border text-xs text-text-secondary hover:text-foreground shadow-lg transition-all`,children:[(0,Q.jsx)(Pe,{className:`size-3`}),`Scroll to bottom`]})}function Vt({message:e,isStreaming:t,projectName:n,onFork:r}){return e.role===`user`?(0,Q.jsx)(Yt,{content:e.content,projectName:n,onFork:r}):e.role===`system`?(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg bg-red-500/10 border border-red-500/20 px-3 py-2 text-sm text-red-400`,children:[(0,Q.jsx)(Fe,{className:`size-4 shrink-0`}),(0,Q.jsx)(`p`,{children:e.content})]}):(0,Q.jsxs)(`div`,{className:`flex flex-col gap-2`,children:[e.events&&e.events.length>0?(0,Q.jsx)(an,{events:e.events,isStreaming:t,projectName:n}):e.content&&(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,Q.jsx)(ln,{content:e.content,projectName:n})}),e.accountLabel&&(0,Q.jsxs)(`p`,{className:`text-[10px] select-none`,style:{color:`var(--color-text-subtle)`},children:[`via `,e.accountLabel]})]})}var Ht=new Set([`.png`,`.jpg`,`.jpeg`,`.gif`,`.webp`]),Ut={"system-reminder":`Context`,claudeMd:`CLAUDE.md`,gitStatus:`Git Status`,currentDate:`Date`,fast_mode_info:`Fast Mode`,"available-deferred-tools":`Tools`,"task-notification":`Task Result`,environment_details:`Environment`};function Wt(e){let t=[],n=/<(system-reminder|available-deferred-tools|antml:[\w-]+|fast_mode_info|claudeMd|gitStatus|currentDate|task-notification|environment_details)[^>]*>([\s\S]*?)<\/\1>/g,r;for(;(r=n.exec(e))!==null;){let e=r[1];t.push({name:e,label:Ut[e]??e.replace(/^antml:/,``).replace(/-/g,` `),content:r[2].trim()})}return{cleanText:e.replace(n,``).trim(),tags:t}}function Gt(e){let t=e.match(/^\[Attached file: (.+?)\]\n\n?/);if(t)return{files:[t[1]],text:e.slice(t[0].length)};let n=e.match(/^\[Attached files:\n([\s\S]+?)\]\n\n?/);return n?{files:n[1].split(`
6
- `).map(e=>e.trim()).filter(Boolean),text:e.slice(n[0].length)}:{files:[],text:e}}function Kt(e,t){let n=g(e);return`/api/project/${encodeURIComponent(t??`_`)}/chat/uploads/${encodeURIComponent(n)}`}function qt(e){let t=e.lastIndexOf(`.`);return t===-1?!1:Ht.has(e.slice(t).toLowerCase())}var Jt=new Set([`task-notification`,`environment_details`]);function Yt({content:e,projectName:t,onFork:n}){let{files:r,text:i,tags:a}=(0,X.useMemo)(()=>{let t=Gt(e),{cleanText:n,tags:r}=Wt(t.text);return{files:t.files,text:n,tags:r}},[e]),o=a.some(e=>Jt.has(e.name)),[s,c]=(0,X.useState)(!1),[l,u]=(0,X.useState)(!1),d=(0,X.useRef)(null);return(0,X.useEffect)(()=>{let e=d.current;if(!e)return;let t=()=>u(e.scrollHeight>e.clientHeight+2);t();let n=new ResizeObserver(t);return n.observe(e),()=>n.disconnect()},[i]),(0,Q.jsxs)(`div`,{className:m(`group/user relative rounded-lg px-3 py-2 text-sm border shadow-sm`,o?`bg-surface/40 border-border/40 text-text-secondary`:`bg-primary/10 border-primary/15 text-text-primary`),children:[a.length>0&&(0,Q.jsx)(Xt,{tags:a}),r.length>0&&(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:r.map((e,n)=>qt(e)?(0,Q.jsx)(rn,{filePath:e,projectName:t},n):(0,Q.jsxs)(`div`,{className:`flex items-center gap-1 rounded-md border border-border/60 bg-background/40 px-1.5 py-0.5 text-[11px] text-text-secondary`,children:[(0,Q.jsx)(pe,{className:`size-3 shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-32`,children:g(e)})]},n))}),i&&(0,Q.jsx)(`div`,{ref:d,className:m(`whitespace-pre-wrap break-words transition-all duration-200`,!s&&`line-clamp-2`,s&&`max-h-[50vh] overflow-y-auto`),children:o?(0,Q.jsx)(tn,{text:i,projectName:t}):i}),(l||s)&&(0,Q.jsx)(`button`,{onClick:()=>c(!s),className:m(`flex items-center gap-1 text-xs mt-1 transition-colors`,o?`text-text-subtle hover:text-text-secondary`:`text-primary/70 hover:text-primary`),children:s?(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(te,{className:`size-3`}),`Show less`]}):(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(Pe,{className:`size-3`}),`Show more`]})}),!o&&n&&(0,Q.jsx)(`button`,{onClick:n,title:`Retry from this message (fork session)`,className:`absolute top-1.5 right-1.5 opacity-0 group-hover/user:opacity-100 transition-opacity size-5 flex items-center justify-center rounded text-text-subtle hover:text-text-primary`,children:(0,Q.jsx)(ie,{className:`size-3`})})]})}function Xt({tags:e}){return(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:e.map((e,t)=>(0,Q.jsx)(Zt,{tag:e},t))})}function Zt({tag:e}){let[t,n]=(0,X.useState)(!1);return e.name===`task-notification`?(0,Q.jsx)($t,{content:e.content}):(0,Q.jsxs)(`div`,{className:`text-xs`,children:[(0,Q.jsxs)(`button`,{onClick:()=>n(!t),className:`flex items-center gap-1 rounded-full border border-border/60 bg-surface/50 px-2 py-0.5 text-text-subtle hover:text-text-secondary hover:bg-surface transition-colors`,children:[(0,Q.jsx)(f,{className:`size-2.5`}),(0,Q.jsx)(`span`,{children:e.label}),(0,Q.jsx)(a,{className:m(`size-2.5 transition-transform`,t&&`rotate-90`)})]}),t&&(0,Q.jsx)(`div`,{className:`mt-1 rounded border border-border/40 bg-surface/30 px-2 py-1.5 text-[11px] text-text-subtle/80 whitespace-pre-wrap max-h-40 overflow-y-auto leading-relaxed`,children:e.content})]})}function Qt(e,t){return e.match(RegExp(`<${t}>([\\s\\S]*?)</${t}>`))?.[1]?.trim()||void 0}function $t({content:e}){let[t,n]=(0,X.useState)(!1),r=Qt(e,`status`),i=Qt(e,`summary`),o=Qt(e,`output-file`),s=Qt(e,`result`);return(0,Q.jsxs)(`div`,{className:`text-xs`,children:[(0,Q.jsxs)(`button`,{onClick:()=>n(!t),className:`flex items-center gap-1.5 rounded-full border border-border/60 bg-surface/50 px-2 py-0.5 text-text-subtle hover:text-text-secondary hover:bg-surface transition-colors`,children:[r===`completed`?(0,Q.jsx)(le,{className:`size-2.5 text-green-500`}):(0,Q.jsx)(Le,{className:`size-2.5 text-yellow-500`}),(0,Q.jsx)(`span`,{className:`truncate max-w-80`,children:i??`Task notification`}),(0,Q.jsx)(a,{className:m(`size-2.5 transition-transform shrink-0`,t&&`rotate-90`)})]}),t&&(0,Q.jsxs)(`div`,{className:`mt-1 rounded border border-border/40 bg-surface/30 px-2 py-1.5 space-y-1.5`,children:[i&&(0,Q.jsx)(`p`,{className:`text-[11px] text-text-secondary`,children:i}),o&&(0,Q.jsx)(en,{path:o}),s&&(0,Q.jsx)(`div`,{className:`text-[11px] text-text-subtle/80 max-h-60 overflow-y-auto leading-relaxed`,children:(0,Q.jsx)(ln,{content:s})})]})]})}function en({path:e,projectName:t}){return(0,Q.jsxs)(`button`,{type:`button`,onClick:(0,X.useCallback)(()=>{let n=d.getState().openTab,r=t??z.getState().activeProject?.name,i=g(e),a={filePath:e};r&&(a.projectName=r),y.get(`/api/fs/read?path=${encodeURIComponent(e)}`).then(()=>{n({type:`editor`,title:i,metadata:a,projectId:null,closable:!0})}).catch(()=>{n({type:`editor`,title:i,metadata:a,projectId:null,closable:!0})})},[e,t]),className:`inline-flex items-center gap-1 rounded border border-border/50 bg-surface/50 px-1.5 py-0.5 font-mono text-[10px] text-text-secondary hover:text-text-primary hover:bg-surface transition-colors cursor-pointer`,children:[(0,Q.jsx)(pe,{className:`size-2.5 shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-60`,children:g(e)}),(0,Q.jsx)(l,{className:`size-2 shrink-0 opacity-50`})]})}function tn({text:e,projectName:t}){return(0,Q.jsx)(Q.Fragment,{children:(0,X.useMemo)(()=>{let t=/(\/(?:[\w.\-]+\/)+[\w.\-]+)/g,n=[],r=0,i;for(;(i=t.exec(e))!==null;)i.index>r&&n.push({kind:`text`,value:e.slice(r,i.index)}),n.push({kind:`path`,value:i[1]}),r=i.index+i[0].length;return r<e.length&&n.push({kind:`text`,value:e.slice(r)}),n},[e]).map((e,n)=>e.kind===`path`?(0,Q.jsx)(en,{path:e.value,projectName:t},n):(0,Q.jsx)(`span`,{children:e.value},n))})}function nn(e){let[t,n]=(0,X.useState)(null),[r,i]=(0,X.useState)(!1);return(0,X.useEffect)(()=>{let t=!1,r,a=v();return fetch(e,{headers:a?{Authorization:`Bearer ${a}`}:{}}).then(e=>{if(!e.ok)throw Error(`Failed`);return e.blob()}).then(e=>{t||(r=URL.createObjectURL(e),n(r))}).catch(()=>{t||i(!0)}),()=>{t=!0,r&&URL.revokeObjectURL(r)}},[e]),{blobUrl:t,error:r}}function rn({filePath:e,projectName:t}){let{blobUrl:n,error:r}=nn(Kt(e,t)),i=Se(e=>e.open),a=g(e);return(0,Q.jsxs)(`button`,{type:`button`,onClick:()=>n&&i(n,a),className:`flex items-center gap-1 rounded-md border border-border/60 bg-background/40 px-1.5 py-0.5 text-[11px] text-text-secondary hover:bg-surface transition-colors cursor-pointer`,children:[n?(0,Q.jsx)(`img`,{src:n,alt:a,className:`size-4 rounded-sm object-cover shrink-0`}):r?(0,Q.jsx)(He,{className:`size-3 shrink-0`}):(0,Q.jsx)(`div`,{className:`size-4 rounded-sm bg-surface animate-pulse shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-32`,children:a})]})}function an({events:e,isStreaming:t,projectName:n}){let r=[],i=``,a=``;for(let t=0;t<e.length;t++){let n=e[t];if(n.type===`thinking`){i&&=(r.push({kind:`text`,content:i}),``),a+=n.content;continue}if(a&&=(r.push({kind:`thinking`,content:a}),``),n.type===`account_retry`){i&&=(r.push({kind:`text`,content:i}),``);let e=n.accountLabel??`another account`,t=n.reason??`Auth failed`;r.push({kind:`text`,content:`\n\n> ↻ ${t} — retrying with **${e}**...\n\n`});continue}n.type===`text`?i+=n.content:n.type===`tool_use`?(i&&=(r.push({kind:`text`,content:i}),``),r.push({kind:`tool`,tool:n})):n.type===`tool_result`||(i&&=(r.push({kind:`text`,content:i}),``),r.push({kind:`tool`,tool:n}))}a&&r.push({kind:`thinking`,content:a}),i&&r.push({kind:`text`,content:i});let o=e.filter(e=>e.type===`tool_result`);for(let e of o){let t=e.toolUseId;if(t){let n=r.find(e=>e.kind===`tool`&&e.tool.type===`tool_use`&&e.tool.toolUseId===t);if(n){n.result=e;continue}}let n=r.find(e=>e.kind===`tool`&&!e.result);n&&(n.result=e)}for(let e=0;e<r.length;e++){let n=r[e];if(n.kind===`tool`&&!n.result){let i=!1;if(n.tool.type===`tool_use`&&n.tool.tool===`Read`){let t=n.tool.input?.file_path;t&&(i=r.slice(e+1).some(e=>e.kind===`tool`&&e.result&&e.tool.type===`tool_use`&&e.tool.tool===`Edit`&&e.tool.input?.file_path===t))}n.completed=i||!t}}return(0,Q.jsx)(Q.Fragment,{children:r.map((e,i)=>{if(e.kind===`thinking`)return(0,Q.jsx)(on,{content:e.content,isStreaming:t&&i===r.length-1},`think-${i}`);if(e.kind===`text`){let a=t&&i===r.length-1;return(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,Q.jsx)(sn,{content:e.content,animate:a,projectName:n})},`text-${i}`)}return(0,Q.jsx)(Ot,{tool:e.tool,result:e.result,completed:e.completed,projectName:n},`tool-${i}`)})})}function on({content:e,isStreaming:t}){let[n,r]=(0,X.useState)(t);return(0,X.useEffect)(()=>{!t&&e.length>0&&r(!1)},[t,e.length]),(0,Q.jsxs)(`div`,{className:`rounded border border-border/50 bg-surface/30 text-xs`,children:[(0,Q.jsxs)(`button`,{onClick:()=>r(!n),className:`flex items-center gap-2 px-2 py-1.5 w-full text-left hover:bg-surface transition-colors text-text-subtle`,children:[t?(0,Q.jsx)(J,{className:`size-3 animate-spin`}):(0,Q.jsx)(a,{className:`size-3 transition-transform ${n?`rotate-90`:``}`}),(0,Q.jsxs)(`span`,{children:[`Thinking`,t?`...`:``]}),!t&&(0,Q.jsx)(`span`,{className:`text-text-subtle/50 ml-auto`,children:e.length>100?`${Math.round(e.length/4)} tokens`:``})]}),n&&(0,Q.jsx)(Tt,{className:`max-h-60 overflow-y-auto`,resize:`smooth`,initial:`instant`,children:(0,Q.jsx)(Tt.Content,{className:`px-2 pb-2 text-text-subtle/80 whitespace-pre-wrap text-[11px] leading-relaxed`,children:e})})]})}function sn({content:e,animate:t,projectName:n}){return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(ln,{content:e,projectName:n}),t&&(0,Q.jsx)(`span`,{className:`text-text-subtle text-sm animate-pulse`,children:`Thinking...`})]})}function cn({lastMessage:e,phase:t,elapsed:n}){let r=!e||e.role!==`assistant`,i=e?.events?.length?e.events[e.events.length-1].type===`tool_result`:!1;return!r&&!i?null:(0,Q.jsxs)(`div`,{className:`flex flex-col gap-1 text-sm`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 text-text-subtle`,children:[(0,Q.jsx)(J,{className:`size-3 animate-spin`}),(0,Q.jsxs)(`span`,{children:[t===`initializing`?`Initializing`:t===`connecting`?`Connecting`:t===`thinking`?`Thinking`:`Processing`,r&&(n??0)>0&&(0,Q.jsxs)(`span`,{className:`text-text-subtle/60`,children:[`... (`,n,`s)`]})]})]}),t===`connecting`&&(n??0)>=30&&(0,Q.jsx)(`p`,{className:`text-xs text-yellow-500/80 ml-5`,children:`Taking longer than usual — may be rate-limited or API slow. Try sending a new message to retry.`})]})}function ln({content:e,projectName:t}){return(0,Q.jsx)(s,{content:e,projectName:t,codeActions:!0})}function un({approval:e,onRespond:t}){return(0,Q.jsxs)(`div`,{className:`rounded-lg border-2 border-yellow-500/40 bg-yellow-500/10 p-3 space-y-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 text-yellow-400 text-sm font-medium`,children:[(0,Q.jsx)(Je,{className:`size-4`}),(0,Q.jsx)(`span`,{children:`Tool Approval Required`})]}),(0,Q.jsx)(`div`,{className:`text-xs text-text-primary`,children:(0,Q.jsx)(`span`,{className:`font-medium`,children:e.tool})}),(0,Q.jsx)(`pre`,{className:`text-xs font-mono text-text-secondary overflow-x-auto bg-background rounded p-2 border border-border`,children:JSON.stringify(e.input,null,2)}),(0,Q.jsxs)(`div`,{className:`flex gap-2`,children:[(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!0),className:`px-4 py-1.5 rounded bg-green-600 text-white text-xs font-medium hover:bg-green-500 transition-colors`,children:`Allow`}),(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!1),className:`px-4 py-1.5 rounded bg-red-600 text-white text-xs font-medium hover:bg-red-500 transition-colors`,children:`Deny`})]})]})}function dn({approval:e,onRespond:t}){return(0,Q.jsx)(Rt,{questions:e.input.questions??[],onSubmit:n=>t(e.requestId,!0,n),onSkip:()=>t(e.requestId,!1)})}function fn(){let e=window;return e.SpeechRecognition??e.webkitSpeechRecognition??null}function pn(e){let[t,n]=(0,X.useState)(!1),[r,i]=(0,X.useState)(``),a=(0,X.useRef)(null),o=(0,X.useRef)(``),s=typeof window<`u`&&fn()!==null;return{isListening:t,interimText:r,start:(0,X.useCallback)(t=>{let r=fn();if(!r)return;a.current?.abort();let s=new r;s.lang=e?.lang??`vi-VN`,s.continuous=!0,s.interimResults=!0,o.current=``,s.onresult=e=>{let n=``,r=``;for(let t=0;t<e.results.length;t++){let i=e.results[t];i.isFinal?r+=i[0].transcript:n+=i[0].transcript}r&&(o.current=r);let a=(o.current+` `+n).trim();i(n),t(a,n.length===0&&o.current.length>0)},s.onend=()=>{n(!1),i(``),o.current&&t(o.current.trim(),!0)},s.onerror=e=>{e.error!==`no-speech`&&e.error!==`aborted`&&console.warn(`[voice-input] error:`,e.error),n(!1),i(``)},a.current=s,s.start(),n(!0)},[e?.lang]),stop:(0,X.useCallback)(()=>{a.current?.stop(),a.current=null,n(!1),i(``)},[]),supported:s}}var mn=new Set([`image/png`,`image/jpeg`,`image/gif`,`image/webp`]),hn=new Set([`application/pdf`]),gn=[`text/`,`application/json`,`application/xml`,`application/javascript`,`application/typescript`,`application/x-yaml`,`application/toml`,`application/x-sh`],_n=new Set(`.ts,.tsx,.js,.jsx,.mjs,.cjs,.py,.rb,.go,.rs,.java,.kt,.swift,.c,.cpp,.h,.hpp,.cs,.json,.yaml,.yml,.toml,.xml,.md,.mdx,.txt,.csv,.tsv,.html,.css,.scss,.less,.sass,.sh,.bash,.zsh,.fish,.sql,.graphql,.gql,.env,.ini,.cfg,.conf,.dockerfile,.makefile,.vue,.svelte,.astro,.ipynb`.split(`,`));function vn(e){return mn.has(e.type)}function yn(e){if(mn.has(e.type)||hn.has(e.type)||gn.some(t=>e.type.startsWith(t)))return!0;let t=bn(e.name);return!!(t&&_n.has(t))}function bn(e){let t=e.lastIndexOf(`.`);return t===-1?``:e.slice(t).toLowerCase()}function xn({attachments:e,onRemove:t}){return e.length===0?null:(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1.5 px-2 md:px-4 pt-2`,children:e.map(e=>(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 rounded-md border border-border bg-surface px-2 py-1 text-xs text-text-secondary max-w-48`,children:[e.previewUrl?(0,Q.jsx)(`img`,{src:e.previewUrl,alt:e.name,className:`size-5 rounded object-cover shrink-0`}):e.isImage?(0,Q.jsx)(He,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,Q.jsx)(pe,{className:`size-3.5 shrink-0 text-text-subtle`}),(0,Q.jsx)(`span`,{className:`truncate`,children:e.name}),e.status===`uploading`?(0,Q.jsx)(J,{className:`size-3 shrink-0 animate-spin text-text-subtle`}):e.status===`error`?(0,Q.jsx)(`span`,{className:`text-red-500 shrink-0`,title:`Upload failed`,children:`!`}):null,(0,Q.jsx)(`button`,{type:`button`,onClick:()=>t(e.id),className:`shrink-0 rounded-sm p-0.5 hover:bg-border/50 transition-colors`,"aria-label":`Remove ${e.name}`,children:(0,Q.jsx)(q,{className:`size-3`})})]},e.id))})}var Sn=[{id:`default`,label:`Ask before edits`,icon:Be,description:`Claude will ask for approval before making each edit`},{id:`acceptEdits`,label:`Edit automatically`,icon:o,description:`Claude will edit files without asking first`},{id:`plan`,label:`Plan mode`,icon:ze,description:`Claude will present a plan before editing`},{id:`bypassPermissions`,label:`Bypass permissions`,icon:Ye,description:`Claude will not ask before running commands`}];function Cn(e){return Sn.find(t=>t.id===e)?.label??`Unknown`}function wn(e){return Sn.find(t=>t.id===e)?.icon??Be}function Tn({value:e,onChange:t,open:n,onOpenChange:r}){let i=(0,X.useRef)(null),a=(0,X.useRef)(0);(0,X.useEffect)(()=>{if(!n)return;let e=e=>{i.current&&!i.current.contains(e.target)&&r(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[n,r]),(0,X.useEffect)(()=>{n&&(a.current=Sn.findIndex(t=>t.id===e),a.current<0&&(a.current=0))},[n,e]);let o=(0,X.useCallback)(e=>{if(e.key===`Escape`){r(!1);return}if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault();let t=e.key===`ArrowDown`?1:-1;a.current=(a.current+t+Sn.length)%Sn.length,(i.current?.querySelector(`[data-idx="${a.current}"]`))?.focus()}if(e.key===`Enter`){e.preventDefault();let n=Sn[a.current];n&&(t(n.id),r(!1))}},[t,r]);return n?(0,Q.jsxs)(`div`,{ref:i,role:`listbox`,"aria-label":`Permission modes`,onKeyDown:o,onMouseDown:e=>e.stopPropagation(),onClick:e=>e.stopPropagation(),className:`absolute bottom-full left-0 mb-1 z-50 w-72 md:w-80 rounded-lg border border-border bg-surface shadow-lg`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-medium text-text-secondary`,children:`Modes`}),(0,Q.jsx)(`kbd`,{className:`text-[10px] px-1.5 py-0.5 rounded bg-surface-elevated text-text-subtle border border-border`,children:`Shift + Tab`})]}),(0,Q.jsx)(`div`,{className:`py-1`,children:Sn.map((n,i)=>{let a=n.icon,o=n.id===e;return(0,Q.jsxs)(`button`,{"data-idx":i,role:`option`,"aria-selected":o,tabIndex:0,onClick:()=>{t(n.id),r(!1)},className:`w-full flex items-start gap-3 px-3 py-2.5 text-left transition-colors hover:bg-surface-elevated focus:bg-surface-elevated focus:outline-none ${o?`bg-surface-elevated`:``}`,children:[(0,Q.jsx)(a,{className:`size-4 mt-0.5 shrink-0 text-text-secondary`}),(0,Q.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,Q.jsx)(`div`,{className:`text-sm font-medium text-text-primary`,children:n.label}),(0,Q.jsx)(`div`,{className:`text-xs text-text-subtle leading-snug`,children:n.description})]}),o&&(0,Q.jsx)(ne,{className:`size-4 mt-0.5 shrink-0 text-primary`})]},n.id)})})]}):null}function En(e){let t=[];function n(e){for(let r of e)t.push(r),r.children&&n(r.children)}return n(e),t}function Dn({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,X.useState)(0),s=(0,X.useRef)(null),c=(()=>{if(!t)return e.slice(0,50);let n=t.toLowerCase();return e.filter(e=>e.path.toLowerCase().includes(n)||e.name.toLowerCase().includes(n)).slice(0,50)})();(0,X.useEffect)(()=>{o(0)},[t]),(0,X.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,X.useCallback)(e=>{if(!i||c.length===0)return!1;switch(e.key){case`ArrowUp`:return e.preventDefault(),o(e=>e>0?e-1:c.length-1),!0;case`ArrowDown`:return e.preventDefault(),o(e=>e<c.length-1?e+1:0),!0;case`Enter`:case`Tab`:return e.preventDefault(),c[a]&&n(c[a]),!0;case`Escape`:return e.preventDefault(),r(),!0}return!1},[i,c,a,n,r]);return(0,X.useEffect)(()=>{if(!i)return;let e=e=>{l(e)&&e.stopPropagation()};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[i,l]),!i||c.length===0?null:(0,Q.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,Q.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-center gap-2 w-full px-3 py-1.5 text-left transition-colors ${t===a?`bg-primary/10 text-primary`:`hover:bg-surface-hover text-text-primary`}`,onMouseEnter:()=>o(t),onClick:()=>n(e),children:[(0,Q.jsx)(`span`,{className:`shrink-0`,children:e.type===`directory`?(0,Q.jsx)(de,{className:`size-4 text-amber-500`}):(0,Q.jsx)(ye,{className:`size-4 text-blue-400`})}),(0,Q.jsx)(`span`,{className:`text-sm truncate`,children:e.path})]},e.path))})})}var On=(0,X.memo)(function({onSend:e,isStreaming:t,onCancel:n,disabled:r,projectName:a,onSlashStateChange:o,onSlashItemsLoaded:s,slashSelected:c,onFileStateChange:l,onFileItemsLoaded:u,fileSelected:d,externalFiles:f,initialValue:p,autoFocus:m,permissionMode:g,onModeChange:b,providerId:x,onProviderChange:S}){let[C,w]=(0,X.useState)(p??``),[T,E]=(0,X.useState)([]),[D,O]=(0,X.useState)(!1),[k,A]=(0,X.useState)(!1),[j,M]=(0,X.useState)(`next`),N=(0,X.useRef)(null),P=(0,X.useRef)(null),F=(0,X.useRef)(null),I=(0,X.useRef)([]),L=(0,X.useRef)([]),R=pn(),z=(0,X.useRef)(``),B=(0,X.useCallback)(e=>{let t=z.current;w(t?t+` `+e:e),requestAnimationFrame(()=>{let e=window.matchMedia(`(min-width: 768px)`).matches?N.current:P.current;e&&(e.style.height=`auto`,e.style.height=Math.min(e.scrollHeight,160)+`px`)})},[]),V=(0,X.useCallback)(()=>{R.isListening?R.stop():(z.current=C.trim(),R.start(B))},[R.isListening,R.start,R.stop,C,B]);(0,X.useEffect)(()=>{let e=()=>{R.supported&&V()};return window.addEventListener(`toggle-voice-input`,e),()=>window.removeEventListener(`toggle-voice-input`,e)},[R.supported,V]),(0,X.useEffect)(()=>{p&&(w(p),setTimeout(()=>{let e=N.current;e&&(e.focus(),e.selectionStart=e.selectionEnd=e.value.length)},50))},[p]),(0,X.useEffect)(()=>{m&&setTimeout(()=>{(window.matchMedia(`(min-width: 768px)`).matches?N.current:P.current)?.focus()},100)},[]),(0,X.useEffect)(()=>{if(!a){I.current=[],s?.([]);return}y.get(`${_(a)}/chat/slash-items`).then(e=>{I.current=e,s?.(e)}).catch(()=>{I.current=[],s?.([])})},[a]),(0,X.useEffect)(()=>{if(!a){L.current=[],u?.([]);return}y.get(`${_(a)}/files/tree?depth=5`).then(e=>{let t=En(e);L.current=t,u?.(t)}).catch(()=>{L.current=[],u?.([])})},[a]),(0,X.useEffect)(()=>{if(!c)return;let e=N.current,t=e?.selectionStart??C.length,n=C.slice(0,t),r=C.slice(t),i=n.replace(/(?:^|\s)\/\S*$/,e=>`${e.startsWith(`/`)?``:e[0]}/${c.name} `);w(i+r),o?.(!1,``),l?.(!1,``),e&&(e.focus(),setTimeout(()=>{e.selectionStart=e.selectionEnd=i.length},0))},[c]),(0,X.useEffect)(()=>{if(!d)return;let e=N.current;if(!e)return;let t=e.selectionStart,n=C.slice(0,t),r=C.slice(t),i=n.match(/@(\S*)$/);if(i){let t=n.length-i[0].length;w(n.slice(0,t)+`@${d.path} `+r);let a=t+d.path.length+2;setTimeout(()=>{e.selectionStart=e.selectionEnd=a,e.focus()},0)}else{let t=C+`@${d.path} `;w(t),setTimeout(()=>{e.selectionStart=e.selectionEnd=t.length,e.focus()},0)}l?.(!1,``)},[d]),(0,X.useEffect)(()=>{!f||f.length===0||U(f)},[f]);let H=(0,X.useCallback)(async e=>{if(!a)return null;try{let t=new FormData;t.append(`files`,e);let n={},r=v();r&&(n.Authorization=`Bearer ${r}`);let i=await(await fetch(`${_(a)}/chat/upload`,{method:`POST`,headers:n,body:t})).json();return i.ok&&Array.isArray(i.data)&&i.data.length>0?i.data[0].path:null}catch{return null}},[a]),U=(0,X.useCallback)(e=>{for(let t of e){if(!yn(t)){w(e=>e+(e.length>0&&!e.endsWith(` `)?` `:``)+t.name);continue}let e=h(),n=vn(t),r=n?URL.createObjectURL(t):void 0,i={id:e,name:t.name,file:t,isImage:n,previewUrl:r,status:`uploading`};E(e=>[...e,i]),H(t).then(t=>{E(n=>n.map(n=>n.id===e?{...n,serverPath:t??void 0,status:t?`ready`:`error`}:n))})}(P.current??N.current)?.focus()},[H]),ee=(0,X.useCallback)(e=>{E(t=>{let n=t.find(t=>t.id===e);return n?.previewUrl&&URL.revokeObjectURL(n.previewUrl),t.filter(t=>t.id!==e)})},[]),W=(0,X.useCallback)(()=>{let n=C.trim(),r=T.filter(e=>e.status===`ready`);if(!n&&r.length===0){A(!1);return}o?.(!1,``),l?.(!1,``),R.isListening&&R.stop(),e(n,r,t?j:void 0),w(``);for(let e of T)e.previewUrl&&URL.revokeObjectURL(e.previewUrl);E([]),A(!1),M(`next`),N.current&&(N.current.style.height=`auto`),P.current&&(P.current.style.height=`auto`)},[C,T,e,o,l,t,j]),G=(0,X.useCallback)(()=>{if(!r){if(T.some(e=>e.status===`uploading`)){(C.trim()||T.some(e=>e.status!==`error`))&&A(!0);return}W()}},[C,T,r,W]);(0,X.useEffect)(()=>{k&&(T.some(e=>e.status===`uploading`)||W())},[k,T,W]);let te=(0,X.useCallback)(e=>{if(e.key===`Enter`&&!e.shiftKey){e.preventDefault(),G();return}if(e.shiftKey&&e.key===`Tab`){e.preventDefault();let t=[`default`,`acceptEdits`,`plan`,`bypassPermissions`],n=t[(t.indexOf(g??`bypassPermissions`)+1)%t.length];b?.(n)}},[G,g,b]),K=(0,X.useCallback)((e,t)=>{let n=e.slice(0,t),r=n.match(/(?:^|\s)\/(\S*)$/);if(r&&I.current.length>0){o?.(!0,r[1]??``),l?.(!1,``);return}let i=n.match(/@(\S*)$/);if(i&&L.current.length>0){l?.(!0,i[1]??``),o?.(!1,``);return}o?.(!1,``),l?.(!1,``)},[o,l]),ne=(0,X.useCallback)((e,t)=>{w(e),K(e,t)},[K]),re=(0,X.useCallback)(e=>{let t=e?.target??N.current;t&&(t.style.height=`auto`,t.style.height=Math.min(t.scrollHeight,160)+`px`)},[]),q=(0,X.useCallback)(e=>{let t=e.clipboardData?.items;if(!t)return;let n=[];for(let e of t)if(e.kind===`file`){let t=e.getAsFile();t&&n.push(t)}n.length>0&&(e.preventDefault(),U(n))},[U]),ie=(0,X.useCallback)(e=>{e.preventDefault();let t=Array.from(e.dataTransfer.files);t.length>0&&U(t)},[U]),ae=(0,X.useCallback)(e=>{e.preventDefault()},[]),oe=(0,X.useCallback)(()=>{F.current?.click()},[]),se=(0,X.useCallback)(e=>{let t=Array.from(e.target.files??[]);t.length>0&&U(t),e.target.value=``},[U]),ce=C.trim().length>0||T.some(e=>e.status!==`error`),le=t&&!ce;return(0,Q.jsxs)(`div`,{className:`p-2 md:p-3 bg-background`,children:[(0,Q.jsxs)(`div`,{className:`border border-border rounded-xl md:rounded-2xl bg-surface shadow-sm cursor-text`,onClick:e=>{r||e.target instanceof HTMLTextAreaElement||(window.matchMedia(`(min-width: 768px)`).matches?N.current:P.current)?.focus()},children:[(0,Q.jsx)(xn,{attachments:T,onRemove:ee}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-1 px-2 pt-2 md:hidden relative`,children:[(0,Q.jsx)(kn,{mode:g??`bypassPermissions`,onClick:()=>O(e=>!e)}),(0,Q.jsx)(Tn,{value:g??`bypassPermissions`,onChange:e=>b?.(e),open:D,onOpenChange:O}),S&&a&&(0,Q.jsx)(ue,{value:x??`claude`,onChange:S,projectName:a}),t&&(0,Q.jsx)(jn,{value:j,onChange:M})]}),(0,Q.jsxs)(`div`,{className:`flex items-end gap-1 md:hidden px-2 py-2`,children:[(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),oe()},disabled:r,className:`flex items-center justify-center size-7 shrink-0 rounded-full text-text-subtle hover:text-text-primary transition-colors disabled:opacity-50`,"aria-label":`Attach file`,children:(0,Q.jsx)(Ke,{className:`size-4`})}),R.supported&&(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),V()},disabled:r,className:`flex items-center justify-center size-7 shrink-0 rounded-full transition-colors disabled:opacity-50 ${R.isListening?`bg-red-600 text-white animate-pulse`:`text-text-subtle hover:text-text-primary`}`,"aria-label":R.isListening?`Stop voice input`:`Start voice input`,children:R.isListening?(0,Q.jsx)(Ge,{className:`size-4`}):(0,Q.jsx)(Oe,{className:`size-4`})}),(0,Q.jsx)(`textarea`,{ref:P,value:C,onChange:e=>{ne(e.target.value,e.target.selectionStart),re(e)},onKeyDown:te,onPaste:q,onDrop:ie,onDragOver:ae,placeholder:t?`Follow-up...`:`Ask anything...`,disabled:r,rows:1,className:`flex-1 resize-none bg-transparent py-1.5 text-sm text-foreground placeholder:text-text-subtle focus:outline-none disabled:opacity-50 max-h-20`}),le?(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),n?.()},className:`flex items-center justify-center size-7 shrink-0 rounded-full bg-red-600 text-white hover:bg-red-500 transition-colors`,"aria-label":`Stop`,children:(0,Q.jsx)(Ze,{className:`size-3`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k?A(!1):G()},disabled:r||!ce,className:`flex items-center justify-center size-7 shrink-0 rounded-full bg-primary text-primary-foreground hover:bg-primary/90 disabled:opacity-30 transition-colors`,"aria-label":k?`Cancel queued send`:`Send`,children:k?(0,Q.jsx)(J,{className:`size-3.5 animate-spin`}):(0,Q.jsx)(i,{className:`size-3.5`})})]}),(0,Q.jsxs)(`div`,{className:`hidden md:block`,children:[(0,Q.jsx)(`textarea`,{ref:N,value:C,onChange:e=>{ne(e.target.value,e.target.selectionStart),re(e)},onKeyDown:te,onPaste:q,onDrop:ie,onDragOver:ae,placeholder:t?`Follow-up or Stop...`:`Ask anything...`,disabled:r,rows:1,className:`w-full resize-none bg-transparent px-4 pt-3 pb-1 text-sm text-foreground placeholder:text-text-subtle focus:outline-none disabled:opacity-50 max-h-40`}),(0,Q.jsxs)(`div`,{className:`flex items-center justify-between px-3 pb-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),oe()},disabled:r,className:`flex items-center justify-center size-8 rounded-full text-text-subtle hover:text-text-primary hover:bg-surface-elevated transition-colors disabled:opacity-50`,"aria-label":`Attach file`,children:(0,Q.jsx)(Ke,{className:`size-4`})}),R.supported&&(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),V()},disabled:r,className:`flex items-center justify-center size-8 rounded-full transition-colors disabled:opacity-50 ${R.isListening?`bg-red-600 text-white animate-pulse`:`text-text-subtle hover:text-text-primary hover:bg-surface-elevated`}`,"aria-label":R.isListening?`Stop voice input`:`Start voice input`,children:R.isListening?(0,Q.jsx)(Ge,{className:`size-4`}):(0,Q.jsx)(Oe,{className:`size-4`})}),(0,Q.jsxs)(`div`,{className:`relative`,children:[(0,Q.jsx)(kn,{mode:g??`bypassPermissions`,onClick:()=>O(e=>!e)}),(0,Q.jsx)(Tn,{value:g??`bypassPermissions`,onChange:e=>b?.(e),open:D,onOpenChange:O})]}),S&&a&&(0,Q.jsx)(ue,{value:x??`claude`,onChange:S,projectName:a}),t&&(0,Q.jsx)(jn,{value:j,onChange:M})]}),(0,Q.jsx)(`div`,{className:`flex items-center gap-1`,children:le?(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),n?.()},className:`flex items-center justify-center size-8 rounded-full bg-red-600 text-white hover:bg-red-500 transition-colors`,"aria-label":`Stop response`,children:(0,Q.jsx)(Ze,{className:`size-3.5`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k?A(!1):G()},disabled:r||!ce,className:`flex items-center justify-center size-8 rounded-full bg-primary text-primary-foreground hover:bg-primary/90 disabled:opacity-30 disabled:cursor-not-allowed transition-colors`,"aria-label":k?`Cancel queued send`:`Send message`,children:k?(0,Q.jsx)(J,{className:`size-4 animate-spin`}):(0,Q.jsx)(i,{className:`size-4`})})})]})]})]}),(0,Q.jsx)(`input`,{ref:F,type:`file`,multiple:!0,className:`hidden`,onChange:se})]})});function kn({mode:e,onClick:t}){let n=wn(e),r=Cn(e);return(0,Q.jsxs)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),t()},className:`inline-flex items-center gap-1 px-2 py-1 rounded-md text-[11px] text-text-subtle hover:text-text-primary hover:bg-surface-elevated transition-colors border border-transparent hover:border-border`,"aria-label":`Permission mode: ${r}`,children:[(0,Q.jsx)(n,{className:`size-3`}),(0,Q.jsx)(`span`,{className:`max-w-[100px] truncate`,children:r})]})}var An=[{value:`now`,label:`Interrupt`,Icon:Qe},{value:`next`,label:`Queue`,Icon:Ue},{value:`later`,label:`Later`,Icon:Me}];function jn({value:e,onChange:t}){let n=(0,X.useCallback)(()=>{let n=[`next`,`later`,`now`];t(n[(n.indexOf(e)+1)%n.length])},[e,t]),r=An.find(t=>t.value===e)??An[1],i=r.Icon;return(0,Q.jsxs)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),n()},className:`inline-flex items-center gap-1 px-2 py-1 rounded-md text-[11px] text-text-subtle hover:text-text-primary hover:bg-surface-elevated transition-colors border border-transparent hover:border-border`,"aria-label":`Message priority: ${r.label}`,title:`Priority: ${r.label} (click to cycle)`,children:[(0,Q.jsx)(i,{className:`size-3`}),(0,Q.jsx)(`span`,{children:r.label})]})}function Mn({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,X.useState)(0),s=(0,X.useRef)(null),c=e.filter(e=>{let n=t.toLowerCase();return e.name.toLowerCase().includes(n)||e.description.toLowerCase().includes(n)});(0,X.useEffect)(()=>{o(0)},[t]),(0,X.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,X.useCallback)(e=>{if(!i||c.length===0)return!1;switch(e.key){case`ArrowUp`:return e.preventDefault(),o(e=>e>0?e-1:c.length-1),!0;case`ArrowDown`:return e.preventDefault(),o(e=>e<c.length-1?e+1:0),!0;case`Enter`:case`Tab`:return e.preventDefault(),c[a]&&n(c[a]),!0;case`Escape`:return e.preventDefault(),r(),!0}return!1},[i,c,a,n,r]);return(0,X.useEffect)(()=>{if(!i)return;let e=e=>{l(e)&&e.stopPropagation()};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[i,l]),!i||c.length===0?null:(0,Q.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,Q.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-start gap-3 w-full px-3 py-2 text-left transition-colors ${t===a?`bg-primary/10 text-primary`:`hover:bg-surface-hover text-text-primary`}`,onMouseEnter:()=>o(t),onClick:()=>n(e),children:[(0,Q.jsx)(`span`,{className:`shrink-0 mt-0.5`,children:e.type===`skill`?(0,Q.jsx)(Xe,{className:`size-4 text-amber-500`}):(0,Q.jsx)(Ee,{className:`size-4 text-blue-500`})}),(0,Q.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,Q.jsxs)(`div`,{className:`flex items-baseline gap-2`,children:[(0,Q.jsxs)(`span`,{className:`font-medium text-sm`,children:[`/`,e.name]}),e.argumentHint&&(0,Q.jsx)(`span`,{className:`text-xs text-text-subtle`,children:e.argumentHint}),(0,Q.jsx)(`span`,{className:`text-xs text-text-subtle capitalize ml-auto`,children:e.scope===`user`?`global`:e.type})]}),e.description&&(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle mt-0.5 line-clamp-2`,children:e.description})]})]},`${e.type}-${e.name}`))})})}var Nn=`ppm-hienlh`;function Pn({open:e,onOpenChange:t,onSuccess:n}){let[r,i]=(0,X.useState)(``),[a,o]=(0,X.useState)(``),[s,c]=(0,X.useState)(!1),[l,u]=(0,X.useState)(null),[d,f]=(0,X.useState)(null),[p,m]=(0,X.useState)(``),[h,g]=(0,X.useState)(!1),[_,v]=(0,X.useState)(`idle`);function y(){f(null),m(``),v(`idle`),u(null)}function b(){t(!1),y(),i(``),o(``),u(null)}async function x(){g(!0),u(null);try{let{url:e,state:t}=await j();f(t),v(`waiting`),window.open(e,`_blank`)}catch(e){u(e.message)}g(!1)}async function S(){if(!(!p.trim()||!d)){g(!0),u(null);try{let e=p.trim();e.includes(`#`)&&(e=e.split(`#`)[0]??e),await w(e,d),b(),n(`Account connected via OAuth!`)}catch(e){u(e.message)}g(!1)}}async function C(){if(r.trim()){c(!0),u(null);try{await A({apiKey:r.trim(),label:a.trim()||void 0}),b(),n(`Account added!`)}catch(e){u(e.message)}c(!1)}}let T=r.trim()?r.trim().startsWith(`sk-ant-oat`)?`OAuth token (Claude Max/Pro)`:r.trim().startsWith(`sk-ant-api`)?`API key`:`Unknown format`:``;return(0,Q.jsx)(N,{open:e,onOpenChange:e=>{e||b()},children:(0,Q.jsxs)(Ne,{className:`sm:max-w-md`,children:[(0,Q.jsxs)(P,{children:[(0,Q.jsx)(U,{className:`text-sm`,children:`Add Claude Account`}),(0,Q.jsx)(K,{className:`text-xs leading-relaxed`,children:`Connect via OAuth (recommended) or paste a token manually.`})]}),(0,Q.jsxs)(`div`,{className:`space-y-3`,children:[(0,Q.jsxs)(`div`,{className:`rounded-md border p-3 space-y-2`,children:[(0,Q.jsx)(`p`,{className:`text-[11px] font-medium`,children:`Recommended: Login with Claude`}),_===`idle`?(0,Q.jsx)(Y,{size:`sm`,className:`w-full h-8 text-xs`,onClick:x,disabled:h,children:h?(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(J,{className:`size-3 animate-spin mr-1`}),` Opening...`]}):`Login with Claude`}):(0,Q.jsxs)(`div`,{className:`space-y-2`,children:[(0,Q.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Authorize in the opened tab, then paste the code:`}),(0,Q.jsx)(G,{placeholder:`Paste code here...`,value:p,onChange:e=>m(e.target.value),className:`text-xs h-8 font-mono`,autoFocus:!0}),(0,Q.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,Q.jsx)(Y,{size:`sm`,className:`flex-1 h-7 text-xs`,onClick:S,disabled:!p.trim()||h,children:h?(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(J,{className:`size-3 animate-spin mr-1`}),` Connecting...`]}):`Connect`}),(0,Q.jsx)(Y,{size:`sm`,variant:`ghost`,className:`h-7 text-xs`,onClick:y,children:`Cancel`})]})]})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`div`,{className:`flex-1 border-t`}),(0,Q.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:`or paste token`}),(0,Q.jsx)(`div`,{className:`flex-1 border-t`})]}),(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(be,{htmlFor:`add-token`,className:`text-xs`,children:`Token`}),(0,Q.jsx)(G,{id:`add-token`,type:`password`,placeholder:`sk-ant-...`,value:r,onChange:e=>i(e.target.value),className:`text-xs h-8 font-mono`}),T&&(0,Q.jsxs)(`p`,{className:`text-[10px] text-muted-foreground`,children:[`Detected: `,T]})]}),(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(be,{htmlFor:`add-label`,className:`text-xs`,children:`Label (optional)`}),(0,Q.jsx)(G,{id:`add-label`,placeholder:`e.g. Personal, Work`,value:a,onChange:e=>o(e.target.value),className:`text-xs h-8`})]})]}),l&&(0,Q.jsx)(`div`,{className:`text-[11px] p-2 rounded bg-red-500/10 text-red-600`,children:l}),(0,Q.jsxs)(I,{children:[(0,Q.jsx)(Y,{size:`sm`,variant:`outline`,className:`text-xs h-7`,onClick:b,children:`Cancel`}),(0,Q.jsx)(Y,{size:`sm`,className:`text-xs h-7`,onClick:C,disabled:!r.trim()||s,children:s?`Adding...`:`Add Token`})]})]})})}function Fn({open:e,onOpenChange:t,accounts:n,preselectId:r,onMessage:i}){let a=n.filter(e=>e.hasRefreshToken),[o,s]=(0,X.useState)(new Set),[c,l]=(0,X.useState)(``),[u,d]=(0,X.useState)(!1),[f,p]=(0,X.useState)(!1),[m,h]=(0,X.useState)(!1),[g,_]=(0,X.useState)(!1);e&&!g&&(s(r?new Set([r]):new Set(a.map(e=>e.id))),_(!0)),!e&&g&&_(!1);function y(){t(!1),l(``),d(!1),p(!1)}async function b(e){if(o.size===0)return;h(!0);let t=c.trim()||Nn;try{let n={"Content-Type":`application/json`},r=v();r&&(n.Authorization=`Bearer ${r}`);let a=await fetch(`/api/accounts/export`,{method:`POST`,headers:n,body:JSON.stringify({password:t,accountIds:[...o],includeRefreshToken:u,refreshBeforeExport:f})});if(!a.ok){let e=await a.json();throw Error(e.error??`Export failed: ${a.status}`)}let s=await a.text();if(e)try{await navigator.clipboard.writeText(s),i?.(`Backup copied to clipboard!`)}catch{Ln(s),i?.(`Backup downloaded.`)}else Ln(s),i?.(`Backup downloaded.`);y()}catch{}h(!1)}let x=o.size>0&&!m;return(0,Q.jsx)(N,{open:e,onOpenChange:e=>{e||y()},children:(0,Q.jsxs)(Ne,{className:`sm:max-w-md`,children:[(0,Q.jsxs)(P,{children:[(0,Q.jsxs)(U,{className:`text-sm flex items-center gap-1.5`,children:[(0,Q.jsx)(_e,{className:`size-3.5`}),` Export Accounts`]}),(0,Q.jsx)(K,{className:`text-xs`,children:`Select accounts and set a password to protect the backup.`})]}),(0,Q.jsxs)(`div`,{className:`space-y-3`,children:[(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between mb-1`,children:[(0,Q.jsx)(`p`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Accounts to export`}),(0,Q.jsx)(`button`,{className:`text-[10px] text-primary hover:underline cursor-pointer`,onClick:()=>s(o.size===a.length?new Set:new Set(a.map(e=>e.id))),children:o.size===a.length?`Deselect all`:`Select all`})]}),a.length===0?(0,Q.jsx)(`p`,{className:`text-[10px] text-muted-foreground p-2 border rounded`,children:`No exportable accounts.`}):(0,Q.jsx)(`div`,{className:`max-h-36 overflow-y-auto space-y-1 border rounded p-2`,children:a.map(e=>(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`input`,{type:`checkbox`,id:`exp-${e.id}`,checked:o.has(e.id),onChange:t=>{let n=new Set(o);t.target.checked?n.add(e.id):n.delete(e.id),s(n)},className:`size-3.5 accent-primary cursor-pointer`}),(0,Q.jsx)(`label`,{htmlFor:`exp-${e.id}`,className:`text-xs cursor-pointer truncate`,children:e.label??e.email??e.id.slice(0,8)})]},e.id))})]}),(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsxs)(be,{className:`text-xs`,children:[`Password `,(0,Q.jsx)(`span`,{className:`text-muted-foreground font-normal`,children:`(optional)`})]}),(0,Q.jsx)(G,{type:`password`,placeholder:`Leave empty for default`,value:c,onChange:e=>l(e.target.value),className:`text-xs h-8`,autoComplete:`new-password`})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`input`,{type:`checkbox`,id:`exp-full`,checked:u,onChange:e=>d(e.target.checked),className:`size-3.5 accent-primary cursor-pointer`}),(0,Q.jsx)(`label`,{htmlFor:`exp-full`,className:`text-[11px] cursor-pointer`,children:`Include refresh tokens (full transfer)`})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`input`,{type:`checkbox`,id:`exp-refresh`,checked:f,onChange:e=>p(e.target.checked),className:`size-3.5 accent-primary cursor-pointer`}),(0,Q.jsx)(`label`,{htmlFor:`exp-refresh`,className:`text-[11px] cursor-pointer`,children:`Refresh tokens before export`})]}),u?(0,Q.jsxs)(`div`,{className:`rounded-md border border-red-500/30 bg-red-500/5 p-2.5`,children:[(0,Q.jsx)(`p`,{className:`text-[10px] font-medium text-red-600`,children:`Full transfer — source accounts will expire`}),(0,Q.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Refresh tokens included. Source machine expires in ~1h after target refreshes.`})]}):f?(0,Q.jsx)(`div`,{className:`rounded-md border border-amber-500/30 bg-amber-500/5 p-2.5`,children:(0,Q.jsx)(`p`,{className:`text-[10px] font-medium text-amber-600`,children:`Refresh before export — invalidates previous shares`})}):(0,Q.jsx)(`div`,{className:`rounded-md border border-green-500/30 bg-green-500/5 p-2.5`,children:(0,Q.jsx)(`p`,{className:`text-[10px] font-medium text-green-600`,children:`Share current token (safe)`})}),(0,Q.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Encrypted with AES-256-GCM + scrypt.`})]}),(0,Q.jsxs)(I,{className:`gap-1.5 flex-col sm:flex-row`,children:[(0,Q.jsx)(Y,{size:`sm`,variant:`outline`,className:`text-xs h-7 cursor-pointer`,onClick:y,children:`Cancel`}),(0,Q.jsxs)(Y,{size:`sm`,variant:`outline`,className:`text-xs h-7 cursor-pointer`,disabled:!x,onClick:()=>b(!0),children:[(0,Q.jsx)(se,{className:`size-3 mr-1`}),` Copy`]}),(0,Q.jsx)(Y,{size:`sm`,className:`text-xs h-7 cursor-pointer`,disabled:!x,onClick:()=>b(!1),children:m?(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(J,{className:`size-3 animate-spin mr-1`}),` Exporting...`]}):(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(ge,{className:`size-3 mr-1`}),` Download`]})})]})]})})}function In({open:e,onOpenChange:t,onSuccess:n}){let[r,i]=(0,X.useState)(``),[a,o]=(0,X.useState)(``),[s,c]=(0,X.useState)(!1),[l,u]=(0,X.useState)(null);function d(){t(!1),i(``),o(``),u(null)}async function f(){if(r.trim()){c(!0),u(null);try{let e=await S({data:r.trim(),password:a.trim()||Nn});d(),n(`Imported ${e.imported} account(s)`)}catch(e){u(e.message||`Import failed`)}c(!1)}}return(0,Q.jsx)(N,{open:e,onOpenChange:e=>{e||d()},children:(0,Q.jsxs)(Ne,{className:`sm:max-w-md`,children:[(0,Q.jsxs)(P,{children:[(0,Q.jsxs)(U,{className:`text-sm flex items-center gap-1.5`,children:[(0,Q.jsx)(_e,{className:`size-3.5`}),` Import Accounts`]}),(0,Q.jsx)(K,{className:`text-xs`,children:`Paste backup data and enter the export password. Imported accounts are temporary (~1h).`})]}),(0,Q.jsxs)(`div`,{className:`space-y-3`,children:[(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(be,{className:`text-xs`,children:`Backup data`}),(0,Q.jsx)(`textarea`,{value:r,onChange:e=>i(e.target.value),placeholder:`Paste backup JSON here...`,rows:4,className:`w-full text-xs p-2 rounded border border-border bg-background font-mono resize-none focus:outline-none focus:ring-1 focus:ring-primary`})]}),(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsxs)(be,{className:`text-xs`,children:[`Password `,(0,Q.jsx)(`span`,{className:`text-muted-foreground font-normal`,children:`(optional)`})]}),(0,Q.jsx)(G,{type:`password`,placeholder:`Leave empty for default`,value:a,onChange:e=>o(e.target.value),className:`text-xs h-8`,autoComplete:`current-password`})]})]}),l&&(0,Q.jsx)(`div`,{className:`text-[11px] p-2 rounded bg-red-500/10 text-red-600`,children:l}),(0,Q.jsxs)(I,{children:[(0,Q.jsx)(Y,{size:`sm`,variant:`outline`,className:`text-xs h-7 cursor-pointer`,onClick:d,children:`Cancel`}),(0,Q.jsx)(Y,{size:`sm`,className:`text-xs h-7 cursor-pointer`,disabled:!r.trim()||s,onClick:f,children:s?(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(J,{className:`size-3 animate-spin mr-1`}),` Importing...`]}):`Import`})]})]})})}function Ln(e){let t=new Blob([e],{type:`application/json`}),n=document.createElement(`a`);n.href=URL.createObjectURL(t),n.download=`ppm-accounts-backup.json`,n.click(),URL.revokeObjectURL(n.href)}var Rn=typeof window<`u`?window.matchMedia(`(min-width: 768px)`):null;function zn(e){return Rn?.addEventListener(`change`,e),()=>Rn?.removeEventListener(`change`,e)}function Bn(){return Rn?.matches??!0}function Vn(){let[e,t]=(0,X.useState)(null),[n,r]=(0,X.useState)(!0);return(0,X.useEffect)(()=>{r(!0),E().then(t).finally(()=>r(!1))},[]),n?(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle py-4 text-center`,children:`Loading...`}):e?(0,Q.jsxs)(`div`,{className:`space-y-4`,children:[(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(`label`,{className:`text-xs font-medium text-text-primary`,children:`Rotation Strategy`}),(0,Q.jsxs)(ve,{value:e.strategy,onValueChange:async e=>{t(await C({strategy:e}))},children:[(0,Q.jsx)(he,{className:`w-full h-9 text-xs`,children:(0,Q.jsx)(Te,{})}),(0,Q.jsxs)(je,{children:[(0,Q.jsx)(fe,{value:`round-robin`,children:`Round-robin`}),(0,Q.jsx)(fe,{value:`fill-first`,children:`Fill-first`}),(0,Q.jsx)(fe,{value:`lowest-usage`,children:`Lowest usage`})]})]}),(0,Q.jsxs)(`p`,{className:`text-[10px] text-text-subtle`,children:[e.strategy===`round-robin`&&`Cycles through accounts evenly`,e.strategy===`fill-first`&&`Uses one account until its limit, then moves on`,e.strategy===`lowest-usage`&&`Picks the account with the lowest current usage`]})]}),(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(`label`,{className:`text-xs font-medium text-text-primary`,children:`Max Retry`}),(0,Q.jsx)(`input`,{type:`number`,min:0,value:e.maxRetry,className:`w-full h-9 text-xs border rounded-md px-3 bg-background`,onChange:async e=>{let n=parseInt(e.target.value,10);!isNaN(n)&&n>=0&&t(await C({maxRetry:n}))}}),(0,Q.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:`How many accounts to try on failure. 0 = try all available accounts.`})]}),(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-xs border-t border-border pt-3`,children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Active accounts`}),(0,Q.jsx)(`span`,{className:`font-medium text-text-primary`,children:e.activeCount})]})]}):(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle py-4 text-center`,children:`Failed to load settings`})}function Hn({open:e,onOpenChange:t}){let n=(0,X.useSyncExternalStore)(zn,Bn);return e?n?(0,Q.jsx)(N,{open:e,onOpenChange:t,children:(0,Q.jsxs)(Ne,{className:`sm:max-w-sm`,children:[(0,Q.jsx)(P,{children:(0,Q.jsxs)(U,{className:`text-sm flex items-center gap-2`,children:[(0,Q.jsx)(V,{className:`size-4`}),` Rotation & Retry`]})}),(0,Q.jsx)(Vn,{})]})}):(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`div`,{className:`fixed inset-0 z-50 transition-opacity duration-200 opacity-100`,onClick:()=>t(!1),style:{backgroundColor:`rgba(0,0,0,0.5)`}}),(0,Q.jsxs)(`div`,{className:m(`fixed bottom-0 left-0 right-0 z-50 bg-background rounded-t-2xl border-t border-border shadow-2xl`,`transition-transform duration-300 ease-out max-h-[85vh] overflow-y-auto`,`translate-y-0`),children:[(0,Q.jsx)(`div`,{className:`flex justify-center pt-3 pb-1`,children:(0,Q.jsx)(`div`,{className:`w-10 h-1 rounded-full bg-border`})}),(0,Q.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,Q.jsxs)(`span`,{className:`text-sm font-semibold flex items-center gap-2`,children:[(0,Q.jsx)(V,{className:`size-4`}),` Rotation & Retry`]}),(0,Q.jsx)(`button`,{onClick:()=>t(!1),className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,Q.jsx)(q,{className:`size-4`})})]}),(0,Q.jsx)(`div`,{className:`px-4 py-4 pb-8`,children:(0,Q.jsx)(Vn,{})})]})]}):null}function Un(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function Wn(e){return e>=90?`bg-red-500`:e>=70?`bg-amber-500`:`bg-green-500`}function Gn(e){if(!e)return null;let t=null;if(e.resetsInMinutes!=null)t=e.resetsInMinutes;else if(e.resetsInHours!=null)t=Math.round(e.resetsInHours*60);else if(e.resetsAt){let n=new Date(e.resetsAt).getTime()-Date.now();t=n>0?Math.ceil(n/6e4):0}if(t==null)return null;if(t<=0)return`now`;let n=Math.floor(t/1440),r=Math.floor(t%1440/60),i=t%60;return n>0?i>0?`${n}d ${r}h ${i}m`:r>0?`${n}d ${r}h`:`${n}d`:r>0?i>0?`${r}h ${i}m`:`${r}h`:`${i}m`}function Kn({label:e,bucket:t}){if(!t)return null;let n=Math.round(t.utilization*100),r=Gn(t);return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-medium text-text-primary`,children:e}),r&&(0,Q.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,title:`Resets in`,children:[`↻ `,r]})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`div`,{className:`flex-1 h-2 rounded-full bg-border overflow-hidden`,children:(0,Q.jsx)(`div`,{className:`h-full rounded-full transition-all ${Wn(n)}`,style:{width:`${Math.min(n,100)}%`}})}),(0,Q.jsxs)(`span`,{className:`text-xs font-medium tabular-nums w-10 text-right ${Un(n)}`,children:[n,`%`]})]})]})}function qn(e){let t=e-Date.now();if(t<=0)return`expired`;let n=Math.ceil(t/6e4),r=Math.floor(n/60),i=Math.floor(r/24);return i>0?`${i}d ${r%24}h`:r>0?`${r}h ${n%60}m`:`${n}m`}function Jn(e){if(!e)return{label:`unknown`,tip:`No account info available`,color:`text-text-subtle`};if(!e.expiresAt)return{label:`key`,tip:`API key (no expiry)`,color:`text-text-subtle`};let t=e.expiresAt*1e3<Date.now();return t&&e.hasRefreshToken?{label:`expired`,tip:`Token expired but has refresh token — will auto-renew`,color:`text-amber-500`}:t?{label:`expired`,tip:`Token expired, no refresh token`,color:`text-red-500`}:e.hasRefreshToken?{label:`long-lived`,tip:`OAuth token with refresh — long-lived`,color:`text-green-500`}:{label:`temp`,tip:`Temporary token without refresh — will expire`,color:`text-amber-500`}}function Yn(e){if(!e)return null;let t=Math.round((Date.now()-e)/1e3);if(t<5)return`just now`;if(t<60)return`${t}s ago`;let n=Math.floor(t/60);if(n<60)return`${n}m ago`;let r=Math.floor(n/60),i=n%60;return r<24?i>0?`${r}h ${i}m ago`:`${r}h ago`:`${Math.floor(r/24)}d ago`}function Xn({entry:e,isActive:t,accountInfo:n,onToggle:r,onDelete:i,onExport:a,onViewProfile:o,flash:s}){let{usage:c}=e,l=c.session||c.weekly||c.weeklyOpus||c.weeklySonnet,u=n?.status??e.accountStatus,d=!!(n&&!n.hasRefreshToken&&n.expiresAt&&n.expiresAt<Math.floor(Date.now()/1e3));return(0,Q.jsxs)(`div`,{className:`rounded-md border p-2 space-y-1.5 transition-colors duration-500 min-w-[200px] shrink-0 snap-start ${d?`opacity-50`:``} ${s?`bg-primary/10 border-primary/40`:``} ${t?`border-primary/30 bg-primary/5`:`border-border/50`}`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-medium truncate flex-1 min-w-0`,children:e.accountLabel??e.accountId.slice(0,8)}),d&&(0,Q.jsx)(`span`,{className:`text-[9px] text-red-500 shrink-0 font-medium`,children:`Expired`}),!e.isOAuth&&!d&&(0,Q.jsx)(`span`,{className:`text-[9px] text-text-subtle shrink-0`,children:`API key`}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-0.5 shrink-0`,children:[!d&&o&&n?.profileData&&(0,Q.jsx)(`button`,{className:`p-1 rounded cursor-pointer text-text-subtle hover:text-foreground hover:bg-surface-elevated transition-colors`,onClick:()=>o(n.profileData),title:`View profile`,children:(0,Q.jsx)(xe,{className:`size-3`})}),!d&&a&&e.isOAuth&&(0,Q.jsx)(`button`,{className:`p-1 rounded cursor-pointer text-text-subtle hover:text-blue-500 hover:bg-surface-elevated transition-colors`,onClick:()=>a(e.accountId),title:`Export this account`,children:(0,Q.jsx)(ge,{className:`size-3`})}),!d&&r&&(0,Q.jsx)(ce,{checked:u!==`disabled`,onCheckedChange:()=>r(e.accountId,u),disabled:u===`cooldown`,className:`scale-[0.6] cursor-pointer`}),i&&(0,Q.jsx)(`button`,{className:`p-1 rounded cursor-pointer text-text-subtle hover:text-red-500 hover:bg-surface-elevated transition-colors`,onClick:()=>i(e.accountId,e.accountLabel??e.accountId.slice(0,8)),title:`Remove account`,children:(0,Q.jsx)(H,{className:`size-3`})})]})]}),l?(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsx)(Kn,{label:`5-Hour Session`,bucket:c.session}),(0,Q.jsx)(Kn,{label:`Weekly`,bucket:c.weekly}),(0,Q.jsx)(Kn,{label:`Weekly (Opus)`,bucket:c.weeklyOpus}),(0,Q.jsx)(Kn,{label:`Weekly (Sonnet)`,bucket:c.weeklySonnet})]}):(0,Q.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:e.isOAuth?`No usage data yet`:`Usage tracking not available for API keys`}),(()=>{let e=Jn(n);return(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 text-[9px] text-text-subtle flex-wrap`,children:[c.lastFetchedAt&&(0,Q.jsxs)(`span`,{title:`Last usage data update`,children:[`↻ `,Yn(new Date(c.lastFetchedAt).getTime())]}),n?.expiresAt&&n.expiresAt*1e3>Date.now()&&(0,Q.jsxs)(`span`,{title:`Token expires in`,children:[`⏱ `,qn(n.expiresAt*1e3)]}),(0,Q.jsxs)(`span`,{className:e.color,title:e.tip,children:[`© `,e.label]})]})})()]})}function Zn({usage:e,visible:t,onClose:n,onReload:r,loading:i,lastFetchedAt:a}){let[o,s]=(0,X.useState)([]),[c,l]=(0,X.useState)([]),[u,d]=(0,X.useState)(null),[f,p]=(0,X.useState)(!0),[m,h]=(0,X.useState)(!1),[g,_]=(0,X.useState)(new Set),[v,y]=(0,X.useState)(null),[b,S]=(0,X.useState)(!1),[C,w]=(0,X.useState)(!1),[E,A]=(0,X.useState)(!1),[j,M]=(0,X.useState)(!1),[N,P]=(0,X.useState)(null),[F,I]=(0,X.useState)(null),[L,z]=(0,X.useState)(null),B=(0,X.useRef)(void 0),H=(0,X.useRef)([]);function U(e){B.current&&clearTimeout(B.current),z(e),B.current=setTimeout(()=>z(null),4e3)}function ee(e){G(),e&&U(e)}async function G(){let e=o.length>0;e?h(!0):p(!0);let[t,n,r]=await Promise.allSettled([T(),k(),x()]);if(t.status===`fulfilled`){let n=t.value;if(e&&H.current.length>0){let e=new Set,t=new Map(H.current.map(e=>[e.accountId,e]));for(let r of n){let n=t.get(r.accountId);if(!n){e.add(r.accountId);continue}let i=n.usage,a=r.usage;(i.session?.utilization!==a.session?.utilization||i.weekly?.utilization!==a.weekly?.utilization||i.weeklyOpus?.utilization!==a.weeklyOpus?.utilization||i.weeklySonnet?.utilization!==a.weeklySonnet?.utilization)&&e.add(r.accountId)}e.size>0&&(_(e),setTimeout(()=>_(new Set),1500))}H.current=n,s(n)}n.status===`fulfilled`&&l(n.value),r.status===`fulfilled`&&d(r.value?.id??null),p(!1),h(!1)}if((0,X.useEffect)(()=>{t&&G()},[t]),(0,X.useEffect)(()=>{!t||!a||G()},[a]),!t)return null;let te=new Map(c.map(e=>[e.id,e])),K=e.queryCostUsd!=null||e.totalCostUsd!=null,ne=o.length>0;async function re(e,t){await D(e,{status:t===`disabled`?`active`:`disabled`}),G(),r?.()}async function ie(){if(N){try{await O(N.id),U(`Account "${N.display}" removed.`),G(),r?.()}catch(e){U(`Failed to remove: ${e.message}`)}P(null)}}function ae(){I(null),w(!0)}return(0,Q.jsxs)(`div`,{className:`relative border-b border-border bg-surface px-3 py-2.5 space-y-2.5 max-h-[350px] overflow-y-auto`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-semibold text-text-primary`,children:`Usage & Accounts`}),a&&(0,Q.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:Yn(new Date(a).getTime())})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,Q.jsx)(`button`,{onClick:()=>M(!0),className:`text-xs text-text-subtle hover:text-text-primary px-1 cursor-pointer`,title:`Rotation & retry settings`,children:(0,Q.jsx)(V,{className:`size-3`})}),r&&(0,Q.jsx)(`button`,{onClick:()=>{r(),G()},disabled:i||m,className:`text-xs text-text-subtle hover:text-text-primary px-1 disabled:opacity-50 cursor-pointer`,title:`Refresh`,children:(0,Q.jsx)(oe,{className:`size-3 ${i||m?`animate-spin`:``}`})}),(0,Q.jsx)(`button`,{onClick:n,className:`text-xs text-text-subtle hover:text-text-primary px-1 cursor-pointer`,children:(0,Q.jsx)(q,{className:`size-3`})})]})]}),L&&(0,Q.jsx)(`div`,{className:`text-[11px] p-1.5 rounded bg-green-500/10 text-green-600 text-center animate-in fade-in duration-200`,children:L}),ne||f?(0,Q.jsx)(`div`,{className:`flex gap-1.5 overflow-x-auto pb-1 -mx-3 px-3 snap-x snap-mandatory scrollbar-thin`,children:f?(0,Q.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:`Loading...`}):o.map(t=>(0,Q.jsx)(Xn,{entry:t,isActive:t.accountId===(u??e.activeAccountId),accountInfo:te.get(t.accountId),onToggle:re,onDelete:(e,t)=>P({id:e,display:t}),onExport:e=>{I(e),w(!0)},onViewProfile:y,flash:g.has(t.accountId)},t.accountId))}):(0,Q.jsx)(Q.Fragment,{children:e.session||e.weekly||e.weeklyOpus||e.weeklySonnet?(0,Q.jsxs)(`div`,{className:`space-y-2.5`,children:[(0,Q.jsx)(Kn,{label:`5-Hour Session`,bucket:e.session}),(0,Q.jsx)(Kn,{label:`Weekly`,bucket:e.weekly}),(0,Q.jsx)(Kn,{label:`Weekly (Opus)`,bucket:e.weeklyOpus}),(0,Q.jsx)(Kn,{label:`Weekly (Sonnet)`,bucket:e.weeklySonnet})]}):(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle`,children:`No usage data available`})}),K&&(0,Q.jsxs)(`div`,{className:`border-t border-border pt-2 space-y-1`,children:[e.queryCostUsd!=null&&(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Last query`}),(0,Q.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.queryCostUsd.toFixed(4)]})]}),e.totalCostUsd!=null&&(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Session total`}),(0,Q.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.totalCostUsd.toFixed(4)]})]})]}),v&&(0,Q.jsxs)(`div`,{className:`border-t border-border pt-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between mb-1`,children:[(0,Q.jsx)(`span`,{className:`text-[10px] font-medium text-text-subtle`,children:`Profile`}),(0,Q.jsx)(`button`,{className:`text-text-subtle hover:text-foreground cursor-pointer`,onClick:()=>y(null),children:(0,Q.jsx)(q,{className:`size-3`})})]}),(0,Q.jsxs)(`div`,{className:`grid grid-cols-[70px_1fr] gap-x-2 gap-y-0.5 text-[10px]`,children:[v.account?.display_name&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Name`}),(0,Q.jsx)(`span`,{children:v.account.display_name})]}),v.account?.email&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Email`}),(0,Q.jsx)(`span`,{children:v.account.email})]}),v.organization?.name&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Org`}),(0,Q.jsx)(`span`,{children:v.organization.name})]}),v.organization?.organization_type&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Type`}),(0,Q.jsx)(`span`,{children:v.organization.organization_type})]}),v.organization?.rate_limit_tier&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Tier`}),(0,Q.jsx)(`span`,{children:v.organization.rate_limit_tier})]}),v.organization?.subscription_status&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Status`}),(0,Q.jsx)(`span`,{children:v.organization.subscription_status})]})]})]}),(0,Q.jsxs)(`div`,{className:`border-t border-border pt-2 flex gap-1.5`,children:[(0,Q.jsxs)(`button`,{onClick:()=>S(!0),className:`flex-1 flex items-center justify-center gap-1 rounded-md border border-border px-2 py-1 text-[11px] text-text-secondary hover:bg-surface-hover transition-colors cursor-pointer`,children:[(0,Q.jsx)(W,{className:`size-3`}),` Add`]}),(0,Q.jsxs)(`button`,{onClick:ae,className:`flex-1 flex items-center justify-center gap-1 rounded-md border border-border px-2 py-1 text-[11px] text-text-secondary hover:bg-surface-hover transition-colors cursor-pointer`,children:[(0,Q.jsx)(ge,{className:`size-3`}),` Export`]}),(0,Q.jsxs)(`button`,{onClick:()=>A(!0),className:`flex-1 flex items-center justify-center gap-1 rounded-md border border-border px-2 py-1 text-[11px] text-text-secondary hover:bg-surface-hover transition-colors cursor-pointer`,children:[(0,Q.jsx)(R,{className:`size-3`}),` Import`]})]}),N&&(0,Q.jsx)(`div`,{className:`absolute inset-0 z-10 flex items-center justify-center bg-background/80 backdrop-blur-sm rounded-md`,children:(0,Q.jsxs)(`div`,{className:`bg-surface border border-border rounded-lg shadow-lg p-4 mx-4 max-w-[280px] w-full space-y-3`,children:[(0,Q.jsxs)(`p`,{className:`text-xs text-text-primary text-center`,children:[`Remove `,(0,Q.jsx)(`strong`,{className:`text-foreground`,children:N.display}),`?`]}),(0,Q.jsxs)(`div`,{className:`flex gap-2`,children:[(0,Q.jsx)(`button`,{onClick:()=>P(null),className:`flex-1 px-3 py-1.5 rounded-md text-xs border border-border text-text-secondary hover:bg-surface-hover cursor-pointer transition-colors`,children:`Cancel`}),(0,Q.jsx)(`button`,{onClick:ie,className:`flex-1 px-3 py-1.5 rounded-md text-xs bg-red-500 text-white hover:bg-red-600 cursor-pointer transition-colors`,children:`Remove`})]})]})}),(0,Q.jsx)(Pn,{open:b,onOpenChange:S,onSuccess:ee}),(0,Q.jsx)(Fn,{open:C,onOpenChange:e=>{w(e),e||I(null)},accounts:c,preselectId:F,onMessage:U}),(0,Q.jsx)(In,{open:E,onOpenChange:A,onSuccess:ee}),(0,Q.jsx)(Hn,{open:j,onOpenChange:M})]})}function Qn(e){try{return new Date(e).toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}function $n(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function er({sessionId:e,projectName:t}){let[n,r]=(0,X.useState)(!1);return(0,Q.jsx)(`button`,{onClick:async()=>{try{let n=await y.get(`${_(t)}/chat/sessions/${e}/debug?project=${encodeURIComponent(t)}`),i=[`PPM Session: ${n.ppmSessionId}`,`SDK Session: ${n.sdkSessionId}`,n.jsonlPath?`JSONL: ${n.jsonlPath}`:`JSONL: not found`,n.projectPath?`Project: ${n.projectPath}`:null].filter(Boolean).join(`
7
- `);await navigator.clipboard.writeText(i),r(!0),setTimeout(()=>r(!1),1500)}catch{}},className:`p-1 rounded transition-colors ${n?`text-green-500 bg-green-500/10`:`text-text-subtle hover:text-text-secondary hover:bg-surface-elevated`}`,title:n?`Copied!`:`Copy session debug info`,children:n?(0,Q.jsx)(Re,{className:`size-3`}):(0,Q.jsx)(L,{className:`size-3`})})}function tr({projectName:e,usageInfo:t,contextWindowPct:n,compactStatus:r,usageLoading:i,refreshUsage:a,lastFetchedAt:o,sessionId:s,providerId:c,onSelectSession:l,onBugReport:u,isConnected:f,onReconnect:p}){let[m,h]=(0,X.useState)(null),[g,v]=(0,X.useState)([]),[b,x]=(0,X.useState)(!1),S=B(e=>s?e.notifications.has(s):!1),C=B(e=>e.clearForSession),[w,T]=(0,X.useState)(``),[E,D]=(0,X.useState)(null),[O,k]=(0,X.useState)(``),A=(0,X.useRef)(null),j=d(e=>e.openTab),N=e=>{h(t=>t===e?null:e)},P=(0,X.useCallback)(async()=>{if(e){x(!0);try{v(await y.get(`${_(e)}/chat/sessions`))}catch{}finally{x(!1)}}},[e]);(0,X.useEffect)(()=>{m===`history`&&g.length===0&&P()},[m]);function F(t){l?(l(t),h(null)):j({type:`chat`,title:t.title||`Chat`,projectId:e??null,metadata:{projectName:e,sessionId:t.id,providerId:t.providerId},closable:!0})}let I=(0,X.useCallback)((e,t)=>{t.stopPropagation(),D(e.id),k(e.title||``),setTimeout(()=>A.current?.select(),0)},[]),L=(0,X.useCallback)(async()=>{if(!E||!O.trim()||!e){D(null);return}try{await y.patch(`${_(e)}/chat/sessions/${E}`,{title:O.trim()}),v(e=>e.map(e=>e.id===E?{...e,title:O.trim()}:e))}catch{}D(null)},[E,O,e]),R=(0,X.useCallback)(()=>D(null),[]),z=(0,X.useCallback)(async(t,n)=>{if(t.stopPropagation(),!e)return;let r=`${_(e)}/chat/sessions/${n.id}/pin`;try{n.pinned?await y.del(r):await y.put(r),v(e=>e.map(e=>e.id===n.id?{...e,pinned:!e.pinned}:e).sort((e,t)=>e.pinned&&!t.pinned?-1:!e.pinned&&t.pinned?1:new Date(t.createdAt).getTime()-new Date(e.createdAt).getTime()))}catch{}},[e]),V=w.trim()?g.filter(e=>(e.title||``).toLowerCase().includes(w.toLowerCase())):g,H=!c||c===`claude`,U=t.fiveHour==null?null:Math.round(t.fiveHour*100),W=t.sevenDay==null?null:Math.round(t.sevenDay*100),G=U!=null||W!=null?$n(Math.max(U??0,W??0)):`text-text-subtle`;return(0,Q.jsxs)(`div`,{className:`border-b border-border/50`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1`,children:[(0,Q.jsxs)(`button`,{onClick:()=>N(`history`),className:`flex items-center gap-1 px-1.5 py-0.5 rounded text-[11px] transition-colors ${m===`history`?`text-primary bg-primary/10`:`text-text-secondary hover:text-foreground hover:bg-surface-elevated`}`,children:[(0,Q.jsx)(Ve,{className:`size-3`}),(0,Q.jsx)(`span`,{children:`History`})]}),s&&c&&c!==`mock`&&(0,Q.jsxs)(`span`,{className:`flex items-center gap-1 px-1.5 py-0.5 text-[11px] text-text-secondary`,children:[(0,Q.jsx)(ke,{providerId:c}),(0,Q.jsx)(`span`,{className:`capitalize`,children:c})]}),(0,Q.jsx)(`button`,{onClick:()=>N(`config`),className:`p-1 rounded transition-colors ${m===`config`?`text-primary bg-primary/10`:`text-text-subtle hover:text-text-secondary hover:bg-surface-elevated`}`,title:`AI Settings`,children:(0,Q.jsx)(qe,{className:`size-3`})}),H?(0,Q.jsxs)(`button`,{onClick:()=>N(`usage`),className:`flex items-center gap-1 px-1.5 py-0.5 rounded text-[11px] font-medium tabular-nums transition-colors hover:bg-surface-elevated ${m===`usage`?`bg-primary/10`:``} ${G}`,title:`Usage limits`,children:[(0,Q.jsx)(Ie,{className:`size-3`}),t.activeAccountLabel&&(0,Q.jsxs)(`span`,{className:`text-text-secondary font-normal truncate max-w-[60px]`,children:[`[`,t.activeAccountLabel,`]`]}),(0,Q.jsxs)(`span`,{children:[`5h:`,U==null?`--%`:`${U}%`]}),(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{children:[`Wk:`,W==null?`--%`:`${W}%`]}),n!=null&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{className:$n(n),children:[`Ctx:`,n,`%`]})]}),r===`compacting`&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsx)(`span`,{className:`text-blue-400 animate-pulse`,children:`compacting...`})]})]}):(0,Q.jsxs)(Q.Fragment,{children:[n!=null&&(0,Q.jsxs)(`span`,{className:`flex items-center gap-1 px-1.5 py-0.5 text-[11px] font-medium tabular-nums ${$n(n)}`,children:[(0,Q.jsx)(Ie,{className:`size-3`}),(0,Q.jsxs)(`span`,{children:[`Ctx:`,n,`%`]})]}),r===`compacting`&&(0,Q.jsx)(`span`,{className:`text-[11px] px-1.5 py-0.5 text-blue-400 animate-pulse`,children:`compacting...`})]}),(0,Q.jsx)(`div`,{className:`flex-1`}),S&&s&&(0,Q.jsx)(`button`,{onClick:()=>C(s),className:`p-1 rounded text-amber-500 hover:text-amber-400 hover:bg-surface-elevated transition-colors`,title:`Mark as read`,children:(0,Q.jsx)(ee,{className:`size-3`})}),s&&(0,Q.jsx)(er,{sessionId:s,projectName:e}),p&&(0,Q.jsx)(`button`,{onClick:p,className:`size-4 flex items-center justify-center`,title:f?`Connected`:`Disconnected — click to reconnect`,children:(0,Q.jsx)(`span`,{className:`size-2 rounded-full ${f?`bg-green-500`:`bg-red-500 animate-pulse`}`})})]}),m===`history`&&(0,Q.jsxs)(`div`,{className:`border-t border-border/30 bg-surface`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 px-2 py-1 border-b border-border/30`,children:[(0,Q.jsx)(ae,{className:`size-3 text-text-subtle shrink-0`}),(0,Q.jsx)(`input`,{type:`text`,value:w,onChange:e=>T(e.target.value),placeholder:`Search sessions...`,className:`flex-1 bg-transparent text-[11px] text-text-primary outline-none placeholder:text-text-subtle`}),(0,Q.jsx)(`button`,{onClick:P,disabled:b,className:`p-0.5 rounded text-text-subtle hover:text-text-secondary transition-colors disabled:opacity-50`,title:`Refresh`,children:(0,Q.jsx)(oe,{className:`size-3 ${b?`animate-spin`:``}`})})]}),(0,Q.jsx)(`div`,{className:`max-h-[200px] overflow-y-auto`,children:b&&g.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,Q.jsx)(J,{className:`size-3.5 animate-spin text-text-subtle`})}):V.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:w?`No matching sessions`:`No sessions yet`}):V.map(e=>(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 w-full px-3 py-1.5 text-left hover:bg-surface-elevated transition-colors group`,children:[(0,Q.jsx)(ke,{providerId:e.providerId}),E===e.id?(0,Q.jsxs)(`form`,{className:`flex items-center gap-1 flex-1 min-w-0`,onSubmit:e=>{e.preventDefault(),L()},children:[(0,Q.jsx)(`input`,{ref:A,value:O,onChange:e=>k(e.target.value),onBlur:L,onKeyDown:e=>{e.key===`Escape`&&R()},className:`flex-1 min-w-0 bg-surface-elevated text-[11px] text-text-primary px-1 py-0.5 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}),(0,Q.jsx)(`button`,{type:`submit`,className:`p-0.5 text-green-500 hover:text-green-400`,onClick:e=>e.stopPropagation(),children:(0,Q.jsx)(ne,{className:`size-3`})}),(0,Q.jsx)(`button`,{type:`button`,className:`p-0.5 text-text-subtle hover:text-text-secondary`,onClick:e=>{e.stopPropagation(),R()},children:(0,Q.jsx)(q,{className:`size-3`})})]}):(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`button`,{onClick:()=>F(e),className:`text-[11px] truncate flex-1 text-left`,children:e.title||`Untitled`}),(0,Q.jsx)(`button`,{onClick:t=>z(t,e),className:`p-0.5 rounded transition-all ${e.pinned?`text-primary hover:text-primary/70`:`text-text-subtle hover:text-text-secondary md:opacity-0 md:group-hover:opacity-100`}`,title:e.pinned?`Unpin session`:`Pin session`,children:e.pinned?(0,Q.jsx)(me,{className:`size-3`}):(0,Q.jsx)(M,{className:`size-3`})}),(0,Q.jsx)(`button`,{onClick:t=>I(e,t),className:`p-0.5 rounded text-text-subtle hover:text-text-secondary md:opacity-0 md:group-hover:opacity-100 transition-opacity`,title:`Rename session`,children:(0,Q.jsx)(Ae,{className:`size-3`})})]}),E!==e.id&&e.updatedAt&&(0,Q.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0 w-10 text-right`,children:Qn(e.updatedAt)})]},e.id))})]}),m===`config`&&(0,Q.jsx)(`div`,{className:`border-t border-border/30 bg-surface px-3 py-2 max-h-[280px] overflow-y-auto`,children:(0,Q.jsx)(Ce,{compact:!0})}),m===`usage`&&H&&(0,Q.jsx)(Zn,{usage:t,visible:!0,onClose:()=>h(null),onReload:a,loading:i,lastFetchedAt:o})]})}function nr({metadata:e,tabId:t}){let[n,r]=(0,X.useState)(e?.sessionId??null),[i,a]=(0,X.useState)(e?.providerId??`claude`),[o,s]=(0,X.useState)([]),[c,l]=(0,X.useState)(!1),[f,m]=(0,X.useState)(``),[h,g]=(0,X.useState)(null),[v,x]=(0,X.useState)([]),[S,C]=(0,X.useState)(!1),[w,T]=(0,X.useState)(``),[E,D]=(0,X.useState)(null),[O,k]=(0,X.useState)(e?.permissionMode??void 0),[A,j]=(0,X.useState)(!1),[M,N]=(0,X.useState)(null),P=(0,X.useRef)(0),F=e?.projectName??``,I=d(e=>e.updateTab),L=re(e=>e.version),{usageInfo:z,usageLoading:V,lastFetchedAt:H,refreshUsage:U}=pt(F,i);(0,X.useEffect)(()=>{O||b().then(e=>{let t=e.providers[e.default_provider??`claude`];k(t?.permission_mode??`bypassPermissions`)}).catch(()=>{})},[]),(0,X.useEffect)(()=>{!t||!n||I(t,{metadata:{...e,sessionId:n,providerId:i,permissionMode:O}})},[n,i,O]);let{messages:ee,messagesLoading:W,isStreaming:G,phase:te,isReconnecting:K,connectingElapsed:ne,pendingApproval:q,contextWindowPct:ie,compactStatus:ae,sessionTitle:oe,migratedSessionId:se,sendMessage:ce,respondToApproval:le,cancelStreaming:ue,reconnect:de,refetchMessages:fe,isConnected:pe}=dt(n,i,F);(0,X.useEffect)(()=>{se&&se!==n&&r(se)},[se]),(0,X.useEffect)(()=>{if(!n||!t)return;let e=()=>{if(document.hidden)return;let{panels:e,focusedPanelId:r}=u.getState();e[r]?.activeTabId===t&&B.getState().clearForSession(n)};e(),document.addEventListener(`visibilitychange`,e);let r=u.subscribe(e);return()=>{document.removeEventListener(`visibilitychange`,e),r()}},[n,t]),(0,X.useEffect)(()=>{t&&oe&&I(t,{title:oe})},[oe]);let[me,he]=(0,X.useState)(e?.pendingMessage);(0,X.useEffect)(()=>{me&&pe&&n&&t&&I(t,{metadata:{...e,pendingMessage:void 0}})},[pe,n]),(0,X.useCallback)(()=>{d.getState().openTab({type:`chat`,title:`AI Chat`,metadata:{projectName:F,providerId:i},projectId:F||null,closable:!0})},[F,i]);let ge=(0,X.useCallback)(e=>{r(e.id),a(e.providerId),t&&I(t,{title:e.title||`Chat`})},[t,I]),_e=(0,X.useCallback)(async(e,t)=>{if(!(!n||!F))try{let{api:r,projectUrl:a}=await p(async()=>{let{api:e,projectUrl:t}=await import(`./api-client-BKIT_Qeg.js`).then(e=>e.n);return{api:e,projectUrl:t}},__vite__mapDeps([0,1])),o=await r.post(`${a(F)}/chat/sessions/${n}/fork?providerId=${i}`,{messageId:t});d.getState().openTab({type:`chat`,title:`Fork: ${e.slice(0,30)}`,metadata:{projectName:F,sessionId:o.id,providerId:i,pendingMessage:e},projectId:F||null,closable:!0})}catch(e){console.error(`Fork failed:`,e)}},[n,F,i]),Y=(0,X.useCallback)((e,t)=>{if(t.length===0)return e;let n=t.filter(e=>e.serverPath).map(e=>e.serverPath).join(`
8
- `);return n?(t.length===1?`[Attached file: ${n}]\n\n`:`[Attached files:\n${n}\n]\n\n`)+e:e},[]),ve=(0,X.useCallback)(async(e,t=[],o)=>{let s=Y(e,t);if(s.trim()){if(!n)try{let t=F,n=await y.post(`${_(t)}/chat/sessions`,{providerId:i,title:e.slice(0,50)});r(n.id),a(n.providerId),setTimeout(()=>{ce(s,{permissionMode:O})},500);return}catch(e){console.error(`Failed to create session:`,e);return}ce(s,{permissionMode:O,priority:o})}},[n,i,F,ce,Y,O]),ye=(0,X.useCallback)((e,t)=>{l(e),m(t)},[]),be=(0,X.useCallback)(e=>{g(e),l(!1),m(``),setTimeout(()=>g(null),50)},[]),xe=(0,X.useCallback)(()=>{l(!1),m(``)},[]),Se=(0,X.useCallback)((e,t)=>{C(e),T(t)},[]),Ce=(0,X.useCallback)(e=>{D(e),C(!1),T(``),setTimeout(()=>D(null),50)},[]),we=(0,X.useCallback)(()=>{C(!1),T(``)},[]);return(0,Q.jsxs)(`div`,{className:`flex flex-col h-full relative`,onDragEnter:(0,X.useCallback)(e=>{e.preventDefault(),P.current++,e.dataTransfer.types.includes(`Files`)&&j(!0)},[]),onDragLeave:(0,X.useCallback)(e=>{e.preventDefault(),P.current--,P.current===0&&j(!1)},[]),onDragOver:(0,X.useCallback)(e=>{e.preventDefault()},[]),onDrop:(0,X.useCallback)(e=>{e.preventDefault(),P.current=0,j(!1);let t=Array.from(e.dataTransfer.files);t.length>0&&(N(t),setTimeout(()=>N(null),100))},[]),children:[A&&(0,Q.jsx)(`div`,{className:`absolute inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm border-2 border-dashed border-primary rounded-lg pointer-events-none`,children:(0,Q.jsxs)(`div`,{className:`flex flex-col items-center gap-2 text-primary`,children:[(0,Q.jsx)(R,{className:`size-8`}),(0,Q.jsx)(`span`,{className:`text-sm font-medium`,children:`Drop files to attach`})]})}),K&&(0,Q.jsx)(`div`,{className:`absolute inset-0 z-50 flex items-center justify-center bg-background/60 backdrop-blur-sm`,children:(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 text-sm text-muted-foreground`,children:[(0,Q.jsx)(J,{className:`size-4 animate-spin`}),(0,Q.jsx)(`span`,{children:`Reconnecting...`})]})}),(0,Q.jsx)(zt,{messages:ee,messagesLoading:W,pendingApproval:q,onApprovalResponse:le,isStreaming:G,phase:te,connectingElapsed:ne,projectName:F,onFork:G?void 0:_e}),(0,Q.jsxs)(`div`,{className:`border-t border-border bg-background shrink-0`,children:[(0,Q.jsx)(tr,{projectName:F,usageInfo:z,contextWindowPct:ie,compactStatus:ae,usageLoading:V,refreshUsage:U,lastFetchedAt:H,sessionId:n,providerId:i,onSelectSession:ge,onBugReport:n?()=>De(L,{sessionId:n,projectName:F}):void 0,isConnected:pe,onReconnect:()=>{pe||de(),fe()}}),(0,Q.jsx)(Mn,{items:o,filter:f,onSelect:be,onClose:xe,visible:c}),(0,Q.jsx)(Dn,{items:v,filter:w,onSelect:Ce,onClose:we,visible:S}),(0,Q.jsx)(On,{onSend:(e,t,n)=>{me&&he(void 0),ve(e,t,n)},isStreaming:G,onCancel:ue,autoFocus:!e?.sessionId||!!me,initialValue:me,projectName:F,onSlashStateChange:ye,onSlashItemsLoaded:s,slashSelected:h,onFileStateChange:Se,onFileItemsLoaded:x,fileSelected:E,externalFiles:M,permissionMode:O,onModeChange:k,providerId:i,onProviderChange:n?void 0:a})]})]})}export{nr as ChatTab};