forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
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 { ALL_VARIABLE_TEXT, toVariableIdentifier } from '../state/types';
|
|
import { isAllVariable } from '../utils';
|
|
import { optionPickerFactory } from '../pickers';
|
|
|
|
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;
|
|
},
|
|
};
|
|
};
|
|
|