mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
86 lines
2.0 KiB
TypeScript
86 lines
2.0 KiB
TypeScript
import { NavModel, NavModelItem } from '@grafana/data';
|
|
import { config } from '@grafana/runtime';
|
|
import { contextSrv } from 'app/core/services/context_srv';
|
|
import { AccessControlAction, FolderDTO } from 'app/types';
|
|
|
|
export function buildNavModel(folder: FolderDTO): NavModelItem {
|
|
const model: NavModelItem = {
|
|
icon: 'folder',
|
|
id: 'manage-folder',
|
|
subTitle: 'Manage folder dashboards and permissions',
|
|
url: '',
|
|
text: folder.title,
|
|
breadcrumbs: [{ title: 'Dashboards', url: 'dashboards' }],
|
|
children: [
|
|
{
|
|
active: false,
|
|
icon: 'apps',
|
|
id: `folder-dashboards-${folder.uid}`,
|
|
text: 'Dashboards',
|
|
url: folder.url,
|
|
},
|
|
],
|
|
};
|
|
|
|
model.children!.push({
|
|
active: false,
|
|
icon: 'library-panel',
|
|
id: `folder-library-panels-${folder.uid}`,
|
|
text: 'Panels',
|
|
url: `${folder.url}/library-panels`,
|
|
});
|
|
|
|
if (contextSrv.hasPermission(AccessControlAction.AlertingRuleRead) && config.unifiedAlertingEnabled) {
|
|
model.children!.push({
|
|
active: false,
|
|
icon: 'bell',
|
|
id: `folder-alerting-${folder.uid}`,
|
|
text: 'Alert rules',
|
|
url: `${folder.url}/alerting`,
|
|
});
|
|
}
|
|
|
|
if (folder.canAdmin) {
|
|
model.children!.push({
|
|
active: false,
|
|
icon: 'lock',
|
|
id: `folder-permissions-${folder.uid}`,
|
|
text: 'Permissions',
|
|
url: `${folder.url}/permissions`,
|
|
});
|
|
}
|
|
|
|
if (folder.canSave) {
|
|
model.children!.push({
|
|
active: false,
|
|
icon: 'cog',
|
|
id: `folder-settings-${folder.uid}`,
|
|
text: 'Settings',
|
|
url: `${folder.url}/settings`,
|
|
});
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
export function getLoadingNav(tabIndex: number): NavModel {
|
|
const main = buildNavModel({
|
|
id: 1,
|
|
uid: 'loading',
|
|
title: 'Loading',
|
|
url: 'url',
|
|
canSave: true,
|
|
canEdit: true,
|
|
canAdmin: true,
|
|
canDelete: true,
|
|
version: 0,
|
|
});
|
|
|
|
main.children![tabIndex].active = true;
|
|
|
|
return {
|
|
main: main,
|
|
node: main.children![tabIndex],
|
|
};
|
|
}
|