mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
bad048b7ba
* Performance: Standardize lodash imports to use destructured members Changes lodash imports of the form `import x from 'lodash/x'` to `import { x } from 'lodash'` to reduce bundle size. * Remove unnecessary _ import from Graph component * Enforce lodash import style * Fix remaining lodash imports
46 lines
1.7 KiB
TypeScript
46 lines
1.7 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 { 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;
|
|
},
|
|
};
|
|
};
|