mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Variables: Fixes savequery for Constant and TextBox variables * Refactor: reverts textbox changes * Refactor: Fixes dashboard export and tests * Refactor: hides or migrates Constant variables * Tests: fixes snapshots * Variables: Fixes Textbox current value persistance * Refactor: fixes PR comments and adds e2e tests
53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
import cloneDeep from 'lodash/cloneDeep';
|
|
|
|
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 };
|
|
},
|
|
};
|
|
};
|