mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
cadc551a3c
Chore: Remove deprecated re-exported template varible types
52 lines
2.0 KiB
TypeScript
52 lines
2.0 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { DataSourceVariableModel } from '@grafana/data';
|
|
|
|
import { dispatch } from '../../../store/store';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { ALL_VARIABLE_TEXT } from '../constants';
|
|
import { optionPickerFactory } from '../pickers';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { containsVariable, isAllVariable, toKeyedVariableIdentifier } from '../utils';
|
|
|
|
import { DataSourceVariableEditor } from './DataSourceVariableEditor';
|
|
import { updateDataSourceVariableOptions } from './actions';
|
|
import { dataSourceVariableReducer, initialDataSourceVariableModelState } from './reducer';
|
|
|
|
export const createDataSourceVariableAdapter = (): VariableAdapter<DataSourceVariableModel> => {
|
|
return {
|
|
id: 'datasource',
|
|
description: 'Enables you to dynamically switch the data source for multiple panels.',
|
|
name: 'Data source',
|
|
initialState: initialDataSourceVariableModelState,
|
|
reducer: dataSourceVariableReducer,
|
|
picker: optionPickerFactory<DataSourceVariableModel>(),
|
|
editor: DataSourceVariableEditor,
|
|
dependsOn: (variable, variableToTest) => {
|
|
if (variable.regex) {
|
|
return containsVariable(variable.regex, variableToTest.name);
|
|
}
|
|
return false;
|
|
},
|
|
setValue: async (variable, option, emitChanges = false) => {
|
|
await dispatch(setOptionAsCurrent(toKeyedVariableIdentifier(variable), option, emitChanges));
|
|
},
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
await dispatch(setOptionFromUrl(toKeyedVariableIdentifier(variable), urlValue));
|
|
},
|
|
updateOptions: async (variable) => {
|
|
await dispatch(updateDataSourceVariableOptions(toKeyedVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, rootStateKey, ...rest } = cloneDeep(variable);
|
|
return { ...rest, options: [] };
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
if (isAllVariable(variable)) {
|
|
return ALL_VARIABLE_TEXT;
|
|
}
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|