import React, { useState } from 'react'; import { View } from 'react-native'; import { FormTextInput } from '../../TextInput/FormTextInput'; import { textParser } from '../utils'; import I18n from '../../../i18n'; import Items from './Items'; import styles from './styles'; import { useTheme } from '../../../theme'; import { IItemData } from '.'; import { debounce } from '../../../lib/methods/helpers/debounce'; import { isIOS } from '../../../lib/methods/helpers'; import { useActionSheet } from '../../ActionSheet'; interface IMultiSelectContentProps { onSearch?: (keyword: string) => IItemData[] | Promise; options?: IItemData[]; multiselect: boolean; select: React.Dispatch; onChange: Function; setCurrentValue: React.Dispatch>; onHide: Function; selectedItems: string[]; } export const MultiSelectContent = React.memo( ({ onSearch, options, multiselect, select, onChange, setCurrentValue, onHide, selectedItems }: IMultiSelectContentProps) => { const { colors } = useTheme(); const [selected, setSelected] = useState(Array.isArray(selectedItems) ? selectedItems : []); const [items, setItems] = useState(options); const { hideActionSheet } = useActionSheet(); const onSelect = (item: IItemData) => { const { value, text: { text } } = item; if (multiselect) { let newSelect = []; if (!selected.includes(value)) { newSelect = [...selected, value]; } else { newSelect = selected.filter((s: any) => s !== value); } setSelected(newSelect); select(newSelect); onChange({ value: newSelect }); } else { onChange({ value }); setCurrentValue(text); onHide(); } }; const handleSearch = debounce( async (text: string) => { if (onSearch) { const res = await onSearch(text); setItems(res); } else { setItems(options?.filter((option: any) => textParser([option.text]).toLowerCase().includes(text.toLowerCase()))); } }, onSearch ? 300 : 0 ); return ( { setTimeout(() => { hideActionSheet(); }, 150); }} /> ); } );