1
|
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
|
import LogoutIcon from '@mui/icons-material/Logout'
|
10
|
import SupervisorAccountIcon from '@mui/icons-material/SupervisorAccount'
|
11
|
import LocalLibraryIcon from '@mui/icons-material/LocalLibrary';
|
12
|
|
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
|
position: number,
|
20
|
isDialog?: boolean
|
21
|
}
|
22
|
|
23
|
const visitorRole = 'VISITOR'
|
24
|
const visitorRoleOnly = 'VISITOR_ONLY'
|
25
|
const loggedInRole = 'LOGGED_IN'
|
26
|
const visitorAccess = new Set([visitorRole])
|
27
|
const adminAccess = new Set(['ADMIN'])
|
28
|
const loggedInAccess = new Set([loggedInRole])
|
29
|
const trackingToolAccess = new Set(['READ'])
|
30
|
|
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
|
accessibleTo: trackingToolAccess,
|
50
|
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
|
accessibleTo: adminAccess,
|
64
|
icon: PersonIcon,
|
65
|
position: 5,
|
66
|
},
|
67
|
{
|
68
|
name: 'Login',
|
69
|
path: '/login',
|
70
|
accessibleTo: new Set([visitorRoleOnly]),
|
71
|
icon: LoginIcon,
|
72
|
position: 5,
|
73
|
isDialog: true
|
74
|
},
|
75
|
// {
|
76
|
// name: 'Statistics',
|
77
|
// path: '/stats',
|
78
|
// accessibleTo: adminAccess,
|
79
|
// icon: DataSaverOffIcon,
|
80
|
// position: 4,
|
81
|
// },
|
82
|
{
|
83
|
name: 'External Catalog Sources',
|
84
|
path: '/externalSources',
|
85
|
accessibleTo: loggedInAccess,
|
86
|
icon: LocalLibraryIcon,
|
87
|
position: 6,
|
88
|
},
|
89
|
{
|
90
|
name: 'Administration',
|
91
|
path: '/administration',
|
92
|
accessibleTo: loggedInAccess,
|
93
|
icon: SupervisorAccountIcon,
|
94
|
position: 6,
|
95
|
},
|
96
|
{
|
97
|
name: 'Logout',
|
98
|
path: '/logout',
|
99
|
accessibleTo: loggedInAccess,
|
100
|
icon: LogoutIcon,
|
101
|
position: 1337,
|
102
|
}
|
103
|
]
|
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
|
userRoles.push(loggedInRole)
|
113
|
}
|
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
|