mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
81 lines
1.7 KiB
TypeScript
81 lines
1.7 KiB
TypeScript
///<reference path="../../headers/common.d.ts" />
|
|
|
|
import _ from 'lodash';
|
|
import kbn from 'app/core/utils/kbn';
|
|
import {Variable, assignModelProperties, variableTypes} from './variable';
|
|
import {VariableSrv} from './variable_srv';
|
|
|
|
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 timeSrv, private templateSrv, 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,
|
|
};
|