Replace the full-innerHTML render loop with a static shell plus per-region updates, so composer drafts, fold state, focus, and scroll survive streaming turns. Fold session events into one trace graph consumed by Chat, Trajectory, Waterfall, and the shared inspector drawer, with live ACP updates patched into a keyed live-turn region. Align the visual system with a tokenized design spec: a 4px spacing base with fixed control/row height steps, foreground-derived text tiers and borders (color-mix), neutral interaction overlays, tiered motion durations with a reduced-motion collapse, hover-revealed scrollbars, and drawer-aware layout elasticity. Localize trajectory role chips and row previews. The renderer entry (app.ts) joins the coverage exclude list as a self-executing DOM bootstrap: jsdom lifecycle specs exercise its behavior, and extractable logic lives in covered modules (trace-graph.ts, renderer-content.ts).
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
#!/usr/bin/env node
|
|
import { spawn } from 'node:child_process'
|
|
import { dirname, resolve } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
const here = dirname(fileURLToPath(import.meta.url))
|
|
const packageRoot = resolve(here, '..')
|
|
const repoRoot = resolve(packageRoot, '../../..')
|
|
const viteUrl = process.env.DSH_DESKTOP_VITE_URL ?? 'http://127.0.0.1:5174'
|
|
|
|
const packageBin = resolve(packageRoot, 'node_modules/.bin')
|
|
|
|
const vite = spawn(resolve(packageBin, 'vite'), [
|
|
'--host',
|
|
'127.0.0.1',
|
|
'--port',
|
|
'5174',
|
|
// Fail fast instead of silently moving ports: Electron loads the URL below,
|
|
// so a relocated Vite would leave the window pointing at a stale instance.
|
|
'--strictPort',
|
|
], {
|
|
cwd: packageRoot,
|
|
env: { ...process.env },
|
|
stdio: ['ignore', 'pipe', 'pipe'],
|
|
})
|
|
|
|
let electronStarted = false
|
|
let electron
|
|
|
|
const startElectron = () => {
|
|
if (electronStarted) return
|
|
electronStarted = true
|
|
electron = spawn(resolve(packageBin, 'electron'), ['src/main.mjs'], {
|
|
cwd: packageRoot,
|
|
env: { ...process.env, VITE_DEV_SERVER_URL: viteUrl },
|
|
stdio: 'inherit',
|
|
})
|
|
electron.on('exit', (code, signal) => {
|
|
vite.kill('SIGTERM')
|
|
process.exit(code ?? (signal === null ? 0 : 1))
|
|
})
|
|
}
|
|
|
|
const pipeVite = (chunk, stream) => {
|
|
const text = chunk.toString()
|
|
stream.write(text)
|
|
if (text.includes('Local:') || text.includes(viteUrl)) startElectron()
|
|
}
|
|
|
|
vite.stdout.on('data', chunk => { pipeVite(chunk, process.stdout) })
|
|
vite.stderr.on('data', chunk => { pipeVite(chunk, process.stderr) })
|
|
vite.on('exit', (code, signal) => {
|
|
if (!electronStarted) process.exit(code ?? (signal === null ? 0 : 1))
|
|
})
|
|
|
|
process.on('SIGINT', () => {
|
|
electron?.kill('SIGINT')
|
|
vite.kill('SIGINT')
|
|
})
|
|
process.on('SIGTERM', () => {
|
|
electron?.kill('SIGTERM')
|
|
vite.kill('SIGTERM')
|
|
})
|