mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 04:03:27 +00:00
Complete the remaining pi-to-companion rename across companion-os, web, vm-orchestrator, docker, and archived fixtures. Verification: - semantic rg sweeps for Pi/piConfig/getPi/.pi runtime references - npm run check in apps/companion-os (fails in this worktree: biome not found) Co-authored-by: Codex <noreply@openai.com>
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
/**
|
|
* TUI config selector for `companion config` command
|
|
*/
|
|
|
|
import { ProcessTerminal, TUI } from "@mariozechner/companion-tui";
|
|
import type { ResolvedPaths } from "../core/package-manager.js";
|
|
import type { SettingsManager } from "../core/settings-manager.js";
|
|
import { ConfigSelectorComponent } from "../modes/interactive/components/config-selector.js";
|
|
import {
|
|
initTheme,
|
|
stopThemeWatcher,
|
|
} from "../modes/interactive/theme/theme.js";
|
|
|
|
export interface ConfigSelectorOptions {
|
|
resolvedPaths: ResolvedPaths;
|
|
settingsManager: SettingsManager;
|
|
cwd: string;
|
|
agentDir: string;
|
|
}
|
|
|
|
/** Show TUI config selector and return when closed */
|
|
export async function selectConfig(
|
|
options: ConfigSelectorOptions,
|
|
): Promise<void> {
|
|
// Initialize theme before showing TUI
|
|
initTheme(options.settingsManager.getTheme(), true);
|
|
|
|
return new Promise((resolve) => {
|
|
const ui = new TUI(new ProcessTerminal());
|
|
let resolved = false;
|
|
|
|
const selector = new ConfigSelectorComponent(
|
|
options.resolvedPaths,
|
|
options.settingsManager,
|
|
options.cwd,
|
|
options.agentDir,
|
|
() => {
|
|
if (!resolved) {
|
|
resolved = true;
|
|
ui.stop();
|
|
stopThemeWatcher();
|
|
resolve();
|
|
}
|
|
},
|
|
() => {
|
|
ui.stop();
|
|
stopThemeWatcher();
|
|
process.exit(0);
|
|
},
|
|
() => ui.requestRender(),
|
|
);
|
|
|
|
ui.addChild(selector);
|
|
ui.setFocus(selector.getResourceList());
|
|
ui.start();
|
|
});
|
|
}
|