mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
841cffbe9a
* Refactor: Adds params to visit * Refactor: Restructures exported Pages somewhat * Refactor: Moves more into new framework but holdup because of bugs in digest * Refactor: Finish migrating templating e2e tests to new framework * Refactor: Changes after merge with master * Refactor: Removes weird change * Refactor: Adds duplication test * Refactor: Adds move down and move up variable asserts * Refactor: Adds some test to value select dropdown
124 lines
3.1 KiB
TypeScript
124 lines
3.1 KiB
TypeScript
import { coreModule } from 'app/core/core';
|
|
import { AngularPanelMenuItem } from '@grafana/data';
|
|
import { e2e } from '@grafana/e2e';
|
|
|
|
const template = `
|
|
<span class="panel-title">
|
|
<span class="icon-gf panel-alert-icon"></span>
|
|
<span class="panel-title-text">{{ctrl.panel.title | interpolateTemplateVars:this}}</span>
|
|
<span class="panel-menu-container dropdown">
|
|
<span class="fa fa-caret-down panel-menu-toggle" data-toggle="dropdown"></span>
|
|
<ul class="dropdown-menu dropdown-menu--menu panel-menu" role="menu">
|
|
</ul>
|
|
</span>
|
|
<span class="panel-time-info" ng-if="ctrl.timeInfo"><i class="fa fa-clock-o"></i> {{ctrl.timeInfo}}</span>
|
|
</span>`;
|
|
|
|
function renderMenuItem(item: AngularPanelMenuItem, ctrl: any) {
|
|
let html = '';
|
|
let listItemClass = '';
|
|
|
|
if (item.divider) {
|
|
return '<li class="divider"></li>';
|
|
}
|
|
|
|
if (item.submenu) {
|
|
listItemClass = 'dropdown-submenu';
|
|
}
|
|
|
|
html += `<li class="${listItemClass}"><a `;
|
|
|
|
if (item.click) {
|
|
html += ` ng-click="${item.click}"`;
|
|
}
|
|
if (item.href) {
|
|
html += ` href="${item.href}"`;
|
|
}
|
|
|
|
html += `><i class="${item.icon}"></i>`;
|
|
html += `<span class="dropdown-item-text" aria-label="${e2e.pages.Dashboard.Panels.Panel.selectors.headerItems(
|
|
item.text
|
|
)}">${item.text}</span>`;
|
|
|
|
if (item.shortcut) {
|
|
html += `<span class="dropdown-menu-item-shortcut">${item.shortcut}</span>`;
|
|
}
|
|
|
|
html += `</a>`;
|
|
|
|
if (item.submenu) {
|
|
html += '<ul class="dropdown-menu dropdown-menu--menu panel-menu">';
|
|
for (const subitem of item.submenu) {
|
|
html += renderMenuItem(subitem, ctrl);
|
|
}
|
|
html += '</ul>';
|
|
}
|
|
|
|
html += `</li>`;
|
|
return html;
|
|
}
|
|
|
|
async function createMenuTemplate(ctrl: any) {
|
|
let html = '';
|
|
|
|
for (const item of await ctrl.getMenu()) {
|
|
html += renderMenuItem(item, ctrl);
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
/** @ngInject */
|
|
function panelHeader($compile: any) {
|
|
return {
|
|
restrict: 'E',
|
|
template: template,
|
|
link: (scope: any, elem: any, attrs: any) => {
|
|
const menuElem = elem.find('.panel-menu');
|
|
let menuScope: any;
|
|
let isDragged: boolean;
|
|
|
|
elem.click(async (evt: any) => {
|
|
const targetClass = evt.target.className;
|
|
|
|
// remove existing scope
|
|
if (menuScope) {
|
|
menuScope.$destroy();
|
|
}
|
|
|
|
menuScope = scope.$new();
|
|
const menuHtml = await createMenuTemplate(scope.ctrl);
|
|
menuElem.html(menuHtml);
|
|
$compile(menuElem)(menuScope);
|
|
|
|
if (targetClass.indexOf('panel-title-text') >= 0 || targetClass.indexOf('panel-title') >= 0) {
|
|
togglePanelMenu(evt);
|
|
}
|
|
});
|
|
|
|
function togglePanelMenu(e: any) {
|
|
if (!isDragged) {
|
|
e.stopPropagation();
|
|
elem.find('[data-toggle=dropdown]').dropdown('toggle');
|
|
}
|
|
}
|
|
|
|
let mouseX: number, mouseY: number;
|
|
elem.mousedown((e: any) => {
|
|
mouseX = e.pageX;
|
|
mouseY = e.pageY;
|
|
});
|
|
|
|
elem.mouseup((e: any) => {
|
|
if (mouseX === e.pageX && mouseY === e.pageY) {
|
|
isDragged = false;
|
|
} else {
|
|
isDragged = true;
|
|
}
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
coreModule.directive('panelHeader', panelHeader);
|