| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- import angular from 'angular';
- import Clipboard from 'clipboard';
- import coreModule from '../core_module';
- import kbn from 'app/core/utils/kbn';
- import { appEvents } from 'app/core/core';
- /** @ngInject */
- function tip($compile) {
- return {
- restrict: 'E',
- link: (scope, elem, attrs) => {
- let _t =
- '<i class="grafana-tip fa fa-' +
- (attrs.icon || 'question-circle') +
- '" bs-tooltip="\'' +
- kbn.addslashes(elem.text()) +
- '\'"></i>';
- _t = _t.replace(/{/g, '\\{').replace(/}/g, '\\}');
- elem.replaceWith($compile(angular.element(_t))(scope));
- },
- };
- }
- function clipboardButton() {
- return {
- scope: {
- getText: '&clipboardButton',
- },
- link: (scope, elem) => {
- scope.clipboard = new Clipboard(elem[0], {
- text: () => {
- return scope.getText();
- },
- });
- scope.clipboard.on('success', () => {
- appEvents.emit('alert-success', ['Content copied to clipboard']);
- });
- scope.$on('$destroy', () => {
- if (scope.clipboard) {
- scope.clipboard.destroy();
- }
- });
- },
- };
- }
- /** @ngInject */
- function compile($compile) {
- return {
- restrict: 'A',
- link: (scope, element, attrs) => {
- scope.$watch(
- scope => {
- return scope.$eval(attrs.compile);
- },
- value => {
- element.html(value);
- $compile(element.contents())(scope);
- }
- );
- },
- };
- }
- function watchChange() {
- return {
- scope: { onchange: '&watchChange' },
- link: (scope, element) => {
- element.on('input', () => {
- scope.$apply(() => {
- scope.onchange({ inputValue: element.val() });
- });
- });
- },
- };
- }
- /** @ngInject */
- function editorOptBool($compile) {
- return {
- restrict: 'E',
- link: (scope, elem, attrs) => {
- const ngchange = attrs.change ? ' ng-change="' + attrs.change + '"' : '';
- const tip = attrs.tip ? ' <tip>' + attrs.tip + '</tip>' : '';
- const showIf = attrs.showIf ? ' ng-show="' + attrs.showIf + '" ' : '';
- const template =
- '<div class="editor-option gf-form-checkbox text-center"' +
- showIf +
- '>' +
- ' <label for="' +
- attrs.model +
- '" class="small">' +
- attrs.text +
- tip +
- '</label>' +
- '<input class="cr1" id="' +
- attrs.model +
- '" type="checkbox" ' +
- ' ng-model="' +
- attrs.model +
- '"' +
- ngchange +
- ' ng-checked="' +
- attrs.model +
- '"></input>' +
- ' <label for="' +
- attrs.model +
- '" class="cr1"></label>';
- elem.replaceWith($compile(angular.element(template))(scope));
- },
- };
- }
- /** @ngInject */
- function editorCheckbox($compile, $interpolate) {
- return {
- restrict: 'E',
- link: (scope, elem, attrs) => {
- const text = $interpolate(attrs.text)(scope);
- const model = $interpolate(attrs.model)(scope);
- const ngchange = attrs.change ? ' ng-change="' + attrs.change + '"' : '';
- const tip = attrs.tip ? ' <tip>' + attrs.tip + '</tip>' : '';
- const label = '<label for="' + scope.$id + model + '" class="checkbox-label">' + text + tip + '</label>';
- let template =
- '<input class="cr1" id="' +
- scope.$id +
- model +
- '" type="checkbox" ' +
- ' ng-model="' +
- model +
- '"' +
- ngchange +
- ' ng-checked="' +
- model +
- '"></input>' +
- ' <label for="' +
- scope.$id +
- model +
- '" class="cr1"></label>';
- template = template + label;
- elem.addClass('gf-form-checkbox');
- elem.html($compile(angular.element(template))(scope));
- },
- };
- }
- /** @ngInject */
- function gfDropdown($parse, $compile, $timeout) {
- function buildTemplate(items, placement?) {
- const upclass = placement === 'top' ? 'dropup' : '';
- const ul = ['<ul class="dropdown-menu ' + upclass + '" role="menu" aria-labelledby="drop1">', '</ul>'];
- for (let index = 0; index < items.length; index++) {
- const item = items[index];
- if (item.divider) {
- ul.splice(index + 1, 0, '<li class="divider"></li>');
- continue;
- }
- let li =
- '<li' +
- (item.submenu && item.submenu.length ? ' class="dropdown-submenu"' : '') +
- '>' +
- '<a tabindex="-1" ng-href="' +
- (item.href || '') +
- '"' +
- (item.click ? ' ng-click="' + item.click + '"' : '') +
- (item.target ? ' target="' + item.target + '"' : '') +
- (item.method ? ' data-method="' + item.method + '"' : '') +
- '>' +
- (item.text || '') +
- '</a>';
- if (item.submenu && item.submenu.length) {
- li += buildTemplate(item.submenu).join('\n');
- }
- li += '</li>';
- ul.splice(index + 1, 0, li);
- }
- return ul;
- }
- return {
- restrict: 'EA',
- scope: true,
- link: function postLink(scope, iElement, iAttrs) {
- const getter = $parse(iAttrs.gfDropdown),
- items = getter(scope);
- $timeout(() => {
- const placement = iElement.data('placement');
- const dropdown = angular.element(buildTemplate(items, placement).join(''));
- dropdown.insertAfter(iElement);
- $compile(iElement.next('ul.dropdown-menu'))(scope);
- });
- iElement.addClass('dropdown-toggle').attr('data-toggle', 'dropdown');
- },
- };
- }
- coreModule.directive('tip', tip);
- coreModule.directive('clipboardButton', clipboardButton);
- coreModule.directive('compile', compile);
- coreModule.directive('watchChange', watchChange);
- coreModule.directive('editorOptBool', editorOptBool);
- coreModule.directive('editorCheckbox', editorCheckbox);
- coreModule.directive('gfDropdown', gfDropdown);
|