mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* Chore: move constants to own file * Chore: moves safe* functions to grafana/data * Chore: moves safe* functions to grafana/data * Chore: adds VariableQueryEditorProps and deprecates VariableQueryProps * Chore: remove getDefaultVariableAdapters function * Chore: moves transaction status to types * Chore: fix tests that do not initialise TemplateSrv * Chore: change space when stringifying * Chore: revert safe* func move * Chore: remove circular dependency in Explore utils
47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
import { CustomVariableModel } from '../types';
|
|
import { dispatch } from '../../../store/store';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { customVariableReducer, initialCustomVariableModelState } from './reducer';
|
|
import { CustomVariableEditor } from './CustomVariableEditor';
|
|
import { updateCustomVariableOptions } from './actions';
|
|
import { toVariableIdentifier } from '../state/types';
|
|
import { isAllVariable } from '../utils';
|
|
import { optionPickerFactory } from '../pickers';
|
|
import { ALL_VARIABLE_TEXT } from '../constants';
|
|
|
|
export const createCustomVariableAdapter = (): VariableAdapter<CustomVariableModel> => {
|
|
return {
|
|
id: 'custom',
|
|
description: 'Define variable values manually',
|
|
name: 'Custom',
|
|
initialState: initialCustomVariableModelState,
|
|
reducer: customVariableReducer,
|
|
picker: optionPickerFactory<CustomVariableModel>(),
|
|
editor: CustomVariableEditor,
|
|
dependsOn: () => {
|
|
return false;
|
|
},
|
|
setValue: async (variable, option, emitChanges = false) => {
|
|
await dispatch(setOptionAsCurrent(toVariableIdentifier(variable), option, emitChanges));
|
|
},
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
await dispatch(setOptionFromUrl(toVariableIdentifier(variable), urlValue));
|
|
},
|
|
updateOptions: async (variable) => {
|
|
await dispatch(updateCustomVariableOptions(toVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
if (isAllVariable(variable)) {
|
|
return ALL_VARIABLE_TEXT;
|
|
}
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|