Add room search (#16)

This commit is contained in:
Diego Sampaio 2017-08-10 13:16:32 -03:00 committed by GitHub
parent a154656fa4
commit b7be727d0e
6 changed files with 202 additions and 42 deletions

5
.expo/packager-info.json Normal file
View File

@ -0,0 +1,5 @@
{
"expoServerPort": null,
"packagerPort": null,
"packagerPid": null
}

9
.expo/settings.json Normal file
View File

@ -0,0 +1,9 @@
{
"hostType": "tunnel",
"lanType": "ip",
"dev": true,
"strict": false,
"minify": false,
"urlType": "exp",
"urlRandomness": null
}

View File

@ -34,7 +34,7 @@ export default class RoomItem extends React.PureComponent {
} }
_onPress = () => { _onPress = () => {
this.props.onPressItem(this.props.id); this.props.onPressItem(this.props.id, this.props.item);
}; };
renderNumber = (item) => { renderNumber = (item) => {

View File

@ -147,6 +147,39 @@ const RocketChat = {
return resolve(result); return resolve(result);
}); });
}); });
},
spotlight(search, usernames) {
return new Promise((resolve, reject) => {
Meteor.call('spotlight', search, usernames, (error, result) => {
if (error) {
return reject(error);
}
return resolve(result);
});
});
},
createDirectMessage(username) {
return new Promise((resolve, reject) => {
Meteor.call('createDirectMessage', username, (error, result) => {
if (error) {
return reject(error);
}
return resolve(result);
});
});
},
joinRoom(rid) {
return new Promise((resolve, reject) => {
Meteor.call('joinRoom', rid, (error, result) => {
if (error) {
return reject(error);
}
return resolve(result);
});
});
} }
}; };

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Text, View, FlatList, StyleSheet } from 'react-native'; import { Text, View, FlatList, StyleSheet, Button } from 'react-native';
import realm from '../lib/realm'; import realm from '../lib/realm';
import RocketChat from '../lib/rocketchat'; import RocketChat from '../lib/rocketchat';
@ -36,17 +36,18 @@ export default class RoomView extends React.Component {
} }
static navigationOptions = ({ navigation }) => ({ static navigationOptions = ({ navigation }) => ({
title: realm.objectForPrimaryKey('subscriptions', navigation.state.params.sid).name title: navigation.state.params.name || realm.objectForPrimaryKey('subscriptions', navigation.state.params.sid).name
}); });
constructor(props) { constructor(props) {
super(props); super(props);
this.rid = realm.objectForPrimaryKey('subscriptions', props.navigation.state.params.sid).rid; this.rid = props.navigation.state.params.rid || realm.objectForPrimaryKey('subscriptions', props.navigation.state.params.sid).rid;
// this.rid = 'GENERAL'; // this.rid = 'GENERAL';
this.state = { this.state = {
dataSource: this.getMessages(), dataSource: this.getMessages(),
loaded: false loaded: false,
joined: typeof props.navigation.state.params.rid === 'undefined'
}; };
this.url = realm.objectForPrimaryKey('settings', 'Site_Url').value; this.url = realm.objectForPrimaryKey('settings', 'Site_Url').value;
@ -77,13 +78,14 @@ export default class RoomView extends React.Component {
sendMessage = message => RocketChat.sendMessage(this.rid, message); sendMessage = message => RocketChat.sendMessage(this.rid, message);
renderItem = ({ item }) => ( joinRoom = () => {
<Message RocketChat.joinRoom(this.props.navigation.state.params.rid)
id={item._id} .then(() => {
item={item} this.setState({
baseUrl={this.url} joined: true
/> });
); });
};
renderBanner = () => { renderBanner = () => {
if (this.state.loaded === false) { if (this.state.loaded === false) {
@ -93,6 +95,34 @@ export default class RoomView extends React.Component {
</View> </View>
); );
} }
};
renderItem = ({ item }) => (
<Message
id={item._id}
item={item}
baseUrl={this.url}
/>
);
renderSeparator = () => (
<View style={styles.separator} />
);
renderFooter = () => {
if (!this.state.joined) {
return (
<View>
<Text>You are in preview mode.</Text>
<Button title='Join' onPress={this.joinRoom} />
</View>
);
}
return (
<MessageBox
onSubmit={this.sendMessage}
/>
);
} }
render() { render() {
@ -107,9 +137,7 @@ export default class RoomView extends React.Component {
renderItem={this.renderItem} renderItem={this.renderItem}
keyExtractor={item => item._id} keyExtractor={item => item._id}
/> />
<MessageBox {this.renderFooter()}
onSubmit={this.sendMessage}
/>
</KeyboardView> </KeyboardView>
); );
} }

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Text, View, FlatList, StyleSheet, Platform } from 'react-native'; import { Text, View, FlatList, StyleSheet, Platform, TextInput } from 'react-native';
import Meteor from 'react-native-meteor'; import Meteor from 'react-native-meteor';
import realm from '../lib/realm'; import realm from '../lib/realm';
import RocketChat from '../lib/rocketchat'; import RocketChat from '../lib/rocketchat';
@ -75,7 +75,12 @@ export default class RoomsListView extends React.Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = this.getState(); this.state = {
dataSource: this.getSubscriptions(),
searching: false,
searchDataSource: [],
searchText: ''
};
} }
componentWillMount() { componentWillMount() {
@ -94,28 +99,97 @@ export default class RoomsListView extends React.Component {
realm.removeListener('change', this.updateState); realm.removeListener('change', this.updateState);
} }
getState = () => ({ onSearchChangeText = (text) => {
dataSource: realm.objects('subscriptions').filtered('_server.id = $0', RocketChat.currentServer).sorted('name').slice() const searchText = text.trim();
.sort((a, b) => { this.setState({
if (a.unread < b.unread) { searchText: text,
return 1; searching: searchText !== ''
});
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);
if (sub.t === 'd') {
usernames.push(sub.name);
} }
});
if (a.unread > b.unread) { if (dataSource.length < 5) {
return -1; RocketChat.spotlight(searchText, usernames)
} .then((results) => {
results.users.forEach((user) => {
dataSource.push({
...user,
name: user.username,
t: 'd',
search: true
});
});
return 0; results.rooms.forEach((room) => {
}) dataSource.push({
}) ...room,
search: true
});
});
updateState = () => { this.setState({
this.setState(this.getState()); searchDataSource: dataSource
});
});
}
}
} }
_onPressItem = (id) => { 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;
}
return 0;
});
updateState = () => {
this.setState({
dataSource: this.getSubscriptions()
});
}
_onPressItem = (id, item) => {
const { navigate } = this.props.navigation; const { navigate } = this.props.navigation;
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;
}
navigate('Room', { sid: id }); navigate('Room', { sid: id });
clearSearch();
} }
renderBanner = () => { renderBanner = () => {
@ -150,23 +224,33 @@ export default class RoomsListView extends React.Component {
<View style={styles.separator} /> <View style={styles.separator} />
); );
renderSearchBar = () => (
<TextInput
style={styles.searchBox}
value={this.state.searchText}
onChangeText={this.onSearchChangeText}
returnKeyType='search'
placeholder='Search'
/>
);
renderList = () => { renderList = () => {
if (this.state.dataSource.length) { if (!this.state.searching && !this.state.dataSource.length) {
return ( return (
<FlatList <View style={styles.emptyView}>
style={styles.list} <Text style={styles.emptyText}>No rooms</Text>
data={this.state.dataSource} </View>
renderItem={this.renderItem}
keyExtractor={item => item._id}
ItemSeparatorComponent={this.renderSeparator}
/>
); );
} }
return ( return (
<View style={styles.emptyView}> <FlatList
<Text style={styles.emptyText}>No rooms</Text> style={styles.list}
</View> data={this.state.searching ? this.state.searchDataSource : this.state.dataSource}
renderItem={this.renderItem}
keyExtractor={item => item._id}
ItemSeparatorComponent={this.renderSeparator}
/>
); );
} }
@ -174,6 +258,7 @@ export default class RoomsListView extends React.Component {
return ( return (
<View style={styles.container}> <View style={styles.container}>
{this.renderBanner()} {this.renderBanner()}
{this.renderSearchBar()}
{this.renderList()} {this.renderList()}
</View> </View>
); );