23 lines
473 B
TypeScript
Executable File
23 lines
473 B
TypeScript
Executable File
import { homedir } from 'os'
|
|
import { join } from 'path'
|
|
import { useEffect } from 'react'
|
|
|
|
type Props = {
|
|
defaultDir: string
|
|
onInstalled: (dir: string) => void
|
|
onCancel: () => void
|
|
onError: (message: string) => void
|
|
}
|
|
|
|
export async function computeDefaultInstallDir(): Promise<string> {
|
|
return join(homedir(), '.claude', 'assistant')
|
|
}
|
|
|
|
export function NewInstallWizard({ onCancel }: Props) {
|
|
useEffect(() => {
|
|
onCancel()
|
|
}, [onCancel])
|
|
|
|
return null
|
|
}
|