2018-08-31 16:46:33 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { View, Text, Animated, Easing, TouchableWithoutFeedback, TouchableOpacity, FlatList, Image, AsyncStorage } from 'react-native';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
import styles from './styles';
|
|
|
|
import { toggleServerDropdown } from '../../actions/rooms';
|
|
|
|
import { selectServerRequest } from '../../actions/server';
|
|
|
|
import { appStart } from '../../actions';
|
|
|
|
import database from '../../lib/realm';
|
|
|
|
import Touch from '../../utils/touch';
|
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
|
|
|
|
const ROW_HEIGHT = 68;
|
|
|
|
const ANIMATION_DURATION = 200;
|
|
|
|
|
|
|
|
@connect(state => ({
|
|
|
|
closeServerDropdown: state.rooms.closeServerDropdown,
|
|
|
|
server: state.server.server
|
|
|
|
}), dispatch => ({
|
|
|
|
toggleServerDropdown: () => dispatch(toggleServerDropdown()),
|
|
|
|
selectServerRequest: server => dispatch(selectServerRequest(server)),
|
|
|
|
appStart: () => dispatch(appStart('outside'))
|
|
|
|
}))
|
|
|
|
export default class ServerDropdown extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
navigator: PropTypes.object,
|
|
|
|
closeServerDropdown: PropTypes.bool,
|
|
|
|
server: PropTypes.string,
|
|
|
|
toggleServerDropdown: PropTypes.func,
|
|
|
|
selectServerRequest: PropTypes.func,
|
|
|
|
appStart: PropTypes.func
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
servers: []
|
|
|
|
};
|
|
|
|
this.animatedValue = new Animated.Value(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
Animated.timing(
|
|
|
|
this.animatedValue,
|
|
|
|
{
|
|
|
|
toValue: 1,
|
|
|
|
duration: ANIMATION_DURATION,
|
|
|
|
easing: Easing.ease,
|
|
|
|
useNativeDriver: true
|
|
|
|
},
|
|
|
|
).start();
|
|
|
|
this.servers = database.databases.serversDB.objects('servers');
|
|
|
|
this.servers.addListener(this.updateState);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (prevProps.closeServerDropdown !== this.props.closeServerDropdown) {
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateState = () => {
|
|
|
|
const { servers } = this;
|
|
|
|
this.setState({ servers });
|
|
|
|
}
|
|
|
|
|
|
|
|
close = () => {
|
|
|
|
Animated.timing(
|
|
|
|
this.animatedValue,
|
|
|
|
{
|
|
|
|
toValue: 0,
|
|
|
|
duration: ANIMATION_DURATION,
|
|
|
|
easing: Easing.ease,
|
|
|
|
useNativeDriver: true
|
|
|
|
}
|
|
|
|
).start(() => this.props.toggleServerDropdown());
|
|
|
|
}
|
|
|
|
|
|
|
|
addServer = () => {
|
|
|
|
this.close();
|
|
|
|
setTimeout(() => {
|
|
|
|
this.props.navigator.showModal({
|
|
|
|
screen: 'NewServerView',
|
|
|
|
title: I18n.t('Add_Server'),
|
|
|
|
passProps: {
|
|
|
|
previousServer: this.props.server
|
2018-08-31 18:13:30 +00:00
|
|
|
},
|
|
|
|
navigatorButtons: {
|
|
|
|
leftButtons: [{
|
|
|
|
id: 'cancel',
|
|
|
|
testID: 'new-server-close',
|
|
|
|
title: I18n.t('Close')
|
|
|
|
}]
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}, ANIMATION_DURATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
select = async(server) => {
|
|
|
|
this.close();
|
|
|
|
if (this.props.server !== server) {
|
|
|
|
this.props.selectServerRequest(server);
|
|
|
|
const token = await AsyncStorage.getItem(`${ RocketChat.TOKEN_KEY }-${ server }`);
|
|
|
|
if (!token) {
|
|
|
|
this.props.appStart();
|
|
|
|
setTimeout(() => {
|
|
|
|
this.props.navigator.push({
|
|
|
|
screen: 'NewServerView',
|
2018-08-31 18:13:30 +00:00
|
|
|
backButtonTitle: '',
|
2018-08-31 16:46:33 +00:00
|
|
|
passProps: {
|
|
|
|
server
|
|
|
|
},
|
|
|
|
navigatorStyle: {
|
|
|
|
navBarHidden: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
renderSeparator = () => <View style={styles.serverSeparator} />;
|
|
|
|
|
|
|
|
renderServer = ({ item }) => (
|
|
|
|
<Touch onPress={() => this.select(item.id)} style={styles.serverItem} testID={`rooms-list-header-server-${ item.id }`}>
|
|
|
|
<View style={styles.serverItemContainer}>
|
2018-09-05 18:15:03 +00:00
|
|
|
{item.iconURL ?
|
|
|
|
<Image
|
|
|
|
source={{ uri: item.iconURL }}
|
|
|
|
defaultSource={{ uri: 'logo' }}
|
|
|
|
style={styles.serverIcon}
|
|
|
|
/> :
|
|
|
|
<Image
|
|
|
|
source={{ uri: 'logo' }}
|
|
|
|
style={styles.serverIcon}
|
|
|
|
/>
|
|
|
|
}
|
2018-08-31 16:46:33 +00:00
|
|
|
<View style={styles.serverTextContainer}>
|
|
|
|
<Text style={styles.serverName}>{item.name || item.id}</Text>
|
|
|
|
<Text style={styles.serverUrl}>{item.id}</Text>
|
|
|
|
</View>
|
|
|
|
{item.id === this.props.server ? <Image style={styles.checkIcon} source={{ uri: 'check' }} /> : null}
|
|
|
|
</View>
|
|
|
|
</Touch>
|
|
|
|
)
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const maxRows = 4;
|
|
|
|
const initialTop = 41 + (Math.min(this.state.servers.length, maxRows) * ROW_HEIGHT);
|
|
|
|
const translateY = this.animatedValue.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [-initialTop, 0]
|
|
|
|
});
|
|
|
|
const backdropOpacity = this.animatedValue.interpolate({
|
|
|
|
inputRange: [0, 1],
|
|
|
|
outputRange: [0, 0.3]
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
[
|
|
|
|
<TouchableWithoutFeedback key='sort-backdrop' onPress={this.close}>
|
|
|
|
<Animated.View style={[styles.backdrop, { opacity: backdropOpacity }]} />
|
|
|
|
</TouchableWithoutFeedback>,
|
|
|
|
<Animated.View
|
|
|
|
key='sort-container'
|
|
|
|
style={[styles.dropdownContainer, { transform: [{ translateY }] }]}
|
|
|
|
testID='rooms-list-header-server-dropdown'
|
|
|
|
>
|
|
|
|
<View style={[styles.dropdownContainerHeader, styles.serverHeader]}>
|
|
|
|
<Text style={styles.serverHeaderText}>{I18n.t('Server')}</Text>
|
|
|
|
<TouchableOpacity onPress={this.addServer} testID='rooms-list-header-server-add'>
|
|
|
|
<Text style={styles.serverHeaderAdd}>{I18n.t('Add_Server')}</Text>
|
|
|
|
</TouchableOpacity>
|
|
|
|
</View>
|
|
|
|
<FlatList
|
|
|
|
style={{ maxHeight: maxRows * ROW_HEIGHT }}
|
|
|
|
data={this.state.servers}
|
|
|
|
keyExtractor={item => item.id}
|
|
|
|
renderItem={this.renderServer}
|
|
|
|
ItemSeparatorComponent={this.renderSeparator}
|
|
|
|
/>
|
|
|
|
</Animated.View>
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|