feat(cli): add initialQuery prop to SearchBox

The SearchBox component in the Command Line Interface (CLI) now accepts an optional initialQuery prop. This prop is used to set the initial state of the search box query, which enables prepopulating the search box with a specific string if desired.
This commit is contained in:
p-sw 2024-06-07 21:37:42 +09:00
parent 4319053d5d
commit 3e0d29fd56

View File

@ -5,8 +5,16 @@ import {Divider} from './Divider.js'
import Spinner from 'ink-spinner'
import {Box, Text} from 'ink'
export function SearchBox({components, helper}: {components: string[]; helper: string}) {
const [query, setQuery] = useState<string>('')
export function SearchBox({
components,
helper,
initialQuery,
}: {
components: string[]
helper: string
initialQuery?: string
}) {
const [query, setQuery] = useState<string>(initialQuery ?? '')
const [isLoading, setLoading] = useState<boolean>(false)
const [suggestions, setSuggestions] = useState<string[]>([])