Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import SuggestionSearch from 'calypso/components/suggestion-search';
interface SearchProps {
id: string;
className?: string;
placeholder: string;
options: string[];
onSelect?( option: string ): void;
onChange?( query: string, selected: boolean ): void;
disabled?: boolean;
isSearching: boolean;
query: string;
}
export const Search = ( {
id,
className,
placeholder,
options,
onSelect,
onChange,
disabled,
query,
}: SearchProps ) => {
return (
<SuggestionSearch
id={ id }
className={ className }
placeholder={ placeholder }
disabled={ disabled }
showIcon
isSearching={ false }
onChange={ ( query: string, selected: boolean ) => {
if ( selected && onSelect ) {
return onSelect( query );
}
onChange?.( query, selected );
} }
value={ query }
suggestions={ options
.filter( ( repo ) =>
query.length > 0 ? repo.toLowerCase().includes( query.toLowerCase() ) : true
)
.slice( 0, 5 )
.map( ( repo ) => ( { label: repo } ) ) }
/>
);
};