@hienlh/ppm 0.6.6 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +86 -313
  3. package/dist/web/assets/chat-tab-CbNbBMGw.js +7 -0
  4. package/dist/web/assets/{code-editor-ZFl5kZ4-.js → code-editor-D6OuzcC-.js} +1 -1
  5. package/dist/web/assets/{database-viewer-DPpOsMqa.js → database-viewer-BxUpM_uA.js} +1 -1
  6. package/dist/web/assets/{diff-viewer-CX74l6lV.js → diff-viewer-DAhrHpNM.js} +1 -1
  7. package/dist/web/assets/{dist-Jb3Tnkpc.js → dist-CNRrBoQi.js} +14 -14
  8. package/dist/web/assets/git-graph-BpTt5iOd.js +1 -0
  9. package/dist/web/assets/index-BU_07_oW.js +29 -0
  10. package/dist/web/assets/index-CBQhXXeV.css +2 -0
  11. package/dist/web/assets/keybindings-store-C0m8_V9X.js +1 -0
  12. package/dist/web/assets/{markdown-renderer-Bke6DHFh.js → markdown-renderer-CvGYO9sH.js} +2 -2
  13. package/dist/web/assets/postgres-viewer-BL99auSm.js +1 -0
  14. package/dist/web/assets/{settings-tab-DD05d8rM.js → settings-tab-Bwsxb41F.js} +1 -1
  15. package/dist/web/assets/{sqlite-viewer-Cx7tLyT-.js → sqlite-viewer-DfgaCbWT.js} +1 -1
  16. package/dist/web/assets/terminal-tab-D27e4ZTD.js +36 -0
  17. package/dist/web/index.html +4 -3
  18. package/dist/web/sw.js +1 -1
  19. package/package.json +1 -1
  20. package/src/lib/network-utils.ts +12 -0
  21. package/src/server/index.ts +3 -79
  22. package/src/server/routes/database.ts +57 -0
  23. package/src/server/routes/fs-browse.ts +67 -0
  24. package/src/server/routes/settings.ts +52 -0
  25. package/src/server/routes/tunnel.ts +1 -12
  26. package/src/server/ws/chat.ts +30 -3
  27. package/src/services/config.service.ts +1 -1
  28. package/src/services/fs-browse.service.ts +216 -0
  29. package/src/services/notification.service.ts +42 -0
  30. package/src/services/telegram-notification.service.ts +106 -0
  31. package/src/types/config.ts +6 -0
  32. package/src/web/app.tsx +61 -18
  33. package/src/web/components/chat/message-list.tsx +8 -105
  34. package/src/web/components/chat/question-card.tsx +334 -0
  35. package/src/web/components/database/connection-form-dialog.tsx +15 -6
  36. package/src/web/components/database/connection-import-export.tsx +116 -0
  37. package/src/web/components/database/database-sidebar.tsx +12 -8
  38. package/src/web/components/database/use-connections.ts +13 -1
  39. package/src/web/components/layout/add-project-form.tsx +23 -12
  40. package/src/web/components/layout/command-palette.tsx +1 -1
  41. package/src/web/components/layout/draggable-tab.tsx +10 -2
  42. package/src/web/components/layout/mobile-nav.tsx +42 -3
  43. package/src/web/components/layout/project-bar.tsx +16 -8
  44. package/src/web/components/layout/tab-bar.tsx +55 -4
  45. package/src/web/components/projects/dir-suggest.tsx +22 -12
  46. package/src/web/components/settings/settings-tab.tsx +135 -94
  47. package/src/web/components/settings/telegram-settings-section.tsx +113 -0
  48. package/src/web/components/ui/accordion.tsx +64 -0
  49. package/src/web/components/ui/browse-button.tsx +42 -0
  50. package/src/web/components/ui/file-browser-picker.tsx +374 -0
  51. package/src/web/hooks/use-chat.ts +29 -0
  52. package/src/web/hooks/use-notification-badge.ts +20 -0
  53. package/src/web/hooks/use-tab-overflow.ts +91 -0
  54. package/src/web/hooks/use-url-sync.ts +5 -2
  55. package/src/web/index.html +1 -0
  56. package/src/web/lib/favicon.ts +21 -0
  57. package/src/web/lib/notification-sounds.ts +61 -0
  58. package/src/web/stores/notification-store.ts +83 -0
  59. package/src/web/stores/project-store.ts +0 -14
  60. package/dist/web/assets/chat-tab-dwpaSkQD.js +0 -7
  61. package/dist/web/assets/git-graph-Dju1rygf.js +0 -1
  62. package/dist/web/assets/index-DSg2VjxL.css +0 -2
  63. package/dist/web/assets/index-DXOEmhRm.js +0 -21
  64. package/dist/web/assets/keybindings-store-VhiJwp77.js +0 -1
  65. package/dist/web/assets/postgres-viewer-DaNYnInA.js +0 -1
  66. package/dist/web/assets/terminal-tab-_farMLMO.js +0 -36
  67. /package/dist/web/assets/{tab-store-DIyJSjtr.js → tab-store-Bm1Hw8OR.js} +0 -0
@@ -0,0 +1,91 @@
1
+ import { useState, useEffect, useCallback, type RefObject } from "react";
2
+
3
+ interface TabOverflow {
4
+ canScrollLeft: boolean;
5
+ canScrollRight: boolean;
6
+ scrollLeft: () => void;
7
+ scrollRight: () => void;
8
+ }
9
+
10
+ /**
11
+ * Detects overflow on a scrollable tab container and provides scroll helpers.
12
+ * Uses scroll events + ResizeObserver for accurate, performant updates.
13
+ */
14
+ export function useTabOverflow(scrollRef: RefObject<HTMLDivElement | null>): TabOverflow {
15
+ const [canScrollLeft, setCanScrollLeft] = useState(false);
16
+ const [canScrollRight, setCanScrollRight] = useState(false);
17
+
18
+ const updateScroll = useCallback(() => {
19
+ const el = scrollRef.current;
20
+ if (!el) return;
21
+ setCanScrollLeft(el.scrollLeft > 1);
22
+ setCanScrollRight(el.scrollLeft + el.clientWidth < el.scrollWidth - 1);
23
+ }, [scrollRef]);
24
+
25
+ useEffect(() => {
26
+ const el = scrollRef.current;
27
+ if (!el) return;
28
+ updateScroll();
29
+ el.addEventListener("scroll", updateScroll, { passive: true });
30
+ const ro = new ResizeObserver(updateScroll);
31
+ ro.observe(el);
32
+ // Also observe children changes (tabs added/removed)
33
+ const mo = new MutationObserver(updateScroll);
34
+ mo.observe(el, { childList: true, subtree: true });
35
+ return () => {
36
+ el.removeEventListener("scroll", updateScroll);
37
+ ro.disconnect();
38
+ mo.disconnect();
39
+ };
40
+ }, [scrollRef, updateScroll]);
41
+
42
+ const scrollLeft = useCallback(() => {
43
+ scrollRef.current?.scrollBy({ left: -150, behavior: "smooth" });
44
+ }, [scrollRef]);
45
+
46
+ const scrollRight = useCallback(() => {
47
+ scrollRef.current?.scrollBy({ left: 150, behavior: "smooth" });
48
+ }, [scrollRef]);
49
+
50
+ return { canScrollLeft, canScrollRight, scrollLeft, scrollRight };
51
+ }
52
+
53
+ /** Priority for picking most urgent type */
54
+ const TYPE_PRIORITY: Record<string, number> = { done: 0, question: 1, approval_request: 2 };
55
+
56
+ /**
57
+ * Check if any hidden (off-screen) tab has unread notifications.
58
+ * Returns the most urgent notification type per direction (null = none).
59
+ */
60
+ export function getHiddenUnreadDirection(
61
+ scrollEl: HTMLDivElement | null,
62
+ tabRefs: Map<string, HTMLElement>,
63
+ tabs: { id: string; type: string; metadata?: Record<string, unknown> }[],
64
+ notifications: Map<string, { count: number; type: string }>,
65
+ ): { left: string | null; right: string | null } {
66
+ if (!scrollEl) return { left: null, right: null };
67
+ const viewLeft = scrollEl.scrollLeft;
68
+ const viewRight = viewLeft + scrollEl.clientWidth;
69
+ let leftType: string | null = null;
70
+ let leftPri = -1;
71
+ let rightType: string | null = null;
72
+ let rightPri = -1;
73
+
74
+ for (const tab of tabs) {
75
+ if (tab.type !== "chat") continue;
76
+ const sessionId = tab.metadata?.sessionId as string;
77
+ const entry = sessionId ? notifications.get(sessionId) : undefined;
78
+ if (!entry || entry.count === 0) continue;
79
+ const tabEl = tabRefs.get(tab.id);
80
+ if (!tabEl) continue;
81
+ const pri = TYPE_PRIORITY[entry.type] ?? 0;
82
+ if (tabEl.offsetLeft + tabEl.offsetWidth < viewLeft && pri > leftPri) {
83
+ leftPri = pri; leftType = entry.type;
84
+ }
85
+ if (tabEl.offsetLeft > viewRight && pri > rightPri) {
86
+ rightPri = pri; rightType = entry.type;
87
+ }
88
+ }
89
+
90
+ return { left: leftType, right: rightType };
91
+ }
@@ -5,13 +5,16 @@ import { useTabStore } from "@/stores/tab-store";
5
5
  * Parse the current URL to extract project name and tab ID.
6
6
  * Expected format: /project/:projectName/tab/:tabId
7
7
  */
8
- export function parseUrlState(): { projectName: string | null; tabId: string | null } {
8
+ export function parseUrlState(): { projectName: string | null; tabId: string | null; openChat: string | null } {
9
9
  const path = window.location.pathname;
10
10
  const match = path.match(/^\/project\/([^/]+)(?:\/tab\/([^/]+))?/);
11
- if (!match) return { projectName: null, tabId: null };
11
+ const params = new URLSearchParams(window.location.search);
12
+ const openChat = params.get("openChat");
13
+ if (!match) return { projectName: null, tabId: null, openChat };
12
14
  return {
13
15
  projectName: match[1] ? decodeURIComponent(match[1]) : null,
14
16
  tabId: match[2] ? decodeURIComponent(match[2]) : null,
17
+ openChat,
15
18
  };
16
19
  }
17
20
 
@@ -5,6 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6
6
  <meta name="theme-color" content="#0f1419" />
7
7
  <title>PPM — Personal Project Manager</title>
8
+ <link rel="icon" id="ppm-favicon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%0A%20%20%3Crect%20width%3D%2232%22%20height%3D%2232%22%20rx%3D%226%22%20fill%3D%22%233b82f6%22%2F%3E%0A%20%20%3Ctext%20x%3D%2216%22%20y%3D%2222%22%20text-anchor%3D%22middle%22%20font-family%3D%22system-ui%2Csans-serif%22%20font-weight%3D%22700%22%20font-size%3D%2211%22%20fill%3D%22white%22%3EPPM%3C%2Ftext%3E%0A%3C%2Fsvg%3E" />
8
9
  <link rel="preconnect" href="https://fonts.googleapis.com" />
9
10
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
10
11
  <link href="https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600;700&family=Geist:wght@400;500;600;700&display=swap" rel="stylesheet" />
@@ -0,0 +1,21 @@
1
+ // SVG favicon with blue rounded rect + white "PPM" text
2
+ const FAVICON_SVG_NORMAL = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
3
+ <rect width="32" height="32" rx="6" fill="#3b82f6"/>
4
+ <text x="16" y="22" text-anchor="middle" font-family="system-ui,sans-serif" font-weight="700" font-size="11" fill="white">PPM</text>
5
+ </svg>`;
6
+
7
+ // Same + red notification dot (top-right)
8
+ const FAVICON_SVG_BADGE = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
9
+ <rect width="32" height="32" rx="6" fill="#3b82f6"/>
10
+ <text x="16" y="22" text-anchor="middle" font-family="system-ui,sans-serif" font-weight="700" font-size="11" fill="white">PPM</text>
11
+ <circle cx="26" cy="6" r="5" fill="#ef4444"/>
12
+ </svg>`;
13
+
14
+ export const FAVICON_NORMAL = `data:image/svg+xml,${encodeURIComponent(FAVICON_SVG_NORMAL)}`;
15
+ export const FAVICON_BADGE = `data:image/svg+xml,${encodeURIComponent(FAVICON_SVG_BADGE)}`;
16
+
17
+ /** Swap favicon between normal and badge (red dot) variant */
18
+ export function setFavicon(hasBadge: boolean): void {
19
+ const el = document.getElementById("ppm-favicon") as HTMLLinkElement | null;
20
+ if (el) el.href = hasBadge ? FAVICON_BADGE : FAVICON_NORMAL;
21
+ }
@@ -0,0 +1,61 @@
1
+ let audioCtx: AudioContext | null = null;
2
+
3
+ function getAudioContext(): AudioContext {
4
+ if (!audioCtx) audioCtx = new AudioContext();
5
+ return audioCtx;
6
+ }
7
+
8
+ function playTone(freq: number, duration: number, startTime: number, gain: number, type: OscillatorType = "sine") {
9
+ const ctx = getAudioContext();
10
+ const osc = ctx.createOscillator();
11
+ const vol = ctx.createGain();
12
+ osc.type = type;
13
+ osc.frequency.value = freq;
14
+ vol.gain.setValueAtTime(gain, startTime);
15
+ vol.gain.exponentialRampToValueAtTime(0.001, startTime + duration);
16
+ osc.connect(vol);
17
+ vol.connect(ctx.destination);
18
+ osc.start(startTime);
19
+ osc.stop(startTime + duration);
20
+ }
21
+
22
+ /** Chat completed — pleasant double chime ascending */
23
+ function playDone() {
24
+ const ctx = getAudioContext();
25
+ const t = ctx.currentTime;
26
+ playTone(523, 0.15, t, 0.15); // C5
27
+ playTone(659, 0.2, t + 0.12, 0.15); // E5
28
+ }
29
+
30
+ /** Approval request — urgent two-tone alert */
31
+ function playApproval() {
32
+ const ctx = getAudioContext();
33
+ const t = ctx.currentTime;
34
+ playTone(880, 0.12, t, 0.18, "square"); // A5
35
+ playTone(698, 0.12, t + 0.15, 0.18, "square"); // F5
36
+ playTone(880, 0.15, t + 0.3, 0.15, "square"); // A5
37
+ }
38
+
39
+ /** Question — soft ascending triplet */
40
+ function playQuestion() {
41
+ const ctx = getAudioContext();
42
+ const t = ctx.currentTime;
43
+ playTone(440, 0.12, t, 0.12); // A4
44
+ playTone(523, 0.12, t + 0.1, 0.12); // C5
45
+ playTone(659, 0.18, t + 0.2, 0.12); // E5
46
+ }
47
+
48
+ const SOUND_MAP: Record<string, () => void> = {
49
+ done: playDone,
50
+ approval_request: playApproval,
51
+ question: playQuestion,
52
+ };
53
+
54
+ /** Play notification sound by type. No-op if type unknown or AudioContext unavailable. */
55
+ export function playNotificationSound(type: string): void {
56
+ try {
57
+ SOUND_MAP[type]?.();
58
+ } catch {
59
+ // AudioContext may be blocked if no user gesture yet — silently ignore
60
+ }
61
+ }
@@ -0,0 +1,83 @@
1
+ import { create } from "zustand";
2
+
3
+ interface NotificationEntry {
4
+ count: number;
5
+ /** Last notification type: done, approval_request, question */
6
+ type: string;
7
+ projectName: string;
8
+ }
9
+
10
+ /** Badge color per notification type (Tailwind bg class) */
11
+ const TYPE_COLORS: Record<string, string> = {
12
+ approval_request: "bg-red-500",
13
+ question: "bg-amber-500",
14
+ done: "bg-blue-500",
15
+ };
16
+
17
+ /** Priority: higher = more urgent (used to pick "worst" badge color) */
18
+ const TYPE_PRIORITY: Record<string, number> = {
19
+ done: 0,
20
+ question: 1,
21
+ approval_request: 2,
22
+ };
23
+
24
+ /** Get badge color class for a notification type */
25
+ export function notificationColor(type: string | null | undefined): string {
26
+ return (type && TYPE_COLORS[type]) || "bg-red-500";
27
+ }
28
+
29
+ interface NotificationStore {
30
+ notifications: Map<string, NotificationEntry>;
31
+ addNotification: (sessionId: string, type: string, projectName: string) => void;
32
+ clearForSession: (sessionId: string) => void;
33
+ clearAll: () => void;
34
+ }
35
+
36
+ export const useNotificationStore = create<NotificationStore>()((set) => ({
37
+ notifications: new Map(),
38
+
39
+ addNotification: (sessionId, type, projectName) => {
40
+ set((state) => {
41
+ const next = new Map(state.notifications);
42
+ const existing = next.get(sessionId);
43
+ next.set(sessionId, {
44
+ count: (existing?.count ?? 0) + 1,
45
+ type,
46
+ projectName,
47
+ });
48
+ return { notifications: next };
49
+ });
50
+ },
51
+
52
+ clearForSession: (sessionId) => {
53
+ set((state) => {
54
+ if (!state.notifications.has(sessionId)) return state;
55
+ const next = new Map(state.notifications);
56
+ next.delete(sessionId);
57
+ return { notifications: next };
58
+ });
59
+ },
60
+
61
+ clearAll: () => set({ notifications: new Map() }),
62
+ }));
63
+
64
+ /** Derived: total unread count across all sessions */
65
+ export function selectTotalUnread(state: { notifications: Map<string, NotificationEntry> }): number {
66
+ let total = 0;
67
+ for (const [, entry] of state.notifications) total += entry.count;
68
+ return total;
69
+ }
70
+
71
+ /** Derived: most urgent notification type for a project (null = no unread) */
72
+ export function selectProjectUrgentType(projectName: string) {
73
+ return (state: { notifications: Map<string, NotificationEntry> }): string | null => {
74
+ let best: string | null = null;
75
+ let bestPri = -1;
76
+ for (const [, entry] of state.notifications) {
77
+ if (entry.projectName !== projectName) continue;
78
+ const pri = TYPE_PRIORITY[entry.type] ?? 0;
79
+ if (pri > bestPri) { bestPri = pri; best = entry.type; }
80
+ }
81
+ return best;
82
+ };
83
+ }
@@ -1,6 +1,5 @@
1
1
  import { create } from "zustand";
2
2
  import { api } from "@/lib/api-client";
3
- import { parseUrlState } from "@/hooks/use-url-sync";
4
3
 
5
4
  export interface Project {
6
5
  name: string;
@@ -109,19 +108,6 @@ export const useProjectStore = create<ProjectStore>((set, get) => ({
109
108
  try {
110
109
  const projects = await api.get<ProjectInfo[]>("/api/projects");
111
110
  set({ projects, loading: false });
112
- // Auto-select: restore from URL first, then fall back to first project
113
- set((s) => {
114
- if (!s.activeProject && projects.length > 0) {
115
- const { projectName: urlProject } = parseUrlState();
116
- if (urlProject) {
117
- const match = projects.find((p) => p.name === urlProject);
118
- if (match) return { activeProject: match };
119
- }
120
- const sorted = resolveOrder(projects, s.customOrder);
121
- return { activeProject: sorted[0] };
122
- }
123
- return {};
124
- });
125
111
  } catch (err) {
126
112
  set({
127
113
  error: err instanceof Error ? err.message : "Failed to fetch projects",
@@ -1,7 +0,0 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/api-client-4Ni0i4Hl.js","assets/react-CYzKIDNi.js"])))=>i.map(i=>d[i]);
2
- import{i as e,t}from"./react-CYzKIDNi.js";import{A as n}from"./input-nI4xe1Y9.js";import{n as r,t as i}from"./jsx-runtime-wQxeESYQ.js";import{a,t as o}from"./tab-store-DIyJSjtr.js";import{n as s}from"./settings-store-CfB0vCtQ.js";import{r as c,t as l}from"./utils-siJJ3uG0.js";import{i as u,r as d,t as f}from"./api-client-4Ni0i4Hl.js";import{B as p,D as m,E as h,H as g,M as _,N as v,O as y,P as b,R as x,S,T as C,V as w,g as T,k as E,r as D,t as O,w as k,z as A}from"./index-DXOEmhRm.js";import{t as j}from"./markdown-renderer-Bke6DHFh.js";var M=r(`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`}]]),N=r(`arrow-up`,[[`path`,{d:`m5 12 7-7 7 7`,key:`hav0vg`}],[`path`,{d:`M12 19V5`,key:`x0mq9r`}]]),P=r(`bot`,[[`path`,{d:`M12 8V4H8`,key:`hb8ula`}],[`rect`,{width:`16`,height:`12`,x:`4`,y:`8`,rx:`2`,key:`enze0r`}],[`path`,{d:`M2 14h2`,key:`vft8re`}],[`path`,{d:`M20 14h2`,key:`4cs60a`}],[`path`,{d:`M15 13v2`,key:`1xurst`}],[`path`,{d:`M9 13v2`,key:`rq6x2g`}]]),F=r(`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`}]]),I=r(`code`,[[`path`,{d:`m16 18 6-6-6-6`,key:`eg8j8`}],[`path`,{d:`m8 6-6 6 6 6`,key:`ppft3o`}]]),L=r(`columns-2`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M12 3v18`,key:`108xh3`}]]),R=r(`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`}]]),ee=r(`history`,[[`path`,{d:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`,key:`1357e3`}],[`path`,{d:`M3 3v5h5`,key:`1xhq8a`}],[`path`,{d:`M12 7v5l4 2`,key:`1fdv2h`}]]),z=r(`image`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,ry:`2`,key:`1m3agn`}],[`circle`,{cx:`9`,cy:`9`,r:`2`,key:`af1f0g`}],[`path`,{d:`m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21`,key:`1xmnt7`}]]),B=r(`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`}]]),V=r(`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`}]]),te=r(`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`}]]),ne=r(`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`}]]),re=r(`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`}]]),H=r(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),U=r(`upload`,[[`path`,{d:`M12 3v12`,key:`1x0j5s`}],[`path`,{d:`m17 8-5-5-5 5`,key:`7q97r8`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}]]),W=e(t(),1),ie=3e4,ae=1e3,G=class{ws=null;url;handlers=[];reconnectAttempts=0;reconnectTimer=null;intentionalClose=!1;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{}},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.cleanup(),this.reconnectTimer&&=(clearTimeout(this.reconnectTimer),null)}send(e){this.ws?.readyState===WebSocket.OPEN&&this.ws.send(e)}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(ae*2**this.reconnectAttempts,ie);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}};function oe({url:e,onMessage:t,autoConnect:n=!0}){let r=(0,W.useRef)(null);return(0,W.useEffect)(()=>{let i=new G(e);return r.current=i,t&&i.onMessage(t),n&&i.connect(),()=>{i.disconnect(),r.current=null}},[e,n]),{send:(0,W.useCallback)(e=>{r.current?.send(e)},[]),connect:(0,W.useCallback)(()=>{r.current?.connect()},[]),disconnect:(0,W.useCallback)(()=>{r.current?.disconnect()},[])}}function se(e,t=`claude`,n=``){let[r,i]=(0,W.useState)([]),[a,o]=(0,W.useState)(!1),[s,c]=(0,W.useState)(!1),[l,f]=(0,W.useState)(`idle`),[p,m]=(0,W.useState)(0),[h,g]=(0,W.useState)(15),[_,v]=(0,W.useState)(null),[y,b]=(0,W.useState)(null),[x,S]=(0,W.useState)(null),[C,w]=(0,W.useState)(!1),T=(0,W.useRef)(``),E=(0,W.useRef)([]),D=(0,W.useRef)(!1),O=(0,W.useRef)(null),k=(0,W.useRef)(()=>{}),A=(0,W.useRef)(null),j=(0,W.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(f(e),m(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),g(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&&(D.current=!0,c(!0)),e.pendingApproval&&v({requestId:e.pendingApproval.requestId,tool:e.pendingApproval.tool,input:e.pendingApproval.input}),A.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];i(n=>{let r=n[n.length-1];return r?.role===`assistant`&&!r.id.startsWith(`final-`)?[...n.slice(0,-1),{...r,content:e,events:t}]:[...n,{id:`streaming-${Date.now()}`,role:`assistant`,content:e,events:t,timestamp:new Date().toISOString()}]})};switch(t.type){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`:E.current.push(t),v({requestId:t.requestId,tool:t.tool,input:t.input});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()}]}),D.current=!1,c(!1),f(`idle`);break}case`done`:{if(!D.current)break;t.contextWindowPct!=null&&b(t.contextWindowPct);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=!1,c(!1),f(`idle`);break}}},[]),{send:M,connect:N}=oe({url:e&&n?`/ws/project/${encodeURIComponent(n)}/chat/${e}`:``,onMessage:j,autoConnect:!!e&&!!n});k.current=M,(0,W.useEffect)(()=>{let r=!1;return c(!1),v(null),T.current=``,E.current=[],w(!1),e&&n?(o(!0),fetch(`${u(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${d()}`}}).then(e=>e.json()).then(e=>{r||D.current||(e.ok&&Array.isArray(e.data)&&e.data.length>0?i(e.data):i([]))}).catch(()=>{!r&&!D.current&&i([])}).finally(()=>{r||o(!1)})):i([]),()=>{r=!0}},[e,t,n]);let P=(0,W.useCallback)(e=>{if(e.trim()){if(D.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}),M(JSON.stringify({type:`cancel`}))}i(t=>[...t,{id:`user-${Date.now()}`,role:`user`,content:e,timestamp:new Date().toISOString()}]),T.current=``,E.current=[],O.current=null,D.current=!0,c(!0),f(`connecting`),v(null),M(JSON.stringify({type:`message`,content:e}))}},[M]),F=(0,W.useCallback)((e,t,n)=>{if(M(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])}v(null)},[M]),I=(0,W.useCallback)(()=>{if(!D.current)return;M(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=[],O.current=null,D.current=!1,c(!1),v(null)},[M]),L=(0,W.useCallback)(()=>{w(!1),N(),A.current?.()},[N]),R=(0,W.useCallback)(()=>{!e||!n||(o(!0),fetch(`${u(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${d()}`}}).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 A.current=R,{messages:r,messagesLoading:a,isStreaming:s,streamingStatus:l,connectingElapsed:p,thinkingWarningThreshold:h,pendingApproval:_,contextWindowPct:y,sessionTitle:x,sendMessage:P,respondToApproval:F,cancelStreaming:I,reconnect:L,refetchMessages:R,isConnected:C}}var ce=3e4;function le(e,t=`claude`){let[n,r]=(0,W.useState)({}),[i,a]=(0,W.useState)(!1),[o,s]=(0,W.useState)(null),c=(0,W.useRef)(null),l=(0,W.useCallback)((n=!1)=>{if(!e)return;a(!0);let i=n?`&refresh=1`:``;fetch(`${u(e)}/chat/usage?providerId=${t}${i}`,{headers:{Authorization:`Bearer ${d()}`}}).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,W.useEffect)(()=>(l(),c.current=setInterval(()=>l(),ce),()=>{c.current&&clearInterval(c.current)}),[l]),{usageInfo:n,usageLoading:i,lastFetchedAt:o,refreshUsage:(0,W.useCallback)(()=>l(!0),[l])}}var ue={damping:.7,stiffness:.05,mass:1.25},de=70,K=1e3/60,q=350,J=!1;globalThis.document?.addEventListener(`mousedown`,()=>{J=!0}),globalThis.document?.addEventListener(`mouseup`,()=>{J=!1}),globalThis.document?.addEventListener(`click`,()=>{J=!1});var fe=(e={})=>{let[t,n]=(0,W.useState)(!1),[r,i]=(0,W.useState)(e.initial!==!1),[a,o]=(0,W.useState)(!1),s=(0,W.useRef)(null);s.current=e;let c=(0,W.useCallback)(()=>{if(!J)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,W.useCallback)(e=>{d.isAtBottom=e,i(e)},[]),u=(0,W.useCallback)(e=>{d.escapedFromLock=e,n(e)},[]),d=(0,W.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<=de}}},[]),f=(0,W.useCallback)((e={})=>{typeof e==`string`&&(e={animation:e}),e.preserveScrollPosition||l(!0);let t=Date.now()+(Number(e.wait)||0),n=pe(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))/K;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:pe(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,W.useCallback)(()=>{u(!0),l(!1)},[u,l]),m=(0,W.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,W.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=Y(e=>{g.current?.removeEventListener(`scroll`,m),g.current?.removeEventListener(`wheel`,h),e?.addEventListener(`scroll`,m,{passive:!0}),e?.addEventListener(`wheel`,h,{passive:!0})},[]),_=Y(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=pe(s.current,t?s.current.resize:s.current.initial);f({animation:e,wait:!0,preserveScrollPosition:!0,duration:e===`instant`?void 0:q})}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 Y(e,t){let n=(0,W.useCallback)(t=>(n.current=t,e(t)),t);return n}var X=new Map;function pe(...e){let t={...ue},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 X.has(r)||X.set(r,Object.freeze(t)),n?`instant`:X.get(r)}var me=(0,W.createContext)(null),he=typeof window<`u`?W.useLayoutEffect:W.useEffect;function Z({instance:e,children:t,resize:n,initial:r,mass:i,damping:a,stiffness:o,targetScrollTop:s,contextRef:c,...l}){let u=(0,W.useRef)(null),d=fe({mass:i,damping:a,stiffness:o,resize:n,initial:r,targetScrollTop:W.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,W.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,W.useImperativeHandle)(c,()=>y,[y]),he(()=>{f.current&&getComputedStyle(f.current).overflow===`visible`&&(f.current.style.overflow=`auto`)},[]),W.createElement(me.Provider,{value:y},W.createElement(`div`,{...l},typeof t==`function`?t(y):t))}(function(e){function t({children:e,scrollClassName:t,...n}){let r=ge();return W.createElement(`div`,{ref:r.scrollRef,style:{height:`100%`,width:`100%`,scrollbarGutter:`stable both-edges`},className:t},W.createElement(`div`,{...n,ref:r.contentRef},typeof e==`function`?e(r):e))}e.Content=t})(Z||={});function ge(){let e=(0,W.useContext)(me);if(!e)throw Error(`use-stick-to-bottom component context must be used within a StickToBottom component`);return e}var Q=i();function _e(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 ve({tool:e,result:t,completed:n,projectName:r}){let[i,a]=(0,W.useState)(!1);if(e.type===`error`)return(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 rounded bg-red-500/10 border border-red-500/20 px-2 py-1.5 text-xs text-red-400`,children:[(0,Q.jsx)(A,{className:`size-3`}),(0,Q.jsx)(`span`,{children:e.message})]});let{toolName:o,input:s}=_e(e),c=t?.type===`tool_result`,l=c&&!!t.isError,u=o===`AskUserQuestion`&&!!s?.answers,d=(o===`Agent`||o===`Task`)&&e.type===`tool_use`,f=d?e.children:void 0,m=f&&f.length>0;return(0,Q.jsxs)(`div`,{className:`rounded border text-xs ${d?`border-accent/30 bg-accent/5`:`border-border bg-background`}`,children:[(0,Q.jsxs)(`button`,{onClick:()=>a(!i),className:`flex items-center gap-2 px-2 py-1.5 w-full text-left hover:bg-surface transition-colors min-w-0`,children:[i?(0,Q.jsx)(w,{className:`size-3 shrink-0`}):(0,Q.jsx)(p,{className:`size-3 shrink-0`}),l?(0,Q.jsx)(F,{className:`size-3 text-red-400 shrink-0`}):c||u||n?(0,Q.jsx)(x,{className:`size-3 text-green-400 shrink-0`}):(0,Q.jsx)(E,{className:`size-3 text-yellow-400 shrink-0 animate-spin`}),(0,Q.jsx)(`span`,{className:`truncate text-text-primary`,children:(0,Q.jsx)(ye,{name:o,input:s})}),m&&(0,Q.jsxs)(`span`,{className:`ml-auto text-[10px] text-text-subtle shrink-0`,children:[f.length,` steps`]})]}),i&&(0,Q.jsxs)(`div`,{className:`px-2 pb-2 space-y-1.5`,children:[(e.type===`tool_use`||e.type===`approval_request`)&&(0,Q.jsx)(be,{name:o,input:s,projectName:r}),m&&(0,Q.jsx)(we,{events:f,projectName:r}),c&&(0,Q.jsx)(Se,{toolName:o,output:t.output})]})]})}function ye({name:e,input:t}){let n=e=>String(e??``);switch(e){case`Read`:case`Write`:case`Edit`:case`MultiEdit`:case`NotebookEdit`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:l(n(t.file_path))})]});case`Bash`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:$(n(t.command),60)})]});case`Glob`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:n(t.pattern)})]});case`Grep`:return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsx)(`span`,{className:`font-mono text-text-subtle`,children:$(n(t.pattern),40)})]});case`WebSearch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(C,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.query),50)})]});case`WebFetch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(R,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.url),50)})]});case`ToolSearch`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(C,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.query),50)})]});case`Agent`:case`Task`:return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(P,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:$(n(t.description||t.prompt),60)})]});case`TodoWrite`:{let n=Array.isArray(t.todos)?t.todos:[],r=n.filter(e=>e.status===`completed`).length;return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(B,{className:`size-3 inline`}),` `,e,` `,(0,Q.jsxs)(`span`,{className:`text-text-subtle`,children:[r,`/`,n.length,` done`]})]})}case`AskUserQuestion`:{let n=Array.isArray(t.questions)?t.questions:[],r=!!t.answers;return(0,Q.jsxs)(Q.Fragment,{children:[e,` `,(0,Q.jsxs)(`span`,{className:`text-text-subtle`,children:[n.length,` question`,n.length===1?``:`s`,r?` ✓`:``]})]})}default:return(0,Q.jsx)(Q.Fragment,{children:e})}}function be({name:e,input:t,projectName:n}){let r=e=>String(e??``),{openTab:i}=o(),s=e=>{n&&i({type:`editor`,title:l(e),metadata:{filePath:e,projectName:n},projectId:n,closable:!0})},c=(e,t,r)=>{i({type:`git-diff`,title:`Diff ${l(e)}`,metadata:{filePath:e,projectName:n,original:t,modified:r},projectId:n??null,closable:!0})};switch(e){case`Bash`:return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,Q.jsx)(`p`,{className:`text-text-subtle italic`,children:r(t.description)}),(0,Q.jsx)(`pre`,{className:`font-mono text-text-secondary overflow-x-auto whitespace-pre-wrap break-all`,children:r(t.command)})]});case`Read`:case`Write`:case`Edit`:case`MultiEdit`:case`NotebookEdit`:{let n=r(t.file_path);return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[(0,Q.jsxs)(`button`,{type:`button`,className:`font-mono text-text-secondary break-all hover:text-primary hover:underline text-left flex items-center gap-1`,onClick:()=>s(n),title:`Open file in editor`,children:[(0,Q.jsx)(a,{className:`size-3 shrink-0`}),n]}),e===`Edit`&&(!!t.old_string||!!t.new_string)&&(0,Q.jsxs)(`button`,{type:`button`,className:`text-text-subtle hover:text-primary hover:underline text-left flex items-center gap-1`,onClick:()=>c(n,r(t.old_string),r(t.new_string)),title:`View diff in new tab`,children:[(0,Q.jsx)(L,{className:`size-3 shrink-0`}),`View Diff`]}),e===`Write`&&!!t.content&&(0,Q.jsx)(`pre`,{className:`font-mono text-text-subtle overflow-x-auto max-h-32 whitespace-pre-wrap`,children:$(r(t.content),300)})]})}case`Glob`:return(0,Q.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[r(t.pattern),t.path?` in ${r(t.path)}`:``]});case`Grep`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`p`,{className:`font-mono text-text-secondary`,children:[`/`,r(t.pattern),`/`]}),!!t.path&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`in `,r(t.path)]})]});case`TodoWrite`:return(0,Q.jsx)(xe,{todos:t.todos??[]});case`Agent`:case`Task`:return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[!!t.description&&(0,Q.jsx)(`p`,{className:`text-text-secondary font-medium`,children:r(t.description)}),!!t.subagent_type&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`Type: `,r(t.subagent_type)]}),!!t.prompt&&(0,Q.jsx)(Te,{content:r(t.prompt),maxHeight:`max-h-48`})]});case`ToolSearch`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsx)(`p`,{className:`font-mono text-text-secondary`,children:r(t.query)}),!!t.max_results&&(0,Q.jsxs)(`p`,{className:`text-text-subtle`,children:[`Max results: `,r(t.max_results)]})]});case`WebFetch`:return(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`a`,{href:r(t.url),target:`_blank`,rel:`noopener noreferrer`,className:`font-mono text-primary hover:underline break-all flex items-center gap-1`,children:[(0,Q.jsx)(R,{className:`size-3 shrink-0`}),r(t.url)]}),!!t.prompt&&(0,Q.jsx)(`p`,{className:`text-text-subtle`,children:$(r(t.prompt),100)})]});case`AskUserQuestion`:{let e=t.questions??[],n=t.answers??{};return(0,Q.jsx)(`div`,{className:`space-y-2`,children:e.map((e,t)=>(0,Q.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,Q.jsxs)(`p`,{className:`text-text-primary font-medium`,children:[e.header?`${e.header}: `:``,e.question]}),(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1`,children:e.options.map((t,r)=>(0,Q.jsx)(`span`,{className:`inline-block rounded px-1.5 py-0.5 text-xs border ${(n[e.question]??``).split(`, `).includes(t.label)?`border-accent bg-accent/20 text-text-primary`:`border-border text-text-subtle`}`,children:t.label},r))}),n[e.question]&&(0,Q.jsxs)(`p`,{className:`text-accent text-xs`,children:[`Answer: `,n[e.question]]})]},t))})}default:return(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-secondary font-mono whitespace-pre-wrap break-all`,children:JSON.stringify(t,null,2)})}}function xe({todos:e}){return(0,Q.jsx)(`div`,{className:`space-y-0.5`,children:e.map((e,t)=>(0,Q.jsxs)(`div`,{className:`flex items-start gap-1.5`,children:[(0,Q.jsx)(`span`,{className:`shrink-0 mt-0.5 ${e.status===`completed`?`text-green-400`:e.status===`in_progress`?`text-yellow-400`:`text-text-subtle`}`,children:e.status===`completed`?`✓`:e.status===`in_progress`?`▶`:`○`}),(0,Q.jsx)(`span`,{className:e.status===`completed`?`line-through text-text-subtle`:`text-text-secondary`,children:e.content})]},t))})}function Se({toolName:e,output:t}){let[n,r]=(0,W.useState)(!1),i=(0,W.useMemo)(()=>{if(e!==`Agent`&&e!==`Task`)return null;try{let e=JSON.parse(t);if(Array.isArray(e)){let t=e.filter(e=>e.type===`text`&&e.text).map(e=>e.text).join(`
3
-
4
- `);if(t)return t}if(typeof e==`string`)return e}catch{if(t&&!t.startsWith(`[{`))return t}return null},[e,t]);return i?(0,Q.jsxs)(`div`,{className:`border-t border-border pt-1.5 space-y-1`,children:[(0,Q.jsx)(Te,{content:i,maxHeight:`max-h-60`}),(0,Q.jsxs)(`button`,{type:`button`,onClick:()=>r(!n),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors`,children:[(0,Q.jsx)(I,{className:`size-3`}),n?`Hide`:`Show`,` raw`]}),n&&(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono max-h-40 whitespace-pre-wrap break-all text-[10px]`,children:t})]}):(0,Q.jsx)(Ce,{output:t})}function Ce({output:e}){let t=e.split(`
5
- `).length,n=t>3||e.length>200,[r,i]=(0,W.useState)(n);return(0,Q.jsxs)(`div`,{className:`border-t border-border pt-1.5`,children:[n&&(0,Q.jsxs)(`button`,{type:`button`,onClick:()=>i(!r),className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors mb-1`,children:[r?(0,Q.jsx)(p,{className:`size-3`}):(0,Q.jsx)(w,{className:`size-3`}),`Output (`,t,` lines)`]}),(0,Q.jsx)(`pre`,{className:`overflow-x-auto text-text-subtle font-mono whitespace-pre-wrap break-all ${r?`max-h-16 overflow-hidden`:`max-h-60`}`,children:e})]})}function we({events:e,projectName:t}){let n=[],r=``;for(let t of e)if(t.type===`text`)r+=t.content;else if(t.type===`tool_use`)r&&=(n.push({kind:`text`,content:r}),``),n.push({kind:`tool`,tool:t});else if(t.type===`tool_result`){let e=t.toolUseId,r=e?n.find(t=>t.kind===`tool`&&t.tool.type===`tool_use`&&t.tool.toolUseId===e&&!t.result):n.findLast(e=>e.kind===`tool`&&!e.result);r&&(r.result=t)}return r&&n.push({kind:`text`,content:r}),(0,Q.jsx)(`div`,{className:`border-l-2 border-accent/20 pl-2 space-y-1 mt-1`,children:n.map((e,n)=>e.kind===`text`?(0,Q.jsx)(`div`,{className:`text-text-secondary text-[11px]`,children:(0,Q.jsx)(Te,{content:e.content,maxHeight:`max-h-24`})},`st-${n}`):(0,Q.jsx)(ve,{tool:e.tool,result:e.result,completed:!!e.result,projectName:t},`sc-${n}`))})}function Te({content:e,maxHeight:t=`max-h-48`}){return(0,Q.jsx)(j,{content:e,className:`text-text-secondary overflow-auto ${t}`})}function $(e,t=50){return e?e.length>t?e.slice(0,t)+`…`:e:``}function Ee({messages:e,messagesLoading:t,pendingApproval:n,onApprovalResponse:r,isStreaming:i,streamingStatus:a,connectingElapsed:o,thinkingWarningThreshold:s,projectName:c,onFork:l}){return t?(0,Q.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,Q.jsx)(P,{className:`size-10 text-text-subtle animate-pulse`}),(0,Q.jsx)(`p`,{className:`text-sm`,children:`Loading messages...`})]}):e.length===0&&!i?(0,Q.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-3 text-text-secondary`,children:[(0,Q.jsx)(P,{className:`size-10 text-text-subtle`}),(0,Q.jsx)(`p`,{className:`text-sm`,children:`Send a message to start the conversation`})]}):(0,Q.jsxs)(Z,{className:`flex-1 overflow-y-auto`,resize:`smooth`,initial:`instant`,children:[(0,Q.jsxs)(Z.Content,{className:`p-4 space-y-4`,children:[e.filter(e=>{let t=e.content&&e.content.trim().length>0,n=e.events&&e.events.length>0;return t||n}).map(e=>(0,Q.jsx)(Oe,{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,Q.jsx)(Ue,{approval:n,onRespond:r}):(0,Q.jsx)(He,{approval:n,onRespond:r})),i&&(0,Q.jsx)(Be,{lastMessage:e[e.length-1],streamingStatus:a,elapsed:o,warningThreshold:s})]}),(0,Q.jsx)(De,{})]})}function De(){let{isAtBottom:e,scrollToBottom:t}=ge();return e?null:(0,Q.jsxs)(`button`,{onClick:()=>t(),className:`absolute bottom-2 left-1/2 -translate-x-1/2 flex items-center gap-1 px-3 py-1 rounded-full bg-surface-elevated border border-border text-xs text-text-secondary hover:text-foreground shadow-lg transition-all`,children:[(0,Q.jsx)(w,{className:`size-3`}),`Scroll to bottom`]})}function Oe({message:e,isStreaming:t,projectName:n,onFork:r}){return e.role===`user`?(0,Q.jsx)(Pe,{content:e.content,projectName:n,onFork:r}):e.role===`system`?(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 rounded-lg bg-red-500/10 border border-red-500/20 px-3 py-2 text-sm text-red-400`,children:[(0,Q.jsx)(A,{className:`size-4 shrink-0`}),(0,Q.jsx)(`p`,{children:e.content})]}):(0,Q.jsx)(`div`,{className:`flex flex-col gap-2`,children:e.events&&e.events.length>0?(0,Q.jsx)(Le,{events:e.events,isStreaming:t,projectName:n}):e.content&&(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,Q.jsx)(Ve,{content:e.content,projectName:n})})})}var ke=new Set([`.png`,`.jpg`,`.jpeg`,`.gif`,`.webp`]);function Ae(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 je(e,t){let n=l(e);return`/api/project/${encodeURIComponent(t??`_`)}/chat/uploads/${encodeURIComponent(n)}`}function Me(e){let t=e.lastIndexOf(`.`);return t===-1?!1:ke.has(e.slice(t).toLowerCase())}function Ne(e){return e.toLowerCase().endsWith(`.pdf`)}function Pe({content:e,projectName:t,onFork:r}){let{files:i,text:a}=(0,W.useMemo)(()=>Ae(e),[e]);return(0,Q.jsx)(`div`,{className:`flex justify-end group/user`,children:(0,Q.jsxs)(`div`,{className:`rounded-lg bg-primary/10 px-3 py-2 text-sm text-text-primary max-w-[85%] space-y-2 relative`,children:[i.length>0&&(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:i.map((e,n)=>Me(e)?(0,Q.jsx)(Fe,{src:je(e,t),alt:l(e)||`image`},n):Ne(e)?(0,Q.jsx)(Ie,{src:je(e,t),filename:l(e)||`document.pdf`,mimeType:`application/pdf`},n):(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 rounded-md border border-border bg-background/50 px-2 py-1 text-xs text-text-secondary`,children:[(0,Q.jsx)(b,{className:`size-3.5 shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-40`,children:l(e)})]},n))}),a&&(0,Q.jsx)(`p`,{className:`whitespace-pre-wrap break-words`,children:a}),r&&(0,Q.jsx)(`button`,{onClick:r,title:`Retry from this message (fork session)`,className:`absolute -left-8 top-1/2 -translate-y-1/2 opacity-0 group-hover/user:opacity-100 transition-opacity size-6 flex items-center justify-center rounded bg-surface border border-border text-text-subtle hover:text-text-primary hover:bg-surface-elevated`,children:(0,Q.jsx)(n,{className:`size-3`})})]})})}function Fe({src:e,alt:t}){let[n,r]=(0,W.useState)(null),[i,a]=(0,W.useState)(!1);return(0,W.useEffect)(()=>{let t,n=d();return fetch(e,{headers:n?{Authorization:`Bearer ${n}`}:{}}).then(e=>{if(!e.ok)throw Error(`Failed to load`);return e.blob()}).then(e=>{let n=URL.createObjectURL(e);t=n,r(n)}).catch(()=>a(!0)),()=>{t&&URL.revokeObjectURL(t)}},[e]),i?(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 rounded-md border border-border bg-background/50 px-2 py-1 text-xs text-text-secondary`,children:[(0,Q.jsx)(z,{className:`size-3.5 shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-40`,children:t})]}):n?(0,Q.jsx)(`a`,{href:n,target:`_blank`,rel:`noopener noreferrer`,className:`block`,children:(0,Q.jsx)(`img`,{src:n,alt:t,className:`rounded-md max-h-48 max-w-full object-contain border border-border`})}):(0,Q.jsx)(`div`,{className:`rounded-md bg-surface border border-border h-24 w-32 animate-pulse`})}function Ie({src:e,filename:t,mimeType:n}){let[r,i]=(0,W.useState)(!1);return(0,Q.jsxs)(`button`,{type:`button`,onClick:(0,W.useCallback)(async()=>{i(!0);try{let t=d(),r=await fetch(e,{headers:t?{Authorization:`Bearer ${t}`}:{}});if(!r.ok)throw Error(`Failed to load`);let i=await r.blob(),a=URL.createObjectURL(new Blob([i],{type:n}));window.open(a,`_blank`),setTimeout(()=>URL.revokeObjectURL(a),6e4)}catch{window.open(e,`_blank`)}finally{i(!1)}},[e,n]),disabled:r,className:`flex items-center gap-1.5 rounded-md border border-border bg-background/50 px-2 py-1 text-xs text-text-secondary hover:bg-surface hover:text-text-primary transition-colors cursor-pointer disabled:opacity-50`,children:[(0,Q.jsx)(b,{className:`size-3.5 shrink-0 text-red-400`}),(0,Q.jsx)(`span`,{className:`truncate max-w-40`,children:t}),r&&(0,Q.jsx)(`span`,{className:`animate-spin text-[10px]`,children:`...`})]})}function Le({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,Q.jsx)(Q.Fragment,{children:r.map((e,i)=>{if(e.kind===`thinking`)return(0,Q.jsx)(Re,{content:e.content,isStreaming:t&&i===r.length-1},`think-${i}`);if(e.kind===`text`){let a=t&&i===r.length-1;return(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,Q.jsx)(ze,{content:e.content,animate:a,projectName:n})},`text-${i}`)}return(0,Q.jsx)(ve,{tool:e.tool,result:e.result,completed:e.completed,projectName:n},`tool-${i}`)})})}function Re({content:e,isStreaming:t}){let[n,r]=(0,W.useState)(t);return(0,W.useEffect)(()=>{!t&&e.length>0&&r(!1)},[t,e.length]),(0,Q.jsxs)(`div`,{className:`rounded border border-border/50 bg-surface/30 text-xs`,children:[(0,Q.jsxs)(`button`,{onClick:()=>r(!n),className:`flex items-center gap-2 px-2 py-1.5 w-full text-left hover:bg-surface transition-colors text-text-subtle`,children:[t?(0,Q.jsx)(E,{className:`size-3 animate-spin`}):(0,Q.jsx)(p,{className:`size-3 transition-transform ${n?`rotate-90`:``}`}),(0,Q.jsxs)(`span`,{children:[`Thinking`,t?`...`:``]}),!t&&(0,Q.jsx)(`span`,{className:`text-text-subtle/50 ml-auto`,children:e.length>100?`${Math.round(e.length/4)} tokens`:``})]}),n&&(0,Q.jsx)(`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 ze({content:e,animate:t,projectName:n}){return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(Ve,{content:e,projectName:n}),t&&(0,Q.jsx)(`span`,{className:`text-text-subtle text-sm animate-pulse`,children:`Thinking...`})]})}function Be({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,Q.jsxs)(`div`,{className:`flex flex-col gap-1 text-sm`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 text-text-subtle`,children:[(0,Q.jsx)(E,{className:`size-3 animate-spin`}),(0,Q.jsxs)(`span`,{children:[`Thinking`,i&&(n??0)>0&&(0,Q.jsxs)(`span`,{className:`text-text-subtle/60`,children:[`... (`,n,`s)`]})]})]}),i&&(n??0)>=r&&(0,Q.jsx)(`p`,{className:`text-xs text-yellow-500/80 ml-5`,children:`Taking longer than usual — may be rate-limited or API slow. Try sending a new message to retry.`})]})}function Ve({content:e,projectName:t}){return(0,Q.jsx)(j,{content:e,projectName:t,codeActions:!0})}function He({approval:e,onRespond:t}){return(0,Q.jsxs)(`div`,{className:`rounded-lg border-2 border-yellow-500/40 bg-yellow-500/10 p-3 space-y-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 text-yellow-400 text-sm font-medium`,children:[(0,Q.jsx)(ne,{className:`size-4`}),(0,Q.jsx)(`span`,{children:`Tool Approval Required`})]}),(0,Q.jsx)(`div`,{className:`text-xs text-text-primary`,children:(0,Q.jsx)(`span`,{className:`font-medium`,children:e.tool})}),(0,Q.jsx)(`pre`,{className:`text-xs font-mono text-text-secondary overflow-x-auto bg-background rounded p-2 border border-border`,children:JSON.stringify(e.input,null,2)}),(0,Q.jsxs)(`div`,{className:`flex gap-2`,children:[(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!0),className:`px-4 py-1.5 rounded bg-green-600 text-white text-xs font-medium hover:bg-green-500 transition-colors`,children:`Allow`}),(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!1),className:`px-4 py-1.5 rounded bg-red-600 text-white text-xs font-medium hover:bg-red-500 transition-colors`,children:`Deny`})]})]})}function Ue({approval:e,onRespond:t}){let n=e.input.questions??[],[r,i]=(0,W.useState)({}),[a,o]=(0,W.useState)({}),s=(e,t,n)=>{o(t=>({...t,[e]:!1})),i(r=>{if(!n)return{...r,[e]:t};let i=r[e]??``,a=i?i.split(`, `):[],o=a.indexOf(t);return o>=0?a.splice(o,1):a.push(t),{...r,[e]:a.join(`, `)}})},c=e=>{o(t=>({...t,[e]:!0})),i(t=>({...t,[e]:``}))},l=(e,t)=>{i(n=>({...n,[e]:t}))},u=n.every(e=>r[e.question]?.trim());return(0,Q.jsxs)(`div`,{className:`rounded-lg border-2 border-accent/40 bg-accent/5 p-3 space-y-3`,children:[n.map((e,t)=>(0,Q.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,Q.jsxs)(`p`,{className:`text-sm text-text-primary font-medium`,children:[e.header?`${e.header}: `:``,e.question]}),e.multiSelect&&(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle`,children:`Select multiple`}),(0,Q.jsxs)(`div`,{className:`flex flex-col gap-1`,children:[e.options.map((t,n)=>(0,Q.jsxs)(`button`,{onClick:()=>s(e.question,t.label,e.multiSelect),className:`text-left rounded px-2.5 py-1.5 text-xs border transition-colors ${!a[e.question]&&(r[e.question]??``).split(`, `).includes(t.label)?`border-accent bg-accent/20 text-text-primary`:`border-border bg-background text-text-secondary hover:bg-surface-elevated`}`,children:[(0,Q.jsx)(`span`,{className:`font-medium`,children:t.label}),t.description&&(0,Q.jsxs)(`span`,{className:`text-text-subtle ml-1.5`,children:[`— `,t.description]})]},n)),a[e.question]?(0,Q.jsx)(`input`,{type:`text`,autoFocus:!0,placeholder:`Type your answer...`,value:r[e.question]??``,onChange:t=>l(e.question,t.target.value),className:`rounded px-2.5 py-1.5 text-xs border border-accent bg-accent/10 text-text-primary outline-none placeholder:text-text-subtle`}):(0,Q.jsx)(`button`,{onClick:()=>c(e.question),className:`text-left rounded px-2.5 py-1.5 text-xs border border-dashed border-border text-text-subtle hover:bg-surface-elevated transition-colors`,children:`Other — type your own answer`})]})]},t)),(0,Q.jsxs)(`div`,{className:`flex gap-2 pt-1`,children:[(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!0,r),disabled:!u,className:`px-4 py-1.5 rounded bg-accent text-white text-xs font-medium hover:bg-accent/80 transition-colors disabled:opacity-40 disabled:cursor-not-allowed`,children:`Submit`}),(0,Q.jsx)(`button`,{onClick:()=>t(e.requestId,!1),className:`px-4 py-1.5 rounded bg-surface-elevated text-text-secondary text-xs hover:bg-surface transition-colors`,children:`Skip`})]})]})}var We=new Set([`image/png`,`image/jpeg`,`image/gif`,`image/webp`]),Ge=new Set([`application/pdf`]),Ke=[`text/`,`application/json`,`application/xml`,`application/javascript`,`application/typescript`,`application/x-yaml`,`application/toml`,`application/x-sh`],qe=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 Je(e){return We.has(e.type)}function Ye(e){if(We.has(e.type)||Ge.has(e.type)||Ke.some(t=>e.type.startsWith(t)))return!0;let t=Xe(e.name);return!!(t&&qe.has(t))}function Xe(e){let t=e.lastIndexOf(`.`);return t===-1?``:e.slice(t).toLowerCase()}function Ze({attachments:e,onRemove:t}){return e.length===0?null:(0,Q.jsx)(`div`,{className:`flex flex-wrap gap-1.5 px-2 md:px-4 pt-2`,children:e.map(e=>(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 rounded-md border border-border bg-surface px-2 py-1 text-xs text-text-secondary max-w-48`,children:[e.previewUrl?(0,Q.jsx)(`img`,{src:e.previewUrl,alt:e.name,className:`size-5 rounded object-cover shrink-0`}):e.isImage?(0,Q.jsx)(z,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,Q.jsx)(b,{className:`size-3.5 shrink-0 text-text-subtle`}),(0,Q.jsx)(`span`,{className:`truncate`,children:e.name}),e.status===`uploading`?(0,Q.jsx)(E,{className:`size-3 shrink-0 animate-spin text-text-subtle`}):e.status===`error`?(0,Q.jsx)(`span`,{className:`text-red-500 shrink-0`,title:`Upload failed`,children:`!`}):null,(0,Q.jsx)(`button`,{type:`button`,onClick:()=>t(e.id),className:`shrink-0 rounded-sm p-0.5 hover:bg-border/50 transition-colors`,"aria-label":`Remove ${e.name}`,children:(0,Q.jsx)(S,{className:`size-3`})})]},e.id))})}function Qe(e){let t=[];function n(e){for(let r of e)t.push(r),r.children&&n(r.children)}return n(e),t}function $e({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,W.useState)(0),s=(0,W.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,W.useEffect)(()=>{o(0)},[t]),(0,W.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,W.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,W.useEffect)(()=>{if(!i)return;let e=e=>{l(e)&&e.stopPropagation()};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[i,l]),!i||c.length===0?null:(0,Q.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,Q.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-center gap-2 w-full px-3 py-1.5 text-left transition-colors ${t===a?`bg-primary/10 text-primary`:`hover:bg-surface-hover text-text-primary`}`,onMouseEnter:()=>o(t),onClick:()=>n(e),children:[(0,Q.jsx)(`span`,{className:`shrink-0`,children:e.type===`directory`?(0,Q.jsx)(_,{className:`size-4 text-amber-500`}):(0,Q.jsx)(v,{className:`size-4 text-blue-400`})}),(0,Q.jsx)(`span`,{className:`text-sm truncate`,children:e.path})]},e.path))})})}function et({onSend:e,isStreaming:t,onCancel:n,disabled:r,projectName:i,onSlashStateChange:a,onSlashItemsLoaded:o,slashSelected:s,onFileStateChange:l,onFileItemsLoaded:p,fileSelected:m,externalFiles:h,initialValue:g}){let[_,v]=(0,W.useState)(g??``),[y,b]=(0,W.useState)([]),x=(0,W.useRef)(null),S=(0,W.useRef)(null),C=(0,W.useRef)(null),w=(0,W.useRef)([]),T=(0,W.useRef)([]);(0,W.useEffect)(()=>{g&&(v(g),setTimeout(()=>{let e=x.current;e&&(e.focus(),e.selectionStart=e.selectionEnd=e.value.length)},50))},[g]),(0,W.useEffect)(()=>{if(!i){w.current=[],o?.([]);return}f.get(`${u(i)}/chat/slash-items`).then(e=>{w.current=e,o?.(e)}).catch(()=>{w.current=[],o?.([])})},[i]),(0,W.useEffect)(()=>{if(!i){T.current=[],p?.([]);return}f.get(`${u(i)}/files/tree?depth=5`).then(e=>{let t=Qe(e);T.current=t,p?.(t)}).catch(()=>{T.current=[],p?.([])})},[i]),(0,W.useEffect)(()=>{if(!s)return;let e=x.current,t=e?.selectionStart??_.length,n=_.slice(0,t),r=_.slice(t),i=n.replace(/(?:^|\s)\/\S*$/,e=>`${e.startsWith(`/`)?``:e[0]}/${s.name} `);v(i+r),a?.(!1,``),l?.(!1,``),e&&(e.focus(),setTimeout(()=>{e.selectionStart=e.selectionEnd=i.length},0))},[s]),(0,W.useEffect)(()=>{if(!m)return;let e=x.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;v(n.slice(0,t)+`@${m.path} `+r);let a=t+m.path.length+2;setTimeout(()=>{e.selectionStart=e.selectionEnd=a,e.focus()},0)}else{let t=_+`@${m.path} `;v(t),setTimeout(()=>{e.selectionStart=e.selectionEnd=t.length,e.focus()},0)}l?.(!1,``)},[m]),(0,W.useEffect)(()=>{!h||h.length===0||D(h)},[h]);let E=(0,W.useCallback)(async e=>{if(!i)return null;try{let t=new FormData;t.append(`files`,e);let n={},r=d();r&&(n.Authorization=`Bearer ${r}`);let a=await(await fetch(`${u(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]),D=(0,W.useCallback)(e=>{for(let t of e){if(!Ye(t)){v(e=>e+(e.length>0&&!e.endsWith(` `)?` `:``)+t.name);continue}let e=c(),n=Je(t),r=n?URL.createObjectURL(t):void 0,i={id:e,name:t.name,file:t,isImage:n,previewUrl:r,status:`uploading`};b(e=>[...e,i]),E(t).then(t=>{b(n=>n.map(n=>n.id===e?{...n,serverPath:t??void 0,status:t?`ready`:`error`}:n))})}(S.current??x.current)?.focus()},[E]),O=(0,W.useCallback)(e=>{b(t=>{let n=t.find(t=>t.id===e);return n?.previewUrl&&URL.revokeObjectURL(n.previewUrl),t.filter(t=>t.id!==e)})},[]),k=(0,W.useCallback)(()=>{let t=_.trim(),n=y.filter(e=>e.status===`ready`);if(!(!t&&n.length===0)&&!r){a?.(!1,``),l?.(!1,``),e(t,n),v(``);for(let e of y)e.previewUrl&&URL.revokeObjectURL(e.previewUrl);b([]),x.current&&(x.current.style.height=`auto`),S.current&&(S.current.style.height=`auto`)}},[_,y,r,e,a,l]),A=(0,W.useCallback)(e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),k())},[k]),j=(0,W.useCallback)((e,t)=>{let n=e.slice(0,t),r=n.match(/(?:^|\s)\/(\S*)$/);if(r&&w.current.length>0){a?.(!0,r[1]??``),l?.(!1,``);return}let i=n.match(/@(\S*)$/);if(i&&T.current.length>0){l?.(!0,i[1]??``),a?.(!1,``);return}a?.(!1,``),l?.(!1,``)},[a,l]),M=(0,W.useCallback)(e=>{v(e),setTimeout(()=>{j(e,x.current?.selectionStart??e.length)},0)},[j]),P=(0,W.useCallback)(e=>{let t=e?.target??x.current;t&&(t.style.height=`auto`,t.style.height=Math.min(t.scrollHeight,160)+`px`)},[]),F=(0,W.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(),D(n))},[D]),I=(0,W.useCallback)(e=>{e.preventDefault();let t=Array.from(e.dataTransfer.files);t.length>0&&D(t)},[D]),L=(0,W.useCallback)(e=>{e.preventDefault()},[]),R=(0,W.useCallback)(()=>{C.current?.click()},[]),ee=(0,W.useCallback)(e=>{let t=Array.from(e.target.files??[]);t.length>0&&D(t),e.target.value=``},[D]),z=_.trim().length>0||y.some(e=>e.status===`ready`),B=t&&!z;return(0,Q.jsxs)(`div`,{className:`p-2 md:p-3 bg-background`,children:[(0,Q.jsxs)(`div`,{className:`border border-border rounded-xl md:rounded-2xl bg-surface shadow-sm cursor-text`,onClick:()=>!r&&(S.current??x.current)?.focus(),children:[(0,Q.jsx)(Ze,{attachments:y,onRemove:O}),(0,Q.jsxs)(`div`,{className:`flex items-end gap-1 md:hidden px-2 py-2`,children:[(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),R()},disabled:r,className:`flex items-center justify-center size-7 shrink-0 rounded-full text-text-subtle hover:text-text-primary transition-colors disabled:opacity-50`,"aria-label":`Attach file`,children:(0,Q.jsx)(V,{className:`size-4`})}),(0,Q.jsx)(`textarea`,{ref:S,value:_,onChange:e=>{M(e.target.value),P(e)},onKeyDown:A,onPaste:F,onDrop:I,onDragOver:L,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`}),B?(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),n?.()},className:`flex items-center justify-center size-7 shrink-0 rounded-full bg-red-600 text-white hover:bg-red-500 transition-colors`,"aria-label":`Stop`,children:(0,Q.jsx)(H,{className:`size-3`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k()},disabled:r||!z,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,Q.jsx)(N,{className:`size-3.5`})})]}),(0,Q.jsxs)(`div`,{className:`hidden md:block`,children:[(0,Q.jsx)(`textarea`,{ref:x,value:_,onChange:e=>{M(e.target.value),P(e)},onKeyDown:A,onPaste:F,onDrop:I,onDragOver:L,placeholder:t?`Follow-up or Stop...`:`Ask anything...`,disabled:r,rows:1,className:`w-full resize-none bg-transparent px-4 pt-3 pb-1 text-sm text-foreground placeholder:text-text-subtle focus:outline-none disabled:opacity-50 max-h-40`}),(0,Q.jsxs)(`div`,{className:`flex items-center justify-between px-3 pb-2`,children:[(0,Q.jsx)(`div`,{className:`flex items-center gap-1`,children:(0,Q.jsx)(`button`,{type:`button`,onClick:e=>{e.stopPropagation(),R()},disabled:r,className:`flex items-center justify-center size-8 rounded-full text-text-subtle hover:text-text-primary hover:bg-surface-elevated transition-colors disabled:opacity-50`,"aria-label":`Attach file`,children:(0,Q.jsx)(V,{className:`size-4`})})}),(0,Q.jsx)(`div`,{className:`flex items-center gap-1`,children:B?(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),n?.()},className:`flex items-center justify-center size-8 rounded-full bg-red-600 text-white hover:bg-red-500 transition-colors`,"aria-label":`Stop response`,children:(0,Q.jsx)(H,{className:`size-3.5`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k()},disabled:r||!z,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,Q.jsx)(N,{className:`size-4`})})})]})]})]}),(0,Q.jsx)(`input`,{ref:C,type:`file`,multiple:!0,className:`hidden`,onChange:ee})]})}function tt({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,W.useState)(0),s=(0,W.useRef)(null),c=e.filter(e=>{let n=t.toLowerCase();return e.name.toLowerCase().includes(n)||e.description.toLowerCase().includes(n)});(0,W.useEffect)(()=>{o(0)},[t]),(0,W.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,W.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,W.useEffect)(()=>{if(!i)return;let e=e=>{l(e)&&e.stopPropagation()};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[i,l]),!i||c.length===0?null:(0,Q.jsx)(`div`,{className:`max-h-52 overflow-y-auto border-b border-border bg-surface`,children:(0,Q.jsx)(`div`,{ref:s,className:`py-1`,children:c.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-start gap-3 w-full px-3 py-2 text-left transition-colors ${t===a?`bg-primary/10 text-primary`:`hover:bg-surface-hover text-text-primary`}`,onMouseEnter:()=>o(t),onClick:()=>n(e),children:[(0,Q.jsx)(`span`,{className:`shrink-0 mt-0.5`,children:e.type===`skill`?(0,Q.jsx)(re,{className:`size-4 text-amber-500`}):(0,Q.jsx)(k,{className:`size-4 text-blue-500`})}),(0,Q.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,Q.jsxs)(`div`,{className:`flex items-baseline gap-2`,children:[(0,Q.jsxs)(`span`,{className:`font-medium text-sm`,children:[`/`,e.name]}),e.argumentHint&&(0,Q.jsx)(`span`,{className:`text-xs text-text-subtle`,children:e.argumentHint}),(0,Q.jsx)(`span`,{className:`text-xs text-text-subtle capitalize ml-auto`,children:e.scope===`user`?`global`:e.type})]}),e.description&&(0,Q.jsx)(`p`,{className:`text-xs text-text-subtle mt-0.5 line-clamp-2`,children:e.description})]})]},`${e.type}-${e.name}`))})})}function nt(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function rt(e){return e>=90?`bg-red-500`:e>=70?`bg-amber-500`:`bg-green-500`}function it(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 at({label:e,bucket:t}){if(!t)return null;let n=Math.round(t.utilization*100),r=it(t);return(0,Q.jsxs)(`div`,{className:`space-y-1`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-medium text-text-primary`,children:e}),r&&(0,Q.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,children:[`↻ `,r]})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`div`,{className:`flex-1 h-2 rounded-full bg-border overflow-hidden`,children:(0,Q.jsx)(`div`,{className:`h-full rounded-full transition-all ${rt(n)}`,style:{width:`${Math.min(n,100)}%`}})}),(0,Q.jsxs)(`span`,{className:`text-xs font-medium tabular-nums w-10 text-right ${nt(n)}`,children:[n,`%`]})]})]})}function ot(e){if(!e)return null;let t=Math.round((Date.now()-e)/1e3);return t<5?`just now`:t<60?`${t}s ago`:`${Math.floor(t/60)}m ago`}function st({usage:e,visible:t,onClose:n,onReload:r,loading:i,lastFetchedAt:a}){if(!t)return null;let o=e.queryCostUsd!=null||e.totalCostUsd!=null,s=e.session||e.weekly||e.weeklyOpus||e.weeklySonnet;return(0,Q.jsxs)(`div`,{className:`border-b border-border bg-surface px-3 py-2.5 space-y-2.5`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,Q.jsx)(`span`,{className:`text-xs font-semibold text-text-primary`,children:`Usage Limits`}),a&&(0,Q.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:ot(new Date(a).getTime())})]}),(0,Q.jsxs)(`div`,{className:`flex items-center gap-1`,children:[r&&(0,Q.jsx)(`button`,{onClick:r,disabled:i,className:`text-xs text-text-subtle hover:text-text-primary px-1 disabled:opacity-50`,title:`Refresh usage data`,children:(0,Q.jsx)(h,{className:`size-3 ${i?`animate-spin`:``}`})}),(0,Q.jsx)(`button`,{onClick:n,className:`text-xs text-text-subtle hover:text-text-primary px-1`,children:`✕`})]})]}),s?(0,Q.jsxs)(`div`,{className:`space-y-2.5`,children:[(0,Q.jsx)(at,{label:`5-Hour Session`,bucket:e.session}),(0,Q.jsx)(at,{label:`Weekly`,bucket:e.weekly}),(0,Q.jsx)(at,{label:`Weekly (Opus)`,bucket:e.weeklyOpus}),(0,Q.jsx)(at,{label:`Weekly (Sonnet)`,bucket:e.weeklySonnet})]}):(0,Q.jsxs)(`p`,{className:`text-xs text-text-subtle`,children:[`No data — run `,(0,Q.jsx)(`code`,{className:`bg-surface-elevated px-1 rounded`,children:`bun install`})]}),o&&(0,Q.jsxs)(`div`,{className:`border-t border-border pt-2 space-y-1`,children:[e.queryCostUsd!=null&&(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Last query`}),(0,Q.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.queryCostUsd.toFixed(4)]})]}),e.totalCostUsd!=null&&(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`Session total`}),(0,Q.jsxs)(`span`,{className:`text-text-primary font-medium tabular-nums`,children:[`$`,e.totalCostUsd.toFixed(4)]})]})]})]})}function ct(e){try{return new Date(e).toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}function lt(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function ut({projectName:e,usageInfo:t,contextWindowPct:n,usageLoading:r,refreshUsage:i,lastFetchedAt:a,sessionId:s,onSelectSession:c,onBugReport:l,isConnected:d,onReconnect:p}){let[_,v]=(0,W.useState)(null),[b,x]=(0,W.useState)([]),[w,T]=(0,W.useState)(!1),[O,k]=(0,W.useState)(``),[A,j]=(0,W.useState)(null),[N,P]=(0,W.useState)(``),F=(0,W.useRef)(null),I=o(e=>e.openTab),L=e=>{v(t=>t===e?null:e)},R=(0,W.useCallback)(async()=>{if(e){T(!0);try{x(await f.get(`${u(e)}/chat/sessions`))}catch{}finally{T(!1)}}},[e]);(0,W.useEffect)(()=>{_===`history`&&b.length===0&&R()},[_]);function z(t){c?(c(t),v(null)):I({type:`chat`,title:t.title||`Chat`,projectId:e??null,metadata:{projectName:e,sessionId:t.id},closable:!0})}let B=(0,W.useCallback)((e,t)=>{t.stopPropagation(),j(e.id),P(e.title||``),setTimeout(()=>F.current?.select(),0)},[]),V=(0,W.useCallback)(async()=>{if(!A||!N.trim()||!e){j(null);return}try{await f.patch(`${u(e)}/chat/sessions/${A}`,{title:N.trim()}),x(e=>e.map(e=>e.id===A?{...e,title:N.trim()}:e))}catch{}j(null)},[A,N,e]),ne=(0,W.useCallback)(()=>j(null),[]),re=O.trim()?b.filter(e=>(e.title||``).toLowerCase().includes(O.toLowerCase())):b,H=t.fiveHour==null?null:Math.round(t.fiveHour*100),U=t.sevenDay==null?null:Math.round(t.sevenDay*100),ie=H!=null||U!=null?lt(Math.max(H??0,U??0)):`text-text-subtle`;return(0,Q.jsxs)(`div`,{className:`border-b border-border/50`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1`,children:[(0,Q.jsxs)(`button`,{onClick:()=>L(`history`),className:`flex items-center gap-1 px-1.5 py-0.5 rounded text-[11px] transition-colors ${_===`history`?`text-primary bg-primary/10`:`text-text-secondary hover:text-foreground hover:bg-surface-elevated`}`,children:[(0,Q.jsx)(ee,{className:`size-3`}),(0,Q.jsx)(`span`,{children:`History`})]}),(0,Q.jsx)(`button`,{onClick:()=>L(`config`),className:`p-1 rounded transition-colors ${_===`config`?`text-primary bg-primary/10`:`text-text-subtle hover:text-text-secondary hover:bg-surface-elevated`}`,title:`AI Settings`,children:(0,Q.jsx)(te,{className:`size-3`})}),(0,Q.jsxs)(`button`,{onClick:()=>L(`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 ${_===`usage`?`bg-primary/10`:``} ${ie}`,title:`Usage limits`,children:[(0,Q.jsx)(M,{className:`size-3`}),(0,Q.jsxs)(`span`,{children:[`5h:`,H==null?`--%`:`${H}%`]}),(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{children:[`Wk:`,U==null?`--%`:`${U}%`]}),n!=null&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{className:lt(n),children:[`Ctx:`,n,`%`]})]})]}),(0,Q.jsx)(`div`,{className:`flex-1`}),p&&(0,Q.jsx)(`button`,{onClick:p,className:`size-4 flex items-center justify-center`,title:d?`Connected`:`Disconnected — click to reconnect`,children:(0,Q.jsx)(`span`,{className:`size-2 rounded-full ${d?`bg-green-500`:`bg-red-500 animate-pulse`}`})})]}),_===`history`&&(0,Q.jsxs)(`div`,{className:`border-t border-border/30 bg-surface`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center gap-1.5 px-2 py-1 border-b border-border/30`,children:[(0,Q.jsx)(C,{className:`size-3 text-text-subtle shrink-0`}),(0,Q.jsx)(`input`,{type:`text`,value:O,onChange:e=>k(e.target.value),placeholder:`Search sessions...`,className:`flex-1 bg-transparent text-[11px] text-text-primary outline-none placeholder:text-text-subtle`}),(0,Q.jsx)(`button`,{onClick:R,disabled:w,className:`p-0.5 rounded text-text-subtle hover:text-text-secondary transition-colors disabled:opacity-50`,title:`Refresh`,children:(0,Q.jsx)(h,{className:`size-3 ${w?`animate-spin`:``}`})})]}),(0,Q.jsx)(`div`,{className:`max-h-[200px] overflow-y-auto`,children:w&&b.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,Q.jsx)(E,{className:`size-3.5 animate-spin text-text-subtle`})}):re.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:O?`No matching sessions`:`No sessions yet`}):re.map(e=>(0,Q.jsxs)(`div`,{className:`flex items-center gap-2 w-full px-3 py-1.5 text-left hover:bg-surface-elevated transition-colors group`,children:[(0,Q.jsx)(y,{className:`size-3 shrink-0 text-text-subtle`}),A===e.id?(0,Q.jsxs)(`form`,{className:`flex items-center gap-1 flex-1 min-w-0`,onSubmit:e=>{e.preventDefault(),V()},children:[(0,Q.jsx)(`input`,{ref:F,value:N,onChange:e=>P(e.target.value),onBlur:V,onKeyDown:e=>{e.key===`Escape`&&ne()},className:`flex-1 min-w-0 bg-surface-elevated text-[11px] text-text-primary px-1 py-0.5 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}),(0,Q.jsx)(`button`,{type:`submit`,className:`p-0.5 text-green-500 hover:text-green-400`,onClick:e=>e.stopPropagation(),children:(0,Q.jsx)(g,{className:`size-3`})}),(0,Q.jsx)(`button`,{type:`button`,className:`p-0.5 text-text-subtle hover:text-text-secondary`,onClick:e=>{e.stopPropagation(),ne()},children:(0,Q.jsx)(S,{className:`size-3`})})]}):(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`button`,{onClick:()=>z(e),className:`text-[11px] truncate flex-1 text-left`,children:e.title||`Untitled`}),(0,Q.jsx)(`button`,{onClick:t=>B(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,Q.jsx)(m,{className:`size-3`})})]}),A!==e.id&&e.updatedAt&&(0,Q.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0`,children:ct(e.updatedAt)})]},e.id))})]}),_===`config`&&(0,Q.jsx)(`div`,{className:`border-t border-border/30 bg-surface px-3 py-2 max-h-[280px] overflow-y-auto`,children:(0,Q.jsx)(D,{compact:!0})}),_===`usage`&&(0,Q.jsx)(st,{usage:t,visible:!0,onClose:()=>v(null),onReload:i,loading:r,lastFetchedAt:a})]})}function dt({metadata:e,tabId:t}){let[n,r]=(0,W.useState)(e?.sessionId??null),[i,a]=(0,W.useState)(e?.providerId??`claude`),[c,l]=(0,W.useState)([]),[d,p]=(0,W.useState)(!1),[m,h]=(0,W.useState)(``),[g,_]=(0,W.useState)(null),[v,y]=(0,W.useState)([]),[b,x]=(0,W.useState)(!1),[S,C]=(0,W.useState)(``),[w,E]=(0,W.useState)(null),[D,k]=(0,W.useState)(!1),[A,j]=(0,W.useState)(null),M=(0,W.useRef)(0),N=e?.projectName??``,P=o(e=>e.updateTab),F=s(e=>e.version),{usageInfo:I,usageLoading:L,lastFetchedAt:R,refreshUsage:ee}=le(N,i);(0,W.useEffect)(()=>{!t||!n||P(t,{metadata:{...e,sessionId:n,providerId:i}})},[n,i]);let{messages:z,messagesLoading:B,isStreaming:V,streamingStatus:te,connectingElapsed:ne,thinkingWarningThreshold:re,pendingApproval:H,contextWindowPct:ie,sessionTitle:ae,sendMessage:G,respondToApproval:oe,cancelStreaming:ce,reconnect:ue,refetchMessages:de,isConnected:K}=se(n,i,N);(0,W.useEffect)(()=>{t&&ae&&P(t,{title:ae})},[ae]);let q=(0,W.useRef)(e?.pendingMessage);(0,W.useEffect)(()=>{if(q.current&&K&&n){let n=q.current;q.current=void 0,t&&P(t,{metadata:{...e,pendingMessage:void 0}}),setTimeout(()=>G(n),100)}},[K,n]),(0,W.useCallback)(()=>{o.getState().openTab({type:`chat`,title:`AI Chat`,metadata:{projectName:N},projectId:N||null,closable:!0})},[N]);let J=(0,W.useCallback)(e=>{r(e.id),a(e.providerId),t&&P(t,{title:e.title||`Chat`})},[t,P]),fe=(0,W.useCallback)(async e=>{if(!(!n||!N))try{let{api:t,projectUrl:r}=await T(async()=>{let{api:e,projectUrl:t}=await import(`./api-client-4Ni0i4Hl.js`).then(e=>e.n);return{api:e,projectUrl:t}},__vite__mapDeps([0,1])),a=await t.post(`${r(N)}/chat/sessions/${n}/fork?providerId=${i}`);o.getState().openTab({type:`chat`,title:`Fork: ${e.slice(0,30)}`,metadata:{projectName:N,sessionId:a.id,providerId:i,pendingMessage:e},projectId:N||null,closable:!0})}catch(e){console.error(`Fork failed:`,e)}},[n,N,i]),Y=(0,W.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},[]),X=(0,W.useCallback)(async(e,t=[])=>{let o=Y(e,t);if(o.trim()){if(!n)try{let t=N,n=await f.post(`${u(t)}/chat/sessions`,{providerId:i,title:e.slice(0,50)});r(n.id),a(n.providerId),setTimeout(()=>{G(o)},500);return}catch(e){console.error(`Failed to create session:`,e);return}G(o)}},[n,i,N,G,Y]),pe=(0,W.useCallback)((e,t)=>{p(e),h(t)},[]),me=(0,W.useCallback)(e=>{_(e),p(!1),h(``),setTimeout(()=>_(null),50)},[]),he=(0,W.useCallback)(()=>{p(!1),h(``)},[]),Z=(0,W.useCallback)((e,t)=>{x(e),C(t)},[]),ge=(0,W.useCallback)(e=>{E(e),x(!1),C(``),setTimeout(()=>E(null),50)},[]),_e=(0,W.useCallback)(()=>{x(!1),C(``)},[]);return(0,Q.jsxs)(`div`,{className:`flex flex-col h-full relative`,onDragEnter:(0,W.useCallback)(e=>{e.preventDefault(),M.current++,e.dataTransfer.types.includes(`Files`)&&k(!0)},[]),onDragLeave:(0,W.useCallback)(e=>{e.preventDefault(),M.current--,M.current===0&&k(!1)},[]),onDragOver:(0,W.useCallback)(e=>{e.preventDefault()},[]),onDrop:(0,W.useCallback)(e=>{e.preventDefault(),M.current=0,k(!1);let t=Array.from(e.dataTransfer.files);t.length>0&&(j(t),setTimeout(()=>j(null),100))},[]),children:[D&&(0,Q.jsx)(`div`,{className:`absolute inset-0 z-50 flex items-center justify-center bg-background/80 backdrop-blur-sm border-2 border-dashed border-primary rounded-lg pointer-events-none`,children:(0,Q.jsxs)(`div`,{className:`flex flex-col items-center gap-2 text-primary`,children:[(0,Q.jsx)(U,{className:`size-8`}),(0,Q.jsx)(`span`,{className:`text-sm font-medium`,children:`Drop files to attach`})]})}),(0,Q.jsx)(Ee,{messages:z,messagesLoading:B,pendingApproval:H,onApprovalResponse:oe,isStreaming:V,streamingStatus:te,connectingElapsed:ne,thinkingWarningThreshold:re,projectName:N,onFork:V?void 0:fe}),(0,Q.jsxs)(`div`,{className:`border-t border-border bg-background shrink-0`,children:[(0,Q.jsx)(ut,{projectName:N,usageInfo:I,contextWindowPct:ie,usageLoading:L,refreshUsage:ee,lastFetchedAt:R,sessionId:n,onSelectSession:J,onBugReport:n?()=>O(F,{sessionId:n,projectName:N}):void 0,isConnected:K,onReconnect:()=>{K||ue(),de()}}),(0,Q.jsx)(tt,{items:c,filter:m,onSelect:me,onClose:he,visible:d}),(0,Q.jsx)($e,{items:v,filter:S,onSelect:ge,onClose:_e,visible:b}),(0,Q.jsx)(et,{onSend:X,isStreaming:V,onCancel:ce,projectName:N,onSlashStateChange:pe,onSlashItemsLoaded:l,slashSelected:g,onFileStateChange:Z,onFileItemsLoaded:y,fileSelected:w,externalFiles:A})]})]})}export{dt as ChatTab};
@@ -1 +0,0 @@
1
- import{i as e,t}from"./react-CYzKIDNi.js";import{A as n,t as r}from"./input-nI4xe1Y9.js";import{n as i,t as a}from"./jsx-runtime-wQxeESYQ.js";import{a as o,t as s}from"./tab-store-DIyJSjtr.js";import{t as c}from"./utils-siJJ3uG0.js";import{i as l,t as u}from"./api-client-4Ni0i4Hl.js";import{A as d,C as f,E as p,L as m,U as h,a as g,c as ee,d as _,f as v,i as te,j as y,k as ne,l as b,m as x,o as re,p as S,s as ie,u as C}from"./index-DXOEmhRm.js";var ae=i(`cherry`,[[`path`,{d:`M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z`,key:`cvxqlc`}],[`path`,{d:`M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z`,key:`1ostrc`}],[`path`,{d:`M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12`,key:`hqx58h`}],[`path`,{d:`M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z`,key:`eykp1o`}]]),w=i(`git-merge`,[[`circle`,{cx:`18`,cy:`18`,r:`3`,key:`1xkwt0`}],[`circle`,{cx:`6`,cy:`6`,r:`3`,key:`1lh9wr`}],[`path`,{d:`M6 21V9a9 9 0 0 0 9 9`,key:`7kw0sc`}]]),T=i(`tag`,[[`path`,{d:`M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z`,key:`vktsd0`}],[`circle`,{cx:`7.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`kqv944`}]]),E=e(t(),1),D=a(),O=[`#4fc3f7`,`#81c784`,`#ffb74d`,`#e57373`,`#ba68c8`,`#4dd0e1`,`#aed581`,`#ff8a65`,`#f06292`,`#7986cb`],k=32,A=20,oe=5;function j({metadata:e}){let t=e?.projectName,[i,a]=(0,E.useState)(null),[o,f]=(0,E.useState)(!0),[h,w]=(0,E.useState)(null),[j,M]=(0,E.useState)(!1),[N,P]=(0,E.useState)({type:null}),[F,I]=(0,E.useState)(``),[L,R]=(0,E.useState)(null),[z,B]=(0,E.useState)([]),[ce,V]=(0,E.useState)(!1),{openTab:H}=s(),U=(0,E.useCallback)(async()=>{if(t)try{f(!0),a(await u.get(`${l(t)}/git/graph?max=200`)),w(null)}catch(e){w(e instanceof Error?e.message:`Failed to fetch graph`)}finally{f(!1)}},[t]);(0,E.useEffect)(()=>{U();let e=setInterval(U,1e4);return()=>clearInterval(e)},[U]);let W=async(e,n)=>{if(t){M(!0);try{await u.post(`${l(t)}${e}`,n),await U()}catch(e){w(e instanceof Error?e.message:`Action failed`)}finally{M(!1)}}},G=e=>W(`/git/checkout`,{ref:e}),le=e=>W(`/git/cherry-pick`,{hash:e}),ue=e=>W(`/git/revert`,{hash:e}),de=e=>W(`/git/merge`,{source:e}),fe=e=>W(`/git/branch/delete`,{name:e}),pe=e=>W(`/git/push`,{branch:e}),K=async(e,t)=>{if(i?.branches.some(t=>t.name===e||t.name.endsWith(`/${e}`))){if(!window.confirm(`Branch "${e}" already exists.\nDelete it and recreate from this commit?`))return;await W(`/git/branch/delete`,{name:e})}await W(`/git/branch/create`,{name:e,from:t})},q=(e,t)=>W(`/git/tag`,{name:e,hash:t}),me=async e=>{if(t)try{let n=await u.get(`${l(t)}/git/pr-url?branch=${encodeURIComponent(e)}`);n.url&&window.open(n.url,`_blank`)}catch{}},J=e=>{navigator.clipboard.writeText(e)},he=async e=>{if(L?.hash===e.hash){R(null);return}R(e),V(!0);try{let n=e.parents[0]??``,r=n?`ref1=${encodeURIComponent(n)}&`:``,i=await u.get(`${l(t)}/git/diff-stat?${r}ref2=${encodeURIComponent(e.hash)}`);B(Array.isArray(i)?i:[])}catch(e){console.error(`diff-stat error:`,e),B([])}finally{V(!1)}},ge=e=>{let n=e.parents[0];H({type:`git-diff`,title:`Diff ${e.abbreviatedHash}`,closable:!0,metadata:{projectName:t,ref1:n??void 0,ref2:e.hash},projectId:t??null})},{laneMap:Y,maxLane:_e}=(0,E.useMemo)(()=>{let e=new Map;if(!i)return{laneMap:e,maxLane:0};let t=0,n=new Map;for(let r of i.commits){let i=n.get(r.hash);i===void 0&&(i=t++),e.set(r.hash,i),n.delete(r.hash);for(let e=0;e<r.parents.length;e++){let a=r.parents[e];n.has(a)||n.set(a,e===0?i:t++)}}return{laneMap:e,maxLane:Math.max(t-1,0)}},[i]),X=i?.branches.find(e=>e.current),ve=(0,E.useMemo)(()=>{let e=new Map;if(!i)return e;for(let t of i.branches){let n=e.get(t.commitHash)??[];n.push({name:t.name,type:`branch`}),e.set(t.commitHash,n)}for(let t of i.commits)for(let n of t.refs)if(n.startsWith(`tag: `)){let r=n.replace(`tag: `,``),i=e.get(t.hash)??[];i.push({name:r,type:`tag`}),e.set(t.hash,i)}return e},[i]),ye=(0,E.useMemo)(()=>{if(!i)return[];let e=[];for(let t=0;t<i.commits.length;t++){let n=i.commits[t],r=Y.get(n.hash)??0,a=O[r%O.length];for(let o of n.parents){let s=i.commits.findIndex(e=>e.hash===o);if(s<0)continue;let c=Y.get(o)??0,l=O[c%O.length],u=r*A+A/2,d=t*k+k/2,f=c*A+A/2,p=s*k+k/2,m,h=n.parents.indexOf(o)>0;if(u===f)m=`M ${u} ${d} L ${f} ${p}`;else if(h){let e=d+k;m=`M ${u} ${d} C ${u} ${e} ${f} ${d} ${f} ${e} L ${f} ${p}`}else{let e=p-k;m=`M ${u} ${d} L ${u} ${e} C ${u} ${p} ${f} ${e} ${f} ${p}`}let g=n.parents.indexOf(o)===0?a:l;e.push({d:m,color:g})}}return e},[i,Y]);(_e+1)*A+A;let be=(i?.commits.length??0)*k,[Z,xe]=(0,E.useState)((typeof window<`u`&&window.innerWidth<768?6:10)*A+A),Q=(0,E.useRef)(!1),$=(0,E.useCallback)(e=>{Q.current=!0;let t=Z,n=n=>{if(!Q.current)return;let r=`touches`in n?n.touches[0].clientX:n.clientX;xe(Math.max(40,t+r-e))},r=()=>{Q.current=!1,window.removeEventListener(`mousemove`,n),window.removeEventListener(`mouseup`,r),window.removeEventListener(`touchmove`,n),window.removeEventListener(`touchend`,r)};window.addEventListener(`mousemove`,n),window.addEventListener(`mouseup`,r),window.addEventListener(`touchmove`,n,{passive:!1}),window.addEventListener(`touchend`,r)},[Z]),Se=(0,E.useCallback)(e=>{e.preventDefault(),$(e.clientX)},[$]),Ce=(0,E.useCallback)(e=>{$(e.touches[0].clientX)},[$]);if(!t)return(0,D.jsx)(`div`,{className:`flex items-center justify-center h-full text-muted-foreground text-sm`,children:`No project selected.`});if(o&&!i)return(0,D.jsxs)(`div`,{className:`flex items-center justify-center h-full gap-2 text-muted-foreground`,children:[(0,D.jsx)(ne,{className:`size-5 animate-spin`}),(0,D.jsx)(`span`,{className:`text-sm`,children:`Loading git graph...`})]});if(h&&!i)return(0,D.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-2 text-destructive text-sm`,children:[(0,D.jsx)(`p`,{children:h}),(0,D.jsx)(b,{variant:`outline`,size:`sm`,onClick:U,children:`Retry`})]});function we(e){let t=new Date(e),n=new Date().getTime()-t.getTime(),r=Math.floor(n/6e4);if(r<1)return`just now`;if(r<60)return`${r}m ago`;let i=Math.floor(r/60);if(i<24)return`${i}h ago`;let a=Math.floor(i/24);if(a<30)return`${a}d ago`;let o=Math.floor(a/30);return o<12?`${o}mo ago`:`${Math.floor(o/12)}y ago`}return(0,D.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,D.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b`,children:[(0,D.jsxs)(`span`,{className:`text-sm font-medium`,children:[`Git Graph`,X?` - ${X.name}`:``]}),(0,D.jsx)(b,{variant:`ghost`,size:`icon-xs`,onClick:U,disabled:j,children:(0,D.jsx)(p,{className:o?`animate-spin`:``})})]}),h&&(0,D.jsx)(`div`,{className:`px-3 py-1.5 text-xs text-destructive bg-destructive/10`,children:h}),(0,D.jsx)(`div`,{className:`flex-1 overflow-y-auto overflow-x-auto md:overflow-x-hidden`,children:(0,D.jsxs)(`div`,{className:`flex min-w-max md:min-w-0`,style:{height:`${be}px`},children:[(0,D.jsxs)(`div`,{className:`sticky left-0 z-10 shrink-0 bg-background`,style:{width:`${Z}px`},children:[(0,D.jsxs)(`svg`,{width:Z,height:be,children:[ye.map((e,t)=>(0,D.jsx)(`path`,{d:e.d,stroke:e.color,strokeWidth:2,fill:`none`},t)),i?.commits.map((e,t)=>{let n=Y.get(e.hash)??0,r=n*A+A/2,i=t*k+k/2,a=O[n%O.length];return(0,D.jsx)(`circle`,{cx:r,cy:i,r:oe,fill:a,stroke:`#0f1419`,strokeWidth:2},e.hash)})]}),(0,D.jsx)(`div`,{className:`absolute top-0 right-0 w-3 md:w-2 h-full cursor-col-resize hover:bg-primary/20 flex items-center justify-center bg-primary/10 md:bg-transparent`,onMouseDown:Se,onTouchStart:Ce,children:(0,D.jsx)(d,{className:`size-3 text-muted-foreground md:opacity-0 md:hover:opacity-100`})})]}),(0,D.jsx)(`div`,{className:`flex-1 min-w-[400px]`,children:i?.commits.map((e,t)=>{let r=O[(Y.get(e.hash)??0)%O.length],i=ve.get(e.hash)??[],a=i.filter(e=>e.type===`branch`),o=i.filter(e=>e.type===`tag`);return(0,D.jsxs)(C,{children:[(0,D.jsx)(x,{asChild:!0,children:(0,D.jsx)(`div`,{className:`flex items-center hover:bg-muted/50 cursor-pointer text-sm border-b border-border/30 ${L?.hash===e.hash?`bg-primary/10`:``}`,style:{height:`${k}px`},onClick:()=>he(e),children:(0,D.jsxs)(`div`,{className:`flex items-center gap-2 flex-1 min-w-0 px-2`,children:[(0,D.jsx)(`span`,{className:`font-mono text-xs text-muted-foreground w-14 shrink-0`,children:e.abbreviatedHash}),a.map(e=>(0,D.jsx)(se,{label:e,color:r,currentBranch:X,onCheckout:G,onMerge:de,onPush:pe,onCreatePr:me,onDelete:fe},`branch-${e.name}`)),o.map(e=>(0,D.jsxs)(`span`,{className:`inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded text-[10px] font-medium shrink-0 bg-amber-500/20 text-amber-500 border border-amber-500/30`,children:[(0,D.jsx)(T,{className:`size-2.5`}),e.name]},`tag-${e.name}`)),(0,D.jsx)(`span`,{className:`flex-1 truncate`,children:e.subject}),(0,D.jsx)(`span`,{className:`text-xs text-muted-foreground shrink-0 hidden sm:inline`,children:e.authorName}),(0,D.jsx)(`span`,{className:`text-xs text-muted-foreground shrink-0 w-14 text-right`,children:we(e.authorDate)})]})})}),(0,D.jsxs)(_,{children:[(0,D.jsx)(v,{onClick:()=>G(e.hash),children:`Checkout`}),(0,D.jsxs)(v,{onClick:()=>{P({type:`branch`,hash:e.hash}),I(``)},children:[(0,D.jsx)(y,{className:`size-3`}),`Create Branch...`]}),(0,D.jsx)(S,{}),(0,D.jsxs)(v,{onClick:()=>le(e.hash),children:[(0,D.jsx)(ae,{className:`size-3`}),`Cherry Pick`]}),(0,D.jsxs)(v,{onClick:()=>ue(e.hash),children:[(0,D.jsx)(n,{className:`size-3`}),`Revert`]}),(0,D.jsxs)(v,{onClick:()=>{P({type:`tag`,hash:e.hash}),I(``)},children:[(0,D.jsx)(T,{className:`size-3`}),`Create Tag...`]}),(0,D.jsx)(S,{}),(0,D.jsx)(v,{onClick:()=>ge(e),children:`View Diff`}),(0,D.jsxs)(v,{onClick:()=>J(e.hash),children:[(0,D.jsx)(m,{className:`size-3`}),`Copy Hash`]})]})]},e.hash)})})]})}),L&&(0,D.jsxs)(`div`,{className:`border-t bg-muted/30 max-h-[40%] overflow-auto`,children:[(0,D.jsxs)(`div`,{className:`px-3 py-2 border-b flex items-center justify-between`,children:[(0,D.jsxs)(`span`,{className:`text-sm font-medium truncate`,children:[L.abbreviatedHash,` — `,L.subject]}),(0,D.jsx)(b,{variant:`ghost`,size:`icon-xs`,onClick:()=>R(null),children:`✕`})]}),(0,D.jsxs)(`div`,{className:`px-3 py-2 text-xs space-y-1`,children:[(0,D.jsxs)(`div`,{className:`flex gap-4`,children:[(0,D.jsx)(`span`,{className:`text-muted-foreground`,children:`Author`}),(0,D.jsxs)(`span`,{children:[L.authorName,` <`,L.authorEmail,`>`]})]}),(0,D.jsxs)(`div`,{className:`flex gap-4`,children:[(0,D.jsx)(`span`,{className:`text-muted-foreground`,children:`Date`}),(0,D.jsx)(`span`,{children:new Date(L.authorDate).toLocaleString()})]}),(0,D.jsxs)(`div`,{className:`flex gap-4`,children:[(0,D.jsx)(`span`,{className:`text-muted-foreground`,children:`Hash`}),(0,D.jsx)(`span`,{className:`font-mono cursor-pointer hover:text-primary`,onClick:()=>J(L.hash),children:L.hash})]}),L.parents.length>0&&(0,D.jsxs)(`div`,{className:`flex gap-4`,children:[(0,D.jsx)(`span`,{className:`text-muted-foreground`,children:`Parents`}),(0,D.jsx)(`span`,{className:`font-mono`,children:L.parents.map(e=>e.slice(0,7)).join(`, `)})]}),L.body&&(0,D.jsx)(`div`,{className:`mt-2 p-2 bg-background rounded text-xs whitespace-pre-wrap`,children:L.body})]}),(0,D.jsxs)(`div`,{className:`px-3 py-1 border-t`,children:[(0,D.jsx)(`div`,{className:`text-xs text-muted-foreground py-1`,children:ce?`Loading files...`:`${z.length} file${z.length===1?``:`s`} changed`}),z.map(e=>(0,D.jsxs)(`div`,{className:`flex items-center gap-2 py-0.5 text-xs hover:bg-muted/50 rounded px-1 cursor-pointer`,onClick:()=>H({type:`git-diff`,title:`Diff ${c(e.path)}`,closable:!0,metadata:{projectName:t,ref1:L.parents[0]??void 0,ref2:L.hash,filePath:e.path},projectId:t??null}),children:[(0,D.jsx)(`span`,{className:`flex-1 truncate font-mono`,children:e.path}),e.additions>0&&(0,D.jsxs)(`span`,{className:`text-green-500`,children:[`+`,e.additions]}),e.deletions>0&&(0,D.jsxs)(`span`,{className:`text-red-500`,children:[`-`,e.deletions]})]},e.path))]})]}),(0,D.jsx)(te,{open:N.type!==null,onOpenChange:e=>{e||P({type:null})},children:(0,D.jsxs)(g,{children:[(0,D.jsx)(ie,{children:(0,D.jsx)(ee,{children:N.type===`branch`?`Create Branch`:`Create Tag`})}),(0,D.jsx)(r,{placeholder:N.type===`branch`?`Branch name`:`Tag name`,value:F,onChange:e=>I(e.target.value),onKeyDown:e=>{e.key===`Enter`&&F.trim()&&(N.type===`branch`?K(F.trim(),N.hash):q(F.trim(),N.hash),P({type:null}))},autoFocus:!0}),(0,D.jsxs)(re,{children:[(0,D.jsx)(b,{variant:`outline`,onClick:()=>P({type:null}),children:`Cancel`}),(0,D.jsx)(b,{disabled:!F.trim(),onClick:()=>{N.type===`branch`?K(F.trim(),N.hash):q(F.trim(),N.hash),P({type:null})},children:`Create`})]})]})})]})}function se({label:e,color:t,currentBranch:n,onCheckout:r,onMerge:i,onPush:a,onCreatePr:s,onDelete:c}){return(0,D.jsxs)(C,{children:[(0,D.jsx)(x,{asChild:!0,children:(0,D.jsxs)(`span`,{className:`inline-flex items-center gap-0.5 px-1.5 py-0.5 rounded text-[10px] font-medium shrink-0 cursor-context-menu`,style:{backgroundColor:`${t}30`,color:t,border:`1px solid ${t}50`},children:[(0,D.jsx)(y,{className:`size-2.5`}),e.name]})}),(0,D.jsxs)(_,{children:[(0,D.jsx)(v,{onClick:()=>r(e.name),children:`Checkout`}),(0,D.jsxs)(v,{onClick:()=>i(e.name),disabled:e.name===n?.name,children:[(0,D.jsx)(w,{className:`size-3`}),`Merge into current`]}),(0,D.jsx)(S,{}),(0,D.jsxs)(v,{onClick:()=>a(e.name),children:[(0,D.jsx)(h,{className:`size-3`}),`Push`]}),(0,D.jsxs)(v,{onClick:()=>s(e.name),children:[(0,D.jsx)(o,{className:`size-3`}),`Create PR`]}),(0,D.jsx)(S,{}),(0,D.jsxs)(v,{variant:`destructive`,onClick:()=>c(e.name),disabled:e.name===n?.name,children:[(0,D.jsx)(f,{className:`size-3`}),`Delete`]})]})]})}export{j as GitGraph};