32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import type { RuntimeEnv } from "../runtime.js";
|
|
import { defaultRuntime } from "../runtime.js";
|
|
import { restoreTerminalState } from "../terminal/restore.js";
|
|
import { createClackPrompter } from "../wizard/clack-prompter.js";
|
|
import { runOnboardingWizard } from "../wizard/onboarding.js";
|
|
import { WizardCancelledError } from "../wizard/prompts.js";
|
|
import type { OnboardOptions } from "./onboard-types.js";
|
|
|
|
export async function runInteractiveOnboarding(
|
|
opts: OnboardOptions,
|
|
runtime: RuntimeEnv = defaultRuntime,
|
|
) {
|
|
const prompter = createClackPrompter();
|
|
let exitCode: number | null = null;
|
|
try {
|
|
await runOnboardingWizard(opts, runtime, prompter);
|
|
} catch (err) {
|
|
if (err instanceof WizardCancelledError) {
|
|
// Best practice: cancellation is not a successful completion.
|
|
exitCode = 1;
|
|
return;
|
|
}
|
|
throw err;
|
|
} finally {
|
|
// Keep stdin paused so non-daemon runs can exit cleanly (e.g. Docker setup).
|
|
restoreTerminalState("onboarding finish", { resumeStdinIfPaused: false });
|
|
if (exitCode !== null) {
|
|
runtime.exit(exitCode);
|
|
}
|
|
}
|
|
}
|