mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
/*jshint globalstrict:true */
|
|
/*global angular:true */
|
|
'use strict';
|
|
|
|
angular.module('kibana.directives', [])
|
|
.directive('kibanaPanel', function($compile) {
|
|
return {
|
|
restrict: 'E',
|
|
link: function(scope, elem, attrs) {
|
|
var template = '<img src="common/img/load.gif" class="panel-loading" ng-show="panel.loading == true">'+
|
|
' <span class="editlink panelextra pointer" style="right:15px;top:0px" bs-modal="\'partials/paneleditor.html\'" ng-show="panel.editable != false">'+
|
|
'<span class="small">{{panel.type}}</span> <i class="icon-cog pointer"></i> '+
|
|
'</span><h4>{{panel.title}}</h4>';
|
|
elem.prepend($compile(angular.element(template))(scope));
|
|
}
|
|
};
|
|
})
|
|
.directive('addPanel', function($compile) {
|
|
return {
|
|
restrict: 'A',
|
|
link: function(scope, elem, attrs) {
|
|
scope.$watch('panel.type', function(n,o) {
|
|
if(!_.isUndefined(scope.panel.type)) {
|
|
var template = '<div ng-controller="'+scope.panel.type+'" ng-include src="\''+scope.edit_path(scope.panel.type)+'\'"></div>';
|
|
elem.html($compile(angular.element(template))(scope));
|
|
}
|
|
})
|
|
}
|
|
};
|
|
})
|
|
.directive('arrayJoin', function() {
|
|
return {
|
|
restrict: 'A',
|
|
require: 'ngModel',
|
|
link: function(scope, element, attr, ngModel) {
|
|
|
|
function split_array(text) {
|
|
return (text || '').split(',');
|
|
}
|
|
|
|
function join_array(text) {
|
|
if(_.isArray(text))
|
|
return (text || '').join(',');
|
|
else
|
|
return text
|
|
}
|
|
ngModel.$parsers.push(split_array);
|
|
ngModel.$formatters.push(join_array);
|
|
}
|
|
};
|
|
})
|
|
.directive('ngModelOnblur', function() {
|
|
return {
|
|
restrict: 'A',
|
|
require: 'ngModel',
|
|
link: function(scope, elm, attr, ngModelCtrl) {
|
|
if (attr.type === 'radio' || attr.type === 'checkbox') return;
|
|
|
|
elm.unbind('input').unbind('keydown').unbind('change');
|
|
elm.bind('blur', function() {
|
|
scope.$apply(function() {
|
|
ngModelCtrl.$setViewValue(elm.val());
|
|
});
|
|
});
|
|
}
|
|
};
|
|
});
|
|
;
|
|
|