import React from 'react'; import PropTypes from 'prop-types'; import { View, StyleSheet, FlatList, Text, Platform, Image, Dimensions } from 'react-native'; import { connect, Provider } from 'react-redux'; import { Navigation } from 'react-native-navigation'; import SafeAreaView from 'react-native-safe-area-view'; import { gestureHandlerRootHOC } from 'react-native-gesture-handler'; import database from '../lib/realm'; import RocketChat from '../lib/rocketchat'; import UserItem from '../presentation/UserItem'; import debounce from '../utils/debounce'; import LoggedView from './View'; import sharedStyles from './Styles'; import I18n from '../i18n'; import Touch from '../utils/touch'; import SearchBox from '../containers/SearchBox'; import store from '../lib/createStore'; import { DEFAULT_HEADER } from '../constants/headerOptions'; const styles = StyleSheet.create({ safeAreaView: { flex: 1, backgroundColor: Platform.OS === 'ios' ? '#F7F8FA' : '#E1E5E8' }, separator: { marginLeft: 60 }, createChannelButton: { marginVertical: 25 }, createChannelContainer: { height: 47, backgroundColor: '#fff', flexDirection: 'row', alignItems: 'center' }, createChannelIcon: { width: 24, height: 24, marginHorizontal: 18 }, createChannelText: { color: '#1D74F5', fontSize: 18 } }); let SelectedUsersView = null; @connect(state => ({ baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' })) /** @extends React.Component */ export default class NewMessageView extends LoggedView { static options() { return { ...DEFAULT_HEADER, topBar: { ...DEFAULT_HEADER.topBar, leftButtons: [{ id: 'cancel', icon: Platform.OS === 'android' ? { uri: 'back', scale: Dimensions.get('window').scale } : undefined, text: Platform.OS === 'ios' ? I18n.t('Cancel') : undefined }] } }; } static propTypes = { componentId: PropTypes.string, baseUrl: PropTypes.string, onPressItem: PropTypes.func.isRequired }; constructor(props) { super('NewMessageView', props); this.data = database.objects('subscriptions').filtered('t = $0', 'd').sorted('roomUpdatedAt', true); this.state = { search: [] }; this.data.addListener(this.updateState); Navigation.events().bindComponent(this); } componentWillUnmount() { this.updateState.stop(); this.data.removeAllListeners(); } onSearchChangeText(text) { this.search(text); } onPressItem = (item) => { const { onPressItem } = this.props; this.dismiss(); setTimeout(() => { onPressItem(item); }, 600); } navigationButtonPressed = ({ buttonId }) => { if (buttonId === 'cancel') { this.dismiss(); } } dismiss = () => { const { componentId } = this.props; Navigation.dismissModal(componentId); } // eslint-disable-next-line react/sort-comp updateState = debounce(() => { this.forceUpdate(); }, 1000); search = async(text) => { const result = await RocketChat.search({ text, filterRooms: false }); this.setState({ search: result }); } createChannel = () => { if (SelectedUsersView == null) { SelectedUsersView = require('./SelectedUsersView').default; Navigation.registerComponentWithRedux('SelectedUsersView', () => gestureHandlerRootHOC(SelectedUsersView), Provider, store); } const { componentId } = this.props; Navigation.push(componentId, { component: { name: 'SelectedUsersView', passProps: { nextAction: 'CREATE_CHANNEL' }, options: { topBar: { title: { text: I18n.t('Select_Users') } } } } }); } renderHeader = () => ( this.onSearchChangeText(text)} testID='new-message-view-search' /> {I18n.t('Create_Channel')} ) renderSeparator = () => ; renderItem = ({ item, index }) => { const { search } = this.state; const { baseUrl } = this.props; let style = {}; if (index === 0) { style = { ...sharedStyles.separatorTop }; } if (search.length > 0 && index === search.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } if (search.length === 0 && index === this.data.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } return ( this.onPressItem(item)} baseUrl={baseUrl} testID={`new-message-view-item-${ item.name }`} style={style} /> ); } renderList = () => { const { search } = this.state; return ( 0 ? search : this.data} extraData={this.state} keyExtractor={item => item._id} ListHeaderComponent={this.renderHeader} renderItem={this.renderItem} ItemSeparatorComponent={this.renderSeparator} keyboardShouldPersistTaps='always' /> ); } render = () => ( {this.renderList()} ); }