Projekt

Obecné

Profil

Stáhnout (3.48 KB) Statistiky
| Větev: | Tag: | Revize:
1 456b0111 Vaclav Honzik
import { OverridableComponent } from '@mui/material/OverridableComponent'
2
import HomeIcon from '@mui/icons-material/Home'
3
import { MenuBook } from '@mui/icons-material'
4
import LibraryBooksIcon from '@mui/icons-material/LibraryBooks'
5
import MapIcon from '@mui/icons-material/Map'
6
import PersonIcon from '@mui/icons-material/Person'
7
import LoginIcon from '@mui/icons-material/Login'
8
import { SvgIconTypeMap } from '@mui/material'
9 0d90d67b Vaclav Honzik
import LogoutIcon from '@mui/icons-material/Logout'
10 b523c74d Schwobik
import SupervisorAccountIcon from '@mui/icons-material/SupervisorAccount'
11 32e3bc68 Schwobik
import LocalLibraryIcon from '@mui/icons-material/LocalLibrary';
12 456b0111 Vaclav Honzik
13
export interface NavigationMenuItem {
14
    name: string
15
    path: string
16
    // All privileges that can access this menu item
17
    accessibleTo: Set<string>
18
    icon: OverridableComponent<SvgIconTypeMap<{}, 'svg'>>
19 6129910f Vaclav Honzik
    position: number,
20
    isDialog?: boolean
21 456b0111 Vaclav Honzik
}
22
23
const visitorRole = 'VISITOR'
24
const visitorRoleOnly = 'VISITOR_ONLY'
25 0d90d67b Vaclav Honzik
const loggedInRole = 'LOGGED_IN'
26 456b0111 Vaclav Honzik
const visitorAccess = new Set([visitorRole])
27 0d90d67b Vaclav Honzik
const adminAccess = new Set(['ADMIN'])
28
const loggedInAccess = new Set([loggedInRole])
29 558a15d4 Vaclav Honzik
const trackingToolAccess = new Set(['READ'])
30 456b0111 Vaclav Honzik
31
const items: NavigationMenuItem[] = [
32
    {
33
        name: 'Home',
34
        path: '/',
35
        accessibleTo: visitorAccess,
36
        icon: HomeIcon,
37
        position: 0,
38
    },
39
    {
40
        name: 'Catalog',
41
        path: '/catalog',
42
        accessibleTo: visitorAccess,
43
        icon: MenuBook,
44
        position: 1,
45
    },
46
    {
47
        name: 'Map',
48
        path: '/map',
49 558a15d4 Vaclav Honzik
        accessibleTo: trackingToolAccess,
50 456b0111 Vaclav Honzik
        icon: MapIcon,
51
        position: 2,
52
    },
53
    {
54
        name: 'Sources',
55
        path: '/sources',
56
        accessibleTo: visitorAccess,
57
        icon: LibraryBooksIcon,
58
        position: 3,
59
    },
60
    {
61
        name: 'Admin',
62
        path: '/admin',
63 0d90d67b Vaclav Honzik
        accessibleTo: adminAccess,
64 456b0111 Vaclav Honzik
        icon: PersonIcon,
65 0d90d67b Vaclav Honzik
        position: 5,
66 456b0111 Vaclav Honzik
    },
67
    {
68
        name: 'Login',
69
        path: '/login',
70
        accessibleTo: new Set([visitorRoleOnly]),
71
        icon: LoginIcon,
72
        position: 5,
73 6129910f Vaclav Honzik
        isDialog: true
74 456b0111 Vaclav Honzik
    },
75 cba453f2 Vaclav Honzik
    // {
76
    //     name: 'Statistics',
77
    //     path: '/stats',
78
    //     accessibleTo: adminAccess,
79
    //     icon: DataSaverOffIcon,
80
    //     position: 4,
81
    // },
82 6d8ac067 Schwobik
    {
83
        name: 'External Catalog Sources',
84
        path: '/externalSources',
85
        accessibleTo: loggedInAccess,
86 32e3bc68 Schwobik
        icon: LocalLibraryIcon,
87 6d8ac067 Schwobik
        position: 6,
88
    },
89 b523c74d Schwobik
    {
90
        name: 'Administration',
91
        path: '/administration',
92
        accessibleTo: loggedInAccess,
93
        icon: SupervisorAccountIcon,
94
        position: 6,
95
    },
96 0d90d67b Vaclav Honzik
    {
97
        name: 'Logout',
98
        path: '/logout',
99
        accessibleTo: loggedInAccess,
100
        icon: LogoutIcon,
101
        position: 1337,
102
    }
103 456b0111 Vaclav Honzik
]
104
105
const getNavigationItems = (_userRoles: string[]): NavigationMenuItem[] => {
106
    const userRoles: string[] = [..._userRoles]
107
    // Add visitor role if not present and visitor role only if user has no roles
108
    if (!userRoles || userRoles.length === 0) {
109
        userRoles.push( visitorRole, visitorRoleOnly)
110
    } else {
111
        userRoles.push(visitorRole)
112 0d90d67b Vaclav Honzik
        userRoles.push(loggedInRole)
113 456b0111 Vaclav Honzik
    }
114
115
    return items // else return everything the user has privileges to
116
        .filter((item) => {
117
            // If the user has any of the roles that are required to access this item
118
            // then return it
119
            return userRoles.some((role) => item.accessibleTo.has(role))
120
        })
121
        .sort((a, b) => a.position - b.position)
122
}
123
124
export default getNavigationItems