mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 15:45:43 -06:00
1db067396a
* Refactor: moves all the newVariables part to features/variables directory * Feature: adds datasource type * Tests: adds reducer tests * Tests: covers data source actions with tests * Chore: reduces strict null errors
55 lines
2.2 KiB
TypeScript
55 lines
2.2 KiB
TypeScript
import { toVariablePayload, VariableIdentifier } from '../state/types';
|
|
import { ThunkResult } from '../../../types';
|
|
import { createDataSourceOptions } from './reducer';
|
|
import { validateVariableSelectionState } from '../state/actions';
|
|
import { DataSourceSelectItem, stringToJsRegex } from '@grafana/data';
|
|
import { getDatasourceSrv } from '../../plugins/datasource_srv';
|
|
import { getVariable } from '../state/selectors';
|
|
import { DataSourceVariableModel } from '../../templating/variable';
|
|
import templateSrv from '../../templating/template_srv';
|
|
import _ from 'lodash';
|
|
import { changeVariableEditorExtended } from '../editor/reducer';
|
|
|
|
export interface DataSourceVariableActionDependencies {
|
|
getDatasourceSrv: typeof getDatasourceSrv;
|
|
}
|
|
|
|
export const updateDataSourceVariableOptions = (
|
|
identifier: VariableIdentifier,
|
|
dependencies: DataSourceVariableActionDependencies = { getDatasourceSrv: getDatasourceSrv }
|
|
): ThunkResult<void> => async (dispatch, getState) => {
|
|
const sources = await dependencies.getDatasourceSrv().getMetricSources({ skipVariables: true });
|
|
const variableInState = getVariable<DataSourceVariableModel>(identifier.uuid!, getState());
|
|
let regex;
|
|
|
|
if (variableInState.regex) {
|
|
regex = templateSrv.replace(variableInState.regex, undefined, 'regex');
|
|
regex = stringToJsRegex(regex);
|
|
}
|
|
|
|
await dispatch(createDataSourceOptions(toVariablePayload(identifier, { sources, regex })));
|
|
await dispatch(validateVariableSelectionState(identifier));
|
|
};
|
|
|
|
export const initDataSourceVariableEditor = (
|
|
dependencies: DataSourceVariableActionDependencies = { getDatasourceSrv: getDatasourceSrv }
|
|
): ThunkResult<void> => async dispatch => {
|
|
const dataSources: DataSourceSelectItem[] = await dependencies.getDatasourceSrv().getMetricSources();
|
|
const filtered = dataSources.filter(ds => !ds.meta.mixed && ds.value !== null);
|
|
const dataSourceTypes = _(filtered)
|
|
.uniqBy('meta.id')
|
|
.map((ds: any) => {
|
|
return { text: ds.meta.name, value: ds.meta.id };
|
|
})
|
|
.value();
|
|
|
|
dataSourceTypes.unshift({ text: '', value: '' });
|
|
|
|
dispatch(
|
|
changeVariableEditorExtended({
|
|
propName: 'dataSourceTypes',
|
|
propValue: dataSourceTypes,
|
|
})
|
|
);
|
|
};
|