2019-03-12 16:23:06 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import {
|
2020-06-15 14:00:46 +00:00
|
|
|
ScrollView, Text, View, TouchableWithoutFeedback
|
2019-03-12 16:23:06 +00:00
|
|
|
} from 'react-native';
|
|
|
|
import { connect } from 'react-redux';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
2019-03-12 16:23:06 +00:00
|
|
|
|
|
|
|
import Avatar from '../../containers/Avatar';
|
|
|
|
import Status from '../../containers/Status/Status';
|
|
|
|
import log from '../../utils/log';
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import scrollPersistTaps from '../../utils/scrollPersistTaps';
|
|
|
|
import { CustomIcon } from '../../lib/Icons';
|
|
|
|
import styles from './styles';
|
|
|
|
import SidebarItem from './SidebarItem';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2019-09-16 20:26:32 +00:00
|
|
|
import database from '../../lib/database';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../../selectors/login';
|
2020-03-30 20:19:01 +00:00
|
|
|
import Navigation from '../../lib/Navigation';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
const Separator = React.memo(({ theme }) => <View style={[styles.separator, { borderColor: themes[theme].separatorColor }]} />);
|
|
|
|
Separator.propTypes = {
|
|
|
|
theme: PropTypes.string
|
|
|
|
};
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2019-05-18 19:31:33 +00:00
|
|
|
const permissions = [
|
|
|
|
'view-statistics',
|
|
|
|
'view-room-administration',
|
|
|
|
'view-user-administration',
|
|
|
|
'view-privileged-setting'
|
|
|
|
];
|
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class Sidebar extends Component {
|
2019-03-12 16:23:06 +00:00
|
|
|
static propTypes = {
|
|
|
|
baseUrl: PropTypes.string,
|
|
|
|
navigation: PropTypes.object,
|
|
|
|
Site_Name: PropTypes.string.isRequired,
|
|
|
|
user: PropTypes.object,
|
2020-06-15 14:00:46 +00:00
|
|
|
state: PropTypes.string,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme: PropTypes.string,
|
2019-11-25 20:01:17 +00:00
|
|
|
loadingServer: PropTypes.bool,
|
2020-02-21 16:13:05 +00:00
|
|
|
useRealName: PropTypes.bool,
|
2020-03-30 20:19:01 +00:00
|
|
|
allowStatusMessage: PropTypes.bool,
|
2020-06-15 14:00:46 +00:00
|
|
|
isMasterDetail: PropTypes.bool
|
2019-03-12 16:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
showStatus: false,
|
2020-03-30 20:19:01 +00:00
|
|
|
isAdmin: false
|
2019-03-12 16:23:06 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.setIsAdmin();
|
2019-03-12 16:23:06 +00:00
|
|
|
}
|
|
|
|
|
2020-05-08 16:37:49 +00:00
|
|
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
2020-03-30 20:19:01 +00:00
|
|
|
const { loadingServer } = this.props;
|
2019-09-24 20:10:50 +00:00
|
|
|
if (loadingServer && nextProps.loadingServer !== loadingServer) {
|
|
|
|
this.setIsAdmin();
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
2020-03-30 20:19:01 +00:00
|
|
|
const { showStatus, isAdmin } = this.state;
|
2019-03-12 16:23:06 +00:00
|
|
|
const {
|
2020-06-15 14:00:46 +00:00
|
|
|
Site_Name, user, baseUrl, state, isMasterDetail, useRealName, theme
|
2019-03-12 16:23:06 +00:00
|
|
|
} = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
// Drawer navigation state
|
|
|
|
if (state?.index !== nextProps.state?.index) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
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;
|
|
|
|
}
|
2019-12-04 16:39:53 +00:00
|
|
|
if (nextProps.theme !== theme) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
if (nextProps.user && user) {
|
|
|
|
if (nextProps.user.language !== user.language) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextProps.user.status !== user.status) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextProps.user.username !== user.username) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-03-30 20:19:01 +00:00
|
|
|
if (nextProps.user.statusText !== user.statusText) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
if (nextProps.isMasterDetail !== isMasterDetail) {
|
2019-11-25 20:01:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
2020-02-21 16:13:05 +00:00
|
|
|
if (nextProps.useRealName !== useRealName) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-24 20:10:50 +00:00
|
|
|
if (nextState.isAdmin !== isAdmin) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
async setIsAdmin() {
|
|
|
|
const db = database.active;
|
|
|
|
const { user } = this.props;
|
|
|
|
const { roles } = user;
|
|
|
|
try {
|
|
|
|
if (roles) {
|
|
|
|
const permissionsCollection = db.collections.get('permissions');
|
|
|
|
const permissionsFiltered = await permissionsCollection.query(Q.where('id', Q.oneOf(permissions))).fetch();
|
|
|
|
const isAdmin = permissionsFiltered.reduce((result, permission) => (
|
|
|
|
result || permission.roles.some(r => roles.indexOf(r) !== -1)),
|
|
|
|
false);
|
|
|
|
this.setState({ isAdmin });
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
2019-03-12 16:23:06 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
sidebarNavigate = (route) => {
|
|
|
|
const { navigation } = this.props;
|
|
|
|
navigation.navigate(route);
|
|
|
|
}
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
get currentItemKey() {
|
|
|
|
const { state } = this.props;
|
2020-07-08 17:00:23 +00:00
|
|
|
return state?.routeNames[state?.index];
|
2020-06-15 14:00:46 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 19:40:10 +00:00
|
|
|
onPressUser = () => {
|
|
|
|
const { navigation, isMasterDetail } = this.props;
|
|
|
|
if (isMasterDetail) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
navigation.closeDrawer();
|
|
|
|
}
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
renderAdmin = () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { isAdmin } = this.state;
|
2020-06-15 14:00:46 +00:00
|
|
|
const { theme, isMasterDetail } = this.props;
|
|
|
|
if (!isAdmin) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const routeName = isMasterDetail ? 'AdminPanelView' : 'AdminPanelStackNavigator';
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Separator theme={theme} />
|
|
|
|
<SidebarItem
|
|
|
|
text={I18n.t('Admin_Panel')}
|
2020-07-27 19:53:33 +00:00
|
|
|
left={<CustomIcon name='settings' size={20} color={themes[theme].titleText} />}
|
2020-06-15 14:00:46 +00:00
|
|
|
onPress={() => Navigation.navigate(routeName)}
|
|
|
|
testID='sidebar-settings'
|
|
|
|
current={this.currentItemKey === routeName}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderNavigation = () => {
|
|
|
|
const { theme } = this.props;
|
2019-03-12 16:23:06 +00:00
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-03-12 16:23:06 +00:00
|
|
|
<SidebarItem
|
|
|
|
text={I18n.t('Chats')}
|
2019-12-04 16:39:53 +00:00
|
|
|
left={<CustomIcon name='message' size={20} color={themes[theme].titleText} />}
|
2020-06-15 14:00:46 +00:00
|
|
|
onPress={() => this.sidebarNavigate('ChatsStackNavigator')}
|
2019-03-12 16:23:06 +00:00
|
|
|
testID='sidebar-chats'
|
2020-06-15 14:00:46 +00:00
|
|
|
current={this.currentItemKey === 'ChatsStackNavigator'}
|
2019-03-12 16:23:06 +00:00
|
|
|
/>
|
|
|
|
<SidebarItem
|
|
|
|
text={I18n.t('Profile')}
|
2019-12-04 16:39:53 +00:00
|
|
|
left={<CustomIcon name='user' size={20} color={themes[theme].titleText} />}
|
2020-06-15 14:00:46 +00:00
|
|
|
onPress={() => this.sidebarNavigate('ProfileStackNavigator')}
|
2019-03-12 16:23:06 +00:00
|
|
|
testID='sidebar-profile'
|
2020-06-15 14:00:46 +00:00
|
|
|
current={this.currentItemKey === 'ProfileStackNavigator'}
|
2019-03-12 16:23:06 +00:00
|
|
|
/>
|
|
|
|
<SidebarItem
|
|
|
|
text={I18n.t('Settings')}
|
2020-07-27 19:53:33 +00:00
|
|
|
left={<CustomIcon name='administration' size={20} color={themes[theme].titleText} />}
|
2020-06-15 14:00:46 +00:00
|
|
|
onPress={() => this.sidebarNavigate('SettingsStackNavigator')}
|
2019-03-12 16:23:06 +00:00
|
|
|
testID='sidebar-settings'
|
2020-06-15 14:00:46 +00:00
|
|
|
current={this.currentItemKey === 'SettingsStackNavigator'}
|
2019-03-12 16:23:06 +00:00
|
|
|
/>
|
2020-06-15 14:00:46 +00:00
|
|
|
{this.renderAdmin()}
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-03-12 16:23:06 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-30 20:19:01 +00:00
|
|
|
renderCustomStatus = () => {
|
|
|
|
const { user, theme } = this.props;
|
2019-03-12 16:23:06 +00:00
|
|
|
return (
|
2020-03-30 20:19:01 +00:00
|
|
|
<SidebarItem
|
|
|
|
text={user.statusText || I18n.t('Edit_Status')}
|
|
|
|
left={<Status style={styles.status} size={12} status={user && user.status} />}
|
|
|
|
right={<CustomIcon name='edit' size={20} color={themes[theme].titleText} />}
|
|
|
|
onPress={() => Navigation.navigate('StatusView')}
|
|
|
|
testID='sidebar-custom-status'
|
2019-03-12 16:23:06 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-11-25 20:01:17 +00:00
|
|
|
const {
|
2020-07-08 19:40:10 +00:00
|
|
|
user, Site_Name, baseUrl, useRealName, allowStatusMessage, isMasterDetail, theme
|
2019-11-25 20:01:17 +00:00
|
|
|
} = this.props;
|
2019-03-12 16:23:06 +00:00
|
|
|
|
|
|
|
if (!user) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
2020-06-15 14:00:46 +00:00
|
|
|
<SafeAreaView testID='sidebar-view' style={{ backgroundColor: themes[theme].focusedBackground }} vertical={isMasterDetail} theme={theme}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<ScrollView
|
|
|
|
style={[
|
|
|
|
styles.container,
|
|
|
|
{
|
2020-06-15 14:00:46 +00:00
|
|
|
backgroundColor: isMasterDetail
|
2019-12-04 16:39:53 +00:00
|
|
|
? themes[theme].backgroundColor
|
|
|
|
: themes[theme].focusedBackground
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
{...scrollPersistTaps}
|
|
|
|
>
|
2020-07-08 19:40:10 +00:00
|
|
|
<TouchableWithoutFeedback onPress={this.onPressUser} testID='sidebar-close-drawer'>
|
2020-06-15 14:00:46 +00:00
|
|
|
<View style={styles.header} theme={theme}>
|
|
|
|
<Avatar
|
|
|
|
text={user.username}
|
|
|
|
size={30}
|
|
|
|
style={styles.avatar}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
userId={user.id}
|
|
|
|
token={user.token}
|
|
|
|
/>
|
|
|
|
<View style={styles.headerTextContainer}>
|
|
|
|
<View style={styles.headerUsername}>
|
|
|
|
<Text numberOfLines={1} style={[styles.username, { color: themes[theme].titleText }]}>{useRealName ? user.name : user.username}</Text>
|
|
|
|
</View>
|
|
|
|
<Text
|
|
|
|
style={[styles.currentServerText, { color: themes[theme].titleText }]}
|
|
|
|
numberOfLines={1}
|
|
|
|
accessibilityLabel={`Connected to ${ baseUrl }`}
|
|
|
|
>{Site_Name}
|
|
|
|
</Text>
|
2019-03-12 16:23:06 +00:00
|
|
|
</View>
|
|
|
|
</View>
|
2020-06-15 14:00:46 +00:00
|
|
|
</TouchableWithoutFeedback>
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2020-03-30 20:19:01 +00:00
|
|
|
<Separator theme={theme} />
|
2019-03-12 16:23:06 +00:00
|
|
|
|
2020-03-30 20:19:01 +00:00
|
|
|
{allowStatusMessage ? this.renderCustomStatus() : null}
|
2020-06-15 14:00:46 +00:00
|
|
|
{!isMasterDetail ? (
|
2020-03-30 20:19:01 +00:00
|
|
|
<>
|
|
|
|
<Separator theme={theme} />
|
|
|
|
{this.renderNavigation()}
|
|
|
|
<Separator theme={theme} />
|
|
|
|
</>
|
2020-06-15 14:00:46 +00:00
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{this.renderAdmin()}
|
|
|
|
</>
|
|
|
|
)}
|
2019-03-12 16:23:06 +00:00
|
|
|
</ScrollView>
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
Site_Name: state.settings.Site_Name,
|
2020-02-11 14:09:14 +00:00
|
|
|
user: getUserSelector(state),
|
|
|
|
baseUrl: state.server.server,
|
2020-02-21 16:13:05 +00:00
|
|
|
loadingServer: state.server.loading,
|
2020-03-30 20:19:01 +00:00
|
|
|
useRealName: state.settings.UI_Use_Real_Name,
|
2020-06-15 14:00:46 +00:00
|
|
|
allowStatusMessage: state.settings.Accounts_AllowUserStatusMessageChange,
|
|
|
|
isMasterDetail: state.app.isMasterDetail
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(Sidebar));
|