* feat: add project actions in header with reliable terminal run flow - Add per-project Actions settings with icons, platform filters, and default action - Run/stop actions from header using terminal tabs, including Ctrl+C then force-kill fallback - Improve terminal UX with stable selection, resize handling, and smarter URL auto-open for localhost ports * feat: add project actions UI with refined header dropdown behavior * feat: add parent-session back button in chat * fix: make web and desktop dev modes reliable and conflict-free - Separate desktop and web dev ports to avoid collisions - Add robust process-tree shutdown so Ctrl+C cleans sidecars - Add true web HMR mode and keep service worker out of dev * fix: linux safe scripts for dev * feat: run project actions on web and add desktop SSH forward URL opening * feat: add mobile project actions button with terminal tabs and tighter tab UI * revert: remove experimental mobile terminal selection UI * feat: show Add action button in header when empty * fix: make retry countdown human-readable in status row * fix: prevent nav rail actions from firing through overlays
139 lines
3.1 KiB
JavaScript
139 lines
3.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',
|
|
detached: process.platform !== 'win32',
|
|
...opts,
|
|
});
|
|
}
|
|
|
|
function waitForExit(child, timeoutMs) {
|
|
return new Promise((resolve) => {
|
|
if (!child || child.exitCode !== null || child.signalCode !== null) {
|
|
resolve();
|
|
return;
|
|
}
|
|
|
|
const onExit = () => {
|
|
clearTimeout(timer);
|
|
resolve();
|
|
};
|
|
|
|
const timer = setTimeout(() => {
|
|
child.off('exit', onExit);
|
|
resolve();
|
|
}, timeoutMs);
|
|
|
|
child.once('exit', onExit);
|
|
});
|
|
}
|
|
|
|
function signalChild(child, signal) {
|
|
if (!child || child.exitCode !== null || child.signalCode !== null) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
if (process.platform !== 'win32') {
|
|
process.kill(-child.pid, signal);
|
|
return;
|
|
}
|
|
} catch {
|
|
}
|
|
|
|
try {
|
|
child.kill(signal);
|
|
} catch {
|
|
}
|
|
}
|
|
|
|
async function stopChildTree(child) {
|
|
if (!child || child.exitCode !== null || child.signalCode !== null) {
|
|
return;
|
|
}
|
|
|
|
signalChild(child, 'SIGINT');
|
|
await waitForExit(child, 2500);
|
|
|
|
if (child.exitCode === null && child.signalCode === null) {
|
|
signalChild(child, 'SIGTERM');
|
|
await waitForExit(child, 2500);
|
|
}
|
|
|
|
if (child.exitCode === null && child.signalCode === null) {
|
|
signalChild(child, 'SIGKILL');
|
|
await waitForExit(child, 1000);
|
|
}
|
|
}
|
|
|
|
async function main() {
|
|
const tauriProcess = spawnProcess('bun', [
|
|
'--cwd',
|
|
desktopDir,
|
|
'tauri',
|
|
'dev',
|
|
'--features',
|
|
'devtools',
|
|
'--config',
|
|
'./src-tauri/tauri.dev.conf.json',
|
|
]);
|
|
|
|
let cleaning = false;
|
|
|
|
const teardown = async (code) => {
|
|
if (cleaning) {
|
|
return;
|
|
}
|
|
cleaning = true;
|
|
|
|
await stopChildTree(tauriProcess);
|
|
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);
|
|
});
|