mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { dispatch } from '../../../store/store';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { AdHocVariableModel } from '../types';
|
|
import { toKeyedVariableIdentifier } from '../utils';
|
|
|
|
import { AdHocVariableEditor } from './AdHocVariableEditor';
|
|
import { setFiltersFromUrl } from './actions';
|
|
import { AdHocPicker } from './picker/AdHocPicker';
|
|
import { adHocVariableReducer, initialAdHocVariableModelState } from './reducer';
|
|
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(toKeyedVariableIdentifier(variable), filters));
|
|
},
|
|
updateOptions: noop,
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, rootStateKey, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
const filters = variable?.filters ?? [];
|
|
return urlParser.toUrl(filters);
|
|
},
|
|
};
|
|
};
|