mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
define([
|
|
'angular',
|
|
'jquery',
|
|
'lodash'
|
|
],
|
|
function (angular, $) {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('grafana.directives')
|
|
.directive('annotationTooltip', function($sanitize, dashboardSrv, $compile) {
|
|
return {
|
|
link: function (scope, element) {
|
|
var event = scope.event;
|
|
var title = $sanitize(event.title);
|
|
var dashboard = dashboardSrv.getCurrent();
|
|
var time = '<i>' + dashboard.formatDate(event.min) + '</i>';
|
|
|
|
var tooltip = '<div class="graph-tooltip small"><div class="graph-tooltip-time">' + title + ' ' + time + '</div> ' ;
|
|
|
|
if (event.text) {
|
|
var text = $sanitize(event.text);
|
|
tooltip += text.replace(/\n/g, '<br>') + '<br>';
|
|
}
|
|
|
|
if (event.tags && event.tags.length > 0) {
|
|
tooltip += '<span class="label label-tag" ng-repeat="tag in event.tags" tag-color-from-name="tag">{{tag}}</span><br/>';
|
|
}
|
|
|
|
tooltip += "</div>";
|
|
|
|
var $tooltip = $(tooltip);
|
|
$tooltip.appendTo(element);
|
|
|
|
$compile(element.contents())(scope);
|
|
}
|
|
};
|
|
});
|
|
|
|
});
|