@hienlh/ppm 0.6.7 → 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.
- package/CHANGELOG.md +17 -0
- package/README.md +86 -313
- package/dist/web/assets/chat-tab-CbNbBMGw.js +7 -0
- package/dist/web/assets/{code-editor-BUg7alP6.js → code-editor-D6OuzcC-.js} +1 -1
- package/dist/web/assets/{database-viewer-CAgZOkZc.js → database-viewer-BxUpM_uA.js} +1 -1
- package/dist/web/assets/{diff-viewer-DVvY1aFb.js → diff-viewer-DAhrHpNM.js} +1 -1
- package/dist/web/assets/{dist-Jb3Tnkpc.js → dist-CNRrBoQi.js} +14 -14
- package/dist/web/assets/git-graph-BpTt5iOd.js +1 -0
- package/dist/web/assets/index-BU_07_oW.js +29 -0
- package/dist/web/assets/index-CBQhXXeV.css +2 -0
- package/dist/web/assets/keybindings-store-C0m8_V9X.js +1 -0
- package/dist/web/assets/{markdown-renderer-z99RjIxZ.js → markdown-renderer-CvGYO9sH.js} +2 -2
- package/dist/web/assets/postgres-viewer-BL99auSm.js +1 -0
- package/dist/web/assets/{settings-tab-BnDkeQWk.js → settings-tab-Bwsxb41F.js} +1 -1
- package/dist/web/assets/{sqlite-viewer-EwHWc37J.js → sqlite-viewer-DfgaCbWT.js} +1 -1
- package/dist/web/assets/{terminal-tab-CTN18lb6.js → terminal-tab-D27e4ZTD.js} +2 -2
- package/dist/web/index.html +4 -3
- package/dist/web/sw.js +1 -1
- package/package.json +1 -1
- package/src/lib/network-utils.ts +12 -0
- package/src/server/routes/settings.ts +52 -0
- package/src/server/routes/tunnel.ts +1 -12
- package/src/server/ws/chat.ts +30 -3
- package/src/services/config.service.ts +1 -1
- package/src/services/notification.service.ts +42 -0
- package/src/services/telegram-notification.service.ts +106 -0
- package/src/types/config.ts +6 -0
- package/src/web/app.tsx +40 -1
- package/src/web/components/layout/draggable-tab.tsx +10 -2
- package/src/web/components/layout/mobile-nav.tsx +42 -3
- package/src/web/components/layout/project-bar.tsx +16 -8
- package/src/web/components/layout/tab-bar.tsx +55 -4
- package/src/web/components/settings/settings-tab.tsx +135 -94
- package/src/web/components/settings/telegram-settings-section.tsx +113 -0
- package/src/web/components/ui/accordion.tsx +64 -0
- package/src/web/hooks/use-chat.ts +29 -0
- package/src/web/hooks/use-notification-badge.ts +20 -0
- package/src/web/hooks/use-tab-overflow.ts +91 -0
- package/src/web/hooks/use-url-sync.ts +5 -2
- package/src/web/index.html +1 -0
- package/src/web/lib/favicon.ts +21 -0
- package/src/web/lib/notification-sounds.ts +61 -0
- package/src/web/stores/notification-store.ts +83 -0
- package/dist/web/assets/chat-tab-CWhxhPKH.js +0 -7
- package/dist/web/assets/git-graph-xD6TLRVv.js +0 -1
- package/dist/web/assets/index-CigdXBuQ.css +0 -2
- package/dist/web/assets/index-DBdw8tN_.js +0 -22
- package/dist/web/assets/keybindings-store-kHLASnRb.js +0 -1
- package/dist/web/assets/postgres-viewer-CaMySHpD.js +0 -1
- /package/dist/web/assets/{tab-store-DIyJSjtr.js → tab-store-Bm1Hw8OR.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.0] - 2026-03-20
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Notification system**: Zustand-based notification store with per-session tracking, unread counts in document title, and SVG favicon badge
|
|
7
|
+
- **Notification sounds**: 3 distinct Web Audio API tones — ascending chime (done), urgent alert (approval), soft triplet (question)
|
|
8
|
+
- **Notification badge colors**: red (approval_request), amber (question), blue (done) on tabs, project avatars, and scroll arrows
|
|
9
|
+
- **Telegram notifications**: Bot API integration with offline-only delivery, SSRF-safe bot token validation, HTML message formatting with deep links
|
|
10
|
+
- **Telegram settings UI**: Bot token + chat ID configuration with save/test buttons, test uses saved config when inputs empty
|
|
11
|
+
- **Settings accordion**: Collapsible sections for General, Notifications, Tunnel, Telegram, AI, and About
|
|
12
|
+
- **Tab overflow indicators**: Color-coded scroll arrows showing most urgent hidden notification type
|
|
13
|
+
- **Deep link support**: `?openChat=sessionId` query param to open/focus specific chat tabs
|
|
14
|
+
- **Database export/import**: Bulk export/import connections with deduplication, validation, and dropdown menu UI
|
|
15
|
+
- **Shared network utility**: Extracted `getLocalIp()` to `src/lib/network-utils.ts`
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- README simplified with concise quick-start guide
|
|
19
|
+
|
|
3
20
|
## [0.6.7] - 2026-03-19
|
|
4
21
|
|
|
5
22
|
### Added
|
package/README.md
CHANGED
|
@@ -1,349 +1,122 @@
|
|
|
1
|
-
# PPM
|
|
1
|
+
# PPM - Personal Project Manager
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A mobile-first web IDE with AI chat, terminal, git, database tools, and file explorer — all in one browser tab.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
┌─────────────────────────────────────────────────────────┐
|
|
7
|
-
│ File Explorer │ Code Editor │ Terminal │ Chat │
|
|
8
|
-
│ + Git │ + Diff View │ Full PTY │ + Tools │
|
|
9
|
-
└─────────────────────────────────────────────────────────┘
|
|
10
|
-
↓
|
|
11
|
-
Claude AI Integration
|
|
12
|
-
(streaming, file attachments, tool use)
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Features
|
|
16
|
-
|
|
17
|
-
- **📁 File Explorer** — Browse, create, edit, delete files with syntax highlighting
|
|
18
|
-
- **🖥️ Terminal** — Full xterm.js with Bun PTY, multiple sessions per project
|
|
19
|
-
- **💬 AI Chat** — Stream Claude AI with file attachments, slash commands, tool execution
|
|
20
|
-
- **🔧 Git Integration** — Status, diffs, commits, branching with visual graph
|
|
21
|
-
- **📱 Mobile-First** — Responsive design optimized for mobile, tablet, and desktop
|
|
22
|
-
- **🔐 Authentication** — Token-based auth with auto-generated tokens
|
|
23
|
-
- **💾 PWA** — Installable web app with offline support
|
|
24
|
-
- **⚡ Fast** — Built on Bun runtime, sub-200ms API responses
|
|
5
|
+
**npm:** [@hienlh/ppm](https://www.npmjs.com/package/@hienlh/ppm) | **Version:** 0.6.7
|
|
25
6
|
|
|
26
7
|
## Quick Start
|
|
27
8
|
|
|
28
|
-
### Prerequisites
|
|
29
|
-
- **Bun:** v1.3.6+ ([install](https://bun.sh))
|
|
30
|
-
- **Git:** v2.0+ (for git operations)
|
|
31
|
-
- **Node.js:** Optional (if using terminal to run npm commands)
|
|
32
|
-
|
|
33
|
-
### Installation
|
|
34
|
-
|
|
35
|
-
#### Option 1: Build from Source
|
|
36
9
|
```bash
|
|
37
|
-
#
|
|
38
|
-
|
|
39
|
-
cd ppm
|
|
40
|
-
bun install
|
|
41
|
-
|
|
42
|
-
# Build
|
|
43
|
-
bun run build
|
|
44
|
-
|
|
45
|
-
# Run
|
|
46
|
-
./dist/ppm start
|
|
47
|
-
```
|
|
10
|
+
# 1. Install Bun (if you don't have it)
|
|
11
|
+
curl -fsSL https://bun.sh/install | bash
|
|
48
12
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
# Download from releases
|
|
52
|
-
wget https://github.com/hienlh/ppm/releases/download/v2.0/ppm-macos-x64
|
|
53
|
-
chmod +x ppm-macos-x64
|
|
54
|
-
sudo mv ppm-macos-x64 /usr/local/bin/ppm
|
|
13
|
+
# 2. Run directly (no install needed)
|
|
14
|
+
bunx @hienlh/ppm start
|
|
55
15
|
|
|
56
|
-
#
|
|
16
|
+
# Or install globally
|
|
17
|
+
bun add -g @hienlh/ppm
|
|
57
18
|
ppm start
|
|
58
19
|
```
|
|
59
20
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
```bash
|
|
63
|
-
# Initialize config (scan for git repos)
|
|
64
|
-
ppm init
|
|
65
|
-
|
|
66
|
-
# Start server (foreground)
|
|
67
|
-
ppm start
|
|
68
|
-
|
|
69
|
-
# Or daemon mode
|
|
70
|
-
ppm start --daemon
|
|
71
|
-
|
|
72
|
-
# Open browser
|
|
73
|
-
ppm open
|
|
74
|
-
# → http://localhost:8080
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
### Usage
|
|
78
|
-
|
|
79
|
-
1. **Enter auth token** from `ppm.yaml` or terminal output
|
|
80
|
-
2. **Select a project** from the sidebar
|
|
81
|
-
3. **Browse files** in file explorer
|
|
82
|
-
4. **Open terminal** or **chat with Claude**
|
|
83
|
-
5. **Stage & commit** via git panel
|
|
84
|
-
|
|
85
|
-
## Development Setup
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
# Install dependencies
|
|
89
|
-
bun install
|
|
90
|
-
|
|
91
|
-
# Hot reload CLI
|
|
92
|
-
bun run dev
|
|
93
|
-
|
|
94
|
-
# Hot reload frontend (separate terminal)
|
|
95
|
-
bun run dev:web
|
|
96
|
-
|
|
97
|
-
# Type check
|
|
98
|
-
bun run typecheck
|
|
99
|
-
|
|
100
|
-
# Build
|
|
101
|
-
bun run build
|
|
102
|
-
|
|
103
|
-
# Run tests
|
|
104
|
-
bun test
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
## Project Structure
|
|
108
|
-
|
|
109
|
-
```
|
|
110
|
-
src/
|
|
111
|
-
├── index.ts # CLI entry point
|
|
112
|
-
├── cli/commands/ # ppm start, init, projects, git, chat
|
|
113
|
-
├── server/ # Hono HTTP server, WebSocket handlers
|
|
114
|
-
├── services/ # Business logic (chat, git, files, terminal)
|
|
115
|
-
├── providers/ # AI provider adapters (Claude SDK, CLI fallback)
|
|
116
|
-
├── types/ # TypeScript interfaces
|
|
117
|
-
└── web/ # React frontend (Vite)
|
|
118
|
-
├── components/ # React UI components
|
|
119
|
-
├── stores/ # Zustand state (project, tab, file, settings)
|
|
120
|
-
├── hooks/ # Custom hooks (useChat, useTerminal, useWebSocket)
|
|
121
|
-
├── lib/ # Utilities (API client, file detection)
|
|
122
|
-
└── styles/ # Tailwind CSS
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
**See [`docs/codebase-summary.md`](docs/codebase-summary.md) for detailed structure.**
|
|
21
|
+
> **Note:** PPM requires [Bun](https://bun.sh) runtime (uses `bun:sqlite` and native Bun APIs). `npx`/`npm` won't work — use `bunx`/`bun` instead.
|
|
126
22
|
|
|
127
|
-
|
|
23
|
+
On first run, PPM walks you through interactive setup: port, auth password, project scan directory, and AI settings. Config is stored in `~/.ppm/ppm.db` (SQLite).
|
|
128
24
|
|
|
129
|
-
|
|
25
|
+
After setup, open the URL shown in terminal and enter your access password.
|
|
130
26
|
|
|
131
|
-
|
|
27
|
+
## What You Get
|
|
132
28
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
default: claude-agent-sdk
|
|
144
|
-
```
|
|
29
|
+
- **AI Chat** — Claude AI with tool execution, file attachments, streaming, session history, slash commands
|
|
30
|
+
- **Terminal** — Full PTY terminal (xterm.js), multiple sessions per project
|
|
31
|
+
- **File Explorer** — Browse, edit, create, delete files with Monaco editor
|
|
32
|
+
- **Git** — Status, diff, commit, push/pull, branching, merge, rebase, commit graph
|
|
33
|
+
- **Database** — SQLite + PostgreSQL viewer with query editor, data grid, cell editing
|
|
34
|
+
- **Notifications** — Web Push + Telegram bot integration
|
|
35
|
+
- **Remote Access** — Cloudflare tunnel for public URL sharing (`--share` flag)
|
|
36
|
+
- **Command Palette** — Fuzzy search for commands, files, tables (Shift+Shift or F1)
|
|
37
|
+
- **PWA** — Installable as a progressive web app
|
|
38
|
+
- **Mobile-First** — Responsive UI with bottom sheets and touch optimization
|
|
145
39
|
|
|
146
|
-
|
|
40
|
+
## CLI
|
|
147
41
|
|
|
148
42
|
```bash
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
ppm start
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
43
|
+
# Server
|
|
44
|
+
ppm start # Start (background daemon, default port 3210)
|
|
45
|
+
ppm start -f # Foreground mode (for debugging)
|
|
46
|
+
ppm start --share # Start + Cloudflare tunnel for public URL
|
|
47
|
+
ppm start -p 4000 # Custom port
|
|
48
|
+
ppm stop # Stop daemon
|
|
49
|
+
ppm restart # Restart
|
|
50
|
+
ppm status # Show status
|
|
51
|
+
ppm open # Open in browser
|
|
52
|
+
ppm logs -f # Tail logs
|
|
53
|
+
|
|
54
|
+
# Projects
|
|
55
|
+
ppm projects list
|
|
56
|
+
ppm projects add my-app /path/to/my-app
|
|
57
|
+
ppm projects remove my-app
|
|
58
|
+
|
|
59
|
+
# Git
|
|
60
|
+
ppm git status
|
|
61
|
+
ppm git log
|
|
62
|
+
ppm git commit -m "message"
|
|
63
|
+
ppm git push
|
|
64
|
+
|
|
65
|
+
# Database
|
|
66
|
+
ppm db connections # List DB connections
|
|
67
|
+
ppm db query my-db "SELECT * FROM users LIMIT 10"
|
|
68
|
+
|
|
69
|
+
# Config
|
|
70
|
+
ppm config get port
|
|
71
|
+
ppm config set port 4000
|
|
72
|
+
|
|
73
|
+
# Chat (CLI mode)
|
|
74
|
+
ppm chat
|
|
75
|
+
|
|
76
|
+
# Other
|
|
77
|
+
ppm init # Re-run setup wizard
|
|
78
|
+
ppm report # File bug report on GitHub
|
|
163
79
|
```
|
|
164
80
|
|
|
165
|
-
### Production
|
|
166
|
-
```bash
|
|
167
|
-
bun run build # Compile CLI binary to dist/ppm
|
|
168
|
-
./dist/ppm start # Run compiled binary
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
### Daemon Mode
|
|
172
|
-
```bash
|
|
173
|
-
ppm start --daemon # Background process
|
|
174
|
-
ppm stop # Graceful shutdown
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
### systemd (Linux)
|
|
178
|
-
```bash
|
|
179
|
-
sudo cp dist/ppm /usr/local/bin/
|
|
180
|
-
# Create systemd service file (see docs/deployment-guide.md)
|
|
181
|
-
sudo systemctl start ppm
|
|
182
|
-
```
|
|
183
|
-
|
|
184
|
-
**See [`docs/deployment-guide.md`](docs/deployment-guide.md) for full deployment instructions.**
|
|
185
|
-
|
|
186
|
-
## API Overview
|
|
187
|
-
|
|
188
|
-
### REST Endpoints
|
|
189
|
-
|
|
190
|
-
```
|
|
191
|
-
GET /api/health # Health check
|
|
192
|
-
GET /api/projects # List projects
|
|
193
|
-
POST /api/projects # Create project
|
|
194
|
-
DELETE /api/projects/:name # Delete project
|
|
195
|
-
|
|
196
|
-
GET /api/project/:name/chat/sessions # Chat sessions
|
|
197
|
-
POST /api/project/:name/chat/sessions # Create session
|
|
198
|
-
GET /api/project/:name/git/status # Git status
|
|
199
|
-
POST /api/project/:name/git/commit # Commit changes
|
|
200
|
-
GET /api/project/:name/files/tree # File tree
|
|
201
|
-
PUT /api/project/:name/files/write # Write file
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
### WebSocket
|
|
205
|
-
|
|
206
|
-
```
|
|
207
|
-
WS /ws/project/:name/chat/:sessionId # Chat streaming
|
|
208
|
-
WS /ws/project/:name/terminal/:id # Terminal I/O
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
**See [`docs/system-architecture.md`](docs/system-architecture.md) for detailed architecture.**
|
|
212
|
-
|
|
213
|
-
## Code Standards
|
|
214
|
-
|
|
215
|
-
- **TypeScript strict mode** — Full type safety
|
|
216
|
-
- **ESLint + Prettier** — Code formatting (run before commit)
|
|
217
|
-
- **Conventional commits** — Clear commit history
|
|
218
|
-
- **Unit + integration tests** — Verify functionality
|
|
219
|
-
|
|
220
|
-
**See [`docs/code-standards.md`](docs/code-standards.md) for detailed conventions.**
|
|
221
|
-
|
|
222
|
-
## Tech Stack
|
|
223
|
-
|
|
224
|
-
| Layer | Technology | Version |
|
|
225
|
-
|-------|-----------|---------|
|
|
226
|
-
| **Runtime** | Bun | 1.3.6+ |
|
|
227
|
-
| **Backend** | Hono | 4.12.8 |
|
|
228
|
-
| **Frontend** | React | 19.2.4 |
|
|
229
|
-
| **State** | Zustand | 5.0 |
|
|
230
|
-
| **Editor** | CodeMirror | 6.0 |
|
|
231
|
-
| **Terminal** | xterm.js | 6.0 |
|
|
232
|
-
| **UI** | Tailwind + Radix + shadcn | Latest |
|
|
233
|
-
| **AI** | Claude Agent SDK | 0.2.76 |
|
|
234
|
-
| **Build** | Vite | 8.0 |
|
|
235
|
-
|
|
236
|
-
## Documentation
|
|
237
|
-
|
|
238
|
-
- **[Project Overview & PDR](docs/project-overview-pdr.md)** — Goals, features, decisions
|
|
239
|
-
- **[Codebase Summary](docs/codebase-summary.md)** — Architecture, module responsibilities
|
|
240
|
-
- **[Code Standards](docs/code-standards.md)** — Conventions, patterns, best practices
|
|
241
|
-
- **[System Architecture](docs/system-architecture.md)** — Layers, protocols, data flows
|
|
242
|
-
- **[Project Roadmap](docs/project-roadmap.md)** — v2 status, v3 plans, known issues
|
|
243
|
-
- **[Deployment Guide](docs/deployment-guide.md)** — Installation, configuration, troubleshooting
|
|
244
|
-
- **[Design Guidelines](docs/design-guidelines.md)** — UI framework, colors, components
|
|
245
|
-
|
|
246
81
|
## Requirements
|
|
247
82
|
|
|
248
|
-
|
|
249
|
-
-
|
|
250
|
-
-
|
|
251
|
-
- 500 MB disk space
|
|
83
|
+
- **Bun** v1.3.6+ ([install](https://bun.sh))
|
|
84
|
+
- **Git** v2.0+ (for git features)
|
|
85
|
+
- **Claude Code** authenticated (`claude` CLI logged in) — for AI chat
|
|
252
86
|
|
|
253
|
-
|
|
254
|
-
- Bun v1.3.6+
|
|
255
|
-
- Git v2.0+
|
|
256
|
-
- Node.js (optional, for running npm commands in terminal)
|
|
87
|
+
## Development
|
|
257
88
|
|
|
258
|
-
### API Access (Optional)
|
|
259
|
-
- **Anthropic API key** for Claude integration
|
|
260
|
-
- Set `ANTHROPIC_API_KEY` environment variable
|
|
261
|
-
- Or use Claude CLI fallback (offline mode)
|
|
262
|
-
|
|
263
|
-
## Known Issues
|
|
264
|
-
|
|
265
|
-
### v2.0
|
|
266
|
-
- **Terminal on Windows** — Bun PTY may not work; requires node-pty or WSL
|
|
267
|
-
- **Large files** — Files >10MB not streamed; should chunk reads
|
|
268
|
-
- **Git performance** — Large repos may slow down graph rendering
|
|
269
|
-
- **Session persistence** — Chat history lost on server restart (not persisted)
|
|
270
|
-
|
|
271
|
-
See [Roadmap](docs/project-roadmap.md#known-issues--gaps-v2) for full list.
|
|
272
|
-
|
|
273
|
-
## Contributing
|
|
274
|
-
|
|
275
|
-
Contributions welcome! Please:
|
|
276
|
-
|
|
277
|
-
1. Fork the repository
|
|
278
|
-
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
|
|
279
|
-
3. Commit changes (`git commit -m "feat: add amazing feature"`)
|
|
280
|
-
4. Push to branch (`git push origin feature/amazing-feature`)
|
|
281
|
-
5. Open a Pull Request
|
|
282
|
-
|
|
283
|
-
**See [`docs/code-standards.md`](docs/code-standards.md) for contribution guidelines.**
|
|
284
|
-
|
|
285
|
-
## Roadmap
|
|
286
|
-
|
|
287
|
-
### v2.0 (In Progress)
|
|
288
|
-
- [x] Multi-project support
|
|
289
|
-
- [x] Project-scoped APIs
|
|
290
|
-
- [x] File attachments in chat
|
|
291
|
-
- [ ] Complete test coverage (60% done)
|
|
292
|
-
|
|
293
|
-
### v3.0 (Planned Q2 2026)
|
|
294
|
-
- [ ] Collaborative editing (multi-user)
|
|
295
|
-
- [ ] Custom tool registry
|
|
296
|
-
- [ ] Plugin architecture
|
|
297
|
-
- [ ] Windows support
|
|
298
|
-
|
|
299
|
-
**See [Project Roadmap](docs/project-roadmap.md) for detailed timeline.**
|
|
300
|
-
|
|
301
|
-
## Troubleshooting
|
|
302
|
-
|
|
303
|
-
### Port Already in Use
|
|
304
|
-
```bash
|
|
305
|
-
# Use different port
|
|
306
|
-
ppm start --port 3000
|
|
307
|
-
```
|
|
308
|
-
|
|
309
|
-
### Git Commands Failing
|
|
310
89
|
```bash
|
|
311
|
-
|
|
312
|
-
|
|
90
|
+
git clone https://github.com/hienlh/ppm.git
|
|
91
|
+
cd ppm && bun install
|
|
313
92
|
|
|
314
|
-
#
|
|
315
|
-
|
|
93
|
+
bun dev:server # Backend (port 8081, uses dev profile)
|
|
94
|
+
bun dev:web # Vite frontend (port 5173)
|
|
95
|
+
bun test # Run tests
|
|
96
|
+
bun run build # Build frontend + CLI binary -> dist/ppm
|
|
316
97
|
```
|
|
317
98
|
|
|
318
|
-
|
|
319
|
-
```bash
|
|
320
|
-
# Check API key
|
|
321
|
-
echo $ANTHROPIC_API_KEY
|
|
322
|
-
|
|
323
|
-
# Try fallback provider
|
|
324
|
-
ppm config set providers.default claude-code-cli
|
|
325
|
-
```
|
|
99
|
+
Dev uses a separate SQLite database (`ppm.dev.db`) from production (`ppm.db`), both in `~/.ppm/`.
|
|
326
100
|
|
|
327
|
-
|
|
101
|
+
For architecture details, API reference, and contribution guidelines, see the [docs](docs/) directory.
|
|
328
102
|
|
|
329
|
-
##
|
|
103
|
+
## Documentation
|
|
330
104
|
|
|
331
|
-
|
|
105
|
+
| Doc | Purpose |
|
|
106
|
+
|-----|---------|
|
|
107
|
+
| [Project Overview](docs/project-overview-pdr.md) | Goals, features, decisions |
|
|
108
|
+
| [System Architecture](docs/system-architecture.md) | Layers, protocols, data flows |
|
|
109
|
+
| [Codebase Summary](docs/codebase-summary.md) | Module responsibilities |
|
|
110
|
+
| [Code Standards](docs/code-standards.md) | Conventions and patterns |
|
|
111
|
+
| [Deployment Guide](docs/deployment-guide.md) | Installation, config, troubleshooting |
|
|
112
|
+
| [Design Guidelines](docs/design-guidelines.md) | UI framework, colors, components |
|
|
113
|
+
| [Project Roadmap](docs/project-roadmap.md) | Status and plans |
|
|
332
114
|
|
|
333
|
-
##
|
|
115
|
+
## Known Gotchas
|
|
334
116
|
|
|
335
|
-
|
|
336
|
-
-
|
|
337
|
-
- [Hono](https://hono.dev) — Lightweight web framework
|
|
338
|
-
- [React](https://react.dev) — UI library
|
|
339
|
-
- [CodeMirror](https://codemirror.net) — Code editor
|
|
340
|
-
- [xterm.js](https://xtermjs.org) — Terminal emulator
|
|
341
|
-
- [Anthropic Claude](https://anthropic.com) — AI model
|
|
342
|
-
- [Tailwind CSS](https://tailwindcss.com) — Utility CSS
|
|
343
|
-
- [Radix UI](https://www.radix-ui.com) — Accessible components
|
|
117
|
+
- **SDK .env poisoning**: Projects with `ANTHROPIC_API_KEY` in `.env` can break SDK tool execution. PPM neutralizes these vars automatically.
|
|
118
|
+
- **Windows**: SDK uses CLI fallback (`claude -p`) due to Bun pipe buffering issues. Ensure `claude` is in PATH.
|
|
344
119
|
|
|
345
120
|
---
|
|
346
121
|
|
|
347
|
-
**
|
|
348
|
-
|
|
349
|
-
**Want to contribute?** See [Code Standards](docs/code-standards.md#contributing) for guidelines.
|
|
122
|
+
**Issues:** [GitHub](https://github.com/hienlh/ppm/issues)
|
|
@@ -0,0 +1,7 @@
|
|
|
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,n as o,t as s}from"./tab-store-Bm1Hw8OR.js";import{n as c}from"./settings-store-CfB0vCtQ.js";import{r as l,t as u}from"./utils-siJJ3uG0.js";import{i as d,r as f,t as p}from"./api-client-4Ni0i4Hl.js";import{A as m,C as h,D as g,E as _,F as v,G as y,H as b,I as x,K as S,O as C,P as w,U as T,V as E,_ as D,g as O,j as k,k as A,r as j,t as M,w as N}from"./index-BU_07_oW.js";import{t as P}from"./markdown-renderer-CvGYO9sH.js";var F=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`}]]),I=r(`arrow-up`,[[`path`,{d:`m5 12 7-7 7 7`,key:`hav0vg`}],[`path`,{d:`M12 19V5`,key:`x0mq9r`}]]),L=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`}]]),R=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`}]]),z=r(`code`,[[`path`,{d:`m16 18 6-6-6-6`,key:`eg8j8`}],[`path`,{d:`m8 6-6 6 6 6`,key:`ppft3o`}]]),B=r(`columns-2`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M12 3v18`,key:`108xh3`}]]),V=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`}]]),H=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`}]]),U=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`}]]),W=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`}]]),G=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`}]]),ne=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`}]]),K=r(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),q=e(t(),1),J=3e4,re=1e3,ie=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(re*2**this.reconnectAttempts,J);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}};function ae({url:e,onMessage:t,autoConnect:n=!0}){let r=(0,q.useRef)(null);return(0,q.useEffect)(()=>{let i=new ie(e);return r.current=i,t&&i.onMessage(t),n&&i.connect(),()=>{i.disconnect(),r.current=null}},[e,n]),{send:(0,q.useCallback)(e=>{r.current?.send(e)},[]),connect:(0,q.useCallback)(()=>{r.current?.connect()},[]),disconnect:(0,q.useCallback)(()=>{r.current?.disconnect()},[])}}var oe=null;function Y(){return oe||=new AudioContext,oe}function X(e,t,n,r,i=`sine`){let a=Y(),o=a.createOscillator(),s=a.createGain();o.type=i,o.frequency.value=e,s.gain.setValueAtTime(r,n),s.gain.exponentialRampToValueAtTime(.001,n+t),o.connect(s),s.connect(a.destination),o.start(n),o.stop(n+t)}function se(){let e=Y().currentTime;X(523,.15,e,.15),X(659,.2,e+.12,.15)}function ce(){let e=Y().currentTime;X(880,.12,e,.18,`square`),X(698,.12,e+.15,.18,`square`),X(880,.15,e+.3,.15,`square`)}function le(){let e=Y().currentTime;X(440,.12,e,.12),X(523,.12,e+.1,.12),X(659,.18,e+.2,.12)}var ue={done:se,approval_request:ce,question:le};function de(e){try{ue[e]?.()}catch{}}function fe(e){if(document.hidden)return!1;let{panels:t,focusedPanelId:n}=o.getState(),r=t[n];if(!r)return!1;let i=r.tabs.find(e=>e.id===r.activeTabId);return i?.type===`chat`&&i.metadata?.sessionId===e}function pe(e,t=`claude`,n=``){let[r,i]=(0,q.useState)([]),[a,o]=(0,q.useState)(!1),[s,c]=(0,q.useState)(!1),[l,u]=(0,q.useState)(`idle`),[p,m]=(0,q.useState)(0),[h,g]=(0,q.useState)(15),[_,v]=(0,q.useState)(null),[y,b]=(0,q.useState)(null),[x,S]=(0,q.useState)(null),[C,w]=(0,q.useState)(!1),T=(0,q.useRef)(``),E=(0,q.useRef)([]),O=(0,q.useRef)(!1),k=(0,q.useRef)(null),A=(0,q.useRef)(()=>{}),j=(0,q.useRef)(null),M=(0,q.useRef)(e);M.current=e;let N=(0,q.useRef)(n);N.current=n;let P=(0,q.useCallback)(e=>{let t;try{t=JSON.parse(e.data)}catch{return}if(t.type===`ping`)return;if(t.type===`title_updated`){S(t.title??null);return}if(t.type===`streaming_status`){let e=t.status??`idle`;if(u(e),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&&(O.current=!0,c(!0)),e.pendingApproval&&v({requestId:e.pendingApproval.requestId,tool:e.pendingApproval.tool,input:e.pendingApproval.input}),j.current?.();return}let n=(e,t)=>{let n=E.current.findIndex(e=>e.type===`tool_use`&&(e.tool===`Agent`||e.tool===`Task`)&&e.toolUseId===t);if(n===-1)return!1;let r=E.current[n];if(r.type!==`tool_use`)return!1;let i=[...r.children??[],e];return E.current[n]={...r,children:i},!0},r=()=>{let e=T.current,t=[...E.current];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`:if(E.current.push(t),v({requestId:t.requestId,tool:t.tool,input:t.input}),M.current&&!fe(M.current)){let e=t.tool===`AskUserQuestion`?`question`:`approval_request`;D.getState().addNotification(M.current,e,N.current),de(e)}break;case`error`:{E.current.push(t);let e=[...E.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,events:e}]:[...n,{id:`error-${Date.now()}`,role:`system`,content:t.message,events:[t],timestamp:new Date().toISOString()}]}),O.current=!1,c(!1),u(`idle`);break}case`done`:{if(!O.current)break;t.contextWindowPct!=null&&b(t.contextWindowPct),M.current&&!fe(M.current)&&(D.getState().addNotification(M.current,`done`,N.current),de(`done`));let e=T.current,n=[...E.current];i(t=>{let r=t[t.length-1];return r?.role===`assistant`?[...t.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:n.length>0?n:r.events}]:t}),T.current=``,E.current=[],O.current=!1,c(!1),u(`idle`);break}}},[]),{send:F,connect:I}=ae({url:e&&n?`/ws/project/${encodeURIComponent(n)}/chat/${e}`:``,onMessage:P,autoConnect:!!e&&!!n});A.current=F,(0,q.useEffect)(()=>{let r=!1;return c(!1),v(null),T.current=``,E.current=[],w(!1),e&&n?(o(!0),fetch(`${d(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${f()}`}}).then(e=>e.json()).then(e=>{r||O.current||(e.ok&&Array.isArray(e.data)&&e.data.length>0?i(e.data):i([]))}).catch(()=>{!r&&!O.current&&i([])}).finally(()=>{r||o(!1)})):i([]),()=>{r=!0}},[e,t,n]);let L=(0,q.useCallback)(e=>{if(e.trim()){if(O.current){let e=T.current,t=[...E.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:t.length>0?t:r.events}]:n}),F(JSON.stringify({type:`cancel`}))}i(t=>[...t,{id:`user-${Date.now()}`,role:`user`,content:e,timestamp:new Date().toISOString()}]),T.current=``,E.current=[],k.current=null,O.current=!0,c(!0),u(`connecting`),v(null),F(JSON.stringify({type:`message`,content:e}))}},[F]),R=(0,q.useCallback)((e,t,n)=>{if(F(JSON.stringify({type:`approval_response`,requestId:e,approved:t,data:n})),t&&n){let t=E.current.find(t=>t.type===`approval_request`&&t.requestId===e&&t.tool===`AskUserQuestion`);if(t){let e=t.input;e&&typeof e==`object`&&(e.answers=n)}i(e=>[...e])}v(null)},[F]),z=(0,q.useCallback)(()=>{if(!O.current)return;F(JSON.stringify({type:`cancel`}));let e=T.current,t=[...E.current];i(n=>{let r=n[n.length-1];return r?.role===`assistant`?[...n.slice(0,-1),{...r,id:`final-${Date.now()}`,content:e||r.content,events:t.length>0?t:r.events}]:n}),T.current=``,E.current=[],k.current=null,O.current=!1,c(!1),v(null)},[F]),B=(0,q.useCallback)(()=>{w(!1),I(),j.current?.()},[I]),V=(0,q.useCallback)(()=>{!e||!n||(o(!0),fetch(`${d(n)}/chat/sessions/${e}/messages?providerId=${t}`,{headers:{Authorization:`Bearer ${f()}`}}).then(e=>e.json()).then(e=>{e.ok&&Array.isArray(e.data)&&e.data.length>0&&(i(e.data),T.current=``,E.current=[])}).catch(()=>{}).finally(()=>o(!1)))},[e,t,n]);return j.current=V,{messages:r,messagesLoading:a,isStreaming:s,streamingStatus:l,connectingElapsed:p,thinkingWarningThreshold:h,pendingApproval:_,contextWindowPct:y,sessionTitle:x,sendMessage:L,respondToApproval:R,cancelStreaming:z,reconnect:B,refetchMessages:V,isConnected:C}}var me=3e4;function he(e,t=`claude`){let[n,r]=(0,q.useState)({}),[i,a]=(0,q.useState)(!1),[o,s]=(0,q.useState)(null),c=(0,q.useRef)(null),l=(0,q.useCallback)((n=!1)=>{if(!e)return;a(!0);let i=n?`&refresh=1`:``;fetch(`${d(e)}/chat/usage?providerId=${t}${i}`,{headers:{Authorization:`Bearer ${f()}`}}).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,q.useEffect)(()=>(l(),c.current=setInterval(()=>l(),me),()=>{c.current&&clearInterval(c.current)}),[l]),{usageInfo:n,usageLoading:i,lastFetchedAt:o,refreshUsage:(0,q.useCallback)(()=>l(!0),[l])}}var ge={damping:.7,stiffness:.05,mass:1.25},_e=70,ve=1e3/60,ye=350,Z=!1;globalThis.document?.addEventListener(`mousedown`,()=>{Z=!0}),globalThis.document?.addEventListener(`mouseup`,()=>{Z=!1}),globalThis.document?.addEventListener(`click`,()=>{Z=!1});var be=(e={})=>{let[t,n]=(0,q.useState)(!1),[r,i]=(0,q.useState)(e.initial!==!1),[a,o]=(0,q.useState)(!1),s=(0,q.useRef)(null);s.current=e;let c=(0,q.useCallback)(()=>{if(!Z)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,q.useCallback)(e=>{d.isAtBottom=e,i(e)},[]),u=(0,q.useCallback)(e=>{d.escapedFromLock=e,n(e)},[]),d=(0,q.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<=_e}}},[]),f=(0,q.useCallback)((e={})=>{typeof e==`string`&&(e={animation:e}),e.preserveScrollPosition||l(!0);let t=Date.now()+(Number(e.wait)||0),n=Ce(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))/ve;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:Ce(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,q.useCallback)(()=>{u(!0),l(!1)},[u,l]),m=(0,q.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,q.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=xe(e=>{g.current?.removeEventListener(`scroll`,m),g.current?.removeEventListener(`wheel`,h),e?.addEventListener(`scroll`,m,{passive:!0}),e?.addEventListener(`wheel`,h,{passive:!0})},[]),_=xe(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=Ce(s.current,t?s.current.resize:s.current.initial);f({animation:e,wait:!0,preserveScrollPosition:!0,duration:e===`instant`?void 0:ye})}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 xe(e,t){let n=(0,q.useCallback)(t=>(n.current=t,e(t)),t);return n}var Se=new Map;function Ce(...e){let t={...ge},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 Se.has(r)||Se.set(r,Object.freeze(t)),n?`instant`:Se.get(r)}var we=(0,q.createContext)(null),Te=typeof window<`u`?q.useLayoutEffect:q.useEffect;function Ee({instance:e,children:t,resize:n,initial:r,mass:i,damping:a,stiffness:o,targetScrollTop:s,contextRef:c,...l}){let u=(0,q.useRef)(null),d=be({mass:i,damping:a,stiffness:o,resize:n,initial:r,targetScrollTop:q.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,q.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,q.useImperativeHandle)(c,()=>y,[y]),Te(()=>{f.current&&getComputedStyle(f.current).overflow===`visible`&&(f.current.style.overflow=`auto`)},[]),q.createElement(we.Provider,{value:y},q.createElement(`div`,{...l},typeof t==`function`?t(y):t))}(function(e){function t({children:e,scrollClassName:t,...n}){let r=De();return q.createElement(`div`,{ref:r.scrollRef,style:{height:`100%`,width:`100%`,scrollbarGutter:`stable both-edges`},className:t},q.createElement(`div`,{...n,ref:r.contentRef},typeof e==`function`?e(r):e))}e.Content=t})(Ee||={});function De(){let e=(0,q.useContext)(we);if(!e)throw Error(`use-stick-to-bottom component context must be used within a StickToBottom component`);return e}var Q=i();function Oe(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 ke({tool:e,result:t,completed:n,projectName:r}){let[i,a]=(0,q.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)(b,{className:`size-3`}),(0,Q.jsx)(`span`,{children:e.message})]});let{toolName:o,input:s}=Oe(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,p=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)(y,{className:`size-3 shrink-0`}):(0,Q.jsx)(T,{className:`size-3 shrink-0`}),l?(0,Q.jsx)(R,{className:`size-3 text-red-400 shrink-0`}):c||u||n?(0,Q.jsx)(E,{className:`size-3 text-green-400 shrink-0`}):(0,Q.jsx)(k,{className:`size-3 text-yellow-400 shrink-0 animate-spin`}),(0,Q.jsx)(`span`,{className:`truncate text-text-primary`,children:(0,Q.jsx)(Ae,{name:o,input:s})}),p&&(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)(je,{name:o,input:s,projectName:r}),p&&(0,Q.jsx)(Fe,{events:f,projectName:r}),c&&(0,Q.jsx)(Ne,{toolName:o,output:t.output})]})]})}function Ae({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:u(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)(g,{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)(V,{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)(g,{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)(L,{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)(U,{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 je({name:e,input:t,projectName:n}){let r=e=>String(e??``),{openTab:i}=s(),o=e=>{n&&i({type:`editor`,title:u(e),metadata:{filePath:e,projectName:n},projectId:n,closable:!0})},c=(e,t,r)=>{i({type:`git-diff`,title:`Diff ${u(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:()=>o(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)(B,{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)(Me,{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)(Ie,{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)(V,{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 Me({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 Ne({toolName:e,output:t}){let[n,r]=(0,q.useState)(!1),i=(0,q.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)(Ie,{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)(z,{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)(Pe,{output:t})}function Pe({output:e}){let t=e.split(`
|
|
5
|
+
`).length,n=t>3||e.length>200,[r,i]=(0,q.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)(T,{className:`size-3`}):(0,Q.jsx)(y,{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 Fe({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)(Ie,{content:e.content,maxHeight:`max-h-24`})},`st-${n}`):(0,Q.jsx)(ke,{tool:e.tool,result:e.result,completed:!!e.result,projectName:t},`sc-${n}`))})}function Ie({content:e,maxHeight:t=`max-h-48`}){return(0,Q.jsx)(P,{content:e,className:`text-text-secondary overflow-auto ${t}`})}function $(e,t=50){return e?e.length>t?e.slice(0,t)+`…`:e:``}function Le(e){let[t,n]=(0,q.useState)({}),[r,i]=(0,q.useState)({}),[a,o]=(0,q.useState)(0),s=(0,q.useCallback)((e,t)=>{n(n=>({...n,[e]:[t]})),i(t=>({...t,[e]:``}))},[]),c=(0,q.useCallback)((e,t)=>{n(n=>{let r=n[e]||[];return{...n,[e]:r.includes(t)?r.filter(e=>e!==t):[...r,t]}})},[]),l=(0,q.useCallback)((e,t)=>{i(n=>({...n,[e]:t})),t&&n(t=>({...t,[e]:[]}))},[]),u=(0,q.useCallback)(e=>(t[e]?.length??0)>0||(r[e]?.trim().length??0)>0,[t,r]);return{answers:t,customInputs:r,activeTab:a,setActiveTab:o,handleSingleSelect:s,handleMultiSelect:c,handleCustomInput:l,hasAnswer:u,allAnswered:(0,q.useMemo)(()=>e.every((e,t)=>u(t)),[e,u]),getFinalAnswer:(0,q.useCallback)(e=>r[e]?.trim()||(t[e]??[]).join(`, `),[t,r]),goToNextTab:(0,q.useCallback)(()=>o(t=>Math.min(t+1,e.length-1)),[e.length]),goToPrevTab:(0,q.useCallback)(()=>o(e=>Math.max(e-1,0)),[])}}function Re(e){let[t,n]=(0,q.useState)(0),r=(0,q.useRef)(null);return(0,q.useEffect)(()=>n(0),[e.activeTab]),(0,q.useEffect)(()=>{if(!e.enabled)return;let i=r=>{let i=document.activeElement===e.customInputRef.current;if(!i&&r.key>=`1`&&r.key<=`9`){r.preventDefault();let t=parseInt(r.key)-1;t<e.totalOptions-1&&(n(t),e.onSelectOption(t));return}if(!i&&(r.key===`o`||r.key===`O`||r.key===`0`)){r.preventDefault(),e.customInputRef.current?.focus(),n(e.totalOptions-1);return}if(r.key===`Tab`&&e.questions.length>1){r.preventDefault(),r.shiftKey?e.goToPrevTab():e.goToNextTab();return}if(!i){if(r.key===`ArrowLeft`){r.preventDefault(),e.goToPrevTab();return}if(r.key===`ArrowRight`){r.preventDefault(),e.goToNextTab();return}if(r.key===`ArrowUp`){r.preventDefault(),n(e=>Math.max(0,e-1));return}if(r.key===`ArrowDown`){r.preventDefault(),n(t=>Math.min(e.totalOptions-1,t+1));return}if(r.key===` `){r.preventDefault(),e.onSelectOption(t);return}}if(r.key===`Enter`){r.preventDefault(),e.allAnswered?e.onSubmit():e.hasAnswer(e.activeTab)&&e.goToNextTab();return}r.key===`Escape`&&i&&e.customInputRef.current?.blur()},a=r.current;return a&&(a.addEventListener(`keydown`,i),a.setAttribute(`tabindex`,`0`),a.contains(document.activeElement)||a.focus()),()=>{a?.removeEventListener(`keydown`,i)}},[e,t]),{focusedOption:t,setFocusedOption:n,containerRef:r}}function ze({questions:e,onSubmit:t,onSkip:n}){let r=(0,q.useRef)(null),i=Le(e),a=e[i.activeTab],o=a?a.options.length+1:0,s=e.length>1,c=(0,q.useCallback)(()=>{if(!i.allAnswered)return;let n={};e.forEach((e,t)=>{n[e.question]=i.getFinalAnswer(t)}),t(n)},[i.allAnswered,i.getFinalAnswer,e,t]),l=(0,q.useCallback)(e=>{if(!(!a||e<0))if(e<a.options.length){let t=a.options[e]?.label;if(!t)return;a.multiSelect?i.handleMultiSelect(i.activeTab,t):i.handleSingleSelect(i.activeTab,t)}else e===a.options.length&&r.current?.focus()},[a,i]),u=Re({questions:e,activeTab:i.activeTab,totalOptions:o,allAnswered:i.allAnswered,hasAnswer:i.hasAnswer,onSelectOption:l,goToNextTab:i.goToNextTab,goToPrevTab:i.goToPrevTab,onSubmit:c,customInputRef:r,enabled:!0}),d=(0,q.useCallback)(e=>{l(e),u.setFocusedOption(e)},[l,u.setFocusedOption]);return(0,Q.jsxs)(`div`,{ref:u.containerRef,className:`rounded-lg border-2 border-primary/30 bg-primary/5 p-3 space-y-3 outline-none animate-in slide-in-from-bottom-2`,children:[(0,Q.jsxs)(`div`,{className:`flex items-center justify-between text-sm font-medium text-text-primary`,children:[(0,Q.jsxs)(`span`,{children:[`AI has `,s?`${e.length} questions`:`a question`]}),(0,Q.jsxs)(`span`,{className:`text-[10px] text-text-secondary font-normal`,children:[s?`←→ tabs · `:``,`↑↓ options · 1-`,Math.min(o-1,9),` select · Enter submit`]})]}),s&&(0,Q.jsx)(`div`,{className:`flex gap-1 p-1 bg-background rounded-md overflow-x-auto border border-border`,children:e.map((e,t)=>(0,Q.jsxs)(`button`,{className:`flex items-center gap-1.5 px-3 py-1.5 rounded text-xs whitespace-nowrap transition-all ${i.activeTab===t?`bg-primary text-primary-foreground`:i.hasAnswer(t)?`text-primary bg-transparent`:`text-text-secondary hover:bg-surface-elevated`}`,onClick:()=>{i.setActiveTab(t),u.setFocusedOption(0)},tabIndex:-1,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4 h-4 rounded-full text-[10px] font-semibold ${i.activeTab===t?`bg-white/20`:i.hasAnswer(t)?`bg-primary/20 text-primary`:`bg-surface-elevated text-text-secondary`}`,children:i.hasAnswer(t)?`✓`:t+1}),(0,Q.jsx)(`span`,{className:`max-w-[100px] overflow-hidden text-ellipsis`,children:e.header||`Q${t+1}`})]},t))}),a&&(0,Q.jsxs)(`div`,{className:`space-y-2`,children:[!s&&a.header&&(0,Q.jsx)(`div`,{className:`text-[11px] font-semibold uppercase tracking-wide text-text-secondary`,children:a.header}),(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:a.question}),a.multiSelect&&(0,Q.jsx)(`div`,{className:`text-[11px] text-text-secondary`,children:`Select multiple`}),(0,Q.jsxs)(`div`,{className:`flex flex-col gap-1.5`,children:[a.options.map((e,t)=>{let n=(i.answers[i.activeTab]||[]).includes(e.label),r=u.focusedOption===t;return(0,Q.jsxs)(`button`,{onClick:()=>d(t),className:`text-left flex items-start gap-2.5 rounded px-2.5 py-2 text-xs border transition-all ${n?`border-primary bg-primary/10 text-text-primary`:`border-border bg-background text-text-secondary hover:border-primary/40 hover:bg-primary/5`} ${r?`ring-2 ring-primary/40 ring-offset-1 ring-offset-background`:``}`,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4.5 h-4.5 rounded text-[10px] font-semibold shrink-0 mt-px ${n?`bg-primary/20 text-primary`:`bg-surface-elevated text-text-secondary`}`,children:t+1}),(0,Q.jsxs)(`div`,{className:`flex flex-col gap-0.5 flex-1`,children:[(0,Q.jsx)(`span`,{className:`font-medium text-text-primary`,children:e.label}),e.description&&(0,Q.jsx)(`span`,{className:`text-[11px] text-text-secondary`,children:e.description})]})]},t)}),(0,Q.jsxs)(`div`,{className:`flex items-start gap-2.5 rounded px-2.5 py-2 text-xs border border-dashed transition-all border-border bg-transparent ${u.focusedOption===o-1?`ring-2 ring-primary/40 ring-offset-1 ring-offset-background`:``}`,children:[(0,Q.jsx)(`span`,{className:`flex items-center justify-center w-4.5 h-4.5 rounded bg-surface-elevated text-text-secondary text-[10px] font-semibold shrink-0 mt-px`,children:`O`}),(0,Q.jsx)(`input`,{ref:r,type:`text`,className:`flex-1 px-2 py-1 text-xs bg-surface border border-border rounded text-text-primary outline-none placeholder:text-text-subtle focus:border-primary`,placeholder:`Other (press O to type)...`,value:i.customInputs[i.activeTab]||``,onChange:e=>i.handleCustomInput(i.activeTab,e.target.value),onFocus:()=>u.setFocusedOption(o-1)})]})]})]}),(0,Q.jsxs)(`div`,{className:`flex gap-2 justify-end pt-1`,children:[s&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`button`,{className:`px-3 py-1.5 text-xs rounded border border-border bg-background text-text-primary hover:bg-surface-elevated disabled:opacity-40 disabled:cursor-not-allowed transition-colors`,onClick:i.goToPrevTab,disabled:i.activeTab===0,tabIndex:-1,children:`← Prev`}),(0,Q.jsx)(`button`,{className:`px-3 py-1.5 text-xs rounded border border-border bg-background text-text-primary hover:bg-surface-elevated disabled:opacity-40 disabled:cursor-not-allowed transition-colors`,onClick:i.goToNextTab,disabled:i.activeTab===e.length-1,tabIndex:-1,children:`Next →`})]}),(0,Q.jsx)(`button`,{onClick:n,className:`px-4 py-1.5 rounded border border-border bg-background text-text-secondary text-xs hover:bg-surface-elevated transition-colors`,tabIndex:-1,children:`Skip`}),(0,Q.jsxs)(`button`,{onClick:c,disabled:!i.allAnswered,className:`px-4 py-1.5 rounded bg-primary text-primary-foreground text-xs font-medium hover:bg-primary/80 transition-colors disabled:opacity-40 disabled:cursor-not-allowed`,tabIndex:-1,children:[`Submit `,i.allAnswered?`✓`:`(${e.filter((e,t)=>i.hasAnswer(t)).length}/${e.length})`]})]})]})}function Be({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)(L,{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)(L,{className:`size-10 text-text-subtle`}),(0,Q.jsx)(`p`,{className:`text-sm`,children:`Send a message to start the conversation`})]}):(0,Q.jsxs)(Ee,{className:`flex-1 overflow-y-auto`,resize:`smooth`,initial:`instant`,children:[(0,Q.jsxs)(Ee.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)(He,{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)(rt,{approval:n,onRespond:r}):(0,Q.jsx)(nt,{approval:n,onRespond:r})),i&&(0,Q.jsx)(et,{lastMessage:e[e.length-1],streamingStatus:a,elapsed:o,warningThreshold:s})]}),(0,Q.jsx)(Ve,{})]})}function Ve(){let{isAtBottom:e,scrollToBottom:t}=De();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)(y,{className:`size-3`}),`Scroll to bottom`]})}function He({message:e,isStreaming:t,projectName:n,onFork:r}){return e.role===`user`?(0,Q.jsx)(Je,{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)(b,{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)(Ze,{events:e.events,isStreaming:t,projectName:n}):e.content&&(0,Q.jsx)(`div`,{className:`text-sm text-text-primary`,children:(0,Q.jsx)(tt,{content:e.content,projectName:n})})})}var Ue=new Set([`.png`,`.jpg`,`.jpeg`,`.gif`,`.webp`]);function We(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 Ge(e,t){let n=u(e);return`/api/project/${encodeURIComponent(t??`_`)}/chat/uploads/${encodeURIComponent(n)}`}function Ke(e){let t=e.lastIndexOf(`.`);return t===-1?!1:Ue.has(e.slice(t).toLowerCase())}function qe(e){return e.toLowerCase().endsWith(`.pdf`)}function Je({content:e,projectName:t,onFork:r}){let{files:i,text:a}=(0,q.useMemo)(()=>We(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)=>Ke(e)?(0,Q.jsx)(Ye,{src:Ge(e,t),alt:u(e)||`image`},n):qe(e)?(0,Q.jsx)(Xe,{src:Ge(e,t),filename:u(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)(x,{className:`size-3.5 shrink-0`}),(0,Q.jsx)(`span`,{className:`truncate max-w-40`,children:u(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 Ye({src:e,alt:t}){let[n,r]=(0,q.useState)(null),[i,a]=(0,q.useState)(!1);return(0,q.useEffect)(()=>{let t,n=f();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)(H,{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 Xe({src:e,filename:t,mimeType:n}){let[r,i]=(0,q.useState)(!1);return(0,Q.jsxs)(`button`,{type:`button`,onClick:(0,q.useCallback)(async()=>{i(!0);try{let t=f(),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)(x,{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 Ze({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)(Qe,{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)($e,{content:e.content,animate:a,projectName:n})},`text-${i}`)}return(0,Q.jsx)(ke,{tool:e.tool,result:e.result,completed:e.completed,projectName:n},`tool-${i}`)})})}function Qe({content:e,isStreaming:t}){let[n,r]=(0,q.useState)(t);return(0,q.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)(k,{className:`size-3 animate-spin`}):(0,Q.jsx)(T,{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 $e({content:e,animate:t,projectName:n}){return(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(tt,{content:e,projectName:n}),t&&(0,Q.jsx)(`span`,{className:`text-text-subtle text-sm animate-pulse`,children:`Thinking...`})]})}function et({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)(k,{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 tt({content:e,projectName:t}){return(0,Q.jsx)(P,{content:e,projectName:t,codeActions:!0})}function nt({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)(G,{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 rt({approval:e,onRespond:t}){return(0,Q.jsx)(ze,{questions:e.input.questions??[],onSubmit:n=>t(e.requestId,!0,n),onSkip:()=>t(e.requestId,!1)})}var it=new Set([`image/png`,`image/jpeg`,`image/gif`,`image/webp`]),at=new Set([`application/pdf`]),ot=[`text/`,`application/json`,`application/xml`,`application/javascript`,`application/typescript`,`application/x-yaml`,`application/toml`,`application/x-sh`],st=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 ct(e){return it.has(e.type)}function lt(e){if(it.has(e.type)||at.has(e.type)||ot.some(t=>e.type.startsWith(t)))return!0;let t=ut(e.name);return!!(t&&st.has(t))}function ut(e){let t=e.lastIndexOf(`.`);return t===-1?``:e.slice(t).toLowerCase()}function dt({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)(H,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,Q.jsx)(x,{className:`size-3.5 shrink-0 text-text-subtle`}),(0,Q.jsx)(`span`,{className:`truncate`,children:e.name}),e.status===`uploading`?(0,Q.jsx)(k,{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)(h,{className:`size-3`})})]},e.id))})}function ft(e){let t=[];function n(e){for(let r of e)t.push(r),r.children&&n(r.children)}return n(e),t}function pt({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,q.useState)(0),s=(0,q.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,q.useEffect)(()=>{o(0)},[t]),(0,q.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,q.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,q.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)(w,{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 mt({onSend:e,isStreaming:t,onCancel:n,disabled:r,projectName:i,onSlashStateChange:a,onSlashItemsLoaded:o,slashSelected:s,onFileStateChange:c,onFileItemsLoaded:u,fileSelected:m,externalFiles:h,initialValue:g}){let[_,v]=(0,q.useState)(g??``),[y,b]=(0,q.useState)([]),x=(0,q.useRef)(null),S=(0,q.useRef)(null),C=(0,q.useRef)(null),w=(0,q.useRef)([]),T=(0,q.useRef)([]);(0,q.useEffect)(()=>{g&&(v(g),setTimeout(()=>{let e=x.current;e&&(e.focus(),e.selectionStart=e.selectionEnd=e.value.length)},50))},[g]),(0,q.useEffect)(()=>{if(!i){w.current=[],o?.([]);return}p.get(`${d(i)}/chat/slash-items`).then(e=>{w.current=e,o?.(e)}).catch(()=>{w.current=[],o?.([])})},[i]),(0,q.useEffect)(()=>{if(!i){T.current=[],u?.([]);return}p.get(`${d(i)}/files/tree?depth=5`).then(e=>{let t=ft(e);T.current=t,u?.(t)}).catch(()=>{T.current=[],u?.([])})},[i]),(0,q.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,``),c?.(!1,``),e&&(e.focus(),setTimeout(()=>{e.selectionStart=e.selectionEnd=i.length},0))},[s]),(0,q.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)}c?.(!1,``)},[m]),(0,q.useEffect)(()=>{!h||h.length===0||D(h)},[h]);let E=(0,q.useCallback)(async e=>{if(!i)return null;try{let t=new FormData;t.append(`files`,e);let n={},r=f();r&&(n.Authorization=`Bearer ${r}`);let a=await(await fetch(`${d(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,q.useCallback)(e=>{for(let t of e){if(!lt(t)){v(e=>e+(e.length>0&&!e.endsWith(` `)?` `:``)+t.name);continue}let e=l(),n=ct(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,q.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,q.useCallback)(()=>{let t=_.trim(),n=y.filter(e=>e.status===`ready`);if(!(!t&&n.length===0)&&!r){a?.(!1,``),c?.(!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,c]),A=(0,q.useCallback)(e=>{e.key===`Enter`&&!e.shiftKey&&(e.preventDefault(),k())},[k]),j=(0,q.useCallback)((e,t)=>{let n=e.slice(0,t),r=n.match(/(?:^|\s)\/(\S*)$/);if(r&&w.current.length>0){a?.(!0,r[1]??``),c?.(!1,``);return}let i=n.match(/@(\S*)$/);if(i&&T.current.length>0){c?.(!0,i[1]??``),a?.(!1,``);return}a?.(!1,``),c?.(!1,``)},[a,c]),M=(0,q.useCallback)(e=>{v(e),setTimeout(()=>{j(e,x.current?.selectionStart??e.length)},0)},[j]),N=(0,q.useCallback)(e=>{let t=e?.target??x.current;t&&(t.style.height=`auto`,t.style.height=Math.min(t.scrollHeight,160)+`px`)},[]),P=(0,q.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]),F=(0,q.useCallback)(e=>{e.preventDefault();let t=Array.from(e.dataTransfer.files);t.length>0&&D(t)},[D]),L=(0,q.useCallback)(e=>{e.preventDefault()},[]),R=(0,q.useCallback)(()=>{C.current?.click()},[]),z=(0,q.useCallback)(e=>{let t=Array.from(e.target.files??[]);t.length>0&&D(t),e.target.value=``},[D]),B=_.trim().length>0||y.some(e=>e.status===`ready`),V=t&&!B;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)(dt,{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)(W,{className:`size-4`})}),(0,Q.jsx)(`textarea`,{ref:S,value:_,onChange:e=>{M(e.target.value),N(e)},onKeyDown:A,onPaste:P,onDrop:F,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`}),V?(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)(K,{className:`size-3`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k()},disabled:r||!B,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)(I,{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),N(e)},onKeyDown:A,onPaste:P,onDrop:F,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)(W,{className:`size-4`})})}),(0,Q.jsx)(`div`,{className:`flex items-center gap-1`,children:V?(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)(K,{className:`size-3.5`})}):(0,Q.jsx)(`button`,{onClick:e=>{e.stopPropagation(),k()},disabled:r||!B,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)(I,{className:`size-4`})})})]})]})]}),(0,Q.jsx)(`input`,{ref:C,type:`file`,multiple:!0,className:`hidden`,onChange:z})]})}function ht({items:e,filter:t,onSelect:n,onClose:r,visible:i}){let[a,o]=(0,q.useState)(0),s=(0,q.useRef)(null),c=e.filter(e=>{let n=t.toLowerCase();return e.name.toLowerCase().includes(n)||e.description.toLowerCase().includes(n)});(0,q.useEffect)(()=>{o(0)},[t]),(0,q.useEffect)(()=>{let e=s.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let l=(0,q.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,q.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)(ne,{className:`size-4 text-amber-500`}):(0,Q.jsx)(_,{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 gt(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function _t(e){return e>=90?`bg-red-500`:e>=70?`bg-amber-500`:`bg-green-500`}function vt(e){if(!e)return null;let t=null;if(e.resetsInMinutes!=null)t=e.resetsInMinutes;else if(e.resetsInHours!=null)t=Math.round(e.resetsInHours*60);else if(e.resetsAt){let n=new Date(e.resetsAt).getTime()-Date.now();t=n>0?Math.ceil(n/6e4):0}if(t==null)return null;if(t<=0)return`now`;let n=Math.floor(t/1440),r=Math.floor(t%1440/60),i=t%60;return n>0?i>0?`${n}d ${r}h ${i}m`:r>0?`${n}d ${r}h`:`${n}d`:r>0?i>0?`${r}h ${i}m`:`${r}h`:`${i}m`}function yt({label:e,bucket:t}){if(!t)return null;let n=Math.round(t.utilization*100),r=vt(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 ${_t(n)}`,style:{width:`${Math.min(n,100)}%`}})}),(0,Q.jsxs)(`span`,{className:`text-xs font-medium tabular-nums w-10 text-right ${gt(n)}`,children:[n,`%`]})]})]})}function bt(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 xt({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:bt(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)(C,{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)(yt,{label:`5-Hour Session`,bucket:e.session}),(0,Q.jsx)(yt,{label:`Weekly`,bucket:e.weekly}),(0,Q.jsx)(yt,{label:`Weekly (Opus)`,bucket:e.weeklyOpus}),(0,Q.jsx)(yt,{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 St(e){try{return new Date(e).toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}function Ct(e){return e>=90?`text-red-500`:e>=70?`text-amber-500`:`text-green-500`}function wt({projectName:e,usageInfo:t,contextWindowPct:n,usageLoading:r,refreshUsage:i,lastFetchedAt:a,sessionId:o,onSelectSession:c,onBugReport:l,isConnected:u,onReconnect:f}){let[_,v]=(0,q.useState)(null),[y,b]=(0,q.useState)([]),[x,w]=(0,q.useState)(!1),[T,E]=(0,q.useState)(``),[D,O]=(0,q.useState)(null),[M,N]=(0,q.useState)(``),P=(0,q.useRef)(null),I=s(e=>e.openTab),L=e=>{v(t=>t===e?null:e)},R=(0,q.useCallback)(async()=>{if(e){w(!0);try{b(await p.get(`${d(e)}/chat/sessions`))}catch{}finally{w(!1)}}},[e]);(0,q.useEffect)(()=>{_===`history`&&y.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,q.useCallback)((e,t)=>{t.stopPropagation(),O(e.id),N(e.title||``),setTimeout(()=>P.current?.select(),0)},[]),V=(0,q.useCallback)(async()=>{if(!D||!M.trim()||!e){O(null);return}try{await p.patch(`${d(e)}/chat/sessions/${D}`,{title:M.trim()}),b(e=>e.map(e=>e.id===D?{...e,title:M.trim()}:e))}catch{}O(null)},[D,M,e]),H=(0,q.useCallback)(()=>O(null),[]),U=T.trim()?y.filter(e=>(e.title||``).toLowerCase().includes(T.toLowerCase())):y,W=t.fiveHour==null?null:Math.round(t.fiveHour*100),G=t.sevenDay==null?null:Math.round(t.sevenDay*100),ne=W!=null||G!=null?Ct(Math.max(W??0,G??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`:``} ${ne}`,title:`Usage limits`,children:[(0,Q.jsx)(F,{className:`size-3`}),(0,Q.jsxs)(`span`,{children:[`5h:`,W==null?`--%`:`${W}%`]}),(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{children:[`Wk:`,G==null?`--%`:`${G}%`]}),n!=null&&(0,Q.jsxs)(Q.Fragment,{children:[(0,Q.jsx)(`span`,{className:`text-text-subtle`,children:`·`}),(0,Q.jsxs)(`span`,{className:Ct(n),children:[`Ctx:`,n,`%`]})]})]}),(0,Q.jsx)(`div`,{className:`flex-1`}),f&&(0,Q.jsx)(`button`,{onClick:f,className:`size-4 flex items-center justify-center`,title:u?`Connected`:`Disconnected — click to reconnect`,children:(0,Q.jsx)(`span`,{className:`size-2 rounded-full ${u?`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)(g,{className:`size-3 text-text-subtle shrink-0`}),(0,Q.jsx)(`input`,{type:`text`,value:T,onChange:e=>E(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:x,className:`p-0.5 rounded text-text-subtle hover:text-text-secondary transition-colors disabled:opacity-50`,title:`Refresh`,children:(0,Q.jsx)(C,{className:`size-3 ${x?`animate-spin`:``}`})})]}),(0,Q.jsx)(`div`,{className:`max-h-[200px] overflow-y-auto`,children:x&&y.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3`,children:(0,Q.jsx)(k,{className:`size-3.5 animate-spin text-text-subtle`})}):U.length===0?(0,Q.jsx)(`div`,{className:`flex items-center justify-center py-3 text-[11px] text-text-subtle`,children:T?`No matching sessions`:`No sessions yet`}):U.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)(m,{className:`size-3 shrink-0 text-text-subtle`}),D===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:P,value:M,onChange:e=>N(e.target.value),onBlur:V,onKeyDown:e=>{e.key===`Escape`&&H()},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)(S,{className:`size-3`})}),(0,Q.jsx)(`button`,{type:`button`,className:`p-0.5 text-text-subtle hover:text-text-secondary`,onClick:e=>{e.stopPropagation(),H()},children:(0,Q.jsx)(h,{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)(A,{className:`size-3`})})]}),D!==e.id&&e.updatedAt&&(0,Q.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0`,children:St(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)(j,{compact:!0})}),_===`usage`&&(0,Q.jsx)(xt,{usage:t,visible:!0,onClose:()=>v(null),onReload:i,loading:r,lastFetchedAt:a})]})}function Tt({metadata:e,tabId:t}){let[n,r]=(0,q.useState)(e?.sessionId??null),[i,a]=(0,q.useState)(e?.providerId??`claude`),[o,l]=(0,q.useState)([]),[u,f]=(0,q.useState)(!1),[m,h]=(0,q.useState)(``),[g,_]=(0,q.useState)(null),[v,y]=(0,q.useState)([]),[b,x]=(0,q.useState)(!1),[S,C]=(0,q.useState)(``),[w,T]=(0,q.useState)(null),[E,D]=(0,q.useState)(!1),[k,A]=(0,q.useState)(null),j=(0,q.useRef)(0),P=e?.projectName??``,F=s(e=>e.updateTab),I=c(e=>e.version),{usageInfo:L,usageLoading:R,lastFetchedAt:z,refreshUsage:B}=he(P,i);(0,q.useEffect)(()=>{!t||!n||F(t,{metadata:{...e,sessionId:n,providerId:i}})},[n,i]);let{messages:V,messagesLoading:ee,isStreaming:H,streamingStatus:U,connectingElapsed:W,thinkingWarningThreshold:te,pendingApproval:G,contextWindowPct:ne,sessionTitle:K,sendMessage:J,respondToApproval:re,cancelStreaming:ie,reconnect:ae,refetchMessages:oe,isConnected:Y}=pe(n,i,P);(0,q.useEffect)(()=>{t&&K&&F(t,{title:K})},[K]);let X=(0,q.useRef)(e?.pendingMessage);(0,q.useEffect)(()=>{if(X.current&&Y&&n){let n=X.current;X.current=void 0,t&&F(t,{metadata:{...e,pendingMessage:void 0}}),setTimeout(()=>J(n),100)}},[Y,n]),(0,q.useCallback)(()=>{s.getState().openTab({type:`chat`,title:`AI Chat`,metadata:{projectName:P},projectId:P||null,closable:!0})},[P]);let se=(0,q.useCallback)(e=>{r(e.id),a(e.providerId),t&&F(t,{title:e.title||`Chat`})},[t,F]),ce=(0,q.useCallback)(async e=>{if(!(!n||!P))try{let{api:t,projectUrl:r}=await O(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(P)}/chat/sessions/${n}/fork?providerId=${i}`);s.getState().openTab({type:`chat`,title:`Fork: ${e.slice(0,30)}`,metadata:{projectName:P,sessionId:a.id,providerId:i,pendingMessage:e},projectId:P||null,closable:!0})}catch(e){console.error(`Fork failed:`,e)}},[n,P,i]),le=(0,q.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},[]),ue=(0,q.useCallback)(async(e,t=[])=>{let o=le(e,t);if(o.trim()){if(!n)try{let t=P,n=await p.post(`${d(t)}/chat/sessions`,{providerId:i,title:e.slice(0,50)});r(n.id),a(n.providerId),setTimeout(()=>{J(o)},500);return}catch(e){console.error(`Failed to create session:`,e);return}J(o)}},[n,i,P,J,le]),de=(0,q.useCallback)((e,t)=>{f(e),h(t)},[]),fe=(0,q.useCallback)(e=>{_(e),f(!1),h(``),setTimeout(()=>_(null),50)},[]),me=(0,q.useCallback)(()=>{f(!1),h(``)},[]),ge=(0,q.useCallback)((e,t)=>{x(e),C(t)},[]),_e=(0,q.useCallback)(e=>{T(e),x(!1),C(``),setTimeout(()=>T(null),50)},[]),ve=(0,q.useCallback)(()=>{x(!1),C(``)},[]);return(0,Q.jsxs)(`div`,{className:`flex flex-col h-full relative`,onDragEnter:(0,q.useCallback)(e=>{e.preventDefault(),j.current++,e.dataTransfer.types.includes(`Files`)&&D(!0)},[]),onDragLeave:(0,q.useCallback)(e=>{e.preventDefault(),j.current--,j.current===0&&D(!1)},[]),onDragOver:(0,q.useCallback)(e=>{e.preventDefault()},[]),onDrop:(0,q.useCallback)(e=>{e.preventDefault(),j.current=0,D(!1);let t=Array.from(e.dataTransfer.files);t.length>0&&(A(t),setTimeout(()=>A(null),100))},[]),children:[E&&(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)(N,{className:`size-8`}),(0,Q.jsx)(`span`,{className:`text-sm font-medium`,children:`Drop files to attach`})]})}),(0,Q.jsx)(Be,{messages:V,messagesLoading:ee,pendingApproval:G,onApprovalResponse:re,isStreaming:H,streamingStatus:U,connectingElapsed:W,thinkingWarningThreshold:te,projectName:P,onFork:H?void 0:ce}),(0,Q.jsxs)(`div`,{className:`border-t border-border bg-background shrink-0`,children:[(0,Q.jsx)(wt,{projectName:P,usageInfo:L,contextWindowPct:ne,usageLoading:R,refreshUsage:B,lastFetchedAt:z,sessionId:n,onSelectSession:se,onBugReport:n?()=>M(I,{sessionId:n,projectName:P}):void 0,isConnected:Y,onReconnect:()=>{Y||ae(),oe()}}),(0,Q.jsx)(ht,{items:o,filter:m,onSelect:fe,onClose:me,visible:u}),(0,Q.jsx)(pt,{items:v,filter:S,onSelect:_e,onClose:ve,visible:b}),(0,Q.jsx)(mt,{onSend:ue,isStreaming:H,onCancel:ie,projectName:P,onSlashStateChange:de,onSlashItemsLoaded:l,slashSelected:g,onFileStateChange:ge,onFileItemsLoaded:y,fileSelected:w,externalFiles:k})]})]})}export{Tt as ChatTab};
|