mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 09:33:34 -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
53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
|
|
import { TextBoxVariableModel } from '../types';
|
|
import { initialTextBoxVariableModelState, textBoxVariableReducer } from './reducer';
|
|
import { dispatch } from '../../../store/store';
|
|
import { setOptionAsCurrent } from '../state/actions';
|
|
import { VariableAdapter } from '../adapters';
|
|
import { TextBoxVariablePicker } from './TextBoxVariablePicker';
|
|
import { TextBoxVariableEditor } from './TextBoxVariableEditor';
|
|
import { setTextBoxVariableOptionsFromUrl, updateTextBoxVariableOptions } from './actions';
|
|
import { toVariableIdentifier } from '../state/types';
|
|
|
|
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(toVariableIdentifier(variable), option, emitChanges));
|
|
},
|
|
setValueFromUrl: async (variable, urlValue) => {
|
|
await dispatch(setTextBoxVariableOptionsFromUrl(toVariableIdentifier(variable), urlValue));
|
|
},
|
|
updateOptions: async (variable) => {
|
|
await dispatch(updateTextBoxVariableOptions(toVariableIdentifier(variable)));
|
|
},
|
|
getSaveModel: (variable, saveCurrentAsDefault) => {
|
|
const { index, id, state, global, originalQuery, ...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 };
|
|
},
|
|
};
|
|
};
|