mirror of
https://github.com/grafana/grafana.git
synced 2025-01-17 04:02:50 -06:00
845bc7c444
* Refactor: Replaces initLock with state machine * Refactor: removes some states for now * Refactor: adds loading state in OptionsPicker * Refactor: major refactor of load state * Refactor: fixes updating graph in parallell * Refactor: moves error handling to updateOptions * Refactor: fixes the last cases * Tests: disables variable e2e again * Chore: removes nova config * Refactor: small changes when going through the code again * Refactor: fixes typings * Refactor: changes after PR comments * Refactor: split up onTimeRangeUpdated and fixed some error handling * Tests: removes unused func * Tests: fixes typing
52 lines
2.0 KiB
TypeScript
52 lines
2.0 KiB
TypeScript
import cloneDeep from 'lodash/cloneDeep';
|
|
|
|
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 { OptionsPicker } from '../pickers';
|
|
import { QueryVariableEditor } from './QueryVariableEditor';
|
|
import { updateQueryVariableOptions } from './actions';
|
|
import { ALL_VARIABLE_TEXT, toVariableIdentifier } from '../state/types';
|
|
import { containsVariable, isAllVariable } from '../utils';
|
|
|
|
export const createQueryVariableAdapter = (): VariableAdapter<QueryVariableModel> => {
|
|
return {
|
|
id: 'query',
|
|
description: 'Variable values are fetched from a datasource query',
|
|
name: 'Query',
|
|
initialState: initialQueryVariableModelState,
|
|
reducer: queryVariableReducer,
|
|
picker: OptionsPicker,
|
|
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;
|
|
},
|
|
};
|
|
};
|