vn-verdnaturachat/app/containers/Sidebar.js

304 lines
6.9 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import {
ScrollView, Text, View, StyleSheet, FlatList, LayoutAnimation, SafeAreaView
} from 'react-native';
import { connect } from 'react-redux';
2018-06-05 01:17:02 +00:00
import Icon from 'react-native-vector-icons/MaterialIcons';
import { appStart as appStartAction } from '../actions';
import { logout as logoutAction } from '../actions/login';
import Avatar from './Avatar';
import Status from './status';
2018-06-05 01:17:02 +00:00
import Touch from '../utils/touch';
import { STATUS_COLORS } from '../constants/colors';
import RocketChat from '../lib/rocketchat';
import log from '../utils/log';
2018-06-01 17:38:13 +00:00
import I18n from '../i18n';
import { NavigationActions } from '../Navigation';
import scrollPersistTaps from '../utils/scrollPersistTaps';
2018-09-21 17:24:15 +00:00
import DeviceInfo from '../utils/deviceInfo';
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff'
},
2018-06-05 01:17:02 +00:00
item: {
flexDirection: 'row',
alignItems: 'center'
},
2018-06-05 01:17:02 +00:00
itemLeft: {
marginHorizontal: 10,
width: 30,
alignItems: 'center'
},
itemText: {
marginVertical: 16,
fontWeight: 'bold',
color: '#292E35'
},
2018-06-05 01:17:02 +00:00
separator: {
borderBottomWidth: StyleSheet.hairlineWidth,
borderColor: '#ddd',
marginVertical: 4
},
2018-06-05 01:17:02 +00:00
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'
2018-09-21 17:24:15 +00:00
},
version: {
marginHorizontal: 5,
marginBottom: 5,
fontWeight: '600',
color: '#292E35',
fontSize: 13
}
});
2018-03-02 21:31:44 +00:00
const keyExtractor = item => item.id;
@connect(state => ({
2018-06-05 01:17:02 +00:00
server: state.server.server,
user: {
id: state.login.user && state.login.user.id,
language: state.login.user && state.login.user.language,
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 => ({
logout: () => dispatch(logoutAction()),
appStart: () => dispatch(appStartAction('outside'))
}))
export default class Sidebar extends Component {
static propTypes = {
baseUrl: PropTypes.string,
navigator: PropTypes.object,
server: PropTypes.string.isRequired,
user: PropTypes.object,
logout: PropTypes.func.isRequired,
appStart: PropTypes.func
}
2018-03-06 17:40:44 +00:00
constructor(props) {
super(props);
2018-06-05 01:17:02 +00:00
this.state = {
showStatus: false
2018-06-05 01:17:02 +00:00
};
2018-03-06 17:40:44 +00:00
}
componentDidMount() {
this.setStatus();
}
componentWillReceiveProps(nextProps) {
const { user } = this.props;
if (nextProps.user && user && user.language !== nextProps.user.language) {
this.setStatus();
}
2018-03-06 17:40:44 +00:00
}
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')
}]
});
});
}
2018-05-23 13:39:18 +00:00
closeDrawer = () => {
const { navigator } = this.props;
navigator.toggleDrawer({
side: 'left',
animated: true,
to: 'close'
});
2018-05-23 13:39:18 +00:00
}
toggleStatus = () => {
2018-06-05 01:17:02 +00:00
LayoutAnimation.easeInEaseOut();
this.setState(prevState => ({ showStatus: !prevState.showStatus }));
2018-06-05 01:17:02 +00:00
}
sidebarNavigate = (screen, title) => {
this.closeDrawer();
NavigationActions.resetTo({ screen, title });
2018-06-05 01:17:02 +00:00
}
renderSeparator = key => <View key={key} style={styles.separator} />;
2018-06-05 01:17:02 +00:00
renderItem = ({
text, left, onPress, testID
2018-06-05 01:17:02 +00:00
}) => (
<Touch
key={text}
onPress={onPress}
underlayColor='rgba(255, 255, 255, 0.5)'
activeOpacity={0.3}
testID={testID}
>
<View style={styles.item}>
<View style={styles.itemLeft}>
2018-06-05 01:17:02 +00:00
{left}
</View>
<Text style={styles.itemText}>
{text}
</Text>
</View>
2018-06-05 01:17:02 +00:00
</Touch>
)
renderStatusItem = ({ item }) => {
const { user } = this.props;
return (
this.renderItem({
text: item.name,
left: <View style={[styles.status, { backgroundColor: STATUS_COLORS[item.id] }]} />,
selected: user.status === item.id,
onPress: () => {
this.closeDrawer();
this.toggleStatus();
if (user.status !== item.id) {
try {
RocketChat.setUserPresenceDefaultStatus(item.id);
} catch (e) {
log('setUserPresenceDefaultStatus', e);
}
2018-06-05 01:17:02 +00:00
}
}
})
);
}
2018-06-05 01:17:02 +00:00
renderNavigation = () => {
const { logout } = this.props;
return (
[
this.renderItem({
text: I18n.t('Chats'),
left: <Icon name='chat-bubble' size={20} />,
onPress: () => this.sidebarNavigate('RoomsListView', I18n.t('Messages')),
testID: 'sidebar-chats'
}),
this.renderItem({
text: I18n.t('Profile'),
left: <Icon name='person' size={20} />,
onPress: () => this.sidebarNavigate('ProfileView', I18n.t('Profile')),
testID: 'sidebar-profile'
}),
this.renderItem({
text: I18n.t('Settings'),
left: <Icon name='settings' size={20} />,
onPress: () => this.sidebarNavigate('SettingsView', I18n.t('Settings')),
testID: 'sidebar-settings'
}),
this.renderSeparator('separator-logout'),
this.renderItem({
text: I18n.t('Logout'),
left: <Icon name='exit-to-app' size={20} />,
onPress: () => logout(),
testID: 'sidebar-logout'
})
]
);
}
renderStatus = () => {
const { status } = this.state;
const { user } = this.props;
return (
<FlatList
key='status-list'
data={status}
extraData={user}
renderItem={this.renderStatusItem}
keyExtractor={keyExtractor}
/>
);
}
render() {
const { showStatus } = this.state;
const { user, server, baseUrl } = this.props;
if (!user) {
return null;
}
return (
<SafeAreaView testID='sidebar' style={styles.container}>
<ScrollView style={styles.container} {...scrollPersistTaps}>
2018-06-05 01:17:02 +00:00
<Touch
onPress={() => this.toggleStatus()}
2018-06-05 01:17:02 +00:00
underlayColor='rgba(255, 255, 255, 0.5)'
activeOpacity={0.3}
testID='sidebar-toggle-status'
>
2018-06-05 01:17:02 +00:00
<View style={styles.header}>
<Avatar
text={user.username}
size={30}
style={styles.avatar}
baseUrl={baseUrl}
2018-06-05 01:17:02 +00:00
/>
<View style={styles.headerTextContainer}>
<View style={styles.headerUsername}>
<Status style={styles.status} id={user.id} />
<Text numberOfLines={1}>{user.username}</Text>
2018-06-05 01:17:02 +00:00
</View>
<Text style={styles.currentServerText} numberOfLines={1}>{server}</Text>
2018-06-05 01:17:02 +00:00
</View>
<Icon
name={showStatus ? 'keyboard-arrow-up' : 'keyboard-arrow-down'}
2018-06-05 01:17:02 +00:00
size={30}
style={{ paddingHorizontal: 10 }}
2018-06-05 01:17:02 +00:00
/>
</View>
2018-06-05 01:17:02 +00:00
</Touch>
{this.renderSeparator('separator-header')}
{!showStatus ? this.renderNavigation() : null}
{showStatus ? this.renderStatus() : null}
</ScrollView>
2018-09-21 17:24:15 +00:00
<Text style={styles.version}>
{DeviceInfo.getReadableVersion()}
</Text>
</SafeAreaView>
);
}
}