mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Variables: move state tree into a keyed state * Update public/app/features/variables/state/transactionReducer.ts Co-authored-by: kay delaney <45561153+kaydelaney@users.noreply.github.com> * Chore: fix prettier error * Chore: renamed slices and lastUid * Chore: rename toUidAction * Chore: rename dashboardVariableReducer * Chore: rename state prop back to templating * Chore renames variable.dashboardUid * Chore: rename toDashboardVariableIdentifier * Chore: rename getDashboardVariable * Chore: rename getDashboardVariablesState * Chore: rename getDashboardVariables * Chore: some more renames * Chore: small clean up * Chore: small rename * Chore: removes unused function * Chore: rename VariableModel.stateKey * Chore: rename KeyedVariableIdentifier.stateKey * user essentials mob! 🔱 * user essentials mob! 🔱 * user essentials mob! 🔱 * user essentials mob! 🔱 Co-authored-by: kay delaney <45561153+kaydelaney@users.noreply.github.com> Co-authored-by: kay delaney <kay@grafana.com> Co-authored-by: Alexandra Vargas <alexa1866@gmail.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
51 lines
1.8 KiB
TypeScript
51 lines
1.8 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
|
|
import { CustomVariableModel, initialVariableModelState, VariableOption } from '../types';
|
|
import { initialVariablesState, VariablePayload, VariablesState } from '../state/types';
|
|
import { ALL_VARIABLE_TEXT, ALL_VARIABLE_VALUE } from '../constants';
|
|
import { getInstanceState } from '../state/selectors';
|
|
|
|
export const initialCustomVariableModelState: CustomVariableModel = {
|
|
...initialVariableModelState,
|
|
type: 'custom',
|
|
multi: false,
|
|
includeAll: false,
|
|
allValue: null,
|
|
query: '',
|
|
options: [],
|
|
current: {} as VariableOption,
|
|
};
|
|
|
|
export const customVariableSlice = createSlice({
|
|
name: 'templating/custom',
|
|
initialState: initialVariablesState,
|
|
reducers: {
|
|
createCustomOptionsFromQuery: (state: VariablesState, action: PayloadAction<VariablePayload>) => {
|
|
const instanceState = getInstanceState<CustomVariableModel>(state, action.payload.id);
|
|
const { includeAll, query } = instanceState;
|
|
|
|
const match = query.match(/(?:\\,|[^,])+/g) ?? [];
|
|
const options = match.map((text) => {
|
|
text = text.replace(/\\,/g, ',');
|
|
const textMatch = /^(.+)\s:\s(.+)$/g.exec(text) ?? [];
|
|
if (textMatch.length === 3) {
|
|
const [, key, value] = textMatch;
|
|
return { text: key.trim(), value: value.trim(), selected: false };
|
|
} else {
|
|
return { text: text.trim(), value: text.trim(), selected: false };
|
|
}
|
|
});
|
|
|
|
if (includeAll) {
|
|
options.unshift({ text: ALL_VARIABLE_TEXT, value: ALL_VARIABLE_VALUE, selected: false });
|
|
}
|
|
|
|
instanceState.options = options;
|
|
},
|
|
},
|
|
});
|
|
|
|
export const customVariableReducer = customVariableSlice.reducer;
|
|
|
|
export const { createCustomOptionsFromQuery } = customVariableSlice.actions;
|