aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/OptionsLayout/useRoutes.js
blob: efbd9eb2bf52156af9b912b00e8bf87f74d75029 (plain)
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
import React, { useMemo } from 'react';
import { useSelector } from 'react-redux';
import CreateIcon from '@material-ui/icons/Create';
import NotificationsIcon from '@material-ui/icons/Notifications';
import FolderIcon from '@material-ui/icons/Folder';
import PersonIcon from '@material-ui/icons/Person';
import StorageIcon from '@material-ui/icons/Storage';
import BuildIcon from '@material-ui/icons/Build';
import PeopleIcon from '@material-ui/icons/People';
import BarChartIcon from '@material-ui/icons/BarChart';
import TodayIcon from '@material-ui/icons/Today';
import { getIsAdmin, getUserId } from '../../common/selectors';
import { useTranslation } from '../../LocalizationProvider';

const useAdminRoutes = (t) => useMemo(() => [
  { subheader: t('userAdmin') },
  {
    name: t('settingsServer'),
    href: '/admin/server',
    icon: <StorageIcon />,
  },
  {
    name: t('settingsUsers'),
    href: '/admin/users',
    icon: <PeopleIcon />,
  },
  {
    name: t('statisticsTitle'),
    href: '/admin/statistics',
    icon: <BarChartIcon />,
  },
], [t]);

const useMainRoutes = (t, userId) => useMemo(() => [
  {
    name: t('settingsUser'),
    href: `/user/${userId}`,
    icon: <PersonIcon />,
  },
  {
    match: 'geofence',
    name: t('sharedGeofences'),
    href: '/geofences',
    icon: <CreateIcon />,
  },
  {
    match: 'notification',
    name: t('sharedNotifications'),
    href: '/settings/notifications',
    icon: <NotificationsIcon />,
  },
  {
    match: 'group',
    name: t('settingsGroups'),
    href: '/settings/groups',
    icon: <FolderIcon />,
  },
  {
    match: 'driver',
    name: t('sharedDrivers'),
    href: '/settings/drivers',
    icon: <PersonIcon />,
  },
  {
    match: 'calendar',
    name: t('sharedCalendars'),
    href: '/settings/calendars',
    icon: <TodayIcon />,
  },
  {
    match: 'attribute',
    name: t('sharedComputedAttributes'),
    href: '/settings/attributes',
    icon: <StorageIcon />,
  },
  {
    match: 'maintenance',
    name: t('sharedMaintenance'),
    href: '/settings/maintenances',
    icon: <BuildIcon />,
  },
], [t, userId]);

export default () => {
  const t = useTranslation();

  const isAdmin = useSelector(getIsAdmin);
  const userId = useSelector(getUserId);

  const mainRoutes = useMainRoutes(t, userId);
  const adminRoutes = useAdminRoutes(t);

  return useMemo(() => [...mainRoutes, ...(isAdmin ? adminRoutes : [])], [
    mainRoutes, isAdmin, adminRoutes,
  ]);
};