mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 04:02:50 -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
52 lines
2.1 KiB
TypeScript
52 lines
2.1 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { QueryVariableModel, VariableRefresh } from '../types';
|
|
import { initialQueryVariableModelState, queryVariableReducer } from './reducer';
|
|
import { dispatch } from '../../../store/store';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { QueryVariableEditor } from './QueryVariableEditor';
|
|
import { updateQueryVariableOptions } from './actions';
|
|
import { ALL_VARIABLE_TEXT, toVariableIdentifier } from '../state/types';
|
|
import { containsVariable, isAllVariable } from '../utils';
|
|
import { optionPickerFactory } from '../pickers';
|
|
|
|
export const createQueryVariableAdapter = (): VariableAdapter<QueryVariableModel> => {
|
|
return {
|
|
id: 'query',
|
|
description: 'Variable values are fetched from a datasource query',
|
|
name: 'Query',
|
|
initialState: initialQueryVariableModelState,
|
|
reducer: queryVariableReducer,
|
|
picker: optionPickerFactory<QueryVariableModel>(),
|
|
editor: QueryVariableEditor,
|
|
dependsOn: (variable, variableToTest) => {
|
|
return containsVariable(variable.query, variable.datasource, variable.regex, variableToTest.name);
|
|
},
|
|
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, searchFilter) => {
|
|
await dispatch(updateQueryVariableOptions(toVariableIdentifier(variable), searchFilter));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, queryValue, ...rest } = cloneDeep(variable);
|
|
// remove options
|
|
if (variable.refresh !== VariableRefresh.never) {
|
|
return { ...rest, options: [] };
|
|
}
|
|
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
if (isAllVariable(variable)) {
|
|
return ALL_VARIABLE_TEXT;
|
|
}
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|