2017-08-10 16:25:50 +00:00
|
|
|
import ActionButton from 'react-native-action-button';
|
|
|
|
import Icon from 'react-native-vector-icons/Ionicons';
|
2017-08-03 18:23:43 +00:00
|
|
|
import React from 'react';
|
2017-08-05 18:16:32 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-08-10 16:31:57 +00:00
|
|
|
import { Text, View, FlatList, StyleSheet, TouchableOpacity, Platform, TextInput } from 'react-native';
|
2017-08-09 16:19:17 +00:00
|
|
|
import Meteor from 'react-native-meteor';
|
2017-08-09 01:40:55 +00:00
|
|
|
import realm from '../lib/realm';
|
2017-08-09 20:18:00 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2017-08-09 01:40:55 +00:00
|
|
|
import RoomItem from '../components/RoomItem';
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
container: {
|
2017-08-09 16:19:17 +00:00
|
|
|
flex: 1,
|
2017-08-09 19:11:00 +00:00
|
|
|
alignItems: 'stretch',
|
2017-08-09 16:19:17 +00:00
|
|
|
justifyContent: 'center'
|
2017-08-03 18:23:43 +00:00
|
|
|
},
|
|
|
|
separator: {
|
|
|
|
height: 1,
|
2017-08-10 16:25:50 +00:00
|
|
|
backgroundColor: '#E7E7E7'
|
2017-08-09 16:19:17 +00:00
|
|
|
},
|
|
|
|
list: {
|
|
|
|
width: '100%'
|
|
|
|
},
|
2017-08-09 20:08:50 +00:00
|
|
|
emptyView: {
|
|
|
|
flexGrow: 1,
|
|
|
|
alignItems: 'stretch',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
2017-08-09 16:19:17 +00:00
|
|
|
emptyText: {
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: 18,
|
|
|
|
color: '#ccc'
|
2017-08-09 19:11:00 +00:00
|
|
|
},
|
|
|
|
bannerContainer: {
|
|
|
|
backgroundColor: '#ddd'
|
|
|
|
},
|
|
|
|
bannerText: {
|
2017-08-09 20:08:50 +00:00
|
|
|
textAlign: 'center',
|
|
|
|
margin: 5
|
2017-08-10 16:25:50 +00:00
|
|
|
},
|
|
|
|
actionButtonIcon: {
|
|
|
|
fontSize: 20,
|
|
|
|
height: 22,
|
|
|
|
color: 'white'
|
2017-08-10 20:26:11 +00:00
|
|
|
},
|
|
|
|
searchBoxView: {
|
|
|
|
// borderBottomWidth: 1,
|
|
|
|
// borderBottomColor:
|
|
|
|
backgroundColor: '#eee',
|
|
|
|
},
|
|
|
|
searchBox: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
margin: 5,
|
|
|
|
borderRadius: 5,
|
|
|
|
padding: 5,
|
|
|
|
paddingLeft: 10,
|
|
|
|
color: '#aaa'
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-08-09 16:19:17 +00:00
|
|
|
let navigation;
|
|
|
|
|
|
|
|
Meteor.getData().on('loggingIn', () => {
|
|
|
|
setTimeout(() => {
|
|
|
|
if (Meteor._isLoggingIn === false && Meteor.userId() == null) {
|
|
|
|
console.log('loggingIn', Meteor.userId());
|
|
|
|
navigation.navigate('Login');
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
|
|
|
|
Meteor.Accounts.onLogin(() => {
|
|
|
|
console.log('onLogin');
|
|
|
|
});
|
|
|
|
|
2017-08-09 01:40:55 +00:00
|
|
|
export default class RoomsListView extends React.Component {
|
2017-08-05 18:16:32 +00:00
|
|
|
static propTypes = {
|
|
|
|
navigation: PropTypes.object.isRequired
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
2017-08-10 14:59:07 +00:00
|
|
|
static navigationOptions = () => {
|
|
|
|
const server = RocketChat.currentServer ? RocketChat.currentServer.replace(/^https?:\/\//, '') : '';
|
2017-08-10 15:11:37 +00:00
|
|
|
const textAlign = Platform.OS === 'ios' ? 'center' : 'left';
|
|
|
|
const marginLeft = Platform.OS === 'ios' ? 0 : 20;
|
2017-08-10 14:59:07 +00:00
|
|
|
return {
|
2017-08-10 15:11:37 +00:00
|
|
|
headerTitle: <View style={{ height: 10, width: 200, top: -10, marginLeft }}>
|
|
|
|
<Text style={{ textAlign, fontSize: 16, fontWeight: '600' }}>Channels</Text>
|
|
|
|
<Text style={{ textAlign, fontSize: 10 }}>{server}</Text>
|
|
|
|
</View>,
|
|
|
|
title: 'Channels'
|
2017-08-10 14:59:07 +00:00
|
|
|
};
|
|
|
|
}
|
2017-08-09 16:19:17 +00:00
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
this.state = {
|
|
|
|
dataSource: this.getSubscriptions(),
|
|
|
|
searching: false,
|
|
|
|
searchDataSource: [],
|
|
|
|
searchText: ''
|
|
|
|
};
|
2017-08-09 16:19:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillMount() {
|
|
|
|
realm.addListener('change', this.updateState);
|
|
|
|
|
|
|
|
navigation = this.props.navigation;
|
|
|
|
|
2017-08-09 18:01:54 +00:00
|
|
|
if (RocketChat.currentServer) {
|
2017-08-09 20:18:00 +00:00
|
|
|
RocketChat.connect();
|
2017-08-09 16:19:17 +00:00
|
|
|
} else {
|
|
|
|
navigation.navigate('ListServerModal');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
realm.removeListener('change', this.updateState);
|
|
|
|
}
|
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
onSearchChangeText = (text) => {
|
|
|
|
const searchText = text.trim();
|
|
|
|
this.setState({
|
|
|
|
searchText: text,
|
|
|
|
searching: searchText !== ''
|
|
|
|
});
|
2017-08-09 18:01:54 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
if (searchText !== '') {
|
|
|
|
const dataSource = [];
|
|
|
|
const usernames = [];
|
|
|
|
realm.objects('subscriptions').filtered('_server.id = $0 AND name CONTAINS[c] $1', RocketChat.currentServer, searchText).forEach((sub) => {
|
|
|
|
dataSource.push(sub);
|
2017-08-09 18:01:54 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
if (sub.t === 'd') {
|
|
|
|
usernames.push(sub.name);
|
2017-08-09 18:01:54 +00:00
|
|
|
}
|
2017-08-10 16:16:32 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (dataSource.length < 5) {
|
|
|
|
RocketChat.spotlight(searchText, usernames)
|
|
|
|
.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({
|
|
|
|
searchDataSource: dataSource
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getSubscriptions = () => realm.objects('subscriptions').filtered('_server.id = $0', RocketChat.currentServer).sorted('name').slice()
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a.unread < b.unread) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a.unread > b.unread) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-08-09 18:01:54 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
return 0;
|
|
|
|
});
|
2017-08-09 16:19:17 +00:00
|
|
|
|
|
|
|
updateState = () => {
|
2017-08-10 16:16:32 +00:00
|
|
|
this.setState({
|
|
|
|
dataSource: this.getSubscriptions()
|
|
|
|
});
|
2017-08-07 18:42:02 +00:00
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
|
2017-08-10 16:49:15 +00:00
|
|
|
_onPressItem = (id, item = {}) => {
|
2017-08-05 18:16:32 +00:00
|
|
|
const { navigate } = this.props.navigation;
|
2017-08-10 16:16:32 +00:00
|
|
|
|
|
|
|
const clearSearch = () => {
|
|
|
|
this.setState({
|
|
|
|
searchText: '',
|
|
|
|
searching: false,
|
|
|
|
searchDataSource: []
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// 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 => realm.objects('subscriptions').filtered('_server.id = $0 AND rid = $1', RocketChat.currentServer, room.rid))
|
|
|
|
.then(subs => navigate('Room', { sid: subs[0]._id }))
|
|
|
|
.then(() => clearSearch());
|
|
|
|
} else {
|
|
|
|
navigate('Room', { rid: item._id, name: item.name });
|
|
|
|
clearSearch();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-05 18:16:32 +00:00
|
|
|
navigate('Room', { sid: id });
|
2017-08-10 16:16:32 +00:00
|
|
|
clearSearch();
|
2017-08-05 18:16:32 +00:00
|
|
|
}
|
2017-08-10 16:25:50 +00:00
|
|
|
_createChannel = () => {
|
|
|
|
const { navigate } = this.props.navigation;
|
|
|
|
navigate('CreateChannel');
|
|
|
|
}
|
2017-08-09 19:11:00 +00:00
|
|
|
renderBanner = () => {
|
2017-08-09 20:08:50 +00:00
|
|
|
const status = Meteor.getData() && Meteor.getData().ddp && Meteor.getData().ddp.status;
|
|
|
|
|
|
|
|
if (status === 'disconnected') {
|
2017-08-09 19:11:00 +00:00
|
|
|
return (
|
2017-08-09 20:08:50 +00:00
|
|
|
<View style={[styles.bannerContainer, { backgroundColor: '#0d0' }]}>
|
|
|
|
<Text style={[styles.bannerText, { color: '#fff' }]}>Connecting...</Text>
|
2017-08-09 19:11:00 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-09 20:08:50 +00:00
|
|
|
if (status === 'connected' && Meteor._isLoggingIn) {
|
2017-08-09 19:11:00 +00:00
|
|
|
return (
|
2017-08-09 20:08:50 +00:00
|
|
|
<View style={[styles.bannerContainer, { backgroundColor: 'orange' }]}>
|
|
|
|
<Text style={[styles.bannerText, { color: '#a00' }]}>Authenticating...</Text>
|
2017-08-09 19:11:00 +00:00
|
|
|
</View>
|
2017-08-09 20:18:00 +00:00
|
|
|
);
|
2017-08-09 19:11:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-05 18:16:32 +00:00
|
|
|
renderItem = ({ item }) => (
|
2017-08-10 16:49:15 +00:00
|
|
|
<TouchableOpacity onPress={() => this._onPressItem(item._id, item)}>
|
2017-08-10 16:25:50 +00:00
|
|
|
<RoomItem
|
|
|
|
id={item._id}
|
|
|
|
item={item}
|
|
|
|
/>
|
|
|
|
</TouchableOpacity>
|
2017-08-05 18:16:32 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
renderSeparator = () => (
|
|
|
|
<View style={styles.separator} />
|
|
|
|
);
|
2017-08-03 18:23:43 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
renderSearchBar = () => (
|
2017-08-10 20:26:11 +00:00
|
|
|
<View style={styles.searchBoxView}>
|
|
|
|
<TextInput
|
|
|
|
style={styles.searchBox}
|
|
|
|
value={this.state.searchText}
|
|
|
|
onChangeText={this.onSearchChangeText}
|
|
|
|
returnKeyType='search'
|
|
|
|
placeholder='Search'
|
|
|
|
/>
|
|
|
|
</View>
|
2017-08-10 16:16:32 +00:00
|
|
|
);
|
|
|
|
|
2017-08-09 16:19:17 +00:00
|
|
|
renderList = () => {
|
2017-08-10 16:16:32 +00:00
|
|
|
if (!this.state.searching && !this.state.dataSource.length) {
|
2017-08-09 16:19:17 +00:00
|
|
|
return (
|
2017-08-10 16:16:32 +00:00
|
|
|
<View style={styles.emptyView}>
|
|
|
|
<Text style={styles.emptyText}>No rooms</Text>
|
|
|
|
</View>
|
2017-08-09 16:19:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-08-10 16:16:32 +00:00
|
|
|
<FlatList
|
|
|
|
style={styles.list}
|
|
|
|
data={this.state.searching ? this.state.searchDataSource : this.state.dataSource}
|
|
|
|
renderItem={this.renderItem}
|
|
|
|
keyExtractor={item => item._id}
|
|
|
|
ItemSeparatorComponent={this.renderSeparator}
|
|
|
|
/>
|
2017-08-09 16:19:17 +00:00
|
|
|
);
|
|
|
|
}
|
2017-08-10 16:25:50 +00:00
|
|
|
renderCreateButtons() {
|
|
|
|
return (
|
|
|
|
<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>);
|
|
|
|
}
|
2017-08-09 16:19:17 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
2017-08-09 19:11:00 +00:00
|
|
|
{this.renderBanner()}
|
2017-08-10 16:16:32 +00:00
|
|
|
{this.renderSearchBar()}
|
2017-08-09 16:19:17 +00:00
|
|
|
{this.renderList()}
|
2017-08-10 16:25:50 +00:00
|
|
|
{this.renderCreateButtons()}
|
2017-08-03 18:23:43 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|