mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 19:22:34 -06:00
d4af373529
When NODE_ENV is dev, print exceptions that bubble up from an app plugin to the console and make developer aware of this instead of only "404 Error".
79 lines
1.6 KiB
TypeScript
79 lines
1.6 KiB
TypeScript
import coreModule from 'app/core/core_module';
|
|
import config from 'app/core/config';
|
|
import _ from 'lodash';
|
|
import { NavModel } from '@grafana/data';
|
|
|
|
export class NavModelSrv {
|
|
navItems: any;
|
|
|
|
/** @ngInject */
|
|
constructor() {
|
|
this.navItems = config.bootData.navTree;
|
|
}
|
|
|
|
getCfgNode() {
|
|
return _.find(this.navItems, { id: 'cfg' });
|
|
}
|
|
|
|
getNav(...args: Array<string | number>) {
|
|
let children = this.navItems;
|
|
const nav = {
|
|
breadcrumbs: [],
|
|
} as any;
|
|
|
|
for (const id of args) {
|
|
// if its a number then it's the index to use for main
|
|
if (_.isNumber(id)) {
|
|
nav.main = nav.breadcrumbs[id];
|
|
break;
|
|
}
|
|
|
|
const node: any = _.find(children, { id: id });
|
|
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 = false;
|
|
|
|
if (item.url === nav.node.url) {
|
|
item.active = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return nav;
|
|
}
|
|
|
|
getNotFoundNav() {
|
|
return getNotFoundNav(); // the exported function
|
|
}
|
|
}
|
|
|
|
export function getExceptionNav(error: any): NavModel {
|
|
console.error(error);
|
|
return getWarningNav('Exception thrown', 'See console for details');
|
|
}
|
|
|
|
export function getNotFoundNav(): NavModel {
|
|
return getWarningNav('Page not found', '404 Error');
|
|
}
|
|
|
|
export function getWarningNav(text: string, subTitle?: string): NavModel {
|
|
const node = {
|
|
text,
|
|
subTitle,
|
|
icon: 'exclamation-triangle',
|
|
};
|
|
return {
|
|
breadcrumbs: [node],
|
|
node: node,
|
|
main: node,
|
|
};
|
|
}
|
|
|
|
coreModule.service('navModelSrv', NavModelSrv);
|