From d2a457d1c80d1ba1bf446cfe0072bb5964ef9ae4 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 8 Jun 2024 01:55:07 +0900 Subject: [PATCH] feat(cli): update SearchBox component In the SearchBox component, a new onSubmit prop has been added for user's search input handling. The UI has also been updated: changed border styles, introduced color changes based on selection and added placeholder for search input. --- packages/cli/src/components/SearchBox.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/packages/cli/src/components/SearchBox.tsx b/packages/cli/src/components/SearchBox.tsx index 5b80749..194d210 100644 --- a/packages/cli/src/components/SearchBox.tsx +++ b/packages/cli/src/components/SearchBox.tsx @@ -11,12 +11,14 @@ export function SearchBox({ initialQuery, onKeyDown, onChange, + onSubmit, }: { components: T[] helper: string initialQuery?: string onKeyDown?: (i: string, k: Key, app: ReturnType) => void onChange?: (item: T) => void + onSubmit?: (value: string) => void }) { const [query, setQuery] = useState(initialQuery ?? '') const [isLoading, setLoading] = useState(false) @@ -57,23 +59,23 @@ export function SearchBox({ }) return ( - + {helper} - - - ? + + + Search? - setQuery(v)} /> + setQuery(v)} showCursor placeholder={'query'} onSubmit={onSubmit} /> {isLoading ? ( ) : ( - + {suggestions.map((name, index) => { return ( - - + + {components[components.findIndex(({key}) => key === name)].displayName}