import ZenInput from './ZenInput';
import { useState } from 'react';
import ZenIcon from './ZenIcon';
import { TouchableOpacity } from 'react-native';
import type { ThemeType } from '../../literals/Type.literal';
type ZenSearchProps = {
onChangeTerm?: (term: string) => void
initialTerm?: string,
placeholder?: string,
type?: ThemeType,
disabled?: boolean,
}
/**
* @docunator
* A search input field with a search icon on the left and a clear icon on the right.
* It is a wrapper around the ZenInput component with predefined props for search functionality.
*
* @param onChangeTerm A callback function that is called when the search term changes.
*
* @param initialTerm
* @param placeholder
* @param type
* @see ZenInput
*
*/
export default function ZenSearch(
{
onChangeTerm = (term: string) => {return term;},
initialTerm = '',
placeholder = 'Type to search...',
type='primary',
disabled = false,
}: ZenSearchProps
) {
const [search, setSearch] = useState(initialTerm);
const closeIcon = ()=>{
return (
setSearch('')}>
);
}
return (
{ setSearch(text); onChangeTerm(text); }}
/>
);
}