import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { ScrollView, Text, View, StyleSheet, FlatList, LayoutAnimation, SafeAreaView, AsyncStorage } from 'react-native';
import { connect } from 'react-redux';
import FastImage from 'react-native-fast-image';
import Icon from 'react-native-vector-icons/MaterialIcons';
import database from '../lib/realm';
import { selectServerRequest } from '../actions/server';
import { appStart } from '../actions';
import { logout } from '../actions/login';
import Avatar from '../containers/Avatar';
import Status from '../containers/status';
import Touch from '../utils/touch';
import { STATUS_COLORS } from '../constants/colors';
import RocketChat from '../lib/rocketchat';
import log from '../utils/log';
import I18n from '../i18n';
import { NavigationActions } from '../Navigation';
import scrollPersistTaps from '../utils/scrollPersistTaps';
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff'
},
item: {
flexDirection: 'row',
alignItems: 'center'
},
itemLeft: {
marginHorizontal: 10,
width: 30,
alignItems: 'center'
},
itemText: {
marginVertical: 16,
fontWeight: 'bold',
color: '#292E35'
},
separator: {
borderBottomWidth: StyleSheet.hairlineWidth,
borderColor: '#ddd',
marginVertical: 4
},
serverImage: {
width: 24,
height: 24,
borderRadius: 4
},
header: {
paddingVertical: 16,
flexDirection: 'row',
alignItems: 'center'
},
headerTextContainer: {
flex: 1,
flexDirection: 'column',
alignItems: 'flex-start'
},
headerUsername: {
flexDirection: 'row',
alignItems: 'center'
},
avatar: {
marginHorizontal: 10
},
status: {
borderRadius: 12,
width: 12,
height: 12,
marginRight: 5
},
currentServerText: {
fontWeight: 'bold'
}
});
const keyExtractor = item => item.id;
@connect(state => ({
server: state.server.server,
user: {
id: state.login.user && state.login.user.id,
language: state.login.user && state.login.user.language,
server: state.login.user && state.login.user.server,
status: state.login.user && state.login.user.status,
username: state.login.user && state.login.user.username
},
baseUrl: state.settings.Site_Url || state.server ? state.server.server : ''
}), dispatch => ({
selectServerRequest: server => dispatch(selectServerRequest(server)),
logout: () => dispatch(logout()),
appStart: () => dispatch(appStart('outside'))
}))
export default class Sidebar extends Component {
static propTypes = {
baseUrl: PropTypes.string,
navigator: PropTypes.object,
server: PropTypes.string.isRequired,
selectServerRequest: PropTypes.func.isRequired,
user: PropTypes.object,
logout: PropTypes.func.isRequired,
appStart: PropTypes.func
}
constructor(props) {
super(props);
this.state = {
servers: [],
showServers: false
};
}
componentDidMount() {
this.setState(this.getState());
this.setStatus();
database.databases.serversDB.addListener('change', this.updateState);
}
componentWillReceiveProps(nextProps) {
if (nextProps.user && this.props.user && this.props.user.language !== nextProps.user.language) {
this.setStatus();
}
}
componentWillUnmount() {
database.databases.serversDB.removeListener('change', this.updateState);
}
onPressItem = (item) => {
this.props.selectServerRequest(item.id);
}
setStatus = () => {
setTimeout(() => {
this.setState({
status: [{
id: 'online',
name: I18n.t('Online')
}, {
id: 'busy',
name: I18n.t('Busy')
}, {
id: 'away',
name: I18n.t('Away')
}, {
id: 'offline',
name: I18n.t('Invisible')
}]
});
});
}
getState = () => ({
servers: database.databases.serversDB.objects('servers')
})
updateState = () => {
this.setState(this.getState());
}
closeDrawer = () => {
this.props.navigator.toggleDrawer({
side: 'left',
animated: true,
to: 'close'
});
}
toggleServers = () => {
LayoutAnimation.easeInEaseOut();
this.setState({ showServers: !this.state.showServers });
}
sidebarNavigate = (screen, title) => {
this.closeDrawer();
NavigationActions.resetTo({ screen, title });
}
renderSeparator = key => ;
renderItem = ({
text, left, onPress, testID
}) => (
{left}
{text}
)
renderStatusItem = ({ item }) => (
this.renderItem({
text: item.name,
left: ,
selected: this.props.user.status === item.id,
onPress: () => {
this.closeDrawer();
this.toggleServers();
if (this.props.user.status !== item.id) {
try {
RocketChat.setUserPresenceDefaultStatus(item.id);
} catch (e) {
log('setUserPresenceDefaultStatus', e);
}
}
}
})
)
renderServer = ({ item }) => (
this.renderItem({
text: item.id,
left: ,
selected: this.props.server === item.id,
onPress: async() => {
this.closeDrawer();
this.toggleServers();
if (this.props.server !== item.id) {
this.props.selectServerRequest(item.id);
const token = await AsyncStorage.getItem(`${ RocketChat.TOKEN_KEY }-${ item.id }`);
if (!token) {
this.props.appStart();
setTimeout(() => {
NavigationActions.push({
screen: 'NewServerView',
backButtonTitle: '',
passProps: {
server: item.id
},
navigatorStyle: {
navBarHidden: true
}
});
}, 1000);
}
}
},
testID: `sidebar-${ item.id }`
})
)
renderNavigation = () => (
[
this.renderItem({
text: I18n.t('Chats'),
left: ,
onPress: () => this.sidebarNavigate('RoomsListView', I18n.t('Messages')),
testID: 'sidebar-chats'
}),
this.renderItem({
text: I18n.t('Profile'),
left: ,
onPress: () => this.sidebarNavigate('ProfileView', I18n.t('Profile')),
testID: 'sidebar-profile'
}),
this.renderItem({
text: I18n.t('Settings'),
left: ,
onPress: () => this.sidebarNavigate('SettingsView', I18n.t('Settings')),
testID: 'sidebar-settings'
}),
this.renderSeparator('separator-logout'),
this.renderItem({
text: I18n.t('Logout'),
left: ,
onPress: () => this.props.logout(),
testID: 'sidebar-logout'
})
]
)
renderServers = () => (
[
,
this.renderSeparator('separator-status'),
,
this.renderSeparator('separator-add-server'),
this.renderItem({
text: I18n.t('Add_Server'),
left: ,
onPress: () => {
this.closeDrawer();
this.toggleServers();
this.props.navigator.showModal({
screen: 'NewServerView',
title: I18n.t('Add_Server'),
passProps: {
previousServer: this.props.server
}
});
},
testID: 'sidebar-add-server'
})
]
)
render() {
const { user, server, baseUrl } = this.props;
if (!user) {
return null;
}
return (
this.toggleServers()}
underlayColor='rgba(255, 255, 255, 0.5)'
activeOpacity={0.3}
testID='sidebar-toggle-server'
>
{user.username}
{server}
{this.renderSeparator('separator-header')}
{!this.state.showServers ? this.renderNavigation() : null}
{this.state.showServers ? this.renderServers() : null}
);
}
}