mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Chore: reduces a lot of variable errors * Chore: reduces variable Editor errors * Chore: reduces variable Picker errors * Chore: reduce error count * Chore: reduces errors for ChangeEvent instead of FormEvent * Chore: reduces errors with CombinedState * Chore: reduces ComponentType errors * Chore: reduce errors in reducers * Chore: reduces misc errors * Chore: reduce AdhocPicker errors * Chore: reduce error limit * Update public/app/features/variables/adhoc/picker/AdHocFilterValue.tsx Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * Chore: updates after PR comments * Chore: small refactor Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com>
49 lines
2.0 KiB
TypeScript
49 lines
2.0 KiB
TypeScript
import cloneDeep from 'lodash/cloneDeep';
|
|
import { DataSourceVariableModel } from '../types';
|
|
import { dispatch } from '../../../store/store';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { dataSourceVariableReducer, initialDataSourceVariableModelState } from './reducer';
|
|
import { ALL_VARIABLE_TEXT, toVariableIdentifier } from '../state/types';
|
|
import { DataSourceVariableEditor } from './DataSourceVariableEditor';
|
|
import { updateDataSourceVariableOptions } from './actions';
|
|
import { containsVariable, isAllVariable } from '../utils';
|
|
import { optionPickerFactory } from '../pickers';
|
|
|
|
export const createDataSourceVariableAdapter = (): VariableAdapter<DataSourceVariableModel> => {
|
|
return {
|
|
id: 'datasource',
|
|
description: 'Enabled you to dynamically switch the datasource for multiple panels',
|
|
name: 'Datasource',
|
|
initialState: initialDataSourceVariableModelState,
|
|
reducer: dataSourceVariableReducer,
|
|
picker: optionPickerFactory<DataSourceVariableModel>(),
|
|
editor: DataSourceVariableEditor,
|
|
dependsOn: (variable, variableToTest) => {
|
|
if (variable.regex) {
|
|
return containsVariable(variable.regex, variableToTest.name);
|
|
}
|
|
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(updateDataSourceVariableOptions(toVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, ...rest } = cloneDeep(variable);
|
|
return { ...rest, options: [] };
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
if (isAllVariable(variable)) {
|
|
return ALL_VARIABLE_TEXT;
|
|
}
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|