| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- ///<reference path="../../headers/common.d.ts" />
- import _ from 'lodash';
- import {Variable, assignModelProperties, variableTypes} from './variable';
- export class CustomVariable implements Variable {
- query: string;
- options: any;
- includeAll: boolean;
- multi: boolean;
- current: any;
- defaults = {
- type: 'custom',
- name: '',
- label: '',
- hide: 0,
- options: [],
- current: {},
- query: '',
- includeAll: false,
- multi: false,
- allValue: null,
- };
- /** @ngInject **/
- constructor(private model, private variableSrv) {
- assignModelProperties(this, model, this.defaults);
- }
- setValue(option) {
- return this.variableSrv.setOptionAsCurrent(this, option);
- }
- getSaveModel() {
- assignModelProperties(this.model, this, this.defaults);
- return this.model;
- }
- updateOptions() {
- // extract options in comma separated string
- this.options = _.map(this.query.split(/[,]+/), function(text) {
- return { text: text.trim(), value: text.trim() };
- });
- if (this.includeAll) {
- this.addAllOption();
- }
- return this.variableSrv.validateVariableSelectionState(this);
- }
- addAllOption() {
- this.options.unshift({text: 'All', value: "$__all"});
- }
- dependsOn(variable) {
- return false;
- }
- setValueFromUrl(urlValue) {
- return this.variableSrv.setOptionFromUrl(this, urlValue);
- }
- getValueForUrl() {
- if (this.current.text === 'All') {
- return 'All';
- }
- return this.current.value;
- }
- }
- variableTypes['custom'] = {
- name: 'Custom',
- ctor: CustomVariable,
- description: 'Define variable values manually' ,
- supportsMulti: true,
- };
|