grafana/public/app/features/variables/adhoc/actions.ts
Dominik Prokop 8eac5706fd
AdHoc variable: Correctly preselect datasource when provisioning (#54088)
* Adhoc variable: Correctly preselect datasource when provisioning

* Fix test

* Remove data sources from ad hoc variable state in favor of DataSourcePicker
2022-08-25 00:56:45 -07:00

156 lines
5.6 KiB
TypeScript

import { cloneDeep } from 'lodash';
import { DataSourceRef } from '@grafana/data';
import { getDatasourceSrv } from 'app/features/plugins/datasource_srv';
import { AdHocVariableFilter, AdHocVariableModel } from 'app/features/variables/types';
import { StoreState, ThunkResult } from 'app/types';
import { changeVariableEditorExtended } from '../editor/reducer';
import { isAdHoc } from '../guard';
import { variableUpdated } from '../state/actions';
import { toKeyedAction } from '../state/keyedVariablesReducer';
import { getLastKey, getNewVariableIndex, getVariable, getVariablesState } from '../state/selectors';
import { addVariable, changeVariableProp } from '../state/sharedReducer';
import { AddVariable, KeyedVariableIdentifier } from '../state/types';
import { toKeyedVariableIdentifier, toVariablePayload } from '../utils';
import {
AdHocVariabelFilterUpdate,
filterAdded,
filterRemoved,
filtersRestored,
filterUpdated,
initialAdHocVariableModelState,
} from './reducer';
export interface AdHocTableOptions {
datasource: DataSourceRef;
key: string;
value: string;
operator: string;
}
const filterTableName = 'Filters';
export const applyFilterFromTable = (options: AdHocTableOptions): ThunkResult<void> => {
return async (dispatch, getState) => {
let variable = getVariableByOptions(options, getState());
if (!variable) {
dispatch(createAdHocVariable(options));
variable = getVariableByOptions(options, getState());
if (!variable) {
return;
}
}
const index = variable.filters.findIndex((f) => f.key === options.key && f.value === options.value);
if (index === -1) {
const { value, key, operator } = options;
const filter = { value, key, operator, condition: '' };
return await dispatch(addFilter(toKeyedVariableIdentifier(variable), filter));
}
const filter = { ...variable.filters[index], operator: options.operator };
return await dispatch(changeFilter(toKeyedVariableIdentifier(variable), { index, filter }));
};
};
export const changeFilter = (
identifier: KeyedVariableIdentifier,
update: AdHocVariabelFilterUpdate
): ThunkResult<void> => {
return async (dispatch, getState) => {
const variable = getVariable(identifier, getState());
dispatch(toKeyedAction(identifier.rootStateKey, filterUpdated(toVariablePayload(variable, update))));
await dispatch(variableUpdated(toKeyedVariableIdentifier(variable), true));
};
};
export const removeFilter = (identifier: KeyedVariableIdentifier, index: number): ThunkResult<void> => {
return async (dispatch, getState) => {
const variable = getVariable(identifier, getState());
dispatch(toKeyedAction(identifier.rootStateKey, filterRemoved(toVariablePayload(variable, index))));
await dispatch(variableUpdated(toKeyedVariableIdentifier(variable), true));
};
};
export const addFilter = (identifier: KeyedVariableIdentifier, filter: AdHocVariableFilter): ThunkResult<void> => {
return async (dispatch, getState) => {
const variable = getVariable(identifier, getState());
dispatch(toKeyedAction(identifier.rootStateKey, filterAdded(toVariablePayload(variable, filter))));
await dispatch(variableUpdated(toKeyedVariableIdentifier(variable), true));
};
};
export const setFiltersFromUrl = (
identifier: KeyedVariableIdentifier,
filters: AdHocVariableFilter[]
): ThunkResult<void> => {
return async (dispatch, getState) => {
const variable = getVariable(identifier, getState());
dispatch(toKeyedAction(identifier.rootStateKey, filtersRestored(toVariablePayload(variable, filters))));
await dispatch(variableUpdated(toKeyedVariableIdentifier(variable), true));
};
};
export const changeVariableDatasource = (
identifier: KeyedVariableIdentifier,
datasource?: DataSourceRef
): ThunkResult<void> => {
return async (dispatch, getState) => {
const variable = getVariable(identifier, getState());
dispatch(
toKeyedAction(
identifier.rootStateKey,
changeVariableProp(toVariablePayload(variable, { propName: 'datasource', propValue: datasource }))
)
);
const ds = await getDatasourceSrv().get(datasource);
// TS TODO: ds is not typed to be optional - is this check unnecessary or is the type incorrect?
const message = ds?.getTagKeys
? 'Ad hoc filters are applied automatically to all queries that target this data source'
: 'This data source does not support ad hoc filters yet.';
dispatch(
toKeyedAction(
identifier.rootStateKey,
changeVariableEditorExtended({
infoText: message,
})
)
);
};
};
const createAdHocVariable = (options: AdHocTableOptions): ThunkResult<void> => {
return (dispatch, getState) => {
const key = getLastKey(getState());
const model: AdHocVariableModel = {
...cloneDeep(initialAdHocVariableModelState),
datasource: options.datasource,
name: filterTableName,
id: filterTableName,
rootStateKey: key,
};
const global = false;
const index = getNewVariableIndex(key, getState());
const identifier: KeyedVariableIdentifier = { type: 'adhoc', id: model.id, rootStateKey: key };
dispatch(toKeyedAction(key, addVariable(toVariablePayload<AddVariable>(identifier, { global, model, index }))));
};
};
const getVariableByOptions = (options: AdHocTableOptions, state: StoreState): AdHocVariableModel | undefined => {
const key = getLastKey(state);
const templatingState = getVariablesState(key, state);
return Object.values(templatingState.variables).find(
(v) => isAdHoc(v) && v.datasource?.uid === options.datasource.uid
) as AdHocVariableModel;
};