mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Chore: initial commit * Tests: fixes MetricsQueryEditor.test.tsx * Tests: fixes cloudwatch/specs/datasource.test.ts * Tests: fixes stackdriver/specs/datasource.test.ts * Tests: remove refrences to CustomVariable * Refactor: moves DefaultVariableQueryEditor * Refactor: moves utils * Refactor: moves types * Refactor: removes variableSrv * Refactor: removes feature toggle newVariables * Refactor: removes valueSelectDropDown * Chore: removes GeneralTabCtrl * Chore: migrates RowOptions * Refactor: adds RowOptionsButton * Refactor: makes the interface more explicit * Refactor: small changes * Refactor: changed type as it can be any variable type * Tests: fixes broken test * Refactor: changes after PR comments * Refactor: adds loading state and call to onChange in componentDidMount
43 lines
1.7 KiB
TypeScript
43 lines
1.7 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 => {
|
|
const { index, id, initLock, global, ...rest } = cloneDeep(variable);
|
|
return rest;
|
|
},
|
|
getValueForUrl: variable => {
|
|
return variable.current.value;
|
|
},
|
|
};
|
|
};
|