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
48 lines
1.8 KiB
TypeScript
48 lines
1.8 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { dispatch } from '../../../store/store';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { ALL_VARIABLE_TEXT } from '../constants';
|
|
import { optionPickerFactory } from '../pickers';
|
|
import { setOptionAsCurrent, setOptionFromUrl } from '../state/actions';
|
|
import { CustomVariableModel } from '../types';
|
|
import { isAllVariable, toKeyedVariableIdentifier } from '../utils';
|
|
|
|
import { CustomVariableEditor } from './CustomVariableEditor';
|
|
import { updateCustomVariableOptions } from './actions';
|
|
import { customVariableReducer, initialCustomVariableModelState } from './reducer';
|
|
|
|
export const createCustomVariableAdapter = (): VariableAdapter<CustomVariableModel> => {
|
|
return {
|
|
id: 'custom',
|
|
description: 'Define variable values manually',
|
|
name: 'Custom',
|
|
initialState: initialCustomVariableModelState,
|
|
reducer: customVariableReducer,
|
|
picker: optionPickerFactory<CustomVariableModel>(),
|
|
editor: CustomVariableEditor,
|
|
dependsOn: () => {
|
|
return false;
|
|
},
|
|
setValue: async (variable, option, emitChanges = false) => {
|
|
await dispatch(setOptionAsCurrent(toKeyedVariableIdentifier(variable), option, emitChanges));
|
|
},
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
await dispatch(setOptionFromUrl(toKeyedVariableIdentifier(variable), urlValue));
|
|
},
|
|
updateOptions: async (variable) => {
|
|
await dispatch(updateCustomVariableOptions(toKeyedVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable) => {
|
|
const { index, id, state, global, rootStateKey, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: (variable) => {
|
|
if (isAllVariable(variable)) {
|
|
return ALL_VARIABLE_TEXT;
|
|
}
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|