@buerokratt-ria/menu 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/buerokratt-ria-menu-0.1.12.tgz +0 -0
- package/package.json +1 -1
- package/src/menu/components/menuTree/index.tsx +62 -0
- package/src/menu/components/menuTree/isSameRoot.ts +10 -0
- package/src/menu/components/menuTree/menuData.tsx +42 -0
- package/src/menu/data/menu-structure.json +7 -16
- package/src/menu/hooks/useFilteredMenuItems.tsx +33 -0
- package/src/menu/hooks/useMenuItems.tsx +49 -0
- package/src/menu/index.tsx +13 -139
- package/src/menu/types/menuItem.ts +13 -0
- package/buerokratt-ria-menu-0.1.11.tgz +0 -0
- package/src/menu/constants.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.12] - 07-06-2024
|
|
6
|
+
|
|
7
|
+
- Add dynamic hidden menu items
|
|
8
|
+
- Refactor code for better readability
|
|
9
|
+
- Remove unnecessary component arguments
|
|
10
|
+
|
|
5
11
|
## [0.1.11] - 30-05-2024
|
|
6
12
|
|
|
7
13
|
- Hide some Training Module menu items from production
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import React, { FC, MouseEvent } from "react";
|
|
2
|
+
import { NavLink } from 'react-router-dom';
|
|
3
|
+
import { MdKeyboardArrowDown } from 'react-icons/md';
|
|
4
|
+
import { MenuItem } from "../../types/menuItem";
|
|
5
|
+
import { useTranslation } from "react-i18next";
|
|
6
|
+
import { menuData } from './menuData';
|
|
7
|
+
import Icon from "../icons/icon/icon";
|
|
8
|
+
import { isSameRoot } from "./isSameRoot";
|
|
9
|
+
import clsx from 'clsx';
|
|
10
|
+
import '../../main-navigation.scss';
|
|
11
|
+
|
|
12
|
+
interface MenuTreeProps {
|
|
13
|
+
menuItems: MenuItem[];
|
|
14
|
+
serviceId: string[];
|
|
15
|
+
handleNavToggle: (event: MouseEvent) => void;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const MenuTree: FC<MenuTreeProps> = ({
|
|
19
|
+
menuItems,
|
|
20
|
+
serviceId,
|
|
21
|
+
handleNavToggle,
|
|
22
|
+
}) => {
|
|
23
|
+
const currentlySelectedLanguage = useTranslation().i18n.language;
|
|
24
|
+
|
|
25
|
+
return menuItems.map((menuItem) => (
|
|
26
|
+
<li key={menuItem.label[currentlySelectedLanguage]}>
|
|
27
|
+
{!!menuItem.children ? (
|
|
28
|
+
<>
|
|
29
|
+
<button
|
|
30
|
+
className={clsx('nav__toggle', { 'nav__toggle--icon': !!menuItem.id })}
|
|
31
|
+
aria-expanded={menuItem.path && (isSameRoot(menuItem, serviceId)) ? 'true' : 'false'}
|
|
32
|
+
onClick={handleNavToggle}
|
|
33
|
+
>
|
|
34
|
+
{menuItem.id && (
|
|
35
|
+
<Icon icon={menuData.find(dataItem => dataItem.id === menuItem.id)?.icon} size='large' />
|
|
36
|
+
)}
|
|
37
|
+
<span className='menu-item-title'>{menuItem.label[currentlySelectedLanguage]}</span>
|
|
38
|
+
<Icon icon={<MdKeyboardArrowDown />} className='menu-item-arrow' />
|
|
39
|
+
</button>
|
|
40
|
+
<ul className='nav__submenu'>
|
|
41
|
+
<MenuTree
|
|
42
|
+
menuItems={menuItem.children.map((item) => ({id: menuItem.id, ...item}))}
|
|
43
|
+
serviceId={serviceId}
|
|
44
|
+
handleNavToggle={handleNavToggle}
|
|
45
|
+
/>
|
|
46
|
+
</ul>
|
|
47
|
+
</>
|
|
48
|
+
) : (
|
|
49
|
+
serviceId.includes(menuItem.id!)
|
|
50
|
+
? <NavLink to={menuItem.path || '#'}>
|
|
51
|
+
{menuItem.label[currentlySelectedLanguage]}
|
|
52
|
+
</NavLink>
|
|
53
|
+
: <a href={(menuData.find(dataItem => dataItem.id === menuItem.id)?.url ?? '') + menuItem.path}>
|
|
54
|
+
{menuItem.label[currentlySelectedLanguage]}
|
|
55
|
+
</a>
|
|
56
|
+
)}
|
|
57
|
+
</li>
|
|
58
|
+
),
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export default MenuTree;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MenuItem } from "../../types/menuItem";
|
|
2
|
+
|
|
3
|
+
export const isSameRoot = (menuItem, serviceId) => {
|
|
4
|
+
const base = window.location.pathname.split("/")[1];
|
|
5
|
+
const currentService = base === 'chat' ? serviceId : [base];
|
|
6
|
+
if(currentService.includes(menuItem.id)) {
|
|
7
|
+
return menuItem.children.some((item: MenuItem) => item.path?.includes("/" + window.location.pathname.split("/")[2]));
|
|
8
|
+
}
|
|
9
|
+
return false;
|
|
10
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import {
|
|
3
|
+
MdOutlineForum,
|
|
4
|
+
MdOutlineAdb,
|
|
5
|
+
MdOutlineEqualizer,
|
|
6
|
+
MdMiscellaneousServices,
|
|
7
|
+
MdSettings,
|
|
8
|
+
MdOutlineMonitorWeight,
|
|
9
|
+
} from 'react-icons/md';
|
|
10
|
+
|
|
11
|
+
export const menuData = [
|
|
12
|
+
{
|
|
13
|
+
id: 'conversations',
|
|
14
|
+
icon: <MdOutlineForum className='menu-item-icon' />,
|
|
15
|
+
url: import.meta.env.REACT_APP_CONVERSATIONS_BASE_URL,
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
id: 'training',
|
|
19
|
+
icon: <MdOutlineAdb className='menu-item-icon' />,
|
|
20
|
+
url: import.meta.env.REACT_APP_TRAINING_BASE_URL,
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
id: 'analytics',
|
|
24
|
+
icon: <MdOutlineEqualizer className='menu-item-icon' />,
|
|
25
|
+
url: import.meta.env.REACT_APP_ANALYTICS_BASE_URL,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: "services",
|
|
29
|
+
icon: <MdMiscellaneousServices className='menu-item-icon' />,
|
|
30
|
+
url: import.meta.env.REACT_APP_SERVICES_BASE_URL,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: 'settings',
|
|
34
|
+
icon: <MdSettings className='menu-item-icon' />,
|
|
35
|
+
url: import.meta.env.REACT_APP_SETTINGS_BASE_URL,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
id: 'monitoring',
|
|
39
|
+
icon: <MdOutlineMonitorWeight className='menu-item-icon' />,
|
|
40
|
+
url: import.meta.env.REACT_APP_MONITORING_BASE_URL,
|
|
41
|
+
},
|
|
42
|
+
];
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"path": "/training/intents"
|
|
61
61
|
},
|
|
62
62
|
{
|
|
63
|
-
"
|
|
63
|
+
"hidden": true,
|
|
64
64
|
"label": {
|
|
65
65
|
"et": "Avalikud teemad",
|
|
66
66
|
"en": "Public themes"
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"path": "/training/stories"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
|
-
"
|
|
92
|
+
"hidden": true,
|
|
93
93
|
"label": {
|
|
94
94
|
"et": "Konfiguratsioon",
|
|
95
95
|
"en": "Configuration"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"path": "/training/slots"
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
"
|
|
114
|
+
"hidden": true,
|
|
115
115
|
"label": {
|
|
116
116
|
"et": "Automatic Teenused",
|
|
117
117
|
"en": "Automatic Services"
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"path": "/history/history"
|
|
136
136
|
},
|
|
137
137
|
{
|
|
138
|
-
"
|
|
138
|
+
"hidden": true,
|
|
139
139
|
"label": {
|
|
140
140
|
"et": "Pöördumised",
|
|
141
141
|
"en": "Appeals"
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
"path": "/analytics/models"
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
|
-
"
|
|
169
|
+
"hidden": true,
|
|
170
170
|
"label": {
|
|
171
171
|
"et": "Testlood",
|
|
172
172
|
"en": "testTracks"
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"id": "services",
|
|
234
|
-
"
|
|
234
|
+
"hidden": true,
|
|
235
235
|
"label": {
|
|
236
236
|
"et": "Teenused",
|
|
237
237
|
"en": "Services"
|
|
@@ -338,7 +338,7 @@
|
|
|
338
338
|
},
|
|
339
339
|
{
|
|
340
340
|
"id": "monitoring",
|
|
341
|
-
"
|
|
341
|
+
"hidden": true,
|
|
342
342
|
"label": {
|
|
343
343
|
"et": "Seire",
|
|
344
344
|
"en": "Monitoring"
|
|
@@ -353,14 +353,5 @@
|
|
|
353
353
|
"path": "/uptime"
|
|
354
354
|
}
|
|
355
355
|
]
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"id":"hidden-item",
|
|
359
|
-
"label": {
|
|
360
|
-
"et": "Peidetud",
|
|
361
|
-
"en": "Hidden"
|
|
362
|
-
},
|
|
363
|
-
"path": "/hidden",
|
|
364
|
-
"hidden": true
|
|
365
356
|
}
|
|
366
357
|
]
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { useState } from "react";
|
|
2
|
+
import { useQuery } from "@tanstack/react-query";
|
|
3
|
+
import { MenuItem } from "../types/menuItem";
|
|
4
|
+
import useMenuItems from "./useMenuItems";
|
|
5
|
+
|
|
6
|
+
const useFilteredMenuItems = () => {
|
|
7
|
+
const items = useMenuItems();
|
|
8
|
+
const [menuItems, setMenuItems] = useState<MenuItem[]>([]);
|
|
9
|
+
|
|
10
|
+
useQuery({
|
|
11
|
+
queryKey: ['accounts/user-role', 'prod'],
|
|
12
|
+
onSuccess: (res: any) => {
|
|
13
|
+
const filteredItems = items.filter((item) => {
|
|
14
|
+
const role = res.response;
|
|
15
|
+
if (role.includes('ROLE_ADMINISTRATOR'))
|
|
16
|
+
return item.id;
|
|
17
|
+
if (role.includes('ROLE_SERVICE_MANAGER'))
|
|
18
|
+
return item.id != "settings" && item.id != "training";
|
|
19
|
+
if (role.includes('ROLE_CUSTOMER_SUPPORT_AGENT'))
|
|
20
|
+
return item.id != "settings" && item.id != "analytics";
|
|
21
|
+
if (role.includes('ROLE_CHATBOT_TRAINER'))
|
|
22
|
+
return item.id != "settings" && item.id != "conversations";
|
|
23
|
+
if (role.includes('ROLE_ANALYST'))
|
|
24
|
+
return item.id == "analytics" || item.id == "monitoring";
|
|
25
|
+
});
|
|
26
|
+
setMenuItems(filteredItems ?? []);
|
|
27
|
+
},
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
return menuItems;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export default useFilteredMenuItems;
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { useMemo, useState } from "react";
|
|
2
|
+
import { useQuery } from "@tanstack/react-query";
|
|
3
|
+
import menuStructure from '../data/menu-structure.json';
|
|
4
|
+
import { MenuItem } from "../types/menuItem";
|
|
5
|
+
|
|
6
|
+
const useMenuItems = () => {
|
|
7
|
+
const externalMenuItems = import.meta.env.REACT_APP_MENU_JSON;
|
|
8
|
+
|
|
9
|
+
const [mainMenuItems, setMainMenuItems] = useState<MenuItem[] | null>([]);
|
|
10
|
+
|
|
11
|
+
useQuery({
|
|
12
|
+
enabled: !externalMenuItems,
|
|
13
|
+
queryKey: [import.meta.env.REACT_APP_MENU_URL + import.meta.env.REACT_APP_MENU_PATH],
|
|
14
|
+
onSuccess: (res: any) => {
|
|
15
|
+
try {
|
|
16
|
+
setMainMenuItems(res);
|
|
17
|
+
} catch (e) {
|
|
18
|
+
setMainMenuItems(null);
|
|
19
|
+
console.error(e);
|
|
20
|
+
}
|
|
21
|
+
setCache(res);
|
|
22
|
+
},
|
|
23
|
+
onError: () => {
|
|
24
|
+
const cached = getCache();
|
|
25
|
+
if(cached.length > 0)
|
|
26
|
+
setMainMenuItems(cached);
|
|
27
|
+
else
|
|
28
|
+
setMainMenuItems(null);
|
|
29
|
+
},
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
const items = useMemo(() => {
|
|
33
|
+
const allItems = externalMenuItems ?? mainMenuItems ?? menuStructure ?? [];
|
|
34
|
+
return allItems.filter(x => !x.hidden);
|
|
35
|
+
}, [externalMenuItems, mainMenuItems, menuStructure]);
|
|
36
|
+
|
|
37
|
+
return items;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function getCache(): any {
|
|
41
|
+
const cache = localStorage.getItem('mainmenu-cache') ?? '[]';
|
|
42
|
+
return JSON.parse(cache);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function setCache(res: any) {
|
|
46
|
+
localStorage.setItem('mainmenu-cache', JSON.stringify(res));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export default useMenuItems;
|
package/src/menu/index.tsx
CHANGED
|
@@ -1,103 +1,19 @@
|
|
|
1
|
-
import React, { FC, MouseEvent, useState } from 'react';
|
|
2
|
-
import { NavLink } from 'react-router-dom';
|
|
1
|
+
import React, { FC, MouseEvent, useState, useMemo } from 'react';
|
|
3
2
|
import clsx from 'clsx';
|
|
4
3
|
import {
|
|
5
|
-
MdOutlineForum,
|
|
6
|
-
MdOutlineAdb,
|
|
7
|
-
MdOutlineEqualizer,
|
|
8
|
-
MdKeyboardArrowDown,
|
|
9
|
-
MdMiscellaneousServices,
|
|
10
|
-
MdSettings,
|
|
11
|
-
MdOutlineMonitorWeight,
|
|
12
4
|
MdKeyboardArrowRight,
|
|
13
5
|
MdKeyboardArrowLeft,
|
|
14
6
|
} from 'react-icons/md';
|
|
15
7
|
import Icon from './components/icons/icon/icon';
|
|
16
|
-
import './main-navigation.scss';
|
|
17
|
-
import { useQuery } from '@tanstack/react-query';
|
|
18
8
|
import { useTranslation } from "react-i18next";
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
|
|
22
|
-
interface MenuItem {
|
|
23
|
-
id?: string;
|
|
24
|
-
label: TranslatedLabel;
|
|
25
|
-
path?: string;
|
|
26
|
-
target?: '_blank' | '_self';
|
|
27
|
-
children?: MenuItem[];
|
|
28
|
-
hidden?: boolean;
|
|
29
|
-
hiddenMode?: 'production' | 'development' | 'staging' | 'testing';
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
interface TranslatedLabel {
|
|
33
|
-
[lang: string] : string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
const MainNavigation: FC<{items: MenuItem[], serviceId: string[]}> = ( {items, serviceId}) => {
|
|
37
|
-
if(!items.isArray || items.length === 0) {
|
|
38
|
-
items = menuStructure;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
const { t, i18n } = useTranslation();
|
|
42
|
-
const currentlySelectedLanguage = i18n.language;
|
|
43
|
-
const [menuItems, setMenuItems] = useState<MenuItem[]>([]);
|
|
44
|
-
|
|
45
|
-
const menuData = [
|
|
46
|
-
{
|
|
47
|
-
id: 'conversations',
|
|
48
|
-
icon: <MdOutlineForum className='menu-item-icon' />,
|
|
49
|
-
url: import.meta.env.REACT_APP_CONVERSATIONS_BASE_URL,
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
id: 'training',
|
|
53
|
-
icon: <MdOutlineAdb className='menu-item-icon' />,
|
|
54
|
-
url: import.meta.env.REACT_APP_TRAINING_BASE_URL,
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
id: 'analytics',
|
|
58
|
-
icon: <MdOutlineEqualizer className='menu-item-icon' />,
|
|
59
|
-
url: import.meta.env.REACT_APP_ANALYTICS_BASE_URL,
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
id: "services",
|
|
63
|
-
icon: <MdMiscellaneousServices className='menu-item-icon' />,
|
|
64
|
-
url: import.meta.env.REACT_APP_SERVICES_BASE_URL,
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
id: 'settings',
|
|
68
|
-
icon: <MdSettings className='menu-item-icon' />,
|
|
69
|
-
url: import.meta.env.REACT_APP_SETTINGS_BASE_URL,
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
id: 'monitoring',
|
|
73
|
-
icon: <MdOutlineMonitorWeight className='menu-item-icon' />,
|
|
74
|
-
url: import.meta.env.REACT_APP_MONITORING_BASE_URL,
|
|
75
|
-
},
|
|
76
|
-
];
|
|
9
|
+
import MenuTree from './components/menuTree';
|
|
10
|
+
import useFilteredMenuItems from './hooks/useFilteredMenuItems';
|
|
11
|
+
import './main-navigation.scss';
|
|
77
12
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
items.filter((item) => {
|
|
83
|
-
const role = res.response;
|
|
84
|
-
if (role.includes('ROLE_ADMINISTRATOR')) {
|
|
85
|
-
return item.id;
|
|
86
|
-
} else if (role.includes('ROLE_SERVICE_MANAGER')) {
|
|
87
|
-
return item.id != "settings" && item.id != "training";
|
|
88
|
-
} else if (role.includes('ROLE_CUSTOMER_SUPPORT_AGENT')) {
|
|
89
|
-
return item.id != "settings" && item.id != "analytics";
|
|
90
|
-
} else if (role.includes('ROLE_CHATBOT_TRAINER')) {
|
|
91
|
-
return item.id != "settings" && item.id != "conversations";
|
|
92
|
-
} else if (role.includes('ROLE_ANALYST')) {
|
|
93
|
-
return item.id == "analytics" || item.id == "monitoring";
|
|
94
|
-
} else {
|
|
95
|
-
return;
|
|
96
|
-
}
|
|
97
|
-
}) ?? [];
|
|
98
|
-
setMenuItems(filteredItems);
|
|
99
|
-
},
|
|
100
|
-
});
|
|
13
|
+
const MainNavigation: FC = () => {
|
|
14
|
+
const { t } = useTranslation();
|
|
15
|
+
const menuItems = useFilteredMenuItems();
|
|
16
|
+
const serviceId = useMemo(() => import.meta.env.REACT_APP_SERVICE_ID.split(','), []);
|
|
101
17
|
|
|
102
18
|
const [navCollapsed, setNavCollapsed] = useState(false);
|
|
103
19
|
|
|
@@ -107,52 +23,6 @@ const MainNavigation: FC<{items: MenuItem[], serviceId: string[]}> = ( {items, s
|
|
|
107
23
|
event.currentTarget.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
|
|
108
24
|
};
|
|
109
25
|
|
|
110
|
-
const renderMenuTree = (menuItems: MenuItem[]) => {
|
|
111
|
-
return menuItems
|
|
112
|
-
.filter(x => !x.hidden)
|
|
113
|
-
.filter(x => isHiddenFeaturesEnabled || x.hiddenMode !== "production")
|
|
114
|
-
.map((menuItem) => (
|
|
115
|
-
<li key={menuItem.label[currentlySelectedLanguage]}>
|
|
116
|
-
{!!menuItem.children ? (
|
|
117
|
-
<>
|
|
118
|
-
<button
|
|
119
|
-
className={clsx('nav__toggle', { 'nav__toggle--icon': !!menuItem.id })}
|
|
120
|
-
aria-expanded={menuItem.path && (isSameRoot(menuItem)) ? 'true' : 'false'}
|
|
121
|
-
onClick={handleNavToggle}
|
|
122
|
-
>
|
|
123
|
-
{menuItem.id && (
|
|
124
|
-
<Icon icon={menuData.find(dataItem => dataItem.id === menuItem.id)?.icon} size='large' />
|
|
125
|
-
)}
|
|
126
|
-
<span className='menu-item-title'>{menuItem.label[currentlySelectedLanguage]}</span>
|
|
127
|
-
<Icon icon={<MdKeyboardArrowDown />} className='menu-item-arrow' />
|
|
128
|
-
</button>
|
|
129
|
-
<ul className='nav__submenu'>
|
|
130
|
-
{renderMenuTree(menuItem.children.map((item) => ({id: menuItem.id, ...item})))}
|
|
131
|
-
</ul>
|
|
132
|
-
</>
|
|
133
|
-
) : (
|
|
134
|
-
serviceId.includes(menuItem.id)
|
|
135
|
-
? <NavLink to={menuItem.path || '#'}>
|
|
136
|
-
{menuItem.label[currentlySelectedLanguage]}
|
|
137
|
-
</NavLink>
|
|
138
|
-
: <a href={menuData.find(dataItem => dataItem.id === menuItem.id)?.url + menuItem.path}>
|
|
139
|
-
{menuItem.label[currentlySelectedLanguage]}
|
|
140
|
-
</a>
|
|
141
|
-
)}
|
|
142
|
-
</li>
|
|
143
|
-
),
|
|
144
|
-
);
|
|
145
|
-
};
|
|
146
|
-
|
|
147
|
-
const base = window.location.pathname.split("/")[1];
|
|
148
|
-
const currentService = base === 'chat' ? serviceId : [base];
|
|
149
|
-
const isSameRoot = (menuItem) => {
|
|
150
|
-
if(currentService.includes(menuItem.id)) {
|
|
151
|
-
return menuItem.children.some((item: MenuItem) => item.path?.includes("/" + window.location.pathname.split("/")[2]));
|
|
152
|
-
}
|
|
153
|
-
return false;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
26
|
if (!menuItems) return null;
|
|
157
27
|
|
|
158
28
|
return (
|
|
@@ -166,7 +36,11 @@ const MainNavigation: FC<{items: MenuItem[], serviceId: string[]}> = ( {items, s
|
|
|
166
36
|
<span className='menu-item-title'>{t('mainMenu.closeMenu')}</span>
|
|
167
37
|
</button>
|
|
168
38
|
<ul className='nav__menu'>
|
|
169
|
-
|
|
39
|
+
<MenuTree
|
|
40
|
+
menuItems={menuItems}
|
|
41
|
+
serviceId={serviceId}
|
|
42
|
+
handleNavToggle={handleNavToggle}
|
|
43
|
+
/>
|
|
170
44
|
</ul>
|
|
171
45
|
</nav>
|
|
172
46
|
);
|
|
Binary file
|
package/src/menu/constants.ts
DELETED