summaryrefslogtreecommitdiffhomepage
path: root/src/app/App.svelte
blob: 9225cc768f28b44356cfad0e8bd1d5bfd4ad08c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<script lang="ts">
	import type { ReasoningEffort } from "@dispatch/transport-contract";
	import type { InvokeMessage } from "@dispatch/ui-contract";
	import { tick } from "svelte";
	import Table from "../components/Table.svelte";
	import {
		CacheWarmingView,
		manifest as cacheWarmingManifest,
		type WarmFeedback,
	} from "../features/cache-warming";
	import {
		ChatView,
		CompactionView,
		Composer,
		manifest as chatManifest,
		ModelSelector,
		ReasoningEffortSelector,
		type CompactNowResult,
		type ReasoningEffortSaveResult,
		type SaveCompactPercentResult,
	} from "../features/chat";
	import { manifest as conversationCacheManifest } from "../features/conversation-cache";
	import { manifest as markdownManifest } from "../features/markdown";
	import {
		ChatLimitField,
		manifest as settingsManifest,
		type ChatLimitSaveResult,
	} from "../features/settings";
	import {
		createSmartScrollController,
		manifest as smartScrollManifest,
		ScrollToBottom,
	} from "../features/smart-scroll";
	import { manifest as surfaceHostManifest, SurfaceView } from "../features/surface-host";
	import { parseMessageQueuePayload } from "../features/surface-host/logic/message-queue";
	import { parseTodoPayload } from "../features/surface-host/logic/todo";
	import TodoList from "../features/surface-host/ui/TodoList.svelte";
	import { manifest as tabsManifest, TabBar } from "../features/tabs";
	import { manifest as viewsManifest, ViewSidebar } from "../features/views";
	import {
		CwdField,
		type CwdSaveResult,
		LspStatusView,
		type LspStatusResult,
		manifest as workspaceManifest,
	} from "../features/workspace";
	import type { AppStore } from "./store.svelte";
	import { createLocalStore } from "../adapters/local-storage";
	import { untrack } from "svelte";

	let { store }: { store: AppStore } = $props();

	// The backend's conversation-scoped cache-warming surface. Referenced by id at
	// the composition root (sanctioned discovery-by-id) to give it a dedicated view
	// and keep it out of the generic Extensions surface list — SurfaceView itself
	// stays fully generic (it never switches on a surface id).
	const CACHE_WARMING_ID = "cache-warming";
	// The message-queue extension's per-conversation surface (steering). Pulled
	// out of the generic Extensions list and rendered as a compact panel above the
	// composer — pending steering messages are tied to the chat, not the sidebar.
	const MESSAGE_QUEUE_ID = "message-queue";
	// The `todo` extension's per-conversation task list surface (model-maintained).
	const TODO_ID = "todo";

	// The view kinds offered in the sidebar's dropdown. Generic data — the
	// `viewContent` snippet below maps each kind id to its renderer.
	const viewKinds = [
		{ id: "model", label: "Model" },
		{ id: "lsp", label: "Language Servers" },
		{ id: "extensions", label: "Extensions" },
		{ id: "cache-warming", label: "Cache Warming" },
		{ id: "tasks", label: "Tasks" },
		{ id: "compaction", label: "Compaction" },
		{ id: "settings", label: "Settings" },
	] as const;

	// Default sidebar layout: just the Model view.
	const DEFAULT_VIEWS: readonly string[] = ["model"];
	const sidebarStore = createLocalStore<readonly string[]>("dispatch.sidebar.views", {
		storage: untrack(() => store.storage),
	});
	const sidebarPanels = sidebarStore.load() ?? DEFAULT_VIEWS;

	function handleSidebarChange(kinds: readonly (string | null)[]): void {
		sidebarStore.save(kinds.filter((k): k is string => k !== null));
	}

	// Frontend module list for the "Loaded Modules" view, AGGREGATED from each
	// feature's public `manifest` export so it can't drift from what's actually
	// composed. (The backend's "Loaded Extensions" surface is a SEPARATE,
	// backend-owned list.) FE features are internal units of this single repo, so
	// there is no per-module version — they all share dispatch-web's version.
	const MODULE_COLUMNS = ["Module", "Description"] as const;
	const loadedModules: readonly (readonly [string, string])[] = [
		chatManifest,
		tabsManifest,
		surfaceHostManifest,
		viewsManifest,
		conversationCacheManifest,
		markdownManifest,
		cacheWarmingManifest,
		workspaceManifest,
		smartScrollManifest,
		settingsManifest,
	].map((m) => [m.name, m.description] as const);

	// Smart-scroll: keep the transcript pinned to the bottom while it streams,
	// unless the reader has scrolled up (then show a "scroll to bottom" button).
	// One controller owns the chat scroll region; effects below feed it the edges.
	const smartScroll = createSmartScrollController();
	let transcriptEl = $state<HTMLElement | undefined>();
	let transcriptContentEl = $state<HTMLElement | undefined>();

	// Chat-limit unload gate: old chunks may be unloaded only while the reader is
	// stuck to the bottom. While stuck, a trim removes content far ABOVE the
	// viewport and the controller re-pins to the bottom — no visible jump; while
	// reading history, trimming is deferred instead of yanking the page (the old
	// Dispatch bug). In an $effect so a swapped store prop would be re-wired.
	$effect(() => {
		store.attachUnloadGate(() => smartScroll.isAtBottom());
	});

	// "Show earlier messages": page older history back in, preserving the reader's
	// viewport position — prepended content grows scrollHeight, so shift scrollTop
	// by the growth (the manual analogue of CSS scroll anchoring, which not every
	// engine applies here).
	async function handleShowEarlier(): Promise<void> {
		const el = transcriptEl;
		const prevHeight = el?.scrollHeight ?? 0;
		const prevTop = el?.scrollTop ?? 0;
		await store.activeChat.showEarlier();
		await tick();
		if (el) {
			const delta = el.scrollHeight - prevHeight;
			if (delta > 0) el.scrollTop = prevTop + delta;
		}
	}

	// Attach/detach the controller to the live scroll element + content (disposed on
	// unmount). The content element is observed (ResizeObserver) so the view follows
	// height changes that aren't a transcript append.
	$effect(() => {
		if (!transcriptEl) return;
		return smartScroll.attach(transcriptEl, transcriptContentEl);
	});

	// New transcript content streamed in (or messages loaded) → follow the bottom
	// while stuck. Reads `chunks.length` so the effect re-runs on every append.
	$effect(() => {
		void store.activeChat.chunks.length;
		smartScroll.contentChanged();
	});

	// The message-queue surface spec + whether it currently has pending messages
	// (steering). Rendered as a compact panel above the composer only when non-empty.
	const messageQueueSpec = $derived(store.surface(MESSAGE_QUEUE_ID));
	const hasQueuedMessages = $derived.by(() => {
		const spec = messageQueueSpec;
		if (spec === null) return false;
		const field = spec.fields.find((f) => f.kind === "custom" && f.rendererId === MESSAGE_QUEUE_ID);
		if (field === undefined || field.kind !== "custom") return false;
		const data = parseMessageQueuePayload(field.payload);
		return data !== null && data.messages.length > 0;
	});

	// The todo surface spec + its parsed task list (model-maintained, read-only).
	const todoSpec = $derived(store.surface(TODO_ID));
	const todoData = $derived.by(() => {
		const spec = todoSpec;
		if (spec === null) return null;
		const field = spec.fields.find((f) => f.kind === "custom" && f.rendererId === TODO_ID);
		if (field === undefined || field.kind !== "custom") return null;
		return parseTodoPayload(field.payload);
	});

	// Conversation/tab switch → snap to the bottom of the new transcript.
	$effect(() => {
		void store.activeConversationId;
		smartScroll.reset();
	});

	// Right sidebar: persisted open/closed state. Defaults to open on wide
	// screens (first visit), then remembers the user's toggle thereafter.
	const WIDE_BREAKPOINT = 1024; // Tailwind `lg`
	const sidebarOpenStore = createLocalStore<boolean>("dispatch.sidebar.open", {
		storage: untrack(() => store.storage),
	});
	const storedSidebarOpen = sidebarOpenStore.load();
	let sidebarOpen = $state(storedSidebarOpen ?? (typeof window !== "undefined" ? window.innerWidth >= WIDE_BREAKPOINT : true));

	$effect(() => {
		sidebarOpenStore.save(sidebarOpen);
	});

	function handleInvoke(msg: InvokeMessage) {
		store.invoke(msg.surfaceId, msg.actionId, msg.payload);
	}

	function handleSend(text: string) {
		store.send(text);
	}

	function handleQueue(text: string) {
		store.queueMessage(text);
	}

	function handleStop() {
		store.stopGeneration();
	}

	function handleSelectModel(model: string) {
		store.selectModel(model);
	}

	// Adapt the store's WarmResult to the cache-warming feature's WarmNow port.
	async function warmNow(): Promise<WarmFeedback | null> {
		const result = await store.warmNow();
		if (result === null) return null;
		return result.ok
			? {
					ok: true,
					cachePct: result.response.cachePct,
					expectedCacheRate: result.response.expectedCacheRate,
				}
			: { ok: false, error: result.error };
	}

	// Adapt the store's reasoning-effort result to the chat feature's port.
	async function saveReasoningEffort(
		level: ReasoningEffort,
	): Promise<ReasoningEffortSaveResult | null> {
		const result = await store.setReasoningEffort(level);
		if (result === null) return null;
		return result.ok
			? { ok: true, reasoningEffort: result.reasoningEffort }
			: { ok: false, error: result.error };
	}

	// Adapt the store's compact result to the compaction view's port.
	async function compactNow(): Promise<CompactNowResult | null> {
		const result = await store.compactNow();
		if (result === null) return null;
		return result.ok
			? {
					ok: true,
					messagesSummarized: result.response.messagesSummarized,
					messagesKept: result.response.messagesKept,
				}
			: { ok: false, error: result.error };
	}

	async function saveCompactPercent(
		percent: number,
	): Promise<SaveCompactPercentResult | null> {
		const result = await store.setCompactPercent(percent);
		if (result === null) return null;
		return result.ok
			? { ok: true, percent: result.percent }
			: { ok: false, error: result.error };
	}

	// Adapt the store's chat-limit result to the settings feature's port. On a
	// raise the active chat refills (prepends older history); preserve the
	// reader's viewport over the prepend (the manual analogue of CSS scroll
	// anchoring), exactly like `handleShowEarlier`.
	async function saveChatLimit(value: number): Promise<ChatLimitSaveResult> {
		const el = transcriptEl;
		const prevHeight = el?.scrollHeight ?? 0;
		const prevTop = el?.scrollTop ?? 0;
		const result = await store.setChatLimit(value);
		await tick();
		if (el) {
			const delta = el.scrollHeight - prevHeight;
			if (delta > 0) el.scrollTop = prevTop + delta;
		}
		return result.ok
			? { ok: true, chatLimit: result.chatLimit }
			: { ok: false, error: result.error };
	}

	// Adapt the store's cwd/LSP results to the workspace feature's ports.
	async function saveCwd(cwd: string): Promise<CwdSaveResult | null> {
		const result = await store.setCwd(cwd);
		if (result === null) return null;
		return result.ok ? { ok: true, cwd: result.cwd } : { ok: false, error: result.error };
	}

	async function loadLspStatus(): Promise<LspStatusResult | null> {
		const result = await store.lspStatus();
		if (result === null) return null;
		return result.ok
			? { ok: true, cwd: result.response.cwd, servers: result.response.servers }
			: { ok: false, error: result.error };
	}
</script>

<main class="relative flex h-screen overflow-hidden">
	<!-- LEFT: everything except the sidebar. The full-height sidebar is a sibling
	     (below), so opening it shrinks this ENTIRE column — tab row included, which
	     slides the hamburger left. -->
	<div class="flex min-w-0 flex-1 flex-col overflow-hidden pt-[5px]">
		<!-- Tab row: the tab strip fills + scrolls internally (flex-1 min-w-0), with
		     a permanently seated hamburger pinned to the far right. -->
		<div class="flex min-w-0 items-center">
			<TabBar
				tabs={store.tabs}
				activeConversationId={store.activeConversationId}
				statusFor={(id) => store.conversationStatus(id)}
				onSelect={(id) => store.selectTab(id)}
				onClose={(id) => store.closeTab(id)}
				onNewDraft={() => store.newDraft()}
				onRename={(id, title) => store.renameTab(id, title)}
			/>
			<span
				class="shrink-0 select-none px-1 font-mono text-[10px] leading-none text-base-content/30"
				title="Build version (git short hash)"
			>
				{__APP_VERSION__}
			</span>
			<button
				class="btn btn-square btn-ghost btn-sm mx-1 shrink-0"
				aria-label="Toggle sidebar"
				aria-expanded={sidebarOpen}
				onclick={() => (sidebarOpen = !sidebarOpen)}
			>
				<svg
					xmlns="http://www.w3.org/2000/svg"
					fill="none"
					viewBox="0 0 24 24"
					stroke-width="2"
					stroke="currentColor"
					class="size-5"
					aria-hidden="true"
				>
					<path
						stroke-linecap="round"
						stroke-linejoin="round"
						d="M3.75 6.75h16.5M3.75 12h16.5M3.75 17.25h16.5"
					/>
				</svg>
			</button>
		</div>

		{#if store.lastError}
			<div role="alert" class="alert alert-error mx-4 mt-2">
				<strong>Error:</strong>
				{store.lastError.message}
			</div>
		{/if}

		{#if store.activeChat.error}
			<div role="alert" class="alert alert-warning mx-4 mt-2">
				<strong>Chat error:</strong>
				{store.activeChat.error}
			</div>
		{/if}

		<div class="relative min-h-0 min-w-0 flex-1">
			<div bind:this={transcriptEl} class="h-full overflow-y-auto">
				<div bind:this={transcriptContentEl}>
					{#key store.activeConversationId}
						<ChatView
							chunks={store.activeChat.chunks}
							turnMetrics={store.activeChat.turnMetrics}
							hasEarlier={store.activeChat.hasEarlier}
							onShowEarlier={handleShowEarlier}
							thinkingKeyBase={store.activeChat.thinkingKeyBase}
						/>
					{/key}
				</div>
			</div>
			{#if store.activeChat.chunks.length === 0}
				<div
					class="pointer-events-none absolute inset-0 flex items-center justify-center"
					aria-hidden="true"
				>
					<span class="select-none text-4xl font-bold opacity-10">Dispatch</span>
				</div>
			{/if}
			<ScrollToBottom show={smartScroll.showButton} onResume={() => smartScroll.resume()} />
		</div>

		{#if hasQueuedMessages && messageQueueSpec !== null}
			<!-- Pending steering messages (the message-queue surface). Rendered via
			     the generic SurfaceView (dispatches on rendererId, never surface id);
			     only shown when the queue is non-empty — an idle queue is hidden. -->
			<div class="px-4 pt-2">
				<SurfaceView spec={messageQueueSpec} onInvoke={handleInvoke} />
			</div>
		{/if}

		<Composer
			onSend={handleSend}
			onQueue={handleQueue}
			onStop={handleStop}
			contextSize={store.activeChat.currentContextSize}
			contextWindow={store.modelInfo[store.activeModel]?.contextWindow}
			status={store.activeChat.error
				? "error"
				: store.activeChat.generating
					? "running"
					: "idle"}
		/>
	</div>

	<!-- Full-height right sidebar. On wide screens (`lg:relative`) it is in-flow, so
	     opening it shrinks the whole left column (push). Below `lg` it overlays
	     (`max-lg:absolute`, full height) with a backdrop. -->
	<aside
		class="flex shrink-0 flex-col overflow-x-hidden transition-[width] duration-300 ease-out max-lg:absolute max-lg:inset-y-0 max-lg:right-0 max-lg:z-30 lg:relative"
		class:w-80={sidebarOpen}
		class:w-0={!sidebarOpen}
	>
		<div
			class="flex h-full w-80 flex-col gap-2 overflow-y-auto border-l border-base-300 bg-base-100 p-3 transition-transform duration-300 ease-out"
			style="transform: translateX({sidebarOpen ? '0' : '100%'})"
		>
			<ViewSidebar kinds={viewKinds} initial={sidebarPanels} onChange={handleSidebarChange} content={viewContent} />
		</div>
	</aside>

	<!-- Backdrop: only on narrow screens (overlay mode), click to close. -->
	{#if sidebarOpen}
		<!-- svelte-ignore a11y_no_static_element_interactions -->
		<div
			class="fixed inset-0 z-20 bg-black/30 lg:hidden"
			role="button"
			tabindex="0"
			aria-label="Close sidebar"
			onclick={() => (sidebarOpen = false)}
			onkeydown={(e) => {
				if (e.key === "Escape" || e.key === "Enter") sidebarOpen = false;
			}}
		></div>
	{/if}
</main>

{#snippet viewContent(kind: string)}
	{#if kind === "model"}
		<div class="flex flex-col gap-3">
			<ModelSelector models={store.models} selected={store.activeModel} onSelect={handleSelectModel} />
			<!-- Keyed on the workspace conversation (active tab OR draft) so the inputs
			     re-mount per conversation — incl. switching between drafts — and can't
			     bleed across tabs. Editable for a draft too (cwd + effort apply from turn 1). -->
			{#key store.currentConversationId}
				<ReasoningEffortSelector persisted={store.reasoningEffort} save={saveReasoningEffort} />
				<CwdField cwd={store.cwd} canEdit={true} save={saveCwd} />
			{/key}
		</div>
	{:else if kind === "lsp"}
		<!-- Re-mount per conversation (incl. draft) so the loaded server list is isolated. -->
		{#key store.currentConversationId}
			<LspStatusView cwd={store.cwd} canView={true} load={loadLspStatus} />
		{/key}
	{:else if kind === "extensions"}
		<section>
			<h3 class="mb-1 text-xs font-semibold uppercase opacity-60">Frontend modules</h3>
			<Table columns={MODULE_COLUMNS} rows={loadedModules} />
		</section>
		<section class="mt-4 flex flex-col gap-3">
			<h3 class="text-xs font-semibold uppercase opacity-60">Surfaces</h3>
			{#each store.surfaces.filter((s) => s.id !== CACHE_WARMING_ID && s.id !== MESSAGE_QUEUE_ID && s.id !== TODO_ID) as spec (spec.id)}
				<SurfaceView {spec} onInvoke={handleInvoke} />
			{/each}
		</section>
	{:else if kind === "cache-warming"}
		<!-- Re-mount per conversation (like ChatView) so the view's local warming
		     history / manual-warm feedback can't bleed across tabs. -->
		{#key store.activeConversationId}
			<CacheWarmingView
				spec={store.surface(CACHE_WARMING_ID)}
				canWarm={store.activeConversationId !== null}
				onInvoke={handleInvoke}
				{warmNow}
			/>
		{/key}
	{:else if kind === "tasks"}
		<!-- Re-mount per conversation so the task list is isolated per conversation. -->
		{#key store.activeConversationId}
			{#if todoData !== null && todoData.todos.length > 0}
				<TodoList payload={todoData} />
			{:else}
				<p class="text-xs opacity-60">No tasks yet.</p>
			{/if}
		{/key}
	{:else if kind === "compaction"}
		<!-- Re-mount per conversation so the percent + feedback can't bleed across tabs. -->
		{#key store.currentConversationId}
			<CompactionView
				percent={store.compactPercent}
				canCompact={store.activeConversationId !== null}
				{compactNow}
				savePercent={saveCompactPercent}
			/>
		{/key}
	{:else if kind === "settings"}
		<!-- FE-local settings. Not conversation-scoped (no {#key}: the chat limit is
		     global), so the field stays mounted across tab switches. -->
		<div class="flex flex-col gap-3">
			<ChatLimitField chatLimit={store.chatLimit} save={saveChatLimit} />
		</div>
	{/if}
{/snippet}