mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
* 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
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { AdHocVariableModel } from '../types';
|
|
import { dispatch } from '../../../store/store';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { AdHocPicker } from './picker/AdHocPicker';
|
|
import { adHocVariableReducer, initialAdHocVariableModelState } from './reducer';
|
|
import { AdHocVariableEditor } from './AdHocVariableEditor';
|
|
import { setFiltersFromUrl } from './actions';
|
|
import * as urlParser from './urlParser';
|
|
|
|
const noop = async () => {};
|
|
|
|
export const createAdHocVariableAdapter = (): VariableAdapter<AdHocVariableModel> => {
|
|
return {
|
|
id: 'adhoc',
|
|
description: 'Add key/value filters on the fly.',
|
|
name: 'Ad hoc filters',
|
|
initialState: initialAdHocVariableModelState,
|
|
reducer: adHocVariableReducer,
|
|
picker: AdHocPicker,
|
|
editor: AdHocVariableEditor,
|
|
dependsOn: () => false,
|
|
setValue: noop,
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
const filters = urlParser.toFilters(urlValue);
|
|
await dispatch(setFiltersFromUrl(variable.id, filters));
|
|
},
|
|
updateOptions: noop,
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
const filters = variable?.filters ?? [];
|
|
return urlParser.toUrl(filters);
|
|
},
|
|
};
|
|
};
|