20 lines
593 B
TypeScript
20 lines
593 B
TypeScript
import { useRenderer } from "@opentui/solid"
|
|
import { createSimpleContext } from "./helper"
|
|
import { FormatError } from "@/cli/error"
|
|
|
|
export const { use: useExit, provider: ExitProvider } = createSimpleContext({
|
|
name: "Exit",
|
|
init: (input: { onExit?: () => Promise<void> }) => {
|
|
const renderer = useRenderer()
|
|
return async (reason?: any) => {
|
|
renderer.destroy()
|
|
await input.onExit?.()
|
|
if (reason) {
|
|
const formatted = FormatError(reason) ?? JSON.stringify(reason)
|
|
process.stderr.write(formatted + "\n")
|
|
}
|
|
process.exit(0)
|
|
}
|
|
},
|
|
})
|