grafana/public/app/features/variables/textbox/adapter.ts
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* 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
2022-04-22 14:33:13 +01:00

54 lines
2.1 KiB
TypeScript

import { cloneDeep } from 'lodash';
import { dispatch } from '../../../store/store';
import { VariableAdapter } from '../adapters';
import { setOptionAsCurrent } from '../state/actions';
import { TextBoxVariableModel } from '../types';
import { toKeyedVariableIdentifier } from '../utils';
import { TextBoxVariableEditor } from './TextBoxVariableEditor';
import { TextBoxVariablePicker } from './TextBoxVariablePicker';
import { setTextBoxVariableOptionsFromUrl, updateTextBoxVariableOptions } from './actions';
import { initialTextBoxVariableModelState, textBoxVariableReducer } from './reducer';
export const createTextBoxVariableAdapter = (): VariableAdapter<TextBoxVariableModel> => {
return {
id: 'textbox',
description: 'Define a textbox variable, where users can enter any arbitrary string',
name: 'Text box',
initialState: initialTextBoxVariableModelState,
reducer: textBoxVariableReducer,
picker: TextBoxVariablePicker,
editor: TextBoxVariableEditor,
dependsOn: (variable, variableToTest) => {
return false;
},
setValue: async (variable, option, emitChanges = false) => {
await dispatch(setOptionAsCurrent(toKeyedVariableIdentifier(variable), option, emitChanges));
},
setValueFromUrl: async (variable, urlValue) => {
await dispatch(setTextBoxVariableOptionsFromUrl(toKeyedVariableIdentifier(variable), urlValue));
},
updateOptions: async (variable) => {
await dispatch(updateTextBoxVariableOptions(toKeyedVariableIdentifier(variable)));
},
getSaveModel: (variable, saveCurrentAsDefault) => {
const { index, id, state, global, originalQuery, rootStateKey, ...rest } = cloneDeep(variable);
if (variable.query !== originalQuery && !saveCurrentAsDefault) {
const origQuery = originalQuery ?? '';
const current = { selected: false, text: origQuery, value: origQuery };
return { ...rest, query: origQuery, current, options: [current] };
}
return rest;
},
getValueForUrl: (variable) => {
return variable.current.value;
},
beforeAdding: (model) => {
return { ...cloneDeep(model), originalQuery: model.query };
},
};
};