@hienlh/ppm 0.8.50 → 0.8.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/web/assets/api-settings-D4bgXrLU.js +1 -0
- package/dist/web/assets/chat-tab-CoV1KQMy.js +7 -0
- package/dist/web/assets/{code-editor-DB-y8tPy.js → code-editor-BZPwIGKR.js} +1 -1
- package/dist/web/assets/{database-viewer-D4JQEtMD.js → database-viewer-Bof6ObKy.js} +1 -1
- package/dist/web/assets/{diff-viewer-ToD0FLsL.js → diff-viewer-te-ZDE1c.js} +1 -1
- package/dist/web/assets/{git-graph-Dg7SVF-R.js → git-graph-D5MCrTdW.js} +1 -1
- package/dist/web/assets/index-Bb5A248z.js +37 -0
- package/dist/web/assets/index-CoyMn-Mj.css +2 -0
- package/dist/web/assets/keybindings-store-CS8iFKWp.js +1 -0
- package/dist/web/assets/{markdown-renderer-DMHeWMgi.js → markdown-renderer-BVNQfyqo.js} +1 -1
- package/dist/web/assets/{postgres-viewer-bUYwSwrp.js → postgres-viewer-DAAoR6eS.js} +1 -1
- package/dist/web/assets/{settings-store-ChwdK0tt.js → settings-store-DL2KEbtc.js} +2 -2
- package/dist/web/assets/settings-tab-BfXWlmwG.js +1 -0
- package/dist/web/assets/{sqlite-viewer-BLUoWIZ5.js → sqlite-viewer-C0pY249Q.js} +1 -1
- package/dist/web/assets/{terminal-tab-B5sI9TDZ.js → terminal-tab-pBZIdGj-.js} +2 -2
- package/dist/web/assets/{use-monaco-theme-0hXmt0_2.js → use-monaco-theme-DwP4EHdO.js} +1 -1
- package/dist/web/index.html +4 -4
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/src/providers/claude-agent-sdk.ts +21 -8
- package/src/server/index.ts +4 -0
- package/src/server/routes/proxy.ts +79 -0
- package/src/server/routes/settings.ts +53 -1
- package/src/services/proxy.service.ts +139 -0
- package/src/types/config.ts +1 -0
- package/src/web/components/chat/message-list.tsx +2 -125
- package/src/web/components/settings/ai-settings-section.tsx +21 -0
- package/src/web/components/settings/proxy-settings-section.tsx +217 -0
- package/src/web/components/settings/settings-tab.tsx +5 -2
- package/src/web/lib/api-settings.ts +19 -0
- package/dist/web/assets/api-settings-DfTIjsPW.js +0 -1
- package/dist/web/assets/chat-tab-BZSpI1_2.js +0 -7
- package/dist/web/assets/index-DdLIa98_.js +0 -28
- package/dist/web/assets/index-XRJa3Ncz.css +0 -2
- package/dist/web/assets/keybindings-store-BofWHLIC.js +0 -1
- package/dist/web/assets/settings-tab-D2bgiL7t.js +0 -1
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
import { useState, useEffect } from "react";
|
|
2
|
+
import { Copy, RefreshCw, ExternalLink } from "lucide-react";
|
|
3
|
+
import { Button } from "@/components/ui/button";
|
|
4
|
+
import { Input } from "@/components/ui/input";
|
|
5
|
+
import { Label } from "@/components/ui/label";
|
|
6
|
+
import { Switch } from "@/components/ui/switch";
|
|
7
|
+
import { getProxySettings, updateProxySettings, type ProxySettings } from "@/lib/api-settings";
|
|
8
|
+
|
|
9
|
+
export function ProxySettingsSection() {
|
|
10
|
+
const [settings, setSettings] = useState<ProxySettings | null>(null);
|
|
11
|
+
const [loading, setLoading] = useState(true);
|
|
12
|
+
const [saving, setSaving] = useState(false);
|
|
13
|
+
const [error, setError] = useState<string | null>(null);
|
|
14
|
+
const [copied, setCopied] = useState<string | null>(null);
|
|
15
|
+
|
|
16
|
+
const load = () => {
|
|
17
|
+
setLoading(true);
|
|
18
|
+
getProxySettings()
|
|
19
|
+
.then(setSettings)
|
|
20
|
+
.catch((e) => setError(e.message))
|
|
21
|
+
.finally(() => setLoading(false));
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
useEffect(load, []);
|
|
25
|
+
|
|
26
|
+
const update = async (params: Parameters<typeof updateProxySettings>[0]) => {
|
|
27
|
+
setSaving(true);
|
|
28
|
+
setError(null);
|
|
29
|
+
try {
|
|
30
|
+
const updated = await updateProxySettings(params);
|
|
31
|
+
setSettings(updated);
|
|
32
|
+
} catch (e) {
|
|
33
|
+
setError((e as Error).message);
|
|
34
|
+
} finally {
|
|
35
|
+
setSaving(false);
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const copyToClipboard = (text: string, label: string) => {
|
|
40
|
+
navigator.clipboard.writeText(text);
|
|
41
|
+
setCopied(label);
|
|
42
|
+
setTimeout(() => setCopied(null), 2000);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
if (loading || !settings) {
|
|
46
|
+
return (
|
|
47
|
+
<div className="space-y-2">
|
|
48
|
+
<h3 className="text-xs font-medium text-text-secondary">API Proxy</h3>
|
|
49
|
+
<p className="text-[11px] text-text-subtle">{error ? `Error: ${error}` : "Loading..."}</p>
|
|
50
|
+
</div>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const hasKey = !!settings.authKey;
|
|
55
|
+
const hasTunnel = !!settings.tunnelUrl;
|
|
56
|
+
|
|
57
|
+
return (
|
|
58
|
+
<div className="space-y-4">
|
|
59
|
+
<div className="space-y-1.5">
|
|
60
|
+
<p className="text-[11px] text-muted-foreground">
|
|
61
|
+
Expose your Claude accounts as an Anthropic-compatible API endpoint.
|
|
62
|
+
External tools (OpenCode, Cursor, etc.) can use your accounts via this proxy.
|
|
63
|
+
</p>
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
{/* Enable/Disable toggle */}
|
|
67
|
+
<div className="flex items-center justify-between">
|
|
68
|
+
<div className="space-y-0.5">
|
|
69
|
+
<Label className="text-xs">Enable Proxy</Label>
|
|
70
|
+
<p className="text-[11px] text-muted-foreground">
|
|
71
|
+
Accept API requests on /proxy/v1/messages
|
|
72
|
+
</p>
|
|
73
|
+
</div>
|
|
74
|
+
<Switch
|
|
75
|
+
checked={settings.enabled}
|
|
76
|
+
onCheckedChange={(checked) => update({ enabled: checked })}
|
|
77
|
+
disabled={saving}
|
|
78
|
+
/>
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
{/* Auth Key */}
|
|
82
|
+
<div className="space-y-1.5">
|
|
83
|
+
<Label className="text-[11px]">Auth Key</Label>
|
|
84
|
+
{hasKey ? (
|
|
85
|
+
<div className="flex gap-1.5">
|
|
86
|
+
<Input
|
|
87
|
+
readOnly
|
|
88
|
+
value={settings.authKey!}
|
|
89
|
+
className="h-7 text-[11px] font-mono flex-1"
|
|
90
|
+
/>
|
|
91
|
+
<Button
|
|
92
|
+
variant="outline"
|
|
93
|
+
size="sm"
|
|
94
|
+
className="h-7 px-2 cursor-pointer shrink-0"
|
|
95
|
+
onClick={() => copyToClipboard(settings.authKey!, "key")}
|
|
96
|
+
>
|
|
97
|
+
{copied === "key" ? "Copied!" : <Copy className="size-3" />}
|
|
98
|
+
</Button>
|
|
99
|
+
<Button
|
|
100
|
+
variant="outline"
|
|
101
|
+
size="sm"
|
|
102
|
+
className="h-7 px-2 cursor-pointer shrink-0"
|
|
103
|
+
onClick={() => update({ generateKey: true })}
|
|
104
|
+
disabled={saving}
|
|
105
|
+
>
|
|
106
|
+
<RefreshCw className="size-3" />
|
|
107
|
+
</Button>
|
|
108
|
+
</div>
|
|
109
|
+
) : (
|
|
110
|
+
<Button
|
|
111
|
+
variant="outline"
|
|
112
|
+
size="sm"
|
|
113
|
+
className="h-7 text-xs cursor-pointer"
|
|
114
|
+
onClick={() => update({ generateKey: true })}
|
|
115
|
+
disabled={saving}
|
|
116
|
+
>
|
|
117
|
+
Generate Auth Key
|
|
118
|
+
</Button>
|
|
119
|
+
)}
|
|
120
|
+
<p className="text-[10px] text-muted-foreground">
|
|
121
|
+
Use as Bearer token or x-api-key when calling the proxy.
|
|
122
|
+
</p>
|
|
123
|
+
</div>
|
|
124
|
+
|
|
125
|
+
{/* Endpoint info */}
|
|
126
|
+
{settings.enabled && hasKey && (
|
|
127
|
+
<div className="space-y-2 rounded-md border p-3 bg-muted/30">
|
|
128
|
+
<h4 className="text-[11px] font-medium">Connection Info</h4>
|
|
129
|
+
|
|
130
|
+
{/* Local endpoint */}
|
|
131
|
+
<div className="space-y-1">
|
|
132
|
+
<Label className="text-[10px] text-muted-foreground">Local Endpoint</Label>
|
|
133
|
+
<div className="flex gap-1.5 items-center">
|
|
134
|
+
<code className="text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate">
|
|
135
|
+
{`${window.location.origin}/proxy/v1/messages`}
|
|
136
|
+
</code>
|
|
137
|
+
<Button
|
|
138
|
+
variant="ghost"
|
|
139
|
+
size="sm"
|
|
140
|
+
className="h-6 px-1.5 cursor-pointer shrink-0"
|
|
141
|
+
onClick={() => copyToClipboard(`${window.location.origin}/proxy/v1/messages`, "local")}
|
|
142
|
+
>
|
|
143
|
+
{copied === "local" ? "Copied!" : <Copy className="size-3" />}
|
|
144
|
+
</Button>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
|
|
148
|
+
{/* Tunnel endpoint */}
|
|
149
|
+
{hasTunnel && settings.proxyEndpoint && (
|
|
150
|
+
<div className="space-y-1">
|
|
151
|
+
<Label className="text-[10px] text-muted-foreground">Public Endpoint (Tunnel)</Label>
|
|
152
|
+
<div className="flex gap-1.5 items-center">
|
|
153
|
+
<code className="text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate">
|
|
154
|
+
{settings.proxyEndpoint}
|
|
155
|
+
</code>
|
|
156
|
+
<Button
|
|
157
|
+
variant="ghost"
|
|
158
|
+
size="sm"
|
|
159
|
+
className="h-6 px-1.5 cursor-pointer shrink-0"
|
|
160
|
+
onClick={() => copyToClipboard(settings.proxyEndpoint!, "tunnel")}
|
|
161
|
+
>
|
|
162
|
+
{copied === "tunnel" ? "Copied!" : <Copy className="size-3" />}
|
|
163
|
+
</Button>
|
|
164
|
+
</div>
|
|
165
|
+
</div>
|
|
166
|
+
)}
|
|
167
|
+
|
|
168
|
+
{!hasTunnel && (
|
|
169
|
+
<p className="text-[10px] text-muted-foreground">
|
|
170
|
+
Start a Cloudflare tunnel (Share) to get a public URL.
|
|
171
|
+
</p>
|
|
172
|
+
)}
|
|
173
|
+
|
|
174
|
+
{/* Usage example */}
|
|
175
|
+
<div className="space-y-1 pt-1">
|
|
176
|
+
<Label className="text-[10px] text-muted-foreground">Usage Example</Label>
|
|
177
|
+
<div className="relative">
|
|
178
|
+
<pre className="text-[9px] font-mono bg-muted p-2 rounded overflow-x-auto whitespace-pre">
|
|
179
|
+
{`# Set as base URL in your tool
|
|
180
|
+
ANTHROPIC_BASE_URL=${hasTunnel && settings.proxyEndpoint ? settings.tunnelUrl + "/proxy" : window.location.origin + "/proxy"}
|
|
181
|
+
ANTHROPIC_API_KEY=${settings.authKey}
|
|
182
|
+
|
|
183
|
+
# Or use curl
|
|
184
|
+
curl ${hasTunnel && settings.proxyEndpoint ? settings.proxyEndpoint : window.location.origin + "/proxy/v1/messages"} \\
|
|
185
|
+
-H "x-api-key: ${settings.authKey}" \\
|
|
186
|
+
-H "content-type: application/json" \\
|
|
187
|
+
-H "anthropic-version: 2023-06-01" \\
|
|
188
|
+
-d '{"model":"claude-sonnet-4-6","max_tokens":1024,"messages":[{"role":"user","content":"Hello"}]}'`}
|
|
189
|
+
</pre>
|
|
190
|
+
<Button
|
|
191
|
+
variant="ghost"
|
|
192
|
+
size="sm"
|
|
193
|
+
className="absolute top-1 right-1 h-5 px-1 cursor-pointer"
|
|
194
|
+
onClick={() => copyToClipboard(
|
|
195
|
+
`ANTHROPIC_BASE_URL=${hasTunnel ? settings.tunnelUrl + "/proxy" : window.location.origin + "/proxy"}\nANTHROPIC_API_KEY=${settings.authKey}`,
|
|
196
|
+
"example",
|
|
197
|
+
)}
|
|
198
|
+
>
|
|
199
|
+
{copied === "example" ? "Copied!" : <Copy className="size-2.5" />}
|
|
200
|
+
</Button>
|
|
201
|
+
</div>
|
|
202
|
+
</div>
|
|
203
|
+
|
|
204
|
+
{/* Stats */}
|
|
205
|
+
<div className="flex items-center gap-3 pt-1">
|
|
206
|
+
<span className="text-[10px] text-muted-foreground">
|
|
207
|
+
Requests served: <span className="font-mono">{settings.requestCount}</span>
|
|
208
|
+
</span>
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
)}
|
|
212
|
+
|
|
213
|
+
{saving && <p className="text-[11px] text-text-subtle">Saving...</p>}
|
|
214
|
+
{error && <p className="text-[11px] text-red-500">{error}</p>}
|
|
215
|
+
</div>
|
|
216
|
+
);
|
|
217
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { useState, useCallback, useRef } from "react";
|
|
2
2
|
import {
|
|
3
3
|
Moon, Sun, Monitor, Bell, BellOff, Check, ChevronRight, ArrowLeft,
|
|
4
|
-
Bot, BellRing, Users, Keyboard,
|
|
4
|
+
Bot, BellRing, Users, Keyboard, Globe,
|
|
5
5
|
} from "lucide-react";
|
|
6
6
|
import { Button } from "@/components/ui/button";
|
|
7
7
|
import { Input } from "@/components/ui/input";
|
|
@@ -13,6 +13,7 @@ import { AISettingsSection } from "./ai-settings-section";
|
|
|
13
13
|
import { KeyboardShortcutsSection } from "./keyboard-shortcuts-section";
|
|
14
14
|
import { TelegramSettingsSection } from "./telegram-settings-section";
|
|
15
15
|
import { AccountsSettingsSection } from "./accounts-settings-section";
|
|
16
|
+
import { ProxySettingsSection } from "./proxy-settings-section";
|
|
16
17
|
import { usePushNotification } from "@/hooks/use-push-notification";
|
|
17
18
|
|
|
18
19
|
const THEME_OPTIONS: { value: Theme; label: string; icon: React.ElementType }[] = [
|
|
@@ -25,12 +26,13 @@ const pushSupported = "PushManager" in window && "serviceWorker" in navigator;
|
|
|
25
26
|
const isIosNonPwa = /iPhone|iPad/.test(navigator.userAgent) &&
|
|
26
27
|
!window.matchMedia("(display-mode: standalone)").matches;
|
|
27
28
|
|
|
28
|
-
type SettingsCategory = "ai" | "notifications" | "accounts" | "shortcuts";
|
|
29
|
+
type SettingsCategory = "ai" | "notifications" | "accounts" | "proxy" | "shortcuts";
|
|
29
30
|
|
|
30
31
|
const CATEGORIES: { value: SettingsCategory; label: string; subtitle: string; icon: React.ElementType }[] = [
|
|
31
32
|
{ value: "ai", label: "AI Provider", subtitle: "Model, execution mode, limits", icon: Bot },
|
|
32
33
|
{ value: "notifications", label: "Notifications", subtitle: "Push & Telegram alerts", icon: BellRing },
|
|
33
34
|
{ value: "accounts", label: "Accounts", subtitle: "Claude accounts & rotation", icon: Users },
|
|
35
|
+
{ value: "proxy", label: "API Proxy", subtitle: "Expose accounts as Anthropic API", icon: Globe },
|
|
34
36
|
{ value: "shortcuts", label: "Keyboard Shortcuts", subtitle: "Customize key bindings", icon: Keyboard },
|
|
35
37
|
];
|
|
36
38
|
|
|
@@ -83,6 +85,7 @@ export function SettingsTab() {
|
|
|
83
85
|
{activeCategory === "ai" && <AISettingsSection compact />}
|
|
84
86
|
{activeCategory === "notifications" && <NotificationsContent isSubscribed={isSubscribed} loading={loading} permission={permission} pushError={pushError} subscribe={subscribe} unsubscribe={unsubscribe} />}
|
|
85
87
|
{activeCategory === "accounts" && <AccountsSettingsSection />}
|
|
88
|
+
{activeCategory === "proxy" && <ProxySettingsSection />}
|
|
86
89
|
{activeCategory === "shortcuts" && <KeyboardShortcutsSection />}
|
|
87
90
|
</div>
|
|
88
91
|
</ScrollArea>
|
|
@@ -155,6 +155,7 @@ export function testRawToken(token: string): Promise<{ status: string; code?: nu
|
|
|
155
155
|
export interface AIProviderSettings {
|
|
156
156
|
type?: string;
|
|
157
157
|
api_key_env?: string;
|
|
158
|
+
api_key?: string;
|
|
158
159
|
base_url?: string;
|
|
159
160
|
model?: string;
|
|
160
161
|
effort?: string;
|
|
@@ -181,3 +182,21 @@ export function getAISettings(): Promise<AISettings> {
|
|
|
181
182
|
export function updateAISettings(settings: Partial<AISettings>): Promise<AISettings> {
|
|
182
183
|
return api.put<AISettings>("/api/settings/ai", settings);
|
|
183
184
|
}
|
|
185
|
+
|
|
186
|
+
// ── Proxy ────────────────────────────────────────────────────────────
|
|
187
|
+
|
|
188
|
+
export interface ProxySettings {
|
|
189
|
+
enabled: boolean;
|
|
190
|
+
authKey: string | null;
|
|
191
|
+
requestCount: number;
|
|
192
|
+
tunnelUrl: string | null;
|
|
193
|
+
proxyEndpoint: string | null;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export function getProxySettings(): Promise<ProxySettings> {
|
|
197
|
+
return api.get<ProxySettings>("/api/settings/proxy");
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export function updateProxySettings(params: { enabled?: boolean; authKey?: string; generateKey?: boolean }): Promise<ProxySettings> {
|
|
201
|
+
return api.put<ProxySettings>("/api/settings/proxy", params);
|
|
202
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as e}from"./react-CYzKIDNi.js";import{t}from"./api-client-TUmacMRS.js";var n=e({addAccount:()=>a,deleteAccount:()=>o,exchangeOAuthCode:()=>f,getAISettings:()=>y,getAccountSettings:()=>c,getAccounts:()=>r,getActiveAccount:()=>i,getAllAccountUsages:()=>p,getOAuthUrl:()=>d,importAccounts:()=>m,patchAccount:()=>s,testAccountToken:()=>h,testExport:()=>g,testRawToken:()=>_,updateAISettings:()=>b,updateAccountSettings:()=>l,updateDeviceName:()=>v,verifyAccount:()=>u});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(e){return t.post(`/api/accounts/${e}/verify`)}function d(){return t.get(`/api/accounts/oauth/url`)}function f(e,n){return t.post(`/api/accounts/oauth/exchange`,{code:e,state:n})}function p(){return t.get(`/api/accounts/usage`)}function m(e){return t.post(`/api/accounts/import`,e)}function h(e,n=!1){return t.post(`/api/accounts/${e}/test-token`,{testRefresh:n})}function g(e,n=!1){return t.post(`/api/accounts/test-export`,{accountIds:e,includeRefreshToken:n})}function _(e){return t.post(`/api/accounts/test-raw-token`,{token:e})}function v(e){return t.put(`/api/settings/device-name`,{device_name:e})}function y(){return t.get(`/api/settings/ai`)}function b(e){return t.put(`/api/settings/ai`,e)}export{l as _,y as a,i as c,m as d,s as f,b as g,_ as h,f as i,p as l,g as m,n,c as o,h as p,o as r,r as s,a as t,d as u,u as v};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/api-client-TUmacMRS.js","assets/react-CYzKIDNi.js"])))=>i.map(i=>d[i]);
|
|
2
|
-
import{i as e,t}from"./react-CYzKIDNi.js";import{A as n,M as r,N as i,j as a}from"./input-CE3bFwLk.js";import{n as o,t as s}from"./jsx-runtime-wQxeESYQ.js";import{t as c}from"./columns-2-BZ5wv2wA.js";import{a as l,n as u,t as d}from"./tab-store-NOBndc0_.js";import{t as f}from"./tag-DJUYe5BQ.js";import{n as p,r as m}from"./settings-store-ChwdK0tt.js";import{n as h,r as g,t as _}from"./utils-DC-bdPS3.js";import{i as v,r as y,t as b}from"./api-client-TUmacMRS.js";import{a as x,c as S,f as C,l as w,s as T,v as E}from"./api-settings-DfTIjsPW.js";import{C as D,D as O,F as k,G as A,I as j,J as M,K as N,M as P,O as F,P as I,R as L,T as R,U as z,W as B,Y as V,_ as H,i as ee,j as te,k as ne,r as re,t as U}from"./index-DdLIa98_.js";import{t as W}from"./markdown-renderer-DMHeWMgi.js";var ie=o(`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`}]]),ae=o(`arrow-up`,[[`path`,{d:`m5 12 7-7 7 7`,key:`hav0vg`}],[`path`,{d:`M12 19V5`,key:`x0mq9r`}]]),oe=o(`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`}]]),se=o(`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`}]]),ce=o(`code`,[[`path`,{d:`m16 18 6-6-6-6`,key:`eg8j8`}],[`path`,{d:`m8 6-6 6 6 6`,key:`ppft3o`}]]),G=o(`globe`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20`,key:`13o1zl`}],[`path`,{d:`M2 12h20`,key:`9i4pu4`}]]),K=o(`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`}]]),le=o(`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`}]]),ue=o(`image`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`circle`,{cx:`9`,cy:`9`,r:`2`,key:`af1f0g`}],[`path`,{d:`m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21`,key:`1xmnt7`}]]),de=o(`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`}]]),fe=o(`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`}]]),q=o(`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`}]]),pe=o(`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`}]]),me=o(`shield-check`,[[`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:`m9 12 2 2 4-4`,key:`dzmm74`}]]),he=o(`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`}]]),ge=o(`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`}]]),_e=o(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),J=e(t(),1),ve=3e4,ye=1e3,be=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(ye*2**this.reconnectAttempts,ve);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}};function xe({url:e,onMessage:t,autoConnect:n=!0}){let r=(0,J.useRef)(null);return(0,J.useEffect)(()=>{let i=new be(e);return r.current=i,t&&i.onMessage(t),n&&i.connect(),()=>{i.disconnect(),r.current=null}},[e,n]),{send:(0,J.useCallback)(e=>{r.current?.send(e)},[]),connect:(0,J.useCallback)(()=>{r.current?.connect()},[]),disconnect:(0,J.useCallback)(()=>{r.current?.disconnect()},[])}}var Se=null;function Ce(){return Se||=new AudioContext,Se}function Y(e,t,n,r,i=`sine`){let a=Ce(),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 we(){let e=Ce().currentTime;Y(523,.15,e,.15),Y(659,.2,e+.12,.15)}function Te(){let e=Ce().currentTime;Y(880,.12,e,.18,`square`),Y(698,.12,e+.15,.18,`square`),Y(880,.15,e+.3,.15,`square`)}function Ee(){let e=Ce().currentTime;Y(440,.12,e,.12),Y(523,.12,e+.1,.12),Y(659,.18,e+.2,.12)}var De={done:we,approval_request:Te,question:Ee};function Oe(e){try{De[e]?.()}catch{}}function ke(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 Ae(e,t=`claude`,n=``){let[r,i]=(0,J.useState)([]),[a,o]=(0,J.useState)(!1),[s,c]=(0,J.useState)(!1),[l,u]=(0,J.useState)(`idle`),[d,f]=(0,J.useState)(0),[p,m]=(0,J.useState)(15),[h,g]=(0,J.useState)(null),[_,b]=(0,J.useState)(null),[x,S]=(0,J.useState)(null),[C,w]=(0,J.useState)(!1),T=(0,J.useRef)(``),E=(0,J.useRef)([]),D=(0,J.useRef)(null),O=(0,J.useRef)(!1),k=(0,J.useRef)(null),A=(0,J.useRef)(()=>{}),j=(0,J.useRef)(null),M=(0,J.useRef)(e);M.current=e;let N=(0,J.useRef)(n);N.current=n;let P=(0,J.useCallback)(e=>{let t;try{t=JSON.parse(e.data)}catch{return}if(t.type===`ping`)return;if(t.type===`title_updated`){S(t.title??null);return}if(t.type===`streaming_status`){let e=t.status??`idle`;if(u(e),f(e===`connecting`?t.elapsed??0:0),e===`connecting`){let e=t.effort,n=t.thinkingBudget,r=15;n&&n>0?r=Math.max(15,Math.round(n/500)):e===`high`?r=30:e===`low`&&(r=10),m(r)}return}if(t.type===`connected`){w(!0),t.sessionTitle&&S(t.sessionTitle);return}if(t.type===`status`){w(!0);let e=t;e.sessionTitle&&S(e.sessionTitle),e.isStreaming&&(O.current=!0,c(!0)),e.pendingApproval&&g({requestId:e.pendingApproval.requestId,tool:e.pendingApproval.tool,input:e.pendingApproval.input}),j.current?.();return}let n=(e,t)=>{let n=E.current.findIndex(e=>e.type===`tool_use`&&(e.tool===`Agent`||e.tool===`Task`)&&e.toolUseId===t);if(n===-1)return!1;let r=E.current[n];if(r.type!==`tool_use`)return!1;let i=[...r.children??[],e];return E.current[n]={...r,children:i},!0},r=()=>{let e=T.current,t=[...E.current],n=D.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}]})};switch(t.type){case`account_info`:D.current={accountId:t.accountId,accountLabel:t.accountLabel};break;case`text`:{let e=t.parentToolUseId;if(e&&n(t,e)){r();break}T.current+=t.content,E.current.push(t),r();break}case`thinking`:{let e=t.parentToolUseId;if(e&&n(t,e)){r();break}E.current.push(t),r();break}case`tool_use`:{let e=t.parentToolUseId;if(e&&n(t,e)){r();break}E.current.push(t),r();break}case`tool_result`:{let e=t.parentToolUseId;if(e&&n(t,e)){r();break}E.current.push(t),r();break}case`approval_request`:if(E.current.push(t),g({requestId:t.requestId,tool:t.tool,input:t.input}),M.current&&!ke(M.current)){let e=t.tool===`AskUserQuestion`?`question`:`approval_request`;H.getState().addNotification(M.current,e,N.current),Oe(e)}break;case`error`:{E.current.push(t);let e=[...E.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()}]}),O.current=!1,c(!1),u(`idle`);break}case`done`:{if(!O.current)break;t.contextWindowPct!=null&&b(t.contextWindowPct),M.current&&!ke(M.current)&&(H.getState().addNotification(M.current,`done`,N.current),Oe(`done`));let e=T.current,n=[...E.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}),T.current=``,E.current=[],D.current=null,O.current=!1,c(!1),u(`idle`);break}}},[]),{send:F,connect:I}=xe({url:e&&n?`/ws/project/${encodeURIComponent(n)}/chat/${e}`:``,onMessage:P,autoConnect:!!e&&!!n});A.current=F,(0,J.useEffect)(()=>{let r=!1;return c(!1),g(null),T.current=``,E.current=[],w(!1),e&&n?(o(!0),fetch(`${v(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${y()}`}}).then(e=>e.json()).then(e=>{r||O.current||(e.ok&&Array.isArray(e.data)&&e.data.length>0?i(e.data):i([]))}).catch(()=>{!r&&!O.current&&i([])}).finally(()=>{r||o(!1)})):i([]),()=>{r=!0}},[e,t,n]);let L=(0,J.useCallback)((e,t)=>{if(e.trim()){if(O.current){let e=T.current,t=[...E.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}),F(JSON.stringify({type:`cancel`}))}i(t=>[...t,{id:`user-${Date.now()}`,role:`user`,content:e,timestamp:new Date().toISOString()}]),T.current=``,E.current=[],k.current=null,O.current=!0,c(!0),u(`connecting`),g(null),F(JSON.stringify({type:`message`,content:e,permissionMode:t?.permissionMode}))}},[F]),R=(0,J.useCallback)((e,t,n)=>{if(F(JSON.stringify({type:`approval_response`,requestId:e,approved:t,data:n})),t&&n){let t=E.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])}g(null)},[F]),z=(0,J.useCallback)(()=>{if(!O.current)return;F(JSON.stringify({type:`cancel`}));let e=T.current,t=[...E.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}),T.current=``,E.current=[],k.current=null,O.current=!1,c(!1),g(null)},[F]),B=(0,J.useCallback)(()=>{w(!1),I(),j.current?.()},[I]),V=(0,J.useCallback)(()=>{!e||!n||(o(!0),fetch(`${v(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${y()}`}}).then(e=>e.json()).then(e=>{e.ok&&Array.isArray(e.data)&&e.data.length>0&&(i(e.data),T.current=``,E.current=[])}).catch(()=>{}).finally(()=>o(!1)))},[e,t,n]);return j.current=V,{messages:r,messagesLoading:a,isStreaming:s,streamingStatus:l,connectingElapsed:d,thinkingWarningThreshold:p,pendingApproval:h,contextWindowPct:_,sessionTitle:x,sendMessage:L,respondToApproval:R,cancelStreaming:z,reconnect:B,refetchMessages:V,isConnected:C}}var je=12e4;function Me(e,t=`claude`){let[n,r]=(0,J.useState)({}),[i,a]=(0,J.useState)(!1),[o,s]=(0,J.useState)(null),c=(0,J.useRef)(null),l=(0,J.useCallback)((n=!1)=>{if(!e)return;a(!0);let i=n?`&refresh=1`:``;fetch(`${v(e)}/chat/usage?providerId=${t}${i}`,{headers:{Authorization:`Bearer ${y()}`}}).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,J.useEffect)(()=>(l(),c.current=setInterval(()=>l(),je),()=>{c.current&&clearInterval(c.current)}),[l]),{usageInfo:n,usageLoading:i,lastFetchedAt:o,refreshUsage:(0,J.useCallback)(()=>l(!0),[l])}}var Ne={damping:.7,stiffness:.05,mass:1.25},Pe=70,Fe=1e3/60,Ie=350,Le=!1;globalThis.document?.addEventListener(`mousedown`,()=>{Le=!0}),globalThis.document?.addEventListener(`mouseup`,()=>{Le=!1}),globalThis.document?.addEventListener(`click`,()=>{Le=!1});var Re=(e={})=>{let[t,n]=(0,J.useState)(!1),[r,i]=(0,J.useState)(e.initial!==!1),[a,o]=(0,J.useState)(!1),s=(0,J.useRef)(null);s.current=e;let c=(0,J.useCallback)(()=>{if(!Le)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,J.useCallback)(e=>{d.isAtBottom=e,i(e)},[]),u=(0,J.useCallback)(e=>{d.escapedFromLock=e,n(e)},[]),d=(0,J.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<=Pe}}},[]),f=(0,J.useCallback)((e={})=>{typeof e==`string`&&(e={animation:e}),e.preserveScrollPosition||l(!0);let t=Date.now()+(Number(e.wait)||0),n=Ve(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))/Fe;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:Ve(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,J.useCallback)(()=>{u(!0),l(!1)},[u,l]),m=(0,J.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,J.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=ze(e=>{g.current?.removeEventListener(`scroll`,m),g.current?.removeEventListener(`wheel`,h),e?.addEventListener(`scroll`,m,{passive:!0}),e?.addEventListener(`wheel`,h,{passive:!0})},[]),_=ze(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=Ve(s.current,t?s.current.resize:s.current.initial);f({animation:e,wait:!0,preserveScrollPosition:!0,duration:e===`instant`?void 0:Ie})}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 ze(e,t){let n=(0,J.useCallback)(t=>(n.current=t,e(t)),t);return n}var Be=new Map;function Ve(...e){let t={...Ne},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 Be.has(r)||Be.set(r,Object.freeze(t)),n?`instant`:Be.get(r)}var He=(0,J.createContext)(null),Ue=typeof window<`u`?J.useLayoutEffect:J.useEffect;function We({instance:e,children:t,resize:n,initial:r,mass:i,damping:a,stiffness:o,targetScrollTop:s,contextRef:c,...l}){let u=(0,J.useRef)(null),d=Re({mass:i,damping:a,stiffness:o,resize:n,initial:r,targetScrollTop:J.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,J.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,J.useImperativeHandle)(c,()=>y,[y]),Ue(()=>{f.current&&getComputedStyle(f.current).overflow===`visible`&&(f.current.style.overflow=`auto`)},[]),J.createElement(He.Provider,{value:y},J.createElement(`div`,{...l},typeof t==`function`?t(y):t))}(function(e){function t({children:e,scrollClassName:t,...n}){let r=Ge();return J.createElement(`div`,{ref:r.scrollRef,style:{height:`100%`,width:`100%`,scrollbarGutter:`stable both-edges`},className:t},J.createElement(`div`,{...n,ref:r.contentRef},typeof e==`function`?e(r):e))}e.Content=t})(We||={});function Ge(){let e=(0,J.useContext)(He);if(!e)throw Error(`use-stick-to-bottom component context must be used within a StickToBottom component`);return e}var X=s();function Ke(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 qe({tool:e,result:t,completed:n,projectName:i}){let[a,o]=(0,J.useState)(!1);if(e.type===`error`)return(0,X.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,X.jsx)(B,{className:`size-3`}),(0,X.jsx)(`span`,{children:e.message})]});let{toolName:s,input:c}=Ke(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,X.jsxs)(`div`,{className:`rounded border text-xs ${f?`border-accent/30 bg-accent/5`:`border-border bg-background`}`,children:[(0,X.jsxs)(`button`,{onClick:()=>o(!a),className:`flex items-center gap-2 px-2 py-1.5 w-full text-left hover:bg-surface transition-colors min-w-0`,children:[a?(0,X.jsx)(r,{className:`size-3 shrink-0`}):(0,X.jsx)(N,{className:`size-3 shrink-0`}),u?(0,X.jsx)(oe,{className:`size-3 text-red-400 shrink-0`}):l||d||n?(0,X.jsx)(z,{className:`size-3 text-green-400 shrink-0`}):(0,X.jsx)(P,{className:`size-3 text-yellow-400 shrink-0 animate-spin`}),(0,X.jsx)(`span`,{className:`truncate text-text-primary`,children:(0,X.jsx)(Je,{name:s,input:c})}),m&&(0,X.jsxs)(`span`,{className:`ml-auto text-[10px] text-text-subtle shrink-0`,children:[p.length,` steps`]})]}),a&&(0,X.jsxs)(`div`,{className:`px-2 pb-2 space-y-1.5`,children:[(e.type===`tool_use`||e.type===`approval_request`)&&(0,X.jsx)(Ye,{name:s,input:c,projectName:i}),m&&(0,X.jsx)($e,{events:p,projectName:i}),l&&(0,X.jsx)(Ze,{toolName:s,output:t.output})]})]})}function Je({name:e,input:t}){let n=e=>String(e??``);switch(e){case`Read`:case`Write`:case`Edit`:case`MultiEdit`:case`NotebookEdit`:return(0,X.jsxs)(X.Fragment,{children:[e,` `,(0,X.jsx)(`span`,{className:`text-text-subtle`,children:_(n(t.file_path))})]});case`Bash`:return(0,X.jsxs)(X.Fragment,{children:[e,` `,(0,X.jsx)(`span`,{className:`font-mono text-text-subtle`,children:Z(n(t.command),60)})]});case`Glob`:return(0,X.jsxs)(X.Fragment,{children:[e,` `,(0,X.jsx)(`span`,{className:`font-mono text-text-subtle`,children:n(t.pattern)})]});case`Grep`:return(0,X.jsxs)(X.Fragment,{children:[e,` `,(0,X.jsx)(`span`,{className:`font-mono text-text-subtle`,children:Z(n(t.pattern),40)})]});case`WebSearch`:return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(O,{className:`size-3 inline`}),` `,e,` `,(0,X.jsx)(`span`,{className:`text-text-subtle`,children:Z(n(t.query),50)})]});case`WebFetch`:return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(G,{className:`size-3 inline`}),` `,e,` `,(0,X.jsx)(`span`,{className:`text-text-subtle`,children:Z(n(t.url),50)})]});case`ToolSearch`:return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(O,{className:`size-3 inline`}),` `,e,` `,(0,X.jsx)(`span`,{className:`text-text-subtle`,children:Z(n(t.query),50)})]});case`Agent`:case`Task`:return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(M,{className:`size-3 inline`}),` `,e,` `,(0,X.jsx)(`span`,{className:`text-text-subtle`,children:Z(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,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(de,{className:`size-3 inline`}),` `,e,` `,(0,X.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,X.jsxs)(X.Fragment,{children:[e,` `,(0,X.jsxs)(`span`,{className:`text-text-subtle`,children:[n.length,` question`,n.length===1?``:`s`,r?` ✓`:``]})]})}default:return(0,X.jsx)(X.Fragment,{children:e})}}function Ye({name:e,input:t,projectName:n}){let r=e=>String(e??``),{openTab:i}=d(),a=e=>{n&&i({type:`editor`,title:_(e),metadata:{filePath:e,projectName:n},projectId:n,closable:!0})},o=(e,t,r)=>{i({type:`git-diff`,title:`Diff ${_(e)}`,metadata:{filePath:e,projectName:n,original:t,modified:r},projectId:n??null,closable:!0})};switch(e){case`Bash`:return(0,X.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,X.jsx)(`p`,{className:`text-text-subtle italic`,children:r(t.description)}),(0,X.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,X.jsxs)(`div`,{className:`space-y-1`,children:[(0,X.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,X.jsx)(l,{className:`size-3 shrink-0`}),n]}),e===`Edit`&&(!!t.old_string||!!t.new_string)&&(0,X.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,X.jsx)(c,{className:`size-3 shrink-0`}),`View Diff`]}),e===`Write`&&!!t.content&&(0,X.jsx)(`pre`,{className:`font-mono text-text-subtle overflow-x-auto max-h-32 whitespace-pre-wrap`,children:Z(r(t.content),300)})]})}case`Glob`:return(0,X.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[r(t.pattern),t.path?` in ${r(t.path)}`:``]});case`Grep`:return(0,X.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,X.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[`/`,r(t.pattern),`/`]}),!!t.path&&(0,X.jsxs)(`p`,{className:`text-text-subtle`,children:[`in `,r(t.path)]})]});case`TodoWrite`:return(0,X.jsx)(Xe,{todos:t.todos??[]});case`Agent`:case`Task`:return(0,X.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,X.jsx)(`p`,{className:`text-text-secondary font-medium`,children:r(t.description)}),!!t.subagent_type&&(0,X.jsxs)(`p`,{className:`text-text-subtle`,children:[`Type: `,r(t.subagent_type)]}),!!t.prompt&&(0,X.jsx)(et,{content:r(t.prompt),maxHeight:`max-h-48`})]});case`ToolSearch`:return(0,X.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,X.jsx)(`p`,{className:`font-mono text-text-secondary`,children:r(t.query)}),!!t.max_results&&(0,X.jsxs)(`p`,{className:`text-text-subtle`,children:[`Max results: `,r(t.max_results)]})]});case`WebFetch`:return(0,X.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,X.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,X.jsx)(G,{className:`size-3 shrink-0`}),r(t.url)]}),!!t.prompt&&(0,X.jsx)(`p`,{className:`text-text-subtle`,children:Z(r(t.prompt),100)})]});case`AskUserQuestion`:{let e=t.questions??[],n=t.answers??{};return(0,X.jsx)(`div`,{className:`space-y-2`,children:e.map((e,t)=>(0,X.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,X.jsxs)(`p`,{className:`text-text-primary font-medium`,children:[e.header?`${e.header}: `:``,e.question]}),(0,X.jsx)(`div`,{className:`flex flex-wrap gap-1`,children:e.options.map((t,r)=>(0,X.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,X.jsxs)(`p`,{className:`text-foreground text-xs`,children:[`Answer: `,n[e.question]]})]},t))})}default:return(0,X.jsx)(`pre`,{className:`overflow-x-auto text-text-secondary font-mono whitespace-pre-wrap break-all`,children:JSON.stringify(t,null,2)})}}function Xe({todos:e}){return(0,X.jsx)(`div`,{className:`space-y-0.5`,children:e.map((e,t)=>(0,X.jsxs)(`div`,{className:`flex items-start gap-1.5`,children:[(0,X.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,X.jsx)(`span`,{className:e.status===`completed`?`line-through text-text-subtle`:`text-text-secondary`,children:e.content})]},t))})}function Ze({toolName:e,output:t}){let[n,r]=(0,J.useState)(!1),i=(0,J.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,X.jsxs)(`div`,{className:`border-t border-border pt-1.5 space-y-1`,children:[(0,X.jsx)(et,{content:i,maxHeight:`max-h-60`}),(0,X.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,X.jsx)(ce,{className:`size-3`}),n?`Hide`:`Show`,` raw`]}),n&&(0,X.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono max-h-40 whitespace-pre-wrap break-all text-[10px]`,children:t})]}):(0,X.jsx)(Qe,{output:t})}function Qe({output:e}){let t=e.split(`
|
|
5
|
-
`).length,n=t>3||e.length>200,[i,a]=(0,J.useState)(n);return(0,X.jsxs)(`div`,{className:`border-t border-border pt-1.5`,children:[n&&(0,X.jsxs)(`button`,{type:`button`,onClick:()=>a(!i),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors mb-1`,children:[i?(0,X.jsx)(N,{className:`size-3`}):(0,X.jsx)(r,{className:`size-3`}),`Output (`,t,` lines)`]}),(0,X.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono whitespace-pre-wrap break-all ${i?`max-h-16 overflow-hidden`:`max-h-60`}`,children:e})]})}function $e({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,X.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,X.jsx)(`div`,{className:`text-text-secondary text-[11px]`,children:(0,X.jsx)(et,{content:e.content,maxHeight:`max-h-24`})},`st-${n}`):(0,X.jsx)(qe,{tool:e.tool,result:e.result,completed:!!e.result,projectName:t},`sc-${n}`))})}function et({content:e,maxHeight:t=`max-h-48`}){return(0,X.jsx)(W,{content:e,className:`text-text-secondary overflow-auto ${t}`})}function Z(e,t=50){return e?e.length>t?e.slice(0,t)+`…`:e:``}function tt(e){let[t,n]=(0,J.useState)({}),[r,i]=(0,J.useState)({}),[a,o]=(0,J.useState)(0),s=(0,J.useCallback)((e,t)=>{n(n=>({...n,[e]:[t]})),i(t=>({...t,[e]:``}))},[]),c=(0,J.useCallback)((e,t)=>{n(n=>{let r=n[e]||[];return{...n,[e]:r.includes(t)?r.filter(e=>e!==t):[...r,t]}})},[]),l=(0,J.useCallback)((e,t)=>{i(n=>({...n,[e]:t})),t&&n(t=>({...t,[e]:[]}))},[]),u=(0,J.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,J.useMemo)(()=>e.every((e,t)=>u(t)),[e,u]),getFinalAnswer:(0,J.useCallback)(e=>r[e]?.trim()||(t[e]??[]).join(`, `),[t,r]),goToNextTab:(0,J.useCallback)(()=>o(t=>Math.min(t+1,e.length-1)),[e.length]),goToPrevTab:(0,J.useCallback)(()=>o(e=>Math.max(e-1,0)),[])}}function nt(e){let[t,n]=(0,J.useState)(0),r=(0,J.useRef)(null);return(0,J.useEffect)(()=>n(0),[e.activeTab]),(0,J.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,J.useRef)(null),i=tt(e),a=e[i.activeTab],o=a?a.options.length+1:0,s=e.length>1,c=(0,J.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,J.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=nt({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,J.useCallback)(e=>{l(e),u.setFocusedOption(e)},[l,u.setFocusedOption]);return(0,X.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,X.jsxs)(`div`,{className:`flex items-center justify-between text-sm font-medium text-text-primary`,children:[(0,X.jsxs)(`span`,{children:[`AI has `,s?`${e.length} questions`:`a question`]}),(0,X.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,X.jsx)(`div`,{className:`flex gap-1 p-1 bg-background rounded-md overflow-x-auto border border-border`,children:e.map((e,t)=>(0,X.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,X.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,X.jsx)(`span`,{className:`max-w-[100px] overflow-hidden text-ellipsis`,children:e.header||`Q${t+1}`})]},t))}),a&&(0,X.jsxs)(`div`,{className:`space-y-2`,children:[!s&&a.header&&(0,X.jsx)(`div`,{className:`text-[11px] font-semibold uppercase tracking-wide text-text-secondary`,children:a.header}),(0,X.jsx)(`div`,{className:`text-sm text-text-primary`,children:a.question}),a.multiSelect&&(0,X.jsx)(`div`,{className:`text-[11px] text-text-secondary`,children:`Select multiple`}),(0,X.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,X.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,X.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,X.jsxs)(`div`,{className:`flex flex-col gap-0.5 flex-1`,children:[(0,X.jsx)(`span`,{className:`font-medium text-text-primary`,children:e.label}),e.description&&(0,X.jsx)(`span`,{className:`text-[11px] text-text-secondary`,children:e.description})]})]},t)}),(0,X.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,X.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,X.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,X.jsxs)(`div`,{className:`flex gap-2 justify-end pt-1`,children:[s&&(0,X.jsxs)(X.Fragment,{children:[(0,X.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,X.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,X.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,X.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 it({messages:e,messagesLoading:t,pendingApproval:n,onApprovalResponse:r,isStreaming:i,streamingStatus:a,connectingElapsed:o,thinkingWarningThreshold:s,projectName:c,onFork:l}){if(t)return(0,X.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,X.jsx)(M,{className:`size-10 text-text-subtle animate-pulse`}),(0,X.jsx)(`p`,{className:`text-sm`,children:`Loading messages...`})]});if(e.length===0&&!i)return(0,X.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,X.jsx)(M,{className:`size-10 text-text-subtle`}),(0,X.jsx)(`p`,{className:`text-sm`,children:`Send a message to start the conversation`})]});let[u,d]=(0,J.useState)(null),[f,p]=(0,J.useState)(0),m=(0,J.useRef)(null),h=(0,J.useRef)(null),g=(0,J.useMemo)(()=>e.filter(e=>{let t=e.content&&e.content.trim().length>0,n=e.events&&e.events.length>0;return t||n}),[e]);return(0,J.useEffect)(()=>{let e=m.current;if(!e)return;let t=e.querySelector(`[data-stick-to-bottom-scroll]`)??e.firstElementChild;if(!t||t.scrollHeight<=t.clientHeight)return;let n=()=>{let n=e.querySelectorAll(`[data-user-content]`),r=t.getBoundingClientRect(),i=h.current?.offsetHeight??0,a=null,o=1/0;for(let e=0;e<n.length;e++)if(n[e].getBoundingClientRect().top<r.top+4){a=n[e].getAttribute(`data-user-content`);let t=n[e+1];o=t?t.getBoundingClientRect().top-r.top:1/0}d(a),p(i>0&&o<i?o-i:0)};return t.addEventListener(`scroll`,n,{passive:!0}),n(),()=>t.removeEventListener(`scroll`,n)},[g]),(0,X.jsxs)(`div`,{className:`relative flex-1 overflow-hidden flex flex-col min-h-0`,children:[u&&(0,X.jsx)(`div`,{ref:h,className:`absolute top-0 left-0 right-0 z-20 bg-background`,style:f<0?{transform:`translateY(${f}px)`}:void 0,children:(0,X.jsx)(at,{content:u,projectName:c})}),(0,X.jsxs)(We,{ref:m,className:`flex-1 overflow-y-auto overflow-x-hidden`,resize:`smooth`,initial:`instant`,children:[(0,X.jsxs)(We.Content,{className:`p-4 space-y-4`,children:[g.map(e=>(0,X.jsx)(st,{message:e,isStreaming:i&&e.id.startsWith(`streaming-`),projectName:c,onFork:e.role===`user`&&l?()=>l(e.content):void 0},e.id)),n&&(n.tool===`AskUserQuestion`?(0,X.jsx)(St,{approval:n,onRespond:r}):(0,X.jsx)(xt,{approval:n,onRespond:r})),i&&(0,X.jsx)(yt,{lastMessage:e[e.length-1],streamingStatus:a,elapsed:o,warningThreshold:s})]}),(0,X.jsx)(ot,{})]})]})}function at({content:e,projectName:t}){let{files:n,text:i}=(0,J.useMemo)(()=>{let t=dt(e),{cleanText:n}=ut(t.text);return{files:t.files,text:n}},[e]),[a,o]=(0,J.useState)(!1),[s,c]=(0,J.useState)(!1),l=(0,J.useRef)(null);return(0,J.useEffect)(()=>{o(!1)},[e]),(0,J.useEffect)(()=>{let e=l.current;if(!e)return;let t=()=>c(e.scrollHeight>e.clientHeight+2);t();let n=new ResizeObserver(t);return n.observe(e),()=>n.disconnect()},[i]),!i&&n.length===0?null:(0,X.jsx)(`div`,{className:`shrink-0 px-4 pt-3 pb-2`,children:(0,X.jsxs)(`div`,{className:`rounded-lg bg-primary/10 px-3 py-2 text-sm text-text-primary space-y-2 border border-primary/15 shadow-sm`,children:[n.length>0&&(0,X.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:n.map((e,t)=>(0,X.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:[ft(e)?(0,X.jsx)(ue,{className:`size-3 shrink-0`}):(0,X.jsx)(j,{className:`size-3 shrink-0`}),(0,X.jsx)(`span`,{className:`truncate max-w-32`,children:_(e)})]},t))}),i&&(0,X.jsxs)(`div`,{children:[(0,X.jsx)(`div`,{ref:l,className:h(`whitespace-pre-wrap break-words transition-all duration-200`,!a&&`line-clamp-2`,a&&`max-h-[40vh] overflow-y-auto`),children:i}),(s||a)&&(0,X.jsx)(`button`,{onClick:()=>o(!a),className:`flex items-center gap-1 text-xs text-primary/70 hover:text-primary mt-1 transition-colors`,children:a?(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(A,{className:`size-3`}),`Show less`]}):(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(r,{className:`size-3`}),`Show more`]})})]})]})})}function ot(){let{isAtBottom:e,scrollToBottom:t}=Ge();return e?null:(0,X.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,X.jsx)(r,{className:`size-3`}),`Scroll to bottom`]})}function st({message:e,isStreaming:t,projectName:n,onFork:r}){return e.role===`user`?(0,X.jsx)(pt,{content:e.content,projectName:n,onFork:r}):e.role===`system`?(0,X.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,X.jsx)(B,{className:`size-4 shrink-0`}),(0,X.jsx)(`p`,{children:e.content})]}):(0,X.jsxs)(`div`,{className:`flex flex-col gap-2`,children:[e.events&&e.events.length>0?(0,X.jsx)(gt,{events:e.events,isStreaming:t,projectName:n}):e.content&&(0,X.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,X.jsx)(bt,{content:e.content,projectName:n})}),!t&&e.accountLabel&&(0,X.jsxs)(`p`,{className:`text-[10px] select-none`,style:{color:`var(--color-text-subtle)`},children:[`via `,e.accountLabel]})]})}var ct=new Set([`.png`,`.jpg`,`.jpeg`,`.gif`,`.webp`]),lt={"system-reminder":`Context`,claudeMd:`CLAUDE.md`,gitStatus:`Git Status`,currentDate:`Date`,fast_mode_info:`Fast Mode`,"available-deferred-tools":`Tools`};function ut(e){let t=[],n=/<(system-reminder|available-deferred-tools|antml:[\w-]+|fast_mode_info|claudeMd|gitStatus|currentDate)[^>]*>([\s\S]*?)<\/\1>/g,r;for(;(r=n.exec(e))!==null;){let e=r[1];t.push({name:e,label:lt[e]??e.replace(/^antml:/,``).replace(/-/g,` `),content:r[2].trim()})}return{cleanText:e.replace(n,``).trim(),tags:t}}function dt(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 ft(e){let t=e.lastIndexOf(`.`);return t===-1?!1:ct.has(e.slice(t).toLowerCase())}function pt({content:e,projectName:t,onFork:n}){let{files:i,text:o,tags:s}=(0,J.useMemo)(()=>{let t=dt(e),{cleanText:n,tags:r}=ut(t.text);return{files:t.files,text:n,tags:r}},[e]),[c,l]=(0,J.useState)(!1),[u,d]=(0,J.useState)(!1),f=(0,J.useRef)(null);return(0,J.useEffect)(()=>{let e=f.current;if(!e)return;let t=()=>d(e.scrollHeight>e.clientHeight+2);t();let n=new ResizeObserver(t);return n.observe(e),()=>n.disconnect()},[o]),(0,X.jsxs)(`div`,{"data-user-content":e,className:`group/user relative rounded-lg bg-primary/10 px-3 py-2 text-sm text-text-primary border border-primary/15 shadow-sm`,children:[s.length>0&&(0,X.jsx)(mt,{tags:s}),i.length>0&&(0,X.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:i.map((e,t)=>(0,X.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:[ft(e)?(0,X.jsx)(ue,{className:`size-3 shrink-0`}):(0,X.jsx)(j,{className:`size-3 shrink-0`}),(0,X.jsx)(`span`,{className:`truncate max-w-32`,children:_(e)})]},t))}),o&&(0,X.jsx)(`div`,{ref:f,className:h(`whitespace-pre-wrap break-words transition-all duration-200`,!c&&`line-clamp-2`,c&&`max-h-[50vh] overflow-y-auto`),children:o}),(u||c)&&(0,X.jsx)(`button`,{onClick:()=>l(!c),className:`flex items-center gap-1 text-xs text-primary/70 hover:text-primary mt-1 transition-colors`,children:c?(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(A,{className:`size-3`}),`Show less`]}):(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(r,{className:`size-3`}),`Show more`]})}),n&&(0,X.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,X.jsx)(a,{className:`size-3`})})]})}function mt({tags:e}){return(0,X.jsx)(`div`,{className:`flex flex-wrap gap-1.5`,children:e.map((e,t)=>(0,X.jsx)(ht,{tag:e},t))})}function ht({tag:e}){let[t,n]=(0,J.useState)(!1);return(0,X.jsxs)(`div`,{className:`text-xs`,children:[(0,X.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,X.jsx)(f,{className:`size-2.5`}),(0,X.jsx)(`span`,{children:e.label}),(0,X.jsx)(N,{className:h(`size-2.5 transition-transform`,t&&`rotate-90`)})]}),t&&(0,X.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 gt({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}a&&=(r.push({kind:`thinking`,content:a}),``),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,X.jsx)(X.Fragment,{children:r.map((e,i)=>{if(e.kind===`thinking`)return(0,X.jsx)(_t,{content:e.content,isStreaming:t&&i===r.length-1},`think-${i}`);if(e.kind===`text`){let a=t&&i===r.length-1;return(0,X.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,X.jsx)(vt,{content:e.content,animate:a,projectName:n})},`text-${i}`)}return(0,X.jsx)(qe,{tool:e.tool,result:e.result,completed:e.completed,projectName:n},`tool-${i}`)})})}function _t({content:e,isStreaming:t}){let[n,r]=(0,J.useState)(t);return(0,J.useEffect)(()=>{!t&&e.length>0&&r(!1)},[t,e.length]),(0,X.jsxs)(`div`,{className:`rounded border border-border/50 bg-surface/30 text-xs`,children:[(0,X.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,X.jsx)(P,{className:`size-3 animate-spin`}):(0,X.jsx)(N,{className:`size-3 transition-transform ${n?`rotate-90`:``}`}),(0,X.jsxs)(`span`,{children:[`Thinking`,t?`...`:``]}),!t&&(0,X.jsx)(`span`,{className:`text-text-subtle/50 ml-auto`,children:e.length>100?`${Math.round(e.length/4)} tokens`:``})]}),n&&(0,X.jsx)(`div`,{className:`px-2 pb-2 text-text-subtle/80 whitespace-pre-wrap max-h-60 overflow-y-auto text-[11px] leading-relaxed`,children:e})]})}function vt({content:e,animate:t,projectName:n}){return(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(bt,{content:e,projectName:n}),t&&(0,X.jsx)(`span`,{className:`text-text-subtle text-sm animate-pulse`,children:`Thinking...`})]})}function yt({lastMessage:e,streamingStatus:t,elapsed:n,warningThreshold:r=15}){let i=!e||e.role!==`assistant`,a=e?.events?.length?e.events[e.events.length-1].type===`tool_result`:!1;return!i&&!a?null:(0,X.jsxs)(`div`,{className:`flex flex-col gap-1 text-sm`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-2 text-text-subtle`,children:[(0,X.jsx)(P,{className:`size-3 animate-spin`}),(0,X.jsxs)(`span`,{children:[`Thinking`,i&&(n??0)>0&&(0,X.jsxs)(`span`,{className:`text-text-subtle/60`,children:[`... (`,n,`s)`]})]})]}),i&&(n??0)>=r&&(0,X.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 bt({content:e,projectName:t}){return(0,X.jsx)(W,{content:e,projectName:t,codeActions:!0})}function xt({approval:e,onRespond:t}){return(0,X.jsxs)(`div`,{className:`rounded-lg border-2 border-yellow-500/40 bg-yellow-500/10 p-3 space-y-2`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-2 text-yellow-400 text-sm font-medium`,children:[(0,X.jsx)(pe,{className:`size-4`}),(0,X.jsx)(`span`,{children:`Tool Approval Required`})]}),(0,X.jsx)(`div`,{className:`text-xs text-text-primary`,children:(0,X.jsx)(`span`,{className:`font-medium`,children:e.tool})}),(0,X.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,X.jsxs)(`div`,{className:`flex gap-2`,children:[(0,X.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,X.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 St({approval:e,onRespond:t}){return(0,X.jsx)(rt,{questions:e.input.questions??[],onSubmit:n=>t(e.requestId,!0,n),onSkip:()=>t(e.requestId,!1)})}var Ct=new Set([`image/png`,`image/jpeg`,`image/gif`,`image/webp`]),wt=new Set([`application/pdf`]),Tt=[`text/`,`application/json`,`application/xml`,`application/javascript`,`application/typescript`,`application/x-yaml`,`application/toml`,`application/x-sh`],Et=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 Dt(e){return Ct.has(e.type)}function Ot(e){if(Ct.has(e.type)||wt.has(e.type)||Tt.some(t=>e.type.startsWith(t)))return!0;let t=kt(e.name);return!!(t&&Et.has(t))}function kt(e){let t=e.lastIndexOf(`.`);return t===-1?``:e.slice(t).toLowerCase()}function At({attachments:e,onRemove:t}){return e.length===0?null:(0,X.jsx)(`div`,{className:`flex flex-wrap gap-1.5 px-2 md:px-4 pt-2`,children:e.map(e=>(0,X.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,X.jsx)(`img`,{src:e.previewUrl,alt:e.name,className:`size-5 rounded object-cover shrink-0`}):e.isImage?(0,X.jsx)(ue,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,X.jsx)(j,{className:`size-3.5 shrink-0 text-text-subtle`}),(0,X.jsx)(`span`,{className:`truncate`,children:e.name}),e.status===`uploading`?(0,X.jsx)(P,{className:`size-3 shrink-0 animate-spin text-text-subtle`}):e.status===`error`?(0,X.jsx)(`span`,{className:`text-red-500 shrink-0`,title:`Upload failed`,children:`!`}):null,(0,X.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,X.jsx)(n,{className:`size-3`})})]},e.id))})}var Q=[{id:`default`,label:`Ask before edits`,icon:K,description:`Claude will ask for approval before making each edit`},{id:`acceptEdits`,label:`Edit automatically`,icon:ce,description:`Claude will edit files without asking first`},{id:`plan`,label:`Plan mode`,icon:se,description:`Claude will present a plan before editing`},{id:`bypassPermissions`,label:`Bypass permissions`,icon:he,description:`Claude will not ask before running commands`}];function jt(e){return Q.find(t=>t.id===e)?.label??`Unknown`}function Mt(e){return Q.find(t=>t.id===e)?.icon??K}function Nt({value:e,onChange:t,open:n,onOpenChange:r}){let a=(0,J.useRef)(null),o=(0,J.useRef)(0);(0,J.useEffect)(()=>{if(!n)return;let e=e=>{a.current&&!a.current.contains(e.target)&&r(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[n,r]),(0,J.useEffect)(()=>{n&&(o.current=Q.findIndex(t=>t.id===e),o.current<0&&(o.current=0))},[n,e]);let s=(0,J.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;o.current=(o.current+t+Q.length)%Q.length,(a.current?.querySelector(`[data-idx="${o.current}"]`))?.focus()}if(e.key===`Enter`){e.preventDefault();let n=Q[o.current];n&&(t(n.id),r(!1))}},[t,r]);return n?(0,X.jsxs)(`div`,{ref:a,role:`listbox`,"aria-label":`Permission modes`,onKeyDown:s,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,X.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border`,children:[(0,X.jsx)(`span`,{className:`text-xs font-medium text-text-secondary`,children:`Modes`}),(0,X.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,X.jsx)(`div`,{className:`py-1`,children:Q.map((n,a)=>{let o=n.icon,s=n.id===e;return(0,X.jsxs)(`button`,{"data-idx":a,role:`option`,"aria-selected":s,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 ${s?`bg-surface-elevated`:``}`,children:[(0,X.jsx)(o,{className:`size-4 mt-0.5 shrink-0 text-text-secondary`}),(0,X.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,X.jsx)(`div`,{className:`text-sm font-medium text-text-primary`,children:n.label}),(0,X.jsx)(`div`,{className:`text-xs text-text-subtle leading-snug`,children:n.description})]}),s&&(0,X.jsx)(i,{className:`size-4 mt-0.5 shrink-0 text-primary`})]},n.id)})})]}):null}function Pt(e){let t=[];function n(e){for(let r of e)t.push(r),r.children&&n(r.children)}return n(e),t}function Ft({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,J.useState)(0),s=(0,J.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,J.useEffect)(()=>{o(0)},[t]),(0,J.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,J.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,J.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,X.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,X.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,X.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,X.jsx)(`span`,{className:`shrink-0`,children:e.type===`directory`?(0,X.jsx)(I,{className:`size-4 text-amber-500`}):(0,X.jsx)(k,{className:`size-4 text-blue-400`})}),(0,X.jsx)(`span`,{className:`text-sm truncate`,children:e.path})]},e.path))})})}var It=(0,J.memo)(function({onSend:e,isStreaming:t,onCancel:n,disabled:r,projectName:i,onSlashStateChange:a,onSlashItemsLoaded:o,slashSelected:s,onFileStateChange:c,onFileItemsLoaded:l,fileSelected:u,externalFiles:d,initialValue:f,autoFocus:p,permissionMode:m,onModeChange:h}){let[_,x]=(0,J.useState)(f??``),[S,C]=(0,J.useState)([]),[w,T]=(0,J.useState)(!1),E=(0,J.useRef)(null),D=(0,J.useRef)(null),O=(0,J.useRef)(null),k=(0,J.useRef)([]),A=(0,J.useRef)([]);(0,J.useEffect)(()=>{f&&(x(f),setTimeout(()=>{let e=E.current;e&&(e.focus(),e.selectionStart=e.selectionEnd=e.value.length)},50))},[f]),(0,J.useEffect)(()=>{p&&setTimeout(()=>{(window.matchMedia(`(min-width: 768px)`).matches?E.current:D.current)?.focus()},100)},[]),(0,J.useEffect)(()=>{if(!i){k.current=[],o?.([]);return}b.get(`${v(i)}/chat/slash-items`).then(e=>{k.current=e,o?.(e)}).catch(()=>{k.current=[],o?.([])})},[i]),(0,J.useEffect)(()=>{if(!i){A.current=[],l?.([]);return}b.get(`${v(i)}/files/tree?depth=5`).then(e=>{let t=Pt(e);A.current=t,l?.(t)}).catch(()=>{A.current=[],l?.([])})},[i]),(0,J.useEffect)(()=>{if(!s)return;let e=E.current,t=e?.selectionStart??_.length,n=_.slice(0,t),r=_.slice(t),i=n.replace(/(?:^|\s)\/\S*$/,e=>`${e.startsWith(`/`)?``:e[0]}/${s.name} `);x(i+r),a?.(!1,``),c?.(!1,``),e&&(e.focus(),setTimeout(()=>{e.selectionStart=e.selectionEnd=i.length},0))},[s]),(0,J.useEffect)(()=>{if(!u)return;let e=E.current;if(!e)return;let t=e.selectionStart,n=_.slice(0,t),r=_.slice(t),i=n.match(/@(\S*)$/);if(i){let t=n.length-i[0].length;x(n.slice(0,t)+`@${u.path} `+r);let a=t+u.path.length+2;setTimeout(()=>{e.selectionStart=e.selectionEnd=a,e.focus()},0)}else{let t=_+`@${u.path} `;x(t),setTimeout(()=>{e.selectionStart=e.selectionEnd=t.length,e.focus()},0)}c?.(!1,``)},[u]),(0,J.useEffect)(()=>{!d||d.length===0||M(d)},[d]);let j=(0,J.useCallback)(async e=>{if(!i)return null;try{let t=new FormData;t.append(`files`,e);let n={},r=y();r&&(n.Authorization=`Bearer ${r}`);let a=await(await fetch(`${v(i)}/chat/upload`,{method:`POST`,headers:n,body:t})).json();return a.ok&&Array.isArray(a.data)&&a.data.length>0?a.data[0].path:null}catch{return null}},[i]),M=(0,J.useCallback)(e=>{for(let t of e){if(!Ot(t)){x(e=>e+(e.length>0&&!e.endsWith(` `)?` `:``)+t.name);continue}let e=g(),n=Dt(t),r=n?URL.createObjectURL(t):void 0,i={id:e,name:t.name,file:t,isImage:n,previewUrl:r,status:`uploading`};C(e=>[...e,i]),j(t).then(t=>{C(n=>n.map(n=>n.id===e?{...n,serverPath:t??void 0,status:t?`ready`:`error`}:n))})}(D.current??E.current)?.focus()},[j]),N=(0,J.useCallback)(e=>{C(t=>{let n=t.find(t=>t.id===e);return n?.previewUrl&&URL.revokeObjectURL(n.previewUrl),t.filter(t=>t.id!==e)})},[]),P=(0,J.useCallback)(()=>{let t=_.trim(),n=S.filter(e=>e.status===`ready`);if(!(!t&&n.length===0)&&!r){a?.(!1,``),c?.(!1,``),e(t,n),x(``);for(let e of S)e.previewUrl&&URL.revokeObjectURL(e.previewUrl);C([]),E.current&&(E.current.style.height=`auto`),D.current&&(D.current.style.height=`auto`)}},[_,S,r,e,a,c]),F=(0,J.useCallback)(e=>{if(e.key===`Enter`&&!e.shiftKey){e.preventDefault(),P();return}if(e.shiftKey&&e.key===`Tab`){e.preventDefault();let t=[`default`,`acceptEdits`,`plan`,`bypassPermissions`],n=t[(t.indexOf(m??`bypassPermissions`)+1)%t.length];h?.(n)}},[P,m,h]),I=(0,J.useCallback)((e,t)=>{let n=e.slice(0,t),r=n.match(/(?:^|\s)\/(\S*)$/);if(r&&k.current.length>0){a?.(!0,r[1]??``),c?.(!1,``);return}let i=n.match(/@(\S*)$/);if(i&&A.current.length>0){c?.(!0,i[1]??``),a?.(!1,``);return}a?.(!1,``),c?.(!1,``)},[a,c]),L=(0,J.useCallback)((e,t)=>{x(e),I(e,t)},[I]),R=(0,J.useCallback)(e=>{let t=e?.target??E.current;t&&(t.style.height=`auto`,t.style.height=Math.min(t.scrollHeight,160)+`px`)},[]),z=(0,J.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(),M(n))},[M]),B=(0,J.useCallback)(e=>{e.preventDefault();let t=Array.from(e.dataTransfer.files);t.length>0&&M(t)},[M]),V=(0,J.useCallback)(e=>{e.preventDefault()},[]),H=(0,J.useCallback)(()=>{O.current?.click()},[]),ee=(0,J.useCallback)(e=>{let t=Array.from(e.target.files??[]);t.length>0&&M(t),e.target.value=``},[M]),te=_.trim().length>0||S.some(e=>e.status===`ready`),ne=t&&!te;return(0,X.jsxs)(`div`,{className:`p-2 md:p-3 bg-background`,children:[(0,X.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?E.current:D.current)?.focus()},children:[(0,X.jsx)(At,{attachments:S,onRemove:N}),(0,X.jsxs)(`div`,{className:`flex items-center gap-1 px-2 pt-2 md:hidden relative`,children:[(0,X.jsx)(Lt,{mode:m??`bypassPermissions`,onClick:()=>T(e=>!e)}),(0,X.jsx)(Nt,{value:m??`bypassPermissions`,onChange:e=>h?.(e),open:w,onOpenChange:T})]}),(0,X.jsxs)(`div`,{className:`flex items-end gap-1 md:hidden px-2 py-2`,children:[(0,X.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),H()},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,X.jsx)(fe,{className:`size-4`})}),(0,X.jsx)(`textarea`,{ref:D,value:_,onChange:e=>{L(e.target.value,e.target.selectionStart),R(e)},onKeyDown:F,onPaste:z,onDrop:B,onDragOver:V,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`}),ne?(0,X.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,X.jsx)(_e,{className:`size-3`})}):(0,X.jsx)(`button`,{onClick:e=>{e.stopPropagation(),P()},disabled:r||!te,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":`Send`,children:(0,X.jsx)(ae,{className:`size-3.5`})})]}),(0,X.jsxs)(`div`,{className:`hidden md:block`,children:[(0,X.jsx)(`textarea`,{ref:E,value:_,onChange:e=>{L(e.target.value,e.target.selectionStart),R(e)},onKeyDown:F,onPaste:z,onDrop:B,onDragOver:V,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,X.jsxs)(`div`,{className:`flex items-center justify-between px-3 pb-2`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,X.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),H()},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,X.jsx)(fe,{className:`size-4`})}),(0,X.jsxs)(`div`,{className:`relative`,children:[(0,X.jsx)(Lt,{mode:m??`bypassPermissions`,onClick:()=>T(e=>!e)}),(0,X.jsx)(Nt,{value:m??`bypassPermissions`,onChange:e=>h?.(e),open:w,onOpenChange:T})]})]}),(0,X.jsx)(`div`,{className:`flex items-center gap-1`,children:ne?(0,X.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,X.jsx)(_e,{className:`size-3.5`})}):(0,X.jsx)(`button`,{onClick:e=>{e.stopPropagation(),P()},disabled:r||!te,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":`Send message`,children:(0,X.jsx)(ae,{className:`size-4`})})})]})]})]}),(0,X.jsx)(`input`,{ref:O,type:`file`,multiple:!0,className:`hidden`,onChange:ee})]})});function Lt({mode:e,onClick:t}){let n=Mt(e),r=jt(e);return(0,X.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,X.jsx)(n,{className:`size-3`}),(0,X.jsx)(`span`,{className:`max-w-[100px] truncate`,children:r})]})}function Rt({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,J.useState)(0),s=(0,J.useRef)(null),c=e.filter(e=>{let n=t.toLowerCase();return e.name.toLowerCase().includes(n)||e.description.toLowerCase().includes(n)});(0,J.useEffect)(()=>{o(0)},[t]),(0,J.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,J.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,J.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,X.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,X.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,X.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,X.jsx)(`span`,{className:`shrink-0 mt-0.5`,children:e.type===`skill`?(0,X.jsx)(ge,{className:`size-4 text-amber-500`}):(0,X.jsx)(R,{className:`size-4 text-blue-500`})}),(0,X.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,X.jsxs)(`div`,{className:`flex items-baseline gap-2`,children:[(0,X.jsxs)(`span`,{className:`font-medium text-sm`,children:[`/`,e.name]}),e.argumentHint&&(0,X.jsx)(`span`,{className:`text-xs text-text-subtle`,children:e.argumentHint}),(0,X.jsx)(`span`,{className:`text-xs text-text-subtle capitalize ml-auto`,children:e.scope===`user`?`global`:e.type})]}),e.description&&(0,X.jsx)(`p`,{className:`text-xs text-text-subtle mt-0.5 line-clamp-2`,children:e.description})]})]},`${e.type}-${e.name}`))})})}function zt(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function Bt(e){return e>=90?`bg-red-500`:e>=70?`bg-amber-500`:`bg-green-500`}function Vt(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 $({label:e,bucket:t}){if(!t)return null;let n=Math.round(t.utilization*100),r=Vt(t);return(0,X.jsxs)(`div`,{className:`space-y-1`,children:[(0,X.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,X.jsx)(`span`,{className:`text-xs font-medium text-text-primary`,children:e}),r&&(0,X.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,children:[`↻ `,r]})]}),(0,X.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,X.jsx)(`div`,{className:`flex-1 h-2 rounded-full bg-border overflow-hidden`,children:(0,X.jsx)(`div`,{className:`h-full rounded-full transition-all ${Bt(n)}`,style:{width:`${Math.min(n,100)}%`}})}),(0,X.jsxs)(`span`,{className:`text-xs font-medium tabular-nums w-10 text-right ${zt(n)}`,children:[n,`%`]})]})]})}function Ht(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 Ut({entry:e,isActive:t,accountInfo:n,onToggle:r,onVerify:i,verifyingId:a,onViewProfile:o,flash:s}){let{usage:c}=e,l=c.session||c.weekly||c.weeklyOpus||c.weeklySonnet,u=n?.status??e.accountStatus;return(0,X.jsxs)(`div`,{className:`rounded-md border p-2 space-y-1.5 transition-colors duration-500 ${s?`bg-primary/10 border-primary/40`:``} ${t?`border-primary/30 bg-primary/5`:`border-border/50`}`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,X.jsx)(`span`,{className:`text-xs font-medium truncate flex-1 min-w-0`,children:e.accountLabel??e.accountId.slice(0,8)}),!e.isOAuth&&(0,X.jsx)(`span`,{className:`text-[9px] text-text-subtle shrink-0`,children:`API key`}),(0,X.jsxs)(`div`,{className:`flex items-center gap-0.5 shrink-0`,children:[o&&n?.profileData&&(0,X.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,X.jsx)(L,{className:`size-3`})}),i&&(0,X.jsx)(`button`,{className:`p-1 rounded cursor-pointer text-text-subtle hover:text-green-600 hover:bg-surface-elevated transition-colors`,onClick:()=>i(e.accountId),disabled:a===e.accountId,title:`Verify token`,children:a===e.accountId?(0,X.jsx)(P,{className:`size-3 animate-spin`}):(0,X.jsx)(me,{className:`size-3`})}),r&&(0,X.jsx)(re,{checked:u!==`disabled`,onCheckedChange:()=>r(e.accountId,u),disabled:u===`cooldown`,className:`scale-[0.6] cursor-pointer`})]})]}),l?(0,X.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,X.jsx)($,{label:`5-Hour Session`,bucket:c.session}),(0,X.jsx)($,{label:`Weekly`,bucket:c.weekly}),(0,X.jsx)($,{label:`Weekly (Opus)`,bucket:c.weeklyOpus}),(0,X.jsx)($,{label:`Weekly (Sonnet)`,bucket:c.weeklySonnet})]}):(0,X.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:e.isOAuth?`No usage data yet`:`Usage tracking not available for API keys`}),c.lastFetchedAt&&(0,X.jsxs)(`p`,{className:`text-[9px] text-text-subtle`,children:[`Updated: `,Ht(new Date(c.lastFetchedAt).getTime())]})]})}function Wt({usage:e,visible:t,onClose:r,onReload:i,loading:a,lastFetchedAt:o}){let[s,c]=(0,J.useState)([]),[l,u]=(0,J.useState)([]),[d,f]=(0,J.useState)(null),[p,m]=(0,J.useState)(!0),[h,g]=(0,J.useState)(!1),[_,v]=(0,J.useState)(new Set),[y,b]=(0,J.useState)(null),[x,D]=(0,J.useState)(null),O=(0,J.useRef)([]);async function k(){let e=s.length>0;e?g(!0):m(!0);let[t,n,r]=await Promise.allSettled([w(),T(),S()]);if(t.status===`fulfilled`){let n=t.value;if(e&&O.current.length>0){let e=new Set,t=new Map(O.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&&(v(e),setTimeout(()=>v(new Set),1500))}O.current=n,c(n)}n.status===`fulfilled`&&u(n.value),r.status===`fulfilled`&&f(r.value?.id??null),m(!1),g(!1)}if((0,J.useEffect)(()=>{t&&k()},[t]),(0,J.useEffect)(()=>{!t||!o||k()},[o]),!t)return null;let A=new Map(l.map(e=>[e.id,e])),j=e.queryCostUsd!=null||e.totalCostUsd!=null,M=s.length>0;async function N(e,t){await C(e,{status:t===`disabled`?`active`:`disabled`}),k(),i?.()}async function P(e){b(e);try{await E(e),k()}catch{}b(null)}return(0,X.jsxs)(`div`,{className:`border-b border-border bg-surface px-3 py-2.5 space-y-2.5 max-h-[350px] overflow-y-auto`,children:[(0,X.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,X.jsx)(`span`,{className:`text-xs font-semibold text-text-primary`,children:`Usage & Accounts`}),o&&(0,X.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:Ht(new Date(o).getTime())})]}),(0,X.jsxs)(`div`,{className:`flex items-center gap-1`,children:[i&&(0,X.jsx)(`button`,{onClick:()=>{i(),k()},disabled:a||h,className:`text-xs text-text-subtle hover:text-text-primary px-1 disabled:opacity-50 cursor-pointer`,title:`Refresh`,children:(0,X.jsx)(F,{className:`size-3 ${a||h?`animate-spin`:``}`})}),(0,X.jsx)(`button`,{onClick:r,className:`text-xs text-text-subtle hover:text-text-primary px-1 cursor-pointer`,children:(0,X.jsx)(n,{className:`size-3`})})]})]}),M||p?(0,X.jsx)(`div`,{className:`grid grid-cols-[repeat(auto-fill,minmax(180px,1fr))] gap-1.5`,children:p?(0,X.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:`Loading...`}):s.map(t=>(0,X.jsx)(Ut,{entry:t,isActive:t.accountId===(d??e.activeAccountId),accountInfo:A.get(t.accountId),onToggle:N,onVerify:P,verifyingId:y,onViewProfile:D,flash:_.has(t.accountId)},t.accountId))}):(0,X.jsx)(X.Fragment,{children:e.session||e.weekly||e.weeklyOpus||e.weeklySonnet?(0,X.jsxs)(`div`,{className:`space-y-2.5`,children:[(0,X.jsx)($,{label:`5-Hour Session`,bucket:e.session}),(0,X.jsx)($,{label:`Weekly`,bucket:e.weekly}),(0,X.jsx)($,{label:`Weekly (Opus)`,bucket:e.weeklyOpus}),(0,X.jsx)($,{label:`Weekly (Sonnet)`,bucket:e.weeklySonnet})]}):(0,X.jsx)(`p`,{className:`text-xs text-text-subtle`,children:`No usage data available`})}),j&&(0,X.jsxs)(`div`,{className:`border-t border-border pt-2 space-y-1`,children:[e.queryCostUsd!=null&&(0,X.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Last query`}),(0,X.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.queryCostUsd.toFixed(4)]})]}),e.totalCostUsd!=null&&(0,X.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Session total`}),(0,X.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.totalCostUsd.toFixed(4)]})]})]}),x&&(0,X.jsxs)(`div`,{className:`border-t border-border pt-2`,children:[(0,X.jsxs)(`div`,{className:`flex items-center justify-between mb-1`,children:[(0,X.jsx)(`span`,{className:`text-[10px] font-medium text-text-subtle`,children:`Profile`}),(0,X.jsx)(`button`,{className:`text-text-subtle hover:text-foreground cursor-pointer`,onClick:()=>D(null),children:(0,X.jsx)(n,{className:`size-3`})})]}),(0,X.jsxs)(`div`,{className:`grid grid-cols-[70px_1fr] gap-x-2 gap-y-0.5 text-[10px]`,children:[x.account?.display_name&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Name`}),(0,X.jsx)(`span`,{children:x.account.display_name})]}),x.account?.email&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Email`}),(0,X.jsx)(`span`,{children:x.account.email})]}),x.organization?.name&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Org`}),(0,X.jsx)(`span`,{children:x.organization.name})]}),x.organization?.organization_type&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Type`}),(0,X.jsx)(`span`,{children:x.organization.organization_type})]}),x.organization?.rate_limit_tier&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Tier`}),(0,X.jsx)(`span`,{children:x.organization.rate_limit_tier})]}),x.organization?.subscription_status&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`Status`}),(0,X.jsx)(`span`,{children:x.organization.subscription_status})]})]})]})]})}function Gt(e){try{return new Date(e).toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}function Kt(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function qt({projectName:e,usageInfo:t,contextWindowPct:r,usageLoading:a,refreshUsage:o,lastFetchedAt:s,sessionId:c,onSelectSession:l,onBugReport:u,isConnected:f,onReconnect:p}){let[m,h]=(0,J.useState)(null),[g,_]=(0,J.useState)([]),[y,x]=(0,J.useState)(!1),S=H(e=>c?e.notifications.has(c):!1),C=H(e=>e.clearForSession),[w,T]=(0,J.useState)(``),[E,D]=(0,J.useState)(null),[k,A]=(0,J.useState)(``),j=(0,J.useRef)(null),M=d(e=>e.openTab),N=e=>{h(t=>t===e?null:e)},I=(0,J.useCallback)(async()=>{if(e){x(!0);try{_(await b.get(`${v(e)}/chat/sessions`))}catch{}finally{x(!1)}}},[e]);(0,J.useEffect)(()=>{m===`history`&&g.length===0&&I()},[m]);function L(t){l?(l(t),h(null)):M({type:`chat`,title:t.title||`Chat`,projectId:e??null,metadata:{projectName:e,sessionId:t.id},closable:!0})}let R=(0,J.useCallback)((e,t)=>{t.stopPropagation(),D(e.id),A(e.title||``),setTimeout(()=>j.current?.select(),0)},[]),z=(0,J.useCallback)(async()=>{if(!E||!k.trim()||!e){D(null);return}try{await b.patch(`${v(e)}/chat/sessions/${E}`,{title:k.trim()}),_(e=>e.map(e=>e.id===E?{...e,title:k.trim()}:e))}catch{}D(null)},[E,k,e]),B=(0,J.useCallback)(()=>D(null),[]),re=w.trim()?g.filter(e=>(e.title||``).toLowerCase().includes(w.toLowerCase())):g,U=t.fiveHour==null?null:Math.round(t.fiveHour*100),W=t.sevenDay==null?null:Math.round(t.sevenDay*100),ae=U!=null||W!=null?Kt(Math.max(U??0,W??0)):`text-text-subtle`;return(0,X.jsxs)(`div`,{className:`border-b border-border/50`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1`,children:[(0,X.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,X.jsx)(le,{className:`size-3`}),(0,X.jsx)(`span`,{children:`History`})]}),(0,X.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,X.jsx)(q,{className:`size-3`})}),(0,X.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`:``} ${ae}`,title:`Usage limits`,children:[(0,X.jsx)(ie,{className:`size-3`}),t.activeAccountLabel&&(0,X.jsxs)(`span`,{className:`text-text-secondary font-normal truncate max-w-[60px]`,children:[`[`,t.activeAccountLabel,`]`]}),(0,X.jsxs)(`span`,{children:[`5h:`,U==null?`--%`:`${U}%`]}),(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,X.jsxs)(`span`,{children:[`Wk:`,W==null?`--%`:`${W}%`]}),r!=null&&(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,X.jsxs)(`span`,{className:Kt(r),children:[`Ctx:`,r,`%`]})]})]}),(0,X.jsx)(`div`,{className:`flex-1`}),S&&c&&(0,X.jsx)(`button`,{onClick:()=>C(c),className:`p-1 rounded text-amber-500 hover:text-amber-400 hover:bg-surface-elevated transition-colors`,title:`Mark as read`,children:(0,X.jsx)(V,{className:`size-3`})}),p&&(0,X.jsx)(`button`,{onClick:p,className:`size-4 flex items-center justify-center`,title:f?`Connected`:`Disconnected — click to reconnect`,children:(0,X.jsx)(`span`,{className:`size-2 rounded-full ${f?`bg-green-500`:`bg-red-500 animate-pulse`}`})})]}),m===`history`&&(0,X.jsxs)(`div`,{className:`border-t border-border/30 bg-surface`,children:[(0,X.jsxs)(`div`,{className:`flex items-center gap-1.5 px-2 py-1 border-b border-border/30`,children:[(0,X.jsx)(O,{className:`size-3 text-text-subtle shrink-0`}),(0,X.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,X.jsx)(`button`,{onClick:I,disabled:y,className:`p-0.5 rounded text-text-subtle hover:text-text-secondary transition-colors disabled:opacity-50`,title:`Refresh`,children:(0,X.jsx)(F,{className:`size-3 ${y?`animate-spin`:``}`})})]}),(0,X.jsx)(`div`,{className:`max-h-[200px] overflow-y-auto`,children:y&&g.length===0?(0,X.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,X.jsx)(P,{className:`size-3.5 animate-spin text-text-subtle`})}):re.length===0?(0,X.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:w?`No matching sessions`:`No sessions yet`}):re.map(e=>(0,X.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,X.jsx)(te,{className:`size-3 shrink-0 text-text-subtle`}),E===e.id?(0,X.jsxs)(`form`,{className:`flex items-center gap-1 flex-1 min-w-0`,onSubmit:e=>{e.preventDefault(),z()},children:[(0,X.jsx)(`input`,{ref:j,value:k,onChange:e=>A(e.target.value),onBlur:z,onKeyDown:e=>{e.key===`Escape`&&B()},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,X.jsx)(`button`,{type:`submit`,className:`p-0.5 text-green-500 hover:text-green-400`,onClick:e=>e.stopPropagation(),children:(0,X.jsx)(i,{className:`size-3`})}),(0,X.jsx)(`button`,{type:`button`,className:`p-0.5 text-text-subtle hover:text-text-secondary`,onClick:e=>{e.stopPropagation(),B()},children:(0,X.jsx)(n,{className:`size-3`})})]}):(0,X.jsxs)(X.Fragment,{children:[(0,X.jsx)(`button`,{onClick:()=>L(e),className:`text-[11px] truncate flex-1 text-left`,children:e.title||`Untitled`}),(0,X.jsx)(`button`,{onClick:t=>R(e,t),className:`p-0.5 rounded text-text-subtle hover:text-text-secondary opacity-0 group-hover:opacity-100 transition-opacity`,title:`Rename session`,children:(0,X.jsx)(ne,{className:`size-3`})})]}),E!==e.id&&e.updatedAt&&(0,X.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0`,children:Gt(e.updatedAt)})]},e.id))})]}),m===`config`&&(0,X.jsx)(`div`,{className:`border-t border-border/30 bg-surface px-3 py-2 max-h-[280px] overflow-y-auto`,children:(0,X.jsx)(ee,{compact:!0})}),m===`usage`&&(0,X.jsx)(Wt,{usage:t,visible:!0,onClose:()=>h(null),onReload:o,loading:a,lastFetchedAt:s})]})}function Jt({metadata:e,tabId:t}){let[n,r]=(0,J.useState)(e?.sessionId??null),[i,a]=(0,J.useState)(e?.providerId??`claude`),[o,s]=(0,J.useState)([]),[c,l]=(0,J.useState)(!1),[f,h]=(0,J.useState)(``),[g,_]=(0,J.useState)(null),[y,S]=(0,J.useState)([]),[C,w]=(0,J.useState)(!1),[T,E]=(0,J.useState)(``),[O,k]=(0,J.useState)(null),[A,j]=(0,J.useState)(e?.permissionMode??void 0),[M,N]=(0,J.useState)(!1),[P,F]=(0,J.useState)(null),I=(0,J.useRef)(0),L=e?.projectName??``,R=d(e=>e.updateTab),z=p(e=>e.version),{usageInfo:B,usageLoading:V,lastFetchedAt:ee,refreshUsage:te}=Me(L,i);(0,J.useEffect)(()=>{A||x().then(e=>{let t=e.providers[e.default_provider??`claude`];j(t?.permission_mode??`bypassPermissions`)}).catch(()=>{})},[]),(0,J.useEffect)(()=>{!t||!n||R(t,{metadata:{...e,sessionId:n,providerId:i,permissionMode:A}})},[n,i,A]);let{messages:ne,messagesLoading:re,isStreaming:W,streamingStatus:ie,connectingElapsed:ae,thinkingWarningThreshold:oe,pendingApproval:se,contextWindowPct:ce,sessionTitle:G,sendMessage:K,respondToApproval:le,cancelStreaming:ue,reconnect:de,refetchMessages:fe,isConnected:q}=Ae(n,i,L);(0,J.useEffect)(()=>{if(!n||!t)return;let e=()=>{if(document.hidden)return;let{panels:e,focusedPanelId:r}=u.getState();e[r]?.activeTabId===t&&H.getState().clearForSession(n)};e(),document.addEventListener(`visibilitychange`,e);let r=u.subscribe(e);return()=>{document.removeEventListener(`visibilitychange`,e),r()}},[n,t]),(0,J.useEffect)(()=>{t&&G&&R(t,{title:G})},[G]);let pe=(0,J.useRef)(e?.pendingMessage);(0,J.useEffect)(()=>{if(pe.current&&q&&n){let n=pe.current;pe.current=void 0,t&&R(t,{metadata:{...e,pendingMessage:void 0}}),setTimeout(()=>K(n,{permissionMode:A}),100)}},[q,n]),(0,J.useCallback)(()=>{d.getState().openTab({type:`chat`,title:`AI Chat`,metadata:{projectName:L},projectId:L||null,closable:!0})},[L]);let me=(0,J.useCallback)(e=>{r(e.id),a(e.providerId),t&&R(t,{title:e.title||`Chat`})},[t,R]),he=(0,J.useCallback)(async e=>{if(!(!n||!L))try{let{api:t,projectUrl:r}=await m(async()=>{let{api:e,projectUrl:t}=await import(`./api-client-TUmacMRS.js`).then(e=>e.n);return{api:e,projectUrl:t}},__vite__mapDeps([0,1])),a=await t.post(`${r(L)}/chat/sessions/${n}/fork?providerId=${i}`);d.getState().openTab({type:`chat`,title:`Fork: ${e.slice(0,30)}`,metadata:{projectName:L,sessionId:a.id,providerId:i,pendingMessage:e},projectId:L||null,closable:!0})}catch(e){console.error(`Fork failed:`,e)}},[n,L,i]),ge=(0,J.useCallback)((e,t)=>{if(t.length===0)return e;let n=t.filter(e=>e.serverPath).map(e=>e.serverPath).join(`
|
|
7
|
-
`);return n?(t.length===1?`[Attached file: ${n}]\n\n`:`[Attached files:\n${n}\n]\n\n`)+e:e},[]),_e=(0,J.useCallback)(async(e,t=[])=>{let o=ge(e,t);if(o.trim()){if(!n)try{let t=L,n=await b.post(`${v(t)}/chat/sessions`,{providerId:i,title:e.slice(0,50)});r(n.id),a(n.providerId),setTimeout(()=>{K(o,{permissionMode:A})},500);return}catch(e){console.error(`Failed to create session:`,e);return}K(o,{permissionMode:A})}},[n,i,L,K,ge,A]),ve=(0,J.useCallback)((e,t)=>{l(e),h(t)},[]),ye=(0,J.useCallback)(e=>{_(e),l(!1),h(``),setTimeout(()=>_(null),50)},[]),be=(0,J.useCallback)(()=>{l(!1),h(``)},[]),xe=(0,J.useCallback)((e,t)=>{w(e),E(t)},[]),Se=(0,J.useCallback)(e=>{k(e),w(!1),E(``),setTimeout(()=>k(null),50)},[]),Ce=(0,J.useCallback)(()=>{w(!1),E(``)},[]);return(0,X.jsxs)(`div`,{className:`flex flex-col h-full relative`,onDragEnter:(0,J.useCallback)(e=>{e.preventDefault(),I.current++,e.dataTransfer.types.includes(`Files`)&&N(!0)},[]),onDragLeave:(0,J.useCallback)(e=>{e.preventDefault(),I.current--,I.current===0&&N(!1)},[]),onDragOver:(0,J.useCallback)(e=>{e.preventDefault()},[]),onDrop:(0,J.useCallback)(e=>{e.preventDefault(),I.current=0,N(!1);let t=Array.from(e.dataTransfer.files);t.length>0&&(F(t),setTimeout(()=>F(null),100))},[]),children:[M&&(0,X.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,X.jsxs)(`div`,{className:`flex flex-col items-center gap-2 text-primary`,children:[(0,X.jsx)(D,{className:`size-8`}),(0,X.jsx)(`span`,{className:`text-sm font-medium`,children:`Drop files to attach`})]})}),(0,X.jsx)(it,{messages:ne,messagesLoading:re,pendingApproval:se,onApprovalResponse:le,isStreaming:W,streamingStatus:ie,connectingElapsed:ae,thinkingWarningThreshold:oe,projectName:L,onFork:W?void 0:he}),(0,X.jsxs)(`div`,{className:`border-t border-border bg-background shrink-0`,children:[(0,X.jsx)(qt,{projectName:L,usageInfo:B,contextWindowPct:ce,usageLoading:V,refreshUsage:te,lastFetchedAt:ee,sessionId:n,onSelectSession:me,onBugReport:n?()=>U(z,{sessionId:n,projectName:L}):void 0,isConnected:q,onReconnect:()=>{q||de(),fe()}}),(0,X.jsx)(Rt,{items:o,filter:f,onSelect:ye,onClose:be,visible:c}),(0,X.jsx)(Ft,{items:y,filter:T,onSelect:Se,onClose:Ce,visible:C}),(0,X.jsx)(It,{onSend:_e,isStreaming:W,onCancel:ue,autoFocus:!e?.sessionId,projectName:L,onSlashStateChange:ve,onSlashItemsLoaded:s,slashSelected:g,onFileStateChange:xe,onFileItemsLoaded:S,fileSelected:O,externalFiles:P,permissionMode:A,onModeChange:j})]})]})}export{Jt as ChatTab};
|