2017-09-25 13:15:28 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2018-07-10 13:40:32 +00:00
|
|
|
import { View, StyleSheet, TextInput, Text, TouchableOpacity, SafeAreaView, FlatList, LayoutAnimation } from 'react-native';
|
2017-09-25 13:15:28 +00:00
|
|
|
import { connect } from 'react-redux';
|
2018-07-10 13:40:32 +00:00
|
|
|
|
|
|
|
import { addUser, removeUser, reset, setLoading } from '../actions/selectedUsers';
|
2017-12-27 15:22:06 +00:00
|
|
|
import database from '../lib/realm';
|
2017-09-25 13:15:28 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2018-08-31 16:46:33 +00:00
|
|
|
import UserItem from '../presentation/UserItem';
|
2017-09-25 13:15:28 +00:00
|
|
|
import Avatar from '../containers/Avatar';
|
2018-04-24 19:34:03 +00:00
|
|
|
import Loading from '../containers/Loading';
|
|
|
|
import debounce from '../utils/debounce';
|
2018-04-26 17:33:43 +00:00
|
|
|
import LoggedView from './View';
|
2018-06-01 17:38:13 +00:00
|
|
|
import I18n from '../i18n';
|
2018-07-10 13:40:32 +00:00
|
|
|
import log from '../utils/log';
|
|
|
|
import { iconsMap } from '../Icons';
|
2017-09-25 13:15:28 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
alignItems: 'stretch',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
2017-11-13 12:49:19 +00:00
|
|
|
safeAreaView: {
|
2017-11-13 16:04:13 +00:00
|
|
|
flex: 1,
|
2017-11-13 12:49:19 +00:00
|
|
|
backgroundColor: '#FFFFFF'
|
|
|
|
},
|
2017-09-25 13:15:28 +00:00
|
|
|
list: {
|
|
|
|
width: '100%',
|
|
|
|
backgroundColor: '#FFFFFF'
|
|
|
|
},
|
|
|
|
searchBoxView: {
|
|
|
|
backgroundColor: '#eee'
|
|
|
|
},
|
|
|
|
searchBox: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
margin: 5,
|
|
|
|
borderRadius: 5,
|
|
|
|
padding: 5,
|
|
|
|
paddingLeft: 10,
|
|
|
|
color: '#aaa'
|
|
|
|
},
|
|
|
|
selectItemView: {
|
|
|
|
width: 80,
|
|
|
|
height: 80,
|
|
|
|
padding: 8,
|
|
|
|
flexDirection: 'column',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center'
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
2018-08-31 16:46:33 +00:00
|
|
|
separator: {
|
|
|
|
height: StyleSheet.hairlineWidth,
|
|
|
|
backgroundColor: '#E1E5E8',
|
|
|
|
marginLeft: 60
|
2017-09-25 13:15:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
@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 */
|
2018-04-26 17:33:43 +00:00
|
|
|
export default class SelectedUsersView extends LoggedView {
|
2017-09-25 13:15:28 +00:00
|
|
|
static propTypes = {
|
2018-07-10 13:40:32 +00:00
|
|
|
navigator: PropTypes.object,
|
|
|
|
rid: PropTypes.string,
|
|
|
|
nextAction: PropTypes.string.isRequired,
|
2017-09-25 13:15:28 +00:00
|
|
|
addUser: PropTypes.func.isRequired,
|
|
|
|
removeUser: PropTypes.func.isRequired,
|
2018-04-24 19:34:03 +00:00
|
|
|
reset: PropTypes.func.isRequired,
|
2018-04-10 13:03:54 +00:00
|
|
|
users: PropTypes.array,
|
2018-07-10 13:40:32 +00:00
|
|
|
loading: PropTypes.bool,
|
|
|
|
setLoadingInvite: PropTypes.func
|
2017-09-25 13:15:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props) {
|
2018-04-26 17:33:43 +00:00
|
|
|
super('SelectedUsersView', props);
|
2018-04-24 19:34:03 +00:00
|
|
|
this.data = database.objects('subscriptions').filtered('t = $0', 'd').sorted('roomUpdatedAt', true);
|
2017-09-25 13:15:28 +00:00
|
|
|
this.state = {
|
2018-04-24 19:34:03 +00:00
|
|
|
search: []
|
2017-09-25 13:15:28 +00:00
|
|
|
};
|
|
|
|
this.data.addListener(this.updateState);
|
2018-07-10 13:40:32 +00:00
|
|
|
props.navigator.setOnNavigatorEvent(this.onNavigatorEvent.bind(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.navigator.setDrawerEnabled({
|
|
|
|
side: 'left',
|
|
|
|
enabled: false
|
|
|
|
});
|
2017-09-25 13:15:28 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 13:03:54 +00:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.users.length !== this.props.users.length) {
|
2018-07-10 13:40:32 +00:00
|
|
|
const { length } = nextProps.users;
|
|
|
|
const rightButtons = [];
|
|
|
|
if (length > 0) {
|
|
|
|
rightButtons.push({
|
|
|
|
id: 'create',
|
|
|
|
testID: 'selected-users-view-submit',
|
|
|
|
icon: iconsMap.add
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.props.navigator.setButtons({ rightButtons });
|
2018-04-10 13:03:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-25 13:15:28 +00:00
|
|
|
componentWillUnmount() {
|
2018-04-24 19:34:03 +00:00
|
|
|
this.updateState.stop();
|
|
|
|
this.data.removeAllListeners();
|
|
|
|
this.props.reset();
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
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')
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
setLoadingInvite(true);
|
|
|
|
await RocketChat.addUsersToRoom(this.props.rid);
|
|
|
|
navigator.pop();
|
|
|
|
} catch (e) {
|
|
|
|
log('RoomActions Add User', e);
|
|
|
|
} finally {
|
|
|
|
setLoadingInvite(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
onSearchChangeText(text) {
|
|
|
|
this.search(text);
|
2017-09-25 13:15:28 +00:00
|
|
|
}
|
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
updateState = debounce(() => {
|
|
|
|
this.forceUpdate();
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
async search(text) {
|
2017-09-25 13:15:28 +00:00
|
|
|
const searchText = text.trim();
|
|
|
|
if (searchText === '') {
|
2018-04-24 19:34:03 +00:00
|
|
|
delete this.oldPromise;
|
2017-09-25 13:15:28 +00:00
|
|
|
return this.setState({
|
2018-04-24 19:34:03 +00:00
|
|
|
search: []
|
2017-09-25 13:15:28 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
let data = this.data.filtered('name CONTAINS[c] $0 AND t = $1', searchText, 'd').slice(0, 7);
|
2017-09-25 13:15:28 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
const usernames = data.map(sub => sub.map);
|
|
|
|
try {
|
|
|
|
if (data.length < 7) {
|
|
|
|
if (this.oldPromise) {
|
|
|
|
this.oldPromise('cancel');
|
|
|
|
}
|
2017-09-25 13:15:28 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
const { users } = await Promise.race([
|
|
|
|
RocketChat.spotlight(searchText, usernames, { users: true, rooms: false }),
|
|
|
|
new Promise((resolve, reject) => this.oldPromise = reject)
|
|
|
|
]);
|
2017-09-25 13:15:28 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
data = users.map(user => ({
|
|
|
|
...user,
|
|
|
|
rid: user.username,
|
|
|
|
name: user.username,
|
|
|
|
t: 'd',
|
|
|
|
search: true
|
|
|
|
}));
|
2017-09-25 13:15:28 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
delete this.oldPromise;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
search: data
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
// alert(JSON.stringify(e));
|
|
|
|
}
|
|
|
|
}
|
2017-09-25 13:15:28 +00:00
|
|
|
|
|
|
|
toggleUser = (user) => {
|
2018-04-24 19:34:03 +00:00
|
|
|
LayoutAnimation.easeInEaseOut();
|
2017-09-25 13:15:28 +00:00
|
|
|
const index = this.props.users.findIndex(el => el.name === user.name);
|
|
|
|
if (index === -1) {
|
|
|
|
this.props.addUser(user);
|
|
|
|
} else {
|
|
|
|
this.props.removeUser(user);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_onPressItem = (id, item = {}) => {
|
|
|
|
if (item.search) {
|
|
|
|
this.toggleUser({ _id: item._id, name: item.username });
|
|
|
|
} else {
|
|
|
|
this.toggleUser({ _id: item._id, name: item.name });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_onPressSelectedItem = item => this.toggleUser(item);
|
|
|
|
|
|
|
|
renderHeader = () => (
|
|
|
|
<View style={styles.container}>
|
|
|
|
{this.renderSearchBar()}
|
|
|
|
{this.renderSelected()}
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
|
|
|
|
renderSearchBar = () => (
|
|
|
|
<View style={styles.searchBoxView}>
|
|
|
|
<TextInput
|
|
|
|
underlineColorAndroid='transparent'
|
|
|
|
style={styles.searchBox}
|
2018-04-24 19:34:03 +00:00
|
|
|
onChangeText={text => this.onSearchChangeText(text)}
|
2017-09-25 13:15:28 +00:00
|
|
|
returnKeyType='search'
|
2018-06-01 17:38:13 +00:00
|
|
|
placeholder={I18n.t('Search')}
|
2017-09-25 13:15:28 +00:00
|
|
|
clearButtonMode='while-editing'
|
|
|
|
blurOnSubmit
|
2018-05-23 13:39:18 +00:00
|
|
|
testID='select-users-view-search'
|
2018-05-18 17:55:08 +00:00
|
|
|
autoCorrect={false}
|
|
|
|
autoCapitalize='none'
|
2017-09-25 13:15:28 +00:00
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
);
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2017-09-25 13:15:28 +00:00
|
|
|
renderSelected = () => {
|
|
|
|
if (this.props.users.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
2018-04-24 19:34:03 +00:00
|
|
|
<FlatList
|
|
|
|
data={this.props.users}
|
|
|
|
keyExtractor={item => item._id}
|
2017-09-25 13:15:28 +00:00
|
|
|
style={styles.list}
|
2018-04-24 19:34:03 +00:00
|
|
|
renderItem={this.renderSelectedItem}
|
2017-09-25 13:15:28 +00:00
|
|
|
enableEmptySections
|
|
|
|
keyboardShouldPersistTaps='always'
|
|
|
|
horizontal
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
renderSelectedItem = ({ item }) => (
|
2017-09-25 13:15:28 +00:00
|
|
|
<TouchableOpacity
|
|
|
|
key={item._id}
|
|
|
|
style={styles.selectItemView}
|
|
|
|
onPress={() => this._onPressSelectedItem(item)}
|
2018-05-23 13:39:18 +00:00
|
|
|
testID={`selected-user-${ item.name }`}
|
2017-09-25 13:15:28 +00:00
|
|
|
>
|
2018-04-24 19:34:03 +00:00
|
|
|
<Avatar text={item.name} size={40} />
|
2017-09-25 13:15:28 +00:00
|
|
|
<Text ellipsizeMode='tail' numberOfLines={1} style={{ fontSize: 10 }}>
|
|
|
|
{item.name}
|
|
|
|
</Text>
|
|
|
|
</TouchableOpacity>
|
|
|
|
);
|
2018-08-31 16:46:33 +00:00
|
|
|
|
|
|
|
renderSeparator = () => <View style={styles.separator} />;
|
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
renderItem = ({ item }) => (
|
2018-08-31 16:46:33 +00:00
|
|
|
<UserItem
|
|
|
|
name={item.fname ? item.fname : item.name}
|
|
|
|
username={item.fname ? item.name : item.username}
|
2017-09-25 13:15:28 +00:00
|
|
|
onPress={() => this._onPressItem(item._id, item)}
|
2018-05-23 13:39:18 +00:00
|
|
|
testID={`select-users-view-item-${ item.name }`}
|
2017-09-25 13:15:28 +00:00
|
|
|
/>
|
2018-08-31 16:46:33 +00:00
|
|
|
)
|
|
|
|
|
2017-09-25 13:15:28 +00:00
|
|
|
renderList = () => (
|
2018-04-24 19:34:03 +00:00
|
|
|
<FlatList
|
|
|
|
data={this.state.search.length > 0 ? this.state.search : this.data}
|
|
|
|
extraData={this.props}
|
|
|
|
keyExtractor={item => item._id}
|
2017-09-25 13:15:28 +00:00
|
|
|
style={styles.list}
|
2018-04-24 19:34:03 +00:00
|
|
|
renderItem={this.renderItem}
|
|
|
|
ListHeaderComponent={this.renderHeader}
|
2018-08-31 16:46:33 +00:00
|
|
|
ItemSeparatorComponent={this.renderSeparator}
|
2017-09-25 13:15:28 +00:00
|
|
|
enableEmptySections
|
|
|
|
keyboardShouldPersistTaps='always'
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
render = () => (
|
2018-08-01 19:35:06 +00:00
|
|
|
<SafeAreaView style={styles.safeAreaView} testID='select-users-view'>
|
|
|
|
{this.renderList()}
|
|
|
|
<Loading visible={this.props.loading} />
|
|
|
|
</SafeAreaView>
|
2017-09-25 13:15:28 +00:00
|
|
|
);
|
|
|
|
}
|