## What / Why This PR finishes the desktop refactor: the Tauri app is now a thin shell that launches the web server as a sidecar and loads the UI from `http://127.0.0.1:<port>`. All real backend logic lives in `packages/web/server/index.js`; desktop Rust keeps only native integrations (menu/dialog/notifications/updater/deep-link + window chrome). This unblocks: - consistent behavior across web/desktop/vscode (single backend) - simpler desktop maintenance (no duplicated Rust backend) - host switching between Local + remote instances in desktop - reliable cold-start behavior on slow machines (VSCode + desktop) ## Key changes - Desktop sidecar runtime - build pipeline to bundle web dist + `openchamber-server` sidecar (`packages/desktop/scripts/build-sidecar.mjs`) - robust local port selection (prefer saved/default, fallback to random; persisted in `~/.config/openchamber/settings.json`) - improved PATH handling so the sidecar can locate `opencode` CLI (incl `~/.opencode/bin`, overrides, common bins) - disable native right-click context menu in production builds (dev keeps it) - Desktop instance switcher (Tauri-only) - header button + modal to add/edit/delete remote hosts, set default, probe status/ping, switch back to Local escape hatch - auth gate includes host switcher so you can recover when a remote host is broken/auth-required - host list stored desktop-locally (not tied to the currently selected remote server) - Notifications - decision logic moved server-side; desktop notifications emitted via sidecar stdout and shown natively by Tauri - prevent double-notifications on desktop Local origin (UI ignores SSE notification when native path is active) - restore macOS notification sound - Updates - Tauri updater used only when viewing Local instance in desktop shell (avoid “remote web update” triggering desktop restart) - Settings persistence & UX polish - persist model favorites/recents via `/api/config/settings` (works for web + desktop; not origin-dependent) - persist per-project sidebar collapse state in `projects[].sidebarCollapsed` via `/api/config/settings` (with debounce on toggles) - macOS header sizing/traffic-lights offsets fixed (marketing macOS major injected from desktop; MultiRun header aligned) - VSCode cold-start: keep retrying provider/agent loads after connection to avoid empty UI on slow machines - misc lint/type fixes + bun.lock sync - Desktop bootstrap / resiliency - show onboarding screen when OpenCode CLI is missing (desktop Local origin), with retry hook to restart OpenCode after install ## Testing notes - Desktop (macOS): switch Local <-> remote, set default host, verify auth gate recovery, native notifications (with sound), updater gated to Local - Web: favorites/recents + per-project collapsed state persist across reload/restart - VSCode: slow startup no longer results in missing providers/agents/models
82 lines
2.1 KiB
JavaScript
82 lines
2.1 KiB
JavaScript
#!/usr/bin/env node
|
|
import { spawn } from 'node:child_process';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const repoRoot = path.resolve(__dirname, '../../..');
|
|
const desktopDir = path.join(repoRoot, 'packages/desktop');
|
|
|
|
function spawnProcess(command, args, opts = {}) {
|
|
return spawn(command, args, {
|
|
cwd: repoRoot,
|
|
env: { ...process.env },
|
|
stdio: 'inherit',
|
|
...opts,
|
|
});
|
|
}
|
|
|
|
async function main() {
|
|
const tauriProcess = spawnProcess('bun', ['--cwd', desktopDir, 'tauri', 'dev', '--features', 'devtools']);
|
|
|
|
let cleaning = false;
|
|
|
|
const teardown = async (code) => {
|
|
if (cleaning) {
|
|
return;
|
|
}
|
|
cleaning = true;
|
|
|
|
const stopChild = (child, label) => {
|
|
if (!child || child.killed) {
|
|
return;
|
|
}
|
|
try {
|
|
child.kill('SIGINT');
|
|
} catch (error) {
|
|
console.warn(`[desktop:dev] Failed to stop ${label}:`, error);
|
|
}
|
|
};
|
|
|
|
stopChild(tauriProcess, 'Tauri dev process');
|
|
|
|
process.exit(typeof code === 'number' ? code : 0);
|
|
};
|
|
|
|
const handleChildExit = (childName) => (code, signal) => {
|
|
if (code !== 0 || signal) {
|
|
console.warn(`[desktop:dev] ${childName} exited with code ${code ?? 'null'} signal ${signal ?? 'none'}.`);
|
|
}
|
|
teardown(code).catch((error) => {
|
|
console.error('[desktop:dev] Cleanup error:', error);
|
|
process.exit(code ?? 1);
|
|
});
|
|
};
|
|
|
|
tauriProcess.on('exit', handleChildExit('Tauri dev process'));
|
|
const errorHandler = (label) => (error) => {
|
|
console.error(`[desktop:dev] Failed to start ${label}:`, error);
|
|
teardown(1).catch(() => process.exit(1));
|
|
};
|
|
|
|
tauriProcess.on('error', errorHandler('Tauri dev process'));
|
|
|
|
const signalExitCodes = {
|
|
SIGINT: 130,
|
|
SIGTERM: 143,
|
|
SIGQUIT: 131,
|
|
};
|
|
|
|
Object.entries(signalExitCodes).forEach(([signal, exitCode]) => {
|
|
process.on(signal, () => {
|
|
teardown(exitCode).catch(() => process.exit(exitCode));
|
|
});
|
|
});
|
|
}
|
|
|
|
main().catch((error) => {
|
|
console.error('[desktop:dev] Unexpected error:', error);
|
|
process.exit(1);
|
|
});
|