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'; import Icon from 'react-native-vector-icons/MaterialIcons'; import { Navigation } from 'react-native-navigation'; import { appStart as appStartAction } from '../actions'; import { logout as logoutAction } from '../actions/login'; import Avatar from './Avatar'; import Status from './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 scrollPersistTaps from '../utils/scrollPersistTaps'; import DeviceInfo from '../utils/deviceInfo'; import Drawer from '../Drawer'; import EventEmitter from '../utils/events'; 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' }, itemSelected: { backgroundColor: '#F7F8FA' }, separator: { borderBottomWidth: StyleSheet.hairlineWidth, borderColor: '#ddd', marginVertical: 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' }, version: { marginHorizontal: 5, marginBottom: 5, fontWeight: '600', color: '#292E35', fontSize: 13 } }); 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, 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, componentId: PropTypes.string, server: PropTypes.string.isRequired, user: PropTypes.object, logout: PropTypes.func.isRequired, appStart: PropTypes.func } constructor(props) { super(props); this.state = { showStatus: false, currentStack: 'RoomsListView' }; Navigation.events().bindComponent(this); } componentDidMount() { this.setStatus(); EventEmitter.addEventListener('ChangeStack', this.handleChangeStack); } componentWillReceiveProps(nextProps) { const { user } = this.props; if (nextProps.user && user && user.language !== nextProps.user.language) { this.setStatus(); } } componentWillUnmount() { EventEmitter.removeListener('ChangeStack', this.handleChangeStack); } handleChangeStack = (event) => { const { stack } = event; this.setStack(stack); } navigationButtonPressed = ({ buttonId }) => { if (buttonId === 'cancel') { const { componentId } = this.props; Navigation.dismissModal(componentId); } } 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') }] }); }); } setStack = (stack) => { const { currentStack } = this.state; if (currentStack !== stack) { Navigation.setStackRoot('AppRoot', { component: { id: stack, name: stack } }); this.setState({ currentStack: stack }); } } closeDrawer = () => { Drawer.toggle(); } toggleStatus = () => { LayoutAnimation.easeInEaseOut(); this.setState(prevState => ({ showStatus: !prevState.showStatus })); } sidebarNavigate = (stack) => { this.closeDrawer(); this.setStack(stack); } renderSeparator = key => ; renderItem = ({ text, left, onPress, testID, current }) => ( {left} {text} ) renderStatusItem = ({ item }) => { const { user } = this.props; return ( this.renderItem({ text: item.name, left: , current: user.status === item.id, onPress: () => { this.closeDrawer(); this.toggleStatus(); if (user.status !== item.id) { try { RocketChat.setUserPresenceDefaultStatus(item.id); } catch (e) { log('setUserPresenceDefaultStatus', e); } } } }) ); } renderNavigation = () => { const { currentStack } = this.state; const { logout } = this.props; return ( [ this.renderItem({ text: I18n.t('Chats'), left: , onPress: () => this.sidebarNavigate('RoomsListView'), testID: 'sidebar-chats', current: currentStack === 'RoomsListView' }), this.renderItem({ text: I18n.t('Profile'), left: , onPress: () => this.sidebarNavigate('ProfileView'), testID: 'sidebar-profile', current: currentStack === 'ProfileView' }), this.renderItem({ text: I18n.t('Settings'), left: , onPress: () => this.sidebarNavigate('SettingsView'), testID: 'sidebar-settings', current: currentStack === 'SettingsView' }), this.renderSeparator('separator-logout'), this.renderItem({ text: I18n.t('Logout'), left: , onPress: () => logout(), testID: 'sidebar-logout' }) ] ); } renderStatus = () => { const { status } = this.state; const { user } = this.props; return ( ); } render() { const { showStatus } = this.state; const { user, server, baseUrl } = this.props; if (!user) { return null; } return ( this.toggleStatus()} underlayColor='rgba(255, 255, 255, 0.5)' activeOpacity={0.3} testID='sidebar-toggle-status' > {user.username} {server} {this.renderSeparator('separator-header')} {!showStatus ? this.renderNavigation() : null} {showStatus ? this.renderStatus() : null} {DeviceInfo.getReadableVersion()} ); } }