import React from 'react'; import PropTypes from 'prop-types'; import { View, StyleSheet, SafeAreaView, FlatList, LayoutAnimation, Platform } from 'react-native'; import { connect } from 'react-redux'; import { addUser, removeUser, reset, setLoading } from '../actions/selectedUsers'; import database from '../lib/realm'; import RocketChat from '../lib/rocketchat'; import UserItem from '../presentation/UserItem'; import Loading from '../containers/Loading'; import debounce from '../utils/debounce'; import LoggedView from './View'; import I18n from '../i18n'; import log from '../utils/log'; import SearchBox from '../containers/SearchBox'; import sharedStyles from './Styles'; const styles = StyleSheet.create({ safeAreaView: { flex: 1, backgroundColor: Platform.OS === 'ios' ? '#F7F8FA' : '#E1E5E8' }, header: { backgroundColor: '#fff' }, separator: { marginLeft: 60 } }); @connect(state => ({ users: state.selectedUsers.users, loading: state.selectedUsers.loading }), dispatch => ({ addUser: user => dispatch(addUser(user)), removeUser: user => dispatch(removeUser(user)), reset: () => dispatch(reset()), setLoadingInvite: loading => dispatch(setLoading(loading)) })) /** @extends React.Component */ export default class SelectedUsersView extends LoggedView { static propTypes = { navigator: PropTypes.object, rid: PropTypes.string, nextAction: PropTypes.string.isRequired, addUser: PropTypes.func.isRequired, removeUser: PropTypes.func.isRequired, reset: PropTypes.func.isRequired, users: PropTypes.array, loading: PropTypes.bool, setLoadingInvite: PropTypes.func }; constructor(props) { super('SelectedUsersView', props); this.data = database.objects('subscriptions').filtered('t = $0', 'd').sorted('roomUpdatedAt', true); this.state = { search: [] }; this.data.addListener(this.updateState); props.navigator.setOnNavigatorEvent(this.onNavigatorEvent.bind(this)); } componentDidMount() { this.props.navigator.setDrawerEnabled({ side: 'left', enabled: false }); } async componentDidUpdate(prevProps) { const isVisible = await this.props.navigator.screenIsCurrentlyVisible(); if (!isVisible) { return; } if (prevProps.users.length !== this.props.users.length) { const { length } = this.props.users; const rightButtons = []; if (length > 0) { rightButtons.push({ id: 'create', title: I18n.t('Next'), testID: 'selected-users-view-submit' }); } this.props.navigator.setButtons({ rightButtons }); } } componentWillUnmount() { this.updateState.stop(); this.data.removeAllListeners(); this.props.reset(); } async onNavigatorEvent(event) { if (event.type === 'NavBarButtonPress') { if (event.id === 'create') { const { nextAction, setLoadingInvite, navigator } = this.props; if (nextAction === 'CREATE_CHANNEL') { this.props.navigator.push({ screen: 'CreateChannelView', title: I18n.t('Create_Channel'), backButtonTitle: '' }); } else { try { setLoadingInvite(true); await RocketChat.addUsersToRoom(this.props.rid); navigator.pop(); } catch (e) { log('RoomActions Add User', e); } finally { setLoadingInvite(false); } } } } } onSearchChangeText(text) { this.search(text); } updateState = debounce(() => { this.forceUpdate(); }, 1000); search = async(text) => { const result = await RocketChat.search({ text, filterRooms: false }); this.setState({ search: result }); } isChecked = username => this.props.users.findIndex(el => el.name === username) !== -1; toggleUser = (user) => { LayoutAnimation.easeInEaseOut(); if (!this.isChecked(user.name)) { this.props.addUser(user); } else { this.props.removeUser(user); } } _onPressItem = (id, item = {}) => { if (item.search) { this.toggleUser({ _id: item._id, name: item.username, fname: item.name }); } else { this.toggleUser({ _id: item._id, name: item.name, fname: item.fname }); } } _onPressSelectedItem = item => this.toggleUser(item); renderHeader = () => ( this.onSearchChangeText(text)} testID='select-users-view-search' /> {this.renderSelected()} ) renderSelected = () => { if (this.props.users.length === 0) { return null; } return ( item._id} style={[styles.list, sharedStyles.separatorTop]} contentContainerStyle={{ marginVertical: 5 }} renderItem={this.renderSelectedItem} enableEmptySections keyboardShouldPersistTaps='always' horizontal /> ); } renderSelectedItem = ({ item }) => ( this._onPressSelectedItem(item)} testID={`selected-user-${ item.name }`} style={{ paddingRight: 15 }} /> ) renderSeparator = () => renderItem = ({ item, index }) => { const name = item.search ? item.name : item.fname; const username = item.search ? item.username : item.name; let style = {}; if (index === 0) { style = { ...sharedStyles.separatorTop }; } if (this.state.search.length > 0 && index === this.state.search.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } if (this.state.search.length === 0 && index === this.data.length - 1) { style = { ...style, ...sharedStyles.separatorBottom }; } return ( this._onPressItem(item._id, item)} testID={`select-users-view-item-${ item.name }`} icon={this.isChecked(username) ? 'check' : null} style={style} /> ); } renderList = () => ( 0 ? this.state.search : this.data} extraData={this.props} keyExtractor={item => item._id} renderItem={this.renderItem} ItemSeparatorComponent={this.renderSeparator} ListHeaderComponent={this.renderHeader} enableEmptySections keyboardShouldPersistTaps='always' /> ) render = () => ( {this.renderList()} ) }