import IconChevronUp from '@carbon/icons-vue/es/chevron--up/16'; const AppNavigationMixin = { components: { iconExpand: IconChevronUp, }, data() { return { navigationItems: [ { id: 'overview', label: this.$t('appNavigation.system'), children: [ { id: 'overview', label: this.$t('appNavigation.overview'), route: '/', }, { id: 'inventory', label: this.$t('appNavigation.inventory'), route: '/hardware-inventory', }, { id: 'network', label: this.$t('appNavigation.network'), route: '/network', }, { id: 'date-time', label: this.$t('appNavigation.dateTime'), route: '/date-time', }, ], }, { id: 'hardware-status', label: this.$t('appNavigation.hardwareStatus'), children: [ { id: 'sensors', label: this.$t('appNavigation.sensors'), route: '/hardware-status/sensors', }, ], }, { id: 'operations', label: this.$t('appNavigation.operations'), children: [ { id: 'factory-reset', label: this.$t('appNavigation.factoryReset'), route: '/operations/factory-reset', }, { id: 'kvm', label: this.$t('appNavigation.kvm'), route: '/operations/kvm', }, { id: 'key-clear', label: this.$t('appNavigation.keyClear'), route: '/operations/key-clear', }, { id: 'firmware', label: this.$t('appNavigation.firmware'), route: '/operations/firmware', }, { id: 'reboot-bmc', label: this.$t('appNavigation.rebootBmc'), route: '/operations/reboot-bmc', }, { id: 'serial-over-lan', label: this.$t('appNavigation.serialOverLan'), route: '/operations/serial-over-lan', }, { id: 'server-power-operations', label: this.$t('appNavigation.serverPowerOperations'), route: '/operations/server-power-operations', }, { id: 'virtual-media', label: this.$t('appNavigation.virtualMedia'), route: '/operations/virtual-media', }, ], }, { id: 'logs', label: this.$t('appNavigation.logs'), children: [ { id: 'event-logs', label: this.$t('appNavigation.eventLogs'), route: '/logs/event-logs', }, { id: 'post-code-logs', label: this.$t('appNavigation.postCodeLogs'), route: '/logs/post-code-logs', }, ], }, { id: 'fans', label: this.$t('appNavigation.fans'), children: [ { id: 'fans/static', label: this.$t('appNavigation.staticInfo'), route: '/fans/static', }, { id: 'fans/dynamic', label: this.$t('appNavigation.dynamicInformation'), route: '/fans/dynamic', }, ], }, { id: 'motherboard', label: this.$t('appNavigation.motherboard'), children: [ { id: 'motherboard/dynamic', label: this.$t('appNavigation.dynamicInformation'), route: '/motherboard/dynamic', }, ], }, { id: 'memory', label: this.$t('appNavigation.memory'), children: [ { id: 'memory/dynamic', label: this.$t('appNavigation.dynamicInformation'), route: '/memory/dynamic', }, ], }, { id: 'processors', label: this.$t('appNavigation.processors'), children: [ { id: 'processors/dynamic', label: this.$t('appNavigation.dynamicInformation'), route: '/processors/dynamic', }, ], }, { id: 'power-sup', label: this.$t('appNavigation.powerSup'), children: [ { id: 'power/static', label: this.$t('appNavigation.staticInfo'), route: '/power/static', }, ], }, { id: 'settings', label: this.$t('appNavigation.settings'), children: [ { id: 'power-restore-policy', label: this.$t('appNavigation.powerRestorePolicy'), route: '/settings/power-restore-policy', }, ], }, { id: 'security-and-access', label: this.$t('appNavigation.securityAndAccess'), children: [ { id: 'sessions', label: this.$t('appNavigation.sessions'), route: '/security-and-access/sessions', }, { id: 'ldap', label: this.$t('appNavigation.ldap'), route: '/security-and-access/ldap', }, { id: 'user-management', label: this.$t('appNavigation.userManagement'), route: '/security-and-access/user-management', }, { id: 'policies', label: this.$t('appNavigation.policies'), route: '/security-and-access/policies', }, { id: 'certificates', label: this.$t('appNavigation.certificates'), route: '/security-and-access/certificates', }, ], }, { id: 'resource-management', label: this.$t('appNavigation.resourceManagement'), children: [ { id: 'power', label: this.$t('appNavigation.power'), route: '/resource-management/power', }, ], }, ], }; }, }; export default AppNavigationMixin;