| import { Search, X } from 'lucide-react'; |
| import React, { useState, useMemo, useCallback } from 'react'; |
| import { useLocalize } from '~/hooks'; |
| import { cn } from '~/utils'; |
|
|
| |
|
|
| export default function MultiSearch({ |
| value, |
| onChange, |
| placeholder, |
| className = '', |
| }: { |
| value: string | null; |
| onChange: (filter: string) => void; |
| placeholder?: string; |
| className?: string; |
| }) { |
| const localize = useLocalize(); |
| const onChangeHandler: React.ChangeEventHandler<HTMLInputElement> = useCallback( |
| (e) => onChange(e.target.value), |
| [], |
| ); |
|
|
| return ( |
| <div |
| className={cn( |
| 'group sticky left-0 top-0 z-10 flex h-12 items-center gap-2 bg-gradient-to-b from-white from-65% to-transparent px-2 px-3 py-2 text-black transition-colors duration-300 focus:bg-gradient-to-b focus:from-white focus:to-white/50 dark:from-gray-700 dark:to-transparent dark:text-white dark:focus:from-white/10 dark:focus:to-white/20', |
| className, |
| )} |
| > |
| <Search className="h-4 w-4 text-gray-500 transition-colors duration-300 dark:group-focus-within:text-gray-300 dark:group-hover:text-gray-300" /> |
| <input |
| type="text" |
| value={value || ''} |
| onChange={onChangeHandler} |
| placeholder={placeholder || localize('com_ui_select_search_model')} |
| className="flex-1 rounded-md border-none bg-transparent px-2.5 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-gray-700/10 dark:focus:ring-gray-200/10" |
| /> |
| <div className="relative flex h-5 w-5 items-center justify-end text-gray-500"> |
| <X |
| className={cn( |
| 'text-gray-500 dark:text-gray-300', |
| value?.length ? 'cursor-pointer opacity-100' : 'opacity-0', |
| )} |
| onClick={() => onChange('')} |
| /> |
| </div> |
| </div> |
| ); |
| } |
|
|
| |
| |
| |
| |
| function defaultGetStringKey(node: unknown): string { |
| if (typeof node === 'string') { |
| |
| |
| |
| |
| if (node.startsWith('---') && node.endsWith('---')) { |
| return ''; |
| } |
|
|
| return node.toUpperCase(); |
| } |
| |
| return ''; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| export function useMultiSearch<OptionsType extends unknown[]>({ |
| availableOptions, |
| placeholder, |
| getTextKeyOverride, |
| className, |
| disabled = false, |
| }: { |
| availableOptions: OptionsType; |
| placeholder?: string; |
| getTextKeyOverride?: (node: OptionsType[0]) => string; |
| className?: string; |
| disabled?: boolean; |
| }): [OptionsType, React.ReactNode] { |
| const [filterValue, setFilterValue] = useState<string | null>(null); |
|
|
| |
| const shouldShowSearch = availableOptions.length > 10 && !disabled; |
|
|
| |
| |
| const getTextKeyHelper = getTextKeyOverride || defaultGetStringKey; |
|
|
| |
| const filteredOptions = useMemo(() => { |
| if (!shouldShowSearch || !filterValue || !availableOptions.length) { |
| |
| return availableOptions; |
| } |
| |
| |
| const upperFilterValue = filterValue.toUpperCase(); |
|
|
| return availableOptions.filter((value) => |
| getTextKeyHelper(value).includes(upperFilterValue), |
| ) as OptionsType; |
| }, [availableOptions, getTextKeyHelper, filterValue, shouldShowSearch]); |
|
|
| const onSearchChange = useCallback((nextFilterValue) => setFilterValue(nextFilterValue), []); |
|
|
| const searchRender = shouldShowSearch ? ( |
| <MultiSearch |
| value={filterValue} |
| className={className} |
| onChange={onSearchChange} |
| placeholder={placeholder} |
| /> |
| ) : null; |
|
|
| return [filteredOptions, searchRender]; |
| } |
|
|