1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
import React from 'react';
import {
Divider, List, ListItemButton, ListItemIcon, ListItemText,
} from '@mui/material';
import SettingsIcon from '@mui/icons-material/Settings';
import CreateIcon from '@mui/icons-material/Create';
import NotificationsIcon from '@mui/icons-material/Notifications';
import FolderIcon from '@mui/icons-material/Folder';
import PersonIcon from '@mui/icons-material/Person';
import StorageIcon from '@mui/icons-material/Storage';
import BuildIcon from '@mui/icons-material/Build';
import PeopleIcon from '@mui/icons-material/People';
import TodayIcon from '@mui/icons-material/Today';
import PublishIcon from '@mui/icons-material/Publish';
import SmartphoneIcon from '@mui/icons-material/Smartphone';
import { Link, useLocation } from 'react-router-dom';
import { useSelector } from 'react-redux';
import { useTranslation } from '../../common/components/LocalizationProvider';
import {
useAdministrator, useDeviceReadonly, useManager, useRestriction,
} from '../../common/util/permissions';
import useFeatures from '../../common/util/useFeatures';
const MenuItem = ({
title, link, icon, selected,
}) => (
<ListItemButton key={link} component={Link} to={link} selected={selected}>
<ListItemIcon>{icon}</ListItemIcon>
<ListItemText primary={title} />
</ListItemButton>
);
const SettingsMenu = () => {
const t = useTranslation();
const location = useLocation();
const readonly = useRestriction('readonly');
const deviceReadonly = useDeviceReadonly();
const admin = useAdministrator();
const manager = useManager();
const userId = useSelector((state) => state.session.user.id);
const features = useFeatures();
return (
<>
<List>
<MenuItem
title={t('sharedPreferences')}
link="/settings/preferences"
icon={<SettingsIcon />}
selected={location.pathname === '/settings/preferences'}
/>
{!readonly && (
<>
<MenuItem
title={t('sharedNotifications')}
link="/settings/notifications"
icon={<NotificationsIcon />}
selected={location.pathname.startsWith('/settings/notification')}
/>
<MenuItem
title={t('settingsUser')}
link={`/settings/user/${userId}`}
icon={<PersonIcon />}
selected={location.pathname === `/settings/user/${userId}`}
/>
{!deviceReadonly && (
<MenuItem
title={t('deviceTitle')}
link="/settings/devices"
icon={<SmartphoneIcon />}
selected={location.pathname.startsWith('/settings/device')}
/>
)}
<MenuItem
title={t('sharedGeofences')}
link="/geofences"
icon={<CreateIcon />}
selected={location.pathname.startsWith('/settings/geofence')}
/>
{!features.disableGroups && (
<MenuItem
title={t('settingsGroups')}
link="/settings/groups"
icon={<FolderIcon />}
selected={location.pathname.startsWith('/settings/group')}
/>
)}
{!features.disableDrivers && (
<MenuItem
title={t('sharedDrivers')}
link="/settings/drivers"
icon={<PersonIcon />}
selected={location.pathname.startsWith('/settings/driver')}
/>
)}
{!features.disableCalendars && (
<MenuItem
title={t('sharedCalendars')}
link="/settings/calendars"
icon={<TodayIcon />}
selected={location.pathname.startsWith('/settings/calendar')}
/>
)}
{!features.disableComputedAttributes && (
<MenuItem
title={t('sharedComputedAttributes')}
link="/settings/attributes"
icon={<StorageIcon />}
selected={location.pathname.startsWith('/settings/attribute')}
/>
)}
{!features.disableMaintenance && (
<MenuItem
title={t('sharedMaintenance')}
link="/settings/maintenances"
icon={<BuildIcon />}
selected={location.pathname.startsWith('/settings/maintenance')}
/>
)}
<MenuItem
title={t('sharedSavedCommands')}
link="/settings/commands"
icon={<PublishIcon />}
selected={location.pathname.startsWith('/settings/command')}
/>
</>
)}
</List>
{manager && (
<>
<Divider />
<List>
{admin && (
<MenuItem
title={t('settingsServer')}
link="/settings/server"
icon={<StorageIcon />}
selected={location.pathname === '/settings/server'}
/>
)}
<MenuItem
title={t('settingsUsers')}
link="/settings/users"
icon={<PeopleIcon />}
selected={location.pathname.startsWith('/settings/user') && location.pathname !== `/settings/user/${userId}`}
/>
</List>
</>
)}
</>
);
};
export default SettingsMenu;
|