feat(cli): add query mode to SearchBox component
Added a new stateful variable, 'queryMode', to the 'SearchBox' component in the CLI to enhance its functionality. As a result, 'Input' and suggestion fetching are now conditioned by this mode, providing more controled user search management and interaction with the autocomplete feature.
This commit is contained in:
parent
f4b79f1f02
commit
483930474b
@ -20,11 +20,13 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
|||||||
onSubmit?: (value: string) => void
|
onSubmit?: (value: string) => void
|
||||||
}) {
|
}) {
|
||||||
const [query, setQuery] = useState<string>(initialQuery ?? '')
|
const [query, setQuery] = useState<string>(initialQuery ?? '')
|
||||||
|
const [queryMode, setQueryMode] = useState<boolean>(true)
|
||||||
const [isLoading, setLoading] = useState<boolean>(false)
|
const [isLoading, setLoading] = useState<boolean>(false)
|
||||||
const [suggestions, setSuggestions] = useState<string[]>([])
|
const [suggestions, setSuggestions] = useState<string[]>([])
|
||||||
const [selected, setSelected] = useState<number>(0)
|
const [selected, setSelected] = useState<number>(0)
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (queryMode) {
|
||||||
setLoading(true)
|
setLoading(true)
|
||||||
getSuggestion(
|
getSuggestion(
|
||||||
components.map(({key}) => key),
|
components.map(({key}) => key),
|
||||||
@ -36,13 +38,18 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
|||||||
setSelected(result.length - 1)
|
setSelected(result.length - 1)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, [query])
|
}
|
||||||
|
}, [query, queryMode])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (onChange) {
|
if (onChange) {
|
||||||
const found = components.find(({key}) => key === suggestions[selected])
|
const found = components.find(({key}) => key === suggestions[selected])
|
||||||
found && onChange(found)
|
found && onChange(found)
|
||||||
}
|
}
|
||||||
|
if (suggestions[selected]) {
|
||||||
|
setQueryMode(false)
|
||||||
|
setQuery(suggestions[selected] ?? '')
|
||||||
|
}
|
||||||
}, [selected, onChange])
|
}, [selected, onChange])
|
||||||
|
|
||||||
const app = useApp()
|
const app = useApp()
|
||||||
@ -64,7 +71,16 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
|||||||
<Box marginRight={1} display={'flex'} flexDirection={'row'}>
|
<Box marginRight={1} display={'flex'} flexDirection={'row'}>
|
||||||
<Text color={'greenBright'}>Search?</Text>
|
<Text color={'greenBright'}>Search?</Text>
|
||||||
</Box>
|
</Box>
|
||||||
<Input value={query} onChange={(v) => setQuery(v)} showCursor placeholder={' query'} onSubmit={onSubmit} />
|
<Input
|
||||||
|
value={query}
|
||||||
|
onChange={(v) => {
|
||||||
|
setQueryMode(true)
|
||||||
|
setQuery(v)
|
||||||
|
}}
|
||||||
|
showCursor
|
||||||
|
placeholder={' query'}
|
||||||
|
onSubmit={onSubmit}
|
||||||
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
||||||
<Box display={'flex'} flexDirection={'column'}>
|
<Box display={'flex'} flexDirection={'column'}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user