⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
angular
/
services
/
View File Name :
nav_model_srv.ts
import { NavModelItem } from '@grafana/data'; import coreModule from 'app/angular/core_module'; import config from 'app/core/config'; import { getNotFoundNav } from 'app/core/navigation/errorModels'; interface Nav { breadcrumbs: NavModelItem[]; node?: NavModelItem; main?: NavModelItem; } export class NavModelSrv { navItems: NavModelItem[]; constructor() { this.navItems = config.bootData.navTree; } getCfgNode() { return this.navItems.find((navItem) => navItem.id === 'cfg'); } getNav(...args: Array
) { let children = this.navItems; const nav: Nav = { breadcrumbs: [], }; for (const id of args) { // if its a number then it's the index to use for main if (typeof id === 'number') { nav.main = nav.breadcrumbs[id]; break; } const node = children.find((child) => child.id === id); if (node) { nav.breadcrumbs.push(node); nav.node = node; nav.main = node; children = node.children ?? []; } } if (nav.main?.children) { for (const item of nav.main.children) { item.active = item.url === nav.node?.url; } } return nav; } getNotFoundNav() { return getNotFoundNav(); // the exported function } } coreModule.service('navModelSrv', NavModelSrv);