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:
p-sw 2024-06-08 02:51:27 +09:00
parent 62e606f273
commit 12b1d530c4

View File

@ -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.`} />