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:
parent
4319053d5d
commit
3e0d29fd56
@ -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[]>([])
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user