refactor(cli): change onSubmit typing in SearchBox
The onSubmit function typing in the SearchBox component was changed from handling a string to handling a generic T type object. Also, the onSubmit function now uses the found item in components based on the selected suggestion to submit instead of submitting directly.
This commit is contained in:
parent
62e606f273
commit
12b1d530c4
@ -17,7 +17,7 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
initialQuery?: string
|
||||
onKeyDown?: (i: string, k: Key, app: ReturnType<typeof useApp>) => void
|
||||
onChange?: (item: T) => void
|
||||
onSubmit?: (value: string) => void
|
||||
onSubmit?: (item: T) => void
|
||||
}) {
|
||||
const [query, setQuery] = useState<string>(initialQuery ?? '')
|
||||
const [queryMode, setQueryMode] = useState<boolean>(true)
|
||||
@ -79,7 +79,10 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
}}
|
||||
showCursor
|
||||
placeholder={' query'}
|
||||
onSubmit={onSubmit}
|
||||
onSubmit={() => {
|
||||
const found = components.find(({key}) => key === suggestions[selected])
|
||||
found && onSubmit?.(found)
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user