| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- import _ from 'lodash';
- import coreModule from 'app/core/core_module';
- import { variableTypes } from './variable';
- import appEvents from 'app/core/app_events';
- export class VariableEditorCtrl {
- /** @ngInject */
- constructor($scope, datasourceSrv, variableSrv, templateSrv) {
- $scope.variableTypes = variableTypes;
- $scope.ctrl = {};
- $scope.namePattern = /^(?!__).*$/;
- $scope._ = _;
- $scope.optionsLimit = 20;
- $scope.refreshOptions = [
- { value: 0, text: 'Never' },
- { value: 1, text: 'On Dashboard Load' },
- { value: 2, text: 'On Time Range Change' },
- ];
- $scope.sortOptions = [
- { value: 0, text: 'Disabled' },
- { value: 1, text: 'Alphabetical (asc)' },
- { value: 2, text: 'Alphabetical (desc)' },
- { value: 3, text: 'Numerical (asc)' },
- { value: 4, text: 'Numerical (desc)' },
- { value: 5, text: 'Alphabetical (case-insensitive, asc)' },
- { value: 6, text: 'Alphabetical (case-insensitive, desc)' },
- ];
- $scope.hideOptions = [{ value: 0, text: '' }, { value: 1, text: 'Label' }, { value: 2, text: 'Variable' }];
- $scope.init = () => {
- $scope.mode = 'list';
- $scope.variables = variableSrv.variables;
- $scope.reset();
- $scope.$watch('mode', val => {
- if (val === 'new') {
- $scope.reset();
- }
- });
- };
- $scope.setMode = mode => {
- $scope.mode = mode;
- };
- $scope.add = () => {
- if ($scope.isValid()) {
- variableSrv.addVariable($scope.current);
- $scope.update();
- }
- };
- $scope.isValid = () => {
- if (!$scope.ctrl.form.$valid) {
- return false;
- }
- if (!$scope.current.name.match(/^\w+$/)) {
- appEvents.emit('alert-warning', ['Validation', 'Only word and digit characters are allowed in variable names']);
- return false;
- }
- const sameName = _.find($scope.variables, { name: $scope.current.name });
- if (sameName && sameName !== $scope.current) {
- appEvents.emit('alert-warning', ['Validation', 'Variable with the same name already exists']);
- return false;
- }
- if (
- $scope.current.type === 'query' &&
- $scope.current.query.match(new RegExp('\\$' + $scope.current.name + '(/| |$)'))
- ) {
- appEvents.emit('alert-warning', [
- 'Validation',
- 'Query cannot contain a reference to itself. Variable: $' + $scope.current.name,
- ]);
- return false;
- }
- return true;
- };
- $scope.validate = () => {
- $scope.infoText = '';
- if ($scope.current.type === 'adhoc' && $scope.current.datasource !== null) {
- $scope.infoText = 'Adhoc filters are applied automatically to all queries that target this datasource';
- datasourceSrv.get($scope.current.datasource).then(ds => {
- if (!ds.getTagKeys) {
- $scope.infoText = 'This datasource does not support adhoc filters yet.';
- }
- });
- }
- };
- $scope.runQuery = () => {
- $scope.optionsLimit = 20;
- return variableSrv.updateOptions($scope.current).catch(err => {
- if (err.data && err.data.message) {
- err.message = err.data.message;
- }
- appEvents.emit('alert-error', ['Templating', 'Template variables could not be initialized: ' + err.message]);
- });
- };
- $scope.edit = variable => {
- $scope.current = variable;
- $scope.currentIsNew = false;
- $scope.mode = 'edit';
- $scope.validate();
- };
- $scope.duplicate = variable => {
- const clone = _.cloneDeep(variable.getSaveModel());
- $scope.current = variableSrv.createVariableFromModel(clone);
- $scope.current.name = 'copy_of_' + variable.name;
- variableSrv.addVariable($scope.current);
- };
- $scope.update = () => {
- if ($scope.isValid()) {
- $scope.runQuery().then(() => {
- $scope.reset();
- $scope.mode = 'list';
- templateSrv.updateTemplateData();
- });
- }
- };
- $scope.reset = () => {
- $scope.currentIsNew = true;
- $scope.current = variableSrv.createVariableFromModel({ type: 'query' });
- // this is done here in case a new data source type variable was added
- $scope.datasources = _.filter(datasourceSrv.getMetricSources(), ds => {
- return !ds.meta.mixed && ds.value !== null;
- });
- $scope.datasourceTypes = _($scope.datasources)
- .uniqBy('meta.id')
- .map(ds => {
- return { text: ds.meta.name, value: ds.meta.id };
- })
- .value();
- };
- $scope.typeChanged = function() {
- const old = $scope.current;
- $scope.current = variableSrv.createVariableFromModel({
- type: $scope.current.type,
- });
- $scope.current.name = old.name;
- $scope.current.hide = old.hide;
- $scope.current.label = old.label;
- const oldIndex = _.indexOf(this.variables, old);
- if (oldIndex !== -1) {
- this.variables[oldIndex] = $scope.current;
- }
- $scope.validate();
- };
- $scope.removeVariable = variable => {
- variableSrv.removeVariable(variable);
- };
- $scope.showMoreOptions = () => {
- $scope.optionsLimit += 20;
- };
- }
- }
- coreModule.controller('VariableEditorCtrl', VariableEditorCtrl);
|