import React, { Component } from 'react'; import { DrawerNavigationProp } from '@react-navigation/drawer'; import { DrawerNavigationState } from '@react-navigation/native'; import { ScrollView, Text, TouchableWithoutFeedback, View } from 'react-native'; import { connect } from 'react-redux'; import { dequal } from 'dequal'; import Avatar from '../../containers/Avatar'; import Status from '../../containers/Status/Status'; import { events, logEvent } from '../../utils/log'; import I18n from '../../i18n'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import { CustomIcon } from '../../lib/Icons'; import { themes } from '../../lib/constants'; import { TSupportedThemes, withTheme } from '../../theme'; import { getUserSelector } from '../../selectors/login'; import SafeAreaView from '../../containers/SafeAreaView'; import Navigation from '../../lib/navigation/appNavigation'; import SidebarItem from './SidebarItem'; import styles from './styles'; import { DrawerParamList } from '../../stacks/types'; import { IUser } from '../../definitions'; interface ISeparatorProps { theme: TSupportedThemes; } // TODO: remove this const Separator = React.memo(({ theme }: ISeparatorProps) => ( )); interface ISidebarState { showStatus: boolean; } interface ISidebarProps { baseUrl: string; navigation: DrawerNavigationProp; state: DrawerNavigationState; Site_Name: string; user: IUser; theme: TSupportedThemes; loadingServer: boolean; useRealName: boolean; allowStatusMessage: boolean; isMasterDetail: boolean; viewStatisticsPermission: string[]; viewRoomAdministrationPermission: string[]; viewUserAdministrationPermission: string[]; viewPrivilegedSettingPermission: string[]; } class Sidebar extends Component { constructor(props: ISidebarProps) { super(props); this.state = { showStatus: false }; } shouldComponentUpdate(nextProps: ISidebarProps, nextState: ISidebarState) { const { showStatus } = this.state; const { Site_Name, user, baseUrl, state, isMasterDetail, useRealName, theme, viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission } = this.props; // Drawer navigation state if (state?.index !== nextProps.state?.index) { return true; } if (nextState.showStatus !== showStatus) { return true; } if (nextProps.Site_Name !== Site_Name) { return true; } if (nextProps.Site_Name !== Site_Name) { return true; } if (nextProps.baseUrl !== baseUrl) { return true; } if (nextProps.theme !== theme) { return true; } if (!dequal(nextProps.user, user)) { return true; } if (nextProps.isMasterDetail !== isMasterDetail) { return true; } if (nextProps.useRealName !== useRealName) { return true; } if (!dequal(nextProps.viewStatisticsPermission, viewStatisticsPermission)) { return true; } if (!dequal(nextProps.viewRoomAdministrationPermission, viewRoomAdministrationPermission)) { return true; } if (!dequal(nextProps.viewUserAdministrationPermission, viewUserAdministrationPermission)) { return true; } if (!dequal(nextProps.viewPrivilegedSettingPermission, viewPrivilegedSettingPermission)) { return true; } return false; } getIsAdmin() { const { user, viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission } = this.props; const { roles } = user; const allPermissions = [ viewStatisticsPermission, viewRoomAdministrationPermission, viewUserAdministrationPermission, viewPrivilegedSettingPermission ]; let isAdmin = false; if (roles) { isAdmin = allPermissions.reduce((result: boolean, permission) => { if (permission) { return result || permission.some(r => roles.indexOf(r) !== -1); } return result; }, false); } return isAdmin; } sidebarNavigate = (route: string) => { // @ts-ignore logEvent(events[`SIDEBAR_GO_${route.replace('StackNavigator', '').replace('View', '').toUpperCase()}`]); Navigation.navigate(route); }; get currentItemKey() { const { state } = this.props; return state?.routeNames[state?.index]; } onPressUser = () => { const { navigation, isMasterDetail } = this.props; if (isMasterDetail) { return; } navigation.closeDrawer(); }; renderAdmin = () => { const { theme, isMasterDetail } = this.props; if (!this.getIsAdmin()) { return null; } const routeName = isMasterDetail ? 'AdminPanelView' : 'AdminPanelStackNavigator'; return ( <> } onPress={() => this.sidebarNavigate(routeName)} testID='sidebar-admin' theme={theme!} current={this.currentItemKey === routeName} /> ); }; renderNavigation = () => { const { theme } = this.props; return ( <> } onPress={() => this.sidebarNavigate('ChatsStackNavigator')} testID='sidebar-chats' theme={theme!} current={this.currentItemKey === 'ChatsStackNavigator'} /> } onPress={() => this.sidebarNavigate('ProfileStackNavigator')} testID='sidebar-profile' theme={theme!} current={this.currentItemKey === 'ProfileStackNavigator'} /> } onPress={() => this.sidebarNavigate('DisplayPrefStackNavigator')} testID='sidebar-display' theme={theme!} current={this.currentItemKey === 'DisplayPrefStackNavigator'} /> } onPress={() => this.sidebarNavigate('SettingsStackNavigator')} testID='sidebar-settings' theme={theme!} current={this.currentItemKey === 'SettingsStackNavigator'} /> {this.renderAdmin()} ); }; renderCustomStatus = () => { const { user, theme } = this.props; return ( } theme={theme!} right={} onPress={() => this.sidebarNavigate('StatusView')} testID='sidebar-custom-status' /> ); }; render() { const { user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme } = this.props; if (!user) { return null; } return ( {useRealName ? user.name : user.username} {Site_Name} {allowStatusMessage ? this.renderCustomStatus() : null} {!isMasterDetail ? ( <> {this.renderNavigation()} ) : ( <>{this.renderAdmin()} )} ); } } const mapStateToProps = (state: any) => ({ Site_Name: state.settings.Site_Name, user: getUserSelector(state), baseUrl: state.server.server, loadingServer: state.server.loading, useRealName: state.settings.UI_Use_Real_Name, allowStatusMessage: state.settings.Accounts_AllowUserStatusMessageChange, isMasterDetail: state.app.isMasterDetail, viewStatisticsPermission: state.permissions['view-statistics'], viewRoomAdministrationPermission: state.permissions['view-room-administration'], viewUserAdministrationPermission: state.permissions['view-user-administration'], viewPrivilegedSettingPermission: state.permissions['view-privileged-setting'] }); export default connect(mapStateToProps)(withTheme(Sidebar)) as any;