forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.5 KiB
31 lines
1.5 KiB
import { TextBoxVariableModel } from '../types';
|
|
import { ThunkResult } from '../../../types';
|
|
import { getVariable } from '../state/selectors';
|
|
import { variableAdapters } from '../adapters';
|
|
import { createTextBoxOptions } from './reducer';
|
|
import { toVariableIdentifier, toVariablePayload, VariableIdentifier } from '../state/types';
|
|
import { setOptionFromUrl } from '../state/actions';
|
|
import { UrlQueryValue } from '@grafana/data';
|
|
import { changeVariableProp } from '../state/sharedReducer';
|
|
import { ensureStringValues } from '../utils';
|
|
|
|
export const updateTextBoxVariableOptions = (identifier: VariableIdentifier): ThunkResult<void> => {
|
|
return async (dispatch, getState) => {
|
|
await dispatch(createTextBoxOptions(toVariablePayload(identifier)));
|
|
|
|
const variableInState = getVariable<TextBoxVariableModel>(identifier.id, getState());
|
|
await variableAdapters.get(identifier.type).setValue(variableInState, variableInState.options[0], true);
|
|
};
|
|
};
|
|
|
|
export const setTextBoxVariableOptionsFromUrl = (
|
|
identifier: VariableIdentifier,
|
|
urlValue: UrlQueryValue
|
|
): ThunkResult<void> => async (dispatch, getState) => {
|
|
const variableInState = getVariable<TextBoxVariableModel>(identifier.id, getState());
|
|
|
|
const stringUrlValue = ensureStringValues(urlValue);
|
|
dispatch(changeVariableProp(toVariablePayload(variableInState, { propName: 'query', propValue: stringUrlValue })));
|
|
|
|
await dispatch(setOptionFromUrl(toVariableIdentifier(variableInState), stringUrlValue));
|
|
};
|
|
|