268 lines
6.7 KiB
JavaScript
268 lines
6.7 KiB
JavaScript
import ActionButton from 'react-native-action-button';
|
|
import { ListView } from 'realm/react-native';
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import Icon from 'react-native-vector-icons/Ionicons';
|
|
import { Platform, View, TextInput, SafeAreaView, FlatList } from 'react-native';
|
|
import { connect } from 'react-redux';
|
|
import * as actions from '../../actions';
|
|
import * as server from '../../actions/connect';
|
|
import database from '../../lib/realm';
|
|
import RocketChat from '../../lib/rocketchat';
|
|
import RoomItem from '../../presentation/RoomItem';
|
|
import Banner from '../../containers/Banner';
|
|
import { goRoom } from '../../containers/routes/NavigationService';
|
|
import Header from '../../containers/Header';
|
|
import RoomsListHeader from './Header';
|
|
import styles from './styles';
|
|
|
|
const ds = new ListView.DataSource({ rowHasChanged: (r1, r2) => r1 !== r2 });
|
|
@connect(state => ({
|
|
user: state.login.user,
|
|
server: state.server.server,
|
|
login: state.login,
|
|
Site_Url: state.settings.Site_Url,
|
|
canShowList: state.login.token || state.login.user.token,
|
|
searchText: state.rooms.searchText
|
|
}), dispatch => ({
|
|
login: () => dispatch(actions.login()),
|
|
connect: () => dispatch(server.connectRequest())
|
|
}))
|
|
|
|
export default class RoomsListView extends React.Component {
|
|
static propTypes = {
|
|
navigation: PropTypes.object.isRequired,
|
|
user: PropTypes.object,
|
|
Site_Url: PropTypes.string,
|
|
server: PropTypes.string,
|
|
searchText: PropTypes.string
|
|
}
|
|
|
|
static navigationOptions = ({ navigation }) => ({
|
|
header: <Header subview={<RoomsListHeader navigation={navigation} />} />
|
|
});
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
dataSource: ds.cloneWithRows([]),
|
|
searchText: ''
|
|
};
|
|
this._keyExtractor = this._keyExtractor.bind(this);
|
|
this.data = database.objects('subscriptions').sorted('roomUpdatedAt', true);
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.data.addListener(this.updateState);
|
|
|
|
this.props.navigation.setParams({
|
|
createChannel: () => this._createChannel()
|
|
});
|
|
|
|
this.updateState();
|
|
}
|
|
|
|
// shouldComponentUpdate() {
|
|
// return false;
|
|
// }
|
|
|
|
componentWillReceiveProps(props) {
|
|
if (this.props.server !== props.server) {
|
|
this.data.removeListener(this.updateState);
|
|
this.data = database.objects('subscriptions').sorted('roomUpdatedAt', true);
|
|
this.data.addListener(this.updateState);
|
|
} else if (this.props.searchText !== props.searchText) {
|
|
this.search(props.searchText);
|
|
}
|
|
}
|
|
// componentWillUpdate() {
|
|
// LayoutAnimation.easeInEaseOut();
|
|
// }
|
|
componentWillUnmount() {
|
|
this.data.removeAllListeners();
|
|
}
|
|
|
|
onSearchChangeText(text) {
|
|
this.setState({ searchText: text });
|
|
this.search(text);
|
|
}
|
|
|
|
getLastMessage = (subscription) => {
|
|
const [room] = database.objects('rooms').filtered('_id = $0', subscription.rid).slice();
|
|
return room && room.lastMessage;
|
|
}
|
|
|
|
search(text) {
|
|
const searchText = text.trim();
|
|
if (searchText === '') {
|
|
return this.setState({
|
|
dataSource: ds.cloneWithRows(this.data)
|
|
});
|
|
}
|
|
|
|
const data = this.data.filtered('name CONTAINS[c] $0', searchText).slice();
|
|
|
|
const usernames = [];
|
|
const dataSource = data.map((sub) => {
|
|
if (sub.t === 'd') {
|
|
usernames.push(sub.name);
|
|
}
|
|
return sub;
|
|
});
|
|
|
|
if (dataSource.length < 7) {
|
|
if (this.oldPromise) {
|
|
this.oldPromise();
|
|
}
|
|
Promise.race([
|
|
RocketChat.spotlight(searchText, usernames),
|
|
new Promise((resolve, reject) => this.oldPromise = reject)
|
|
])
|
|
.then((results) => {
|
|
results.users.forEach((user) => {
|
|
dataSource.push({
|
|
...user,
|
|
name: user.username,
|
|
t: 'd',
|
|
search: true
|
|
});
|
|
});
|
|
|
|
results.rooms.forEach((room) => {
|
|
dataSource.push({
|
|
...room,
|
|
search: true
|
|
});
|
|
});
|
|
|
|
this.setState({
|
|
dataSource: ds.cloneWithRows(dataSource)
|
|
});
|
|
}, () => console.log('spotlight stopped'))
|
|
.then(() => delete this.oldPromise);
|
|
}
|
|
this.setState({
|
|
dataSource: ds.cloneWithRows(dataSource)
|
|
});
|
|
}
|
|
|
|
updateState = () => {
|
|
this.setState({
|
|
dataSource: ds.cloneWithRows(this.data)
|
|
});
|
|
// this.forceUpdate();
|
|
};
|
|
|
|
_onPressItem = (item = {}) => {
|
|
const clearSearch = () => {
|
|
this.setState({
|
|
searchText: ''
|
|
});
|
|
};
|
|
|
|
// if user is using the search we need first to join/create room
|
|
if (item.search) {
|
|
if (item.t === 'd') {
|
|
RocketChat.createDirectMessage(item.username)
|
|
.then(room => new Promise((resolve) => {
|
|
const data = database.objects('subscriptions')
|
|
.filtered('rid = $1', room.rid);
|
|
|
|
if (data.length) {
|
|
return resolve(data[0]);
|
|
}
|
|
|
|
data.addListener(() => {
|
|
if (data.length) {
|
|
resolve(data[0]);
|
|
data.removeAllListeners();
|
|
}
|
|
});
|
|
}))
|
|
.then(sub => goRoom({ room: sub, name: sub.name }))
|
|
.then(() => clearSearch());
|
|
} else {
|
|
clearSearch();
|
|
goRoom(item);
|
|
}
|
|
return;
|
|
}
|
|
|
|
goRoom(item);
|
|
clearSearch();
|
|
}
|
|
|
|
_createChannel() {
|
|
this.props.navigation.navigate('SelectUsers');
|
|
}
|
|
|
|
_keyExtractor(item) {
|
|
return item.rid.replace(this.props.user.id, '').trim();
|
|
}
|
|
|
|
renderSearchBar = () => (
|
|
<View style={styles.searchBoxView}>
|
|
<TextInput
|
|
underlineColorAndroid='transparent'
|
|
style={styles.searchBox}
|
|
value={this.state.searchText}
|
|
onChangeText={text => this.onSearchChangeText(text)}
|
|
returnKeyType='search'
|
|
placeholder='Search'
|
|
clearButtonMode='while-editing'
|
|
blurOnSubmit
|
|
/>
|
|
</View>
|
|
);
|
|
|
|
renderItem = ({ item }) => {
|
|
const id = item.rid.replace(this.props.user.id, '').trim();
|
|
return (<RoomItem
|
|
alert={item.alert}
|
|
unread={item.unread}
|
|
userMentions={item.userMentions}
|
|
favorite={item.f}
|
|
lastMessage={item.lastMessage}
|
|
name={item.name}
|
|
_updatedAt={item.roomUpdatedAt}
|
|
key={item._id}
|
|
id={id}
|
|
type={item.t}
|
|
baseUrl={this.props.Site_Url}
|
|
onPress={() => this._onPressItem(item)}
|
|
/>);
|
|
}
|
|
|
|
renderList = () => (
|
|
<FlatList
|
|
data={this.data}
|
|
keyExtractor={this._keyExtractor}
|
|
dataSource={this.state.dataSource}
|
|
style={styles.list}
|
|
renderItem={this.renderItem}
|
|
ListHeaderComponent={Platform.OS === 'ios' ? this.renderSearchBar : null}
|
|
contentOffset={Platform.OS === 'ios' ? { x: 0, y: 38 } : {}}
|
|
enableEmptySections
|
|
keyboardShouldPersistTaps='always'
|
|
/>
|
|
)
|
|
|
|
renderCreateButtons = () => (
|
|
<ActionButton buttonColor='rgba(231,76,60,1)'>
|
|
<ActionButton.Item buttonColor='#9b59b6' title='Create Channel' onPress={() => { this._createChannel(); }} >
|
|
<Icon name='md-chatbubbles' style={styles.actionButtonIcon} />
|
|
</ActionButton.Item>
|
|
</ActionButton>
|
|
);
|
|
|
|
render = () => (
|
|
<View style={styles.container}>
|
|
<Banner />
|
|
<SafeAreaView style={styles.safeAreaView}>
|
|
{this.renderList()}
|
|
{Platform.OS === 'android' && this.renderCreateButtons()}
|
|
</SafeAreaView>
|
|
</View>)
|
|
}
|