Created
July 1, 2024 20:10
-
-
Save jorgeart81/6140d1afeab31ae690b11eedf8dca106 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Outlet, useLocation } from 'react-router-dom'; | |
import PageLayout from '../../common/components/PageLayout'; | |
import SettingsMenu from './SettingsMenu'; | |
const commondBreadcrumb = 'settingsTitle'; | |
const routes = { | |
accumulators: 'sharedDeviceAccumulators', | |
announcement: 'serverAnnouncement', | |
calendars: 'sharedCalendars', | |
calendar: 'sharedCalendar', | |
commands: 'sharedSavedCommands', | |
command: 'sharedSavedCommand', | |
attributes: 'sharedComputedAttributes', | |
attribute: 'sharedComputedAttribute', | |
devices: 'deviceTitle', | |
device: 'sharedDevice', | |
drivers: 'sharedDrivers', | |
driver: 'sharedDriver', | |
geofence: 'sharedGeofence', | |
groups: 'settingsGroups', | |
group: 'groupDialog', | |
maintenances: 'sharedMaintenance', | |
maintenance: 'sharedMaintenance', | |
notifications: 'sharedNotifications', | |
notification: 'sharedNotification', | |
preferences: 'sharedPreferences', | |
server: 'settingsServer', | |
users: 'settingsUsers', | |
user: 'settingsUser', | |
}; | |
const SettingsLayout = () => { | |
let breadcrumbs = []; | |
const { pathname } = useLocation(); | |
const pathSegmets = pathname.split('/').filter((p) => p !== ''); | |
if (pathSegmets.length >= 2 && pathSegmets.length <= 3) breadcrumbs = [commondBreadcrumb, routes[pathSegmets[1]]] || [commondBreadcrumb]; | |
if (pathSegmets.length === 4) { | |
switch (pathSegmets[3]) { | |
case 'connections': | |
breadcrumbs = [commondBreadcrumb, routes[pathSegmets[1]], 'sharedConnections']; | |
break; | |
case 'command': | |
breadcrumbs = [commondBreadcrumb, 'deviceCommand']; | |
break; | |
case 'share': | |
breadcrumbs = ['deviceShare']; | |
break; | |
default: | |
breadcrumbs = [commondBreadcrumb]; | |
} | |
} | |
return ( | |
<PageLayout menu={<SettingsMenu />} breadcrumbs={breadcrumbs}> | |
<Outlet /> | |
</PageLayout> | |
); | |
}; | |
export default SettingsLayout; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment