import React from 'react'; import { StackNavigationProp } from '@react-navigation/stack'; import { RouteProp } from '@react-navigation/native'; import { FlatList, StyleSheet, Text, View } from 'react-native'; import I18n from '../i18n'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import debounce from '../utils/debounce'; import * as List from '../containers/List'; import SearchBox from '../containers/SearchBox'; import SafeAreaView from '../containers/SafeAreaView'; import sharedStyles from './Styles'; import { ChatsStackParamList } from '../stacks/types'; import { IOptionsField } from './NotificationPreferencesView/options'; const styles = StyleSheet.create({ search: { width: '100%', height: 56 }, noResult: { fontSize: 16, paddingVertical: 56, ...sharedStyles.textSemibold, ...sharedStyles.textAlignCenter } }); interface IItem { item: IOptionsField; selected: boolean; onItemPress: () => void; theme: string; } interface IPickerViewState { data: IOptionsField[]; value: string; } interface IPickerViewProps { navigation: StackNavigationProp; route: RouteProp; theme: string; } const Item = React.memo(({ item, selected, onItemPress, theme }: IItem) => ( (selected ? : null)} onPress={onItemPress} translateTitle={false} /> )); class PickerView extends React.PureComponent { private onSearch?: ((text: string) => IOptionsField[]) | ((term?: string | undefined) => Promise); static navigationOptions = ({ route }: IPickerViewProps) => ({ title: route.params?.title ?? I18n.t('Select_an_option') }); constructor(props: IPickerViewProps) { super(props); const data = props.route.params?.data ?? []; const value = props.route.params?.value; this.state = { data, value }; this.onSearch = props.route.params?.onChangeText; } onChangeValue = (value: string) => { const { navigation, route } = this.props; const goBack = route.params?.goBack ?? true; const onChange = route.params?.onChangeValue ?? (() => {}); onChange(value); if (goBack) { navigation.goBack(); } }; onChangeText = debounce( async (text: string) => { if (this.onSearch) { const data = await this.onSearch(text); this.setState({ data }); } }, 300, true ); renderSearch() { if (!this.onSearch) { return null; } return ( ); } render() { const { data, value } = this.state; const { theme } = this.props; return ( {this.renderSearch()} item.value as string} renderItem={({ item }) => ( this.onChangeValue(item.value as string)} /> )} ItemSeparatorComponent={List.Separator} ListHeaderComponent={List.Separator} ListFooterComponent={List.Separator} ListEmptyComponent={() => ( {I18n.t('No_results_found')} )} contentContainerStyle={[List.styles.contentContainerStyleFlatList]} /> ); } } export default withTheme(PickerView);