diff --git a/packages/cli/src/components/Choice.tsx b/packages/cli/src/components/Choice.tsx new file mode 100644 index 0000000..3821961 --- /dev/null +++ b/packages/cli/src/components/Choice.tsx @@ -0,0 +1,63 @@ +import React, {useState} from 'react' +import {Box, Text, useInput} from 'ink' + +function isUnicodeSupported() { + if (process.platform !== 'win32') { + return process.env['TERM'] !== 'linux' // Linux console (kernel) + } + + return ( + Boolean(process.env['WT_SESSION']) || // Windows Terminal + Boolean(process.env['TERMINUS_SUBLIME']) || // Terminus (<0.2.27) + process.env['ConEmuTask'] === '{cmd::Cmder}' || // ConEmu and cmder + process.env['TERM_PROGRAM'] === 'Terminus-Sublime' || + process.env['TERM_PROGRAM'] === 'vscode' || + process.env['TERM'] === 'xterm-256color' || + process.env['TERM'] === 'alacritty' || + process.env['TERMINAL_EMULATOR'] === 'JetBrains-JediTerm' + ) +} + +const shouldUseMain = isUnicodeSupported() +const SELECTED: string = shouldUseMain ? '◉' : '(*)' +const UNSELECTED: string = shouldUseMain ? '◯' : '( )' + +export function Choice({ + question, + yes, + no, + onSubmit, + initial, +}: { + question: string + yes: string + no: string + onSubmit?: (vaule: 'yes' | 'no') => void + initial?: 'yes' | 'no' +}) { + const [state, setState] = useState<'yes' | 'no'>(initial ?? 'yes') + + useInput((_, k) => { + if (k.upArrow) { + setState('yes') + } else if (k.downArrow) { + setState('no') + } + + if (k.return) { + onSubmit?.(state) + } + }) + + return ( + + {question} + + {state === 'yes' ? SELECTED : UNSELECTED} {yes} + + + {state === 'no' ? SELECTED : UNSELECTED} {no} + + + ) +}