mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
* wip * make diff easier to read * Update template_srv getVariables to return new TypedVariableModel * update VariableType to use the type from TypedVariableModel * tidy things up * Chore: Use type-accurate mock variables in tests * Chore: Type VariableState to use TypedVariableModel * fix typo * remove type assertion from template_srv.getVariables * use typescript/no-redeclare for compatibility with ts overloads * remove generics from getVariable() and overload it to only return undefined based on arguments * update usages of getVariable() * Remove generic from getInstanceState * update usages of getInstanceState * fix lint
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
|
|
import { getInstanceState } from '../state/selectors';
|
|
import { initialVariablesState, VariablePayload, VariablesState } from '../state/types';
|
|
import { ConstantVariableModel, initialVariableModelState, VariableHide, VariableOption } from '../types';
|
|
|
|
export const initialConstantVariableModelState: ConstantVariableModel = {
|
|
...initialVariableModelState,
|
|
type: 'constant',
|
|
hide: VariableHide.hideVariable,
|
|
query: '',
|
|
current: {} as VariableOption,
|
|
options: [],
|
|
};
|
|
|
|
export const constantVariableSlice = createSlice({
|
|
name: 'templating/constant',
|
|
initialState: initialVariablesState,
|
|
reducers: {
|
|
createConstantOptionsFromQuery: (state: VariablesState, action: PayloadAction<VariablePayload>) => {
|
|
const instanceState = getInstanceState(state, action.payload.id);
|
|
if (instanceState.type !== 'constant') {
|
|
return;
|
|
}
|
|
|
|
instanceState.options = [
|
|
{ text: instanceState.query.trim(), value: instanceState.query.trim(), selected: false },
|
|
];
|
|
},
|
|
},
|
|
});
|
|
|
|
export const constantVariableReducer = constantVariableSlice.reducer;
|
|
|
|
export const { createConstantOptionsFromQuery } = constantVariableSlice.actions;
|