forked from SAP/luigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navigation.js
449 lines (427 loc) · 11.2 KB
/
navigation.js
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
import {
addProject,
getMockBadgeCount,
getProjectCount,
navigationPermissionChecker,
projectsNavProviderFn,
projectsCounterFn,
projectExists,
removeProject,
getAllProjectsSync
} from './helpers';
class Navigation {
constructor(navigationPermissionChecker, projectsNavProviderFn) {
this.navigationPermissionChecker = navigationPermissionChecker;
this.projectsNavProviderFn = projectsNavProviderFn;
}
addNavHrefs = true;
preloadViewGroups = true;
viewGroupSettings = {
tets: {
preloadUrl: '/sampleapp.html#/preload'
},
view_group_components: {
preloadUrl: '/sampleapp.html#/view-group/preload'
}
};
intentMapping = [
{
semanticObject: 'Sales',
action: 'settings',
pathSegment: '/projects/pr2/settings'
},
{
semanticObject: 'Component',
action: 'settings',
pathSegment: '/projects/:project/settings'
}
];
nodeAccessibilityResolver = navigationPermissionChecker;
nodes = [
{
pathSegment: 'overview',
label: 'Overview',
viewUrl: '/sampleapp.html#/overview',
hideSideNav: true
},
{
pathSegment: 'projects',
label: 'Projects',
viewUrl: '/sampleapp.html#/projects',
children: projectsNavProviderFn,
badgeCounter: {
label: 'Number of projects',
count: projectsCounterFn
}
},
{
pathSegment: 'view-groups',
label: 'View Groups',
children: [
{
pathSegment: '1',
label: 'VG 1',
viewUrl: '/sampleapp.html#/view-group/1',
viewGroup: 'view_group_components',
category: {
label: 'View Group',
icon: '/assets/github-logo.png',
collapsible: true
}
},
{
pathSegment: '2',
label: 'VG 2',
category: 'View Group',
viewGroup: 'view_group_components',
viewUrl: '/sampleapp.html#/view-group/2'
},
{
pathSegment: '3',
label: 'NO VG 3',
category: 'View Group',
viewUrl: '/sampleapp.html#/view-group/3'
},
{
pathSegment: '4',
label: 'NO VG 4',
category: 'View Group',
viewUrl: '/sampleapp.html#/view-group/4'
}
]
},
{
hideFromNav: true,
pathSegment: 'create-environment',
viewUrl: '/sampleapp.html#/create/environment',
context: {
label: 'Create Environment'
}
},
{
hideFromNav: true,
pathSegment: 'environments',
viewUrl: '/sampleapp.html#/environments',
children: [
{
pathSegment: ':environmentId',
viewUrl: '/sampleapp.html#/environments/:environmentId',
children: [
{
pathSegment: 'overview',
viewUrl: '/sampleapp.html#/environments/:environmentId/overview'
},
{
pathSegment: 'settings',
viewUrl: '/sampleapp.html#/environments/:environmentId/settings'
}
]
}
]
},
{
pathSegment: 'forbidden-sample',
label: 'Forbidden',
viewUrl: '/sampleapp.html#/restricted',
constraints: ['unicorns']
},
{
externalLink: {
url: 'https://github.com/SAP/luigi',
sameWindow: true
},
label: 'Git',
icon: 'globe',
showLabel: true,
hideSideNav: false,
globalNav: true,
testId: 'icon-and-label'
},
{
globalNav: true,
separator: true
},
{
pathSegment: 'settings',
label: 'Settings',
viewUrl: '/sampleapp.html#/settings',
icon: 'settings',
globalNav: true,
hideSideNav: true,
viewGroup: 'tets'
},
{
category: { label: 'Misc', icon: 'badge' },
label: 'Open Google in this tab',
externalLink: {
url: 'http://google.com',
sameWindow: true
}
}, // showing an anonymous content is possible only with auto login disabled
{
category: 'Misc',
pathSegment: 'all-users',
label: 'Visible for all users',
anonymousAccess: true,
viewUrl: '/sampleapp.html#/anonymous',
hideSideNav: true
},
{
pathSegment: 'anonymous',
label: 'Visible for anonymous users only',
anonymousAccess: 'exclusive',
viewUrl: '/sampleapp.html#/anonymous?exclusive=true',
hideSideNav: true
},
{
category: 'Misc',
pathSegment: 'ext',
label: 'External Page',
loadingIndicator: {
hideAutomatically: false
},
viewUrl: '/assets/sampleexternal.html#ext',
children: [
{
pathSegment: 'one',
label: 'One',
loadingIndicator: {
hideAutomatically: false
},
icon: 'drill-up',
viewUrl: '/assets/sampleexternal.html#one'
},
{
pathSegment: 'two',
label: 'Two',
loadingIndicator: {
hideAutomatically: false
},
icon: 'drill-down',
viewUrl: '/assets/sampleexternal.html#two'
}
]
},
{
pathSegment: 'page-not-found',
label: 'Page not found',
viewUrl: '/assets/404.html',
hideFromNav: true,
hideSideNav: true
},
{
category: { label: 'Messages', icon: 'lightbulb' },
label: 'Errors',
pathSegment: 'errors',
viewUrl: '/sampleapp.html#/projects/pr1/dynamic/errors',
hideSideNav: true,
icon: 'alert',
context: {
label: 'Errors'
},
badgeCounter: {
label: 'Number of Errors',
count: () => 2
}
},
{
category: 'Messages',
label: 'Warnings',
pathSegment: 'warnings',
viewUrl: '/sampleapp.html#/projects/pr1/dynamic/warnings',
hideSideNav: true,
icon: 'message-warning',
context: {
label: 'Warnings'
},
badgeCounter: {
label: 'Number of Warnings',
count: () => 5
}
},
{
category: 'Messages',
label: 'Notifications',
pathSegment: 'notifications',
hideSideNav: true,
viewUrl: '/sampleapp.html#/projects/pr1/dynamic/notifications',
icon: 'ui-notifications',
context: {
label: 'Notifications'
},
badgeCounter: {
label: 'Number of Notifications',
count: getMockBadgeCount
}
}
];
getContextSwitcherActions = () => {
const actions = [
{
label: '+ New Environment (top)',
link: '/create-environment'
},
{
label: '+ New Environment (bottom)',
link: '/create-environment',
position: 'bottom', // top or bottom
clickHandler: node => {
// called BEFORE route change
return true; // route change will be done using link value (if defined)
// return false // route change will not be done even if link attribute is defined
}
},
{
label: '+ New Project',
link: '/projects',
position: 'bottom',
clickHandler: node => {
const p = addProject();
Luigi.configChanged('navigation');
Luigi.showAlert({
text: `${p.name} created.`,
type: 'info',
closeAfter: 3000
});
return true;
}
}
];
if (getProjectCount() > 0) {
actions.push({
label: '\u2212 Remove Project',
link: '/projects',
position: 'bottom',
clickHandler: node => {
const p = removeProject();
Luigi.configChanged('navigation');
Luigi.showAlert({
text: `${p.name} removed.`,
type: 'info',
closeAfter: 3000
});
return true;
}
});
}
return actions;
};
// The following configuration will be used to render the context switcher component
contextSwitcher = {
defaultLabel: 'Select Environment ...',
parentNodePath: '/environments', // absolute path
lazyloadOptions: true, // load options on click instead on page load
options: () =>
[...Array(10).keys()]
.filter(n => n !== 0)
.map(n => ({
label: 'Environment ' + n, // (i.e mapping between what the user sees and what is taken to replace the dynamic part for the dynamic node)
pathValue: 'env' + n // will be used to replace dynamic part
})),
actions: this.getContextSwitcherActions,
/**
* fallbackLabelResolver
* Resolve what do display in the context switcher (Label) in case the activated
* context (option) is not listed in available options (eg kyma-system namespace),
* or if options have not been fetched yet
*/
fallbackLabelResolver: id => id.replace(/\b\w/g, l => l.toUpperCase()),
useFallbackLabelCache: true
};
getProductSwitcherItems = () => {
const items = [
{
icon: 'https://pbs.twimg.com/profile_images/1143452953858183170/QLk-HGmK_bigger.png',
label: 'hybris',
subTitle: 'first subtitle',
externalLink: {
url: 'https://www.hybris.com',
sameWindow: false
}
}
];
getAllProjectsSync()
.filter(project => project.id !== 'tabNav')
.forEach(project => {
items.push({
icon: 'https://pbs.twimg.com/profile_images/1143452953858183170/QLk-HGmK_bigger.png',
label: project.name,
link: '/projects/' + project.id
});
});
return items;
};
// The following configuration will be used to render a product switcher at the end of the top navigation
productSwitcher = {
label: 'My Products',
icon: 'grid',
// icon: '/assets/favicon-sap.ico',
items: this.getProductSwitcherItems,
columns: 3
};
getProfileItems = () => {
const items = [
{
label: 'Luigi in Github',
externalLink: {
url: 'https://github.com/SAP/luigi',
sameWindow: false
}
}
];
getAllProjectsSync()
.filter(project => project.id !== 'tabNav')
.forEach(project => {
items.push({
icon: '',
label: project.name,
link: '/projects/' + project.id
});
});
return items;
};
profile = {
logout: {
label: 'Sign Out'
// icon: "sys-cancel",
},
items: this.getProfileItems,
staticUserInfoFn: () => {
return new Promise(resolve => {
resolve({
name: 'Static User',
initials: 'LU',
email: '[email protected]',
picture: '/assets/favicon-sap.ico',
description: 'Luigi Developer'
});
});
}
};
appSwitcher = {
showMainAppEntry: true,
items: [
{
title: 'Application One',
subTitle: 'the first app',
link: '/projects/pr1'
},
{
title: 'Application Two',
link: '/projects/pr2',
subTitle: 'the second app'
},
{
title: 'Application Three',
link: '/environments',
subTitle: 'third app'
},
{
title: 'Application Storage',
link: '/projects/storage',
subTitle: 'v1.18.0'
}
]
};
}
export const navigation = new Navigation(navigationPermissionChecker, projectsNavProviderFn);