mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
169 lines
4.9 KiB
TypeScript
169 lines
4.9 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
|
|
import { dateTime } from '@grafana/data';
|
|
import {
|
|
AlertRule,
|
|
AlertRuleDTO,
|
|
AlertRulesState,
|
|
NotificationChannelOption,
|
|
NotificationChannelState,
|
|
NotifierDTO,
|
|
} from 'app/types';
|
|
|
|
import unifiedAlertingReducer from '../unified/state/reducers';
|
|
|
|
import alertDef from './alertDef';
|
|
|
|
export const initialState: AlertRulesState = {
|
|
items: [],
|
|
searchQuery: '',
|
|
isLoading: false,
|
|
};
|
|
|
|
export const initialChannelState: NotificationChannelState = {
|
|
notificationChannelTypes: [],
|
|
notificationChannel: {},
|
|
notifiers: [],
|
|
};
|
|
|
|
function convertToAlertRule(dto: AlertRuleDTO, state: string): AlertRule {
|
|
const stateModel = alertDef.getStateDisplayModel(state);
|
|
|
|
const rule: AlertRule = {
|
|
...dto,
|
|
stateText: stateModel.text,
|
|
stateIcon: stateModel.iconClass,
|
|
stateClass: stateModel.stateClass,
|
|
stateAge: dateTime(dto.newStateDate).fromNow(true),
|
|
};
|
|
|
|
if (rule.state !== 'paused') {
|
|
if (rule.executionError) {
|
|
rule.info = 'Execution Error: ' + rule.executionError;
|
|
}
|
|
if (rule.evalData && rule.evalData.noData) {
|
|
rule.info = 'Query returned no data';
|
|
}
|
|
}
|
|
|
|
return rule;
|
|
}
|
|
|
|
const alertRulesSlice = createSlice({
|
|
name: 'alertRules',
|
|
initialState,
|
|
reducers: {
|
|
loadAlertRules: (state) => {
|
|
return { ...state, isLoading: true };
|
|
},
|
|
loadedAlertRules: (state, action: PayloadAction<AlertRuleDTO[]>): AlertRulesState => {
|
|
const alertRules: AlertRuleDTO[] = action.payload;
|
|
|
|
const alertRulesViewModel: AlertRule[] = alertRules.map((rule) => {
|
|
return convertToAlertRule(rule, rule.state);
|
|
});
|
|
|
|
return { ...state, items: alertRulesViewModel, isLoading: false };
|
|
},
|
|
setSearchQuery: (state, action: PayloadAction<string>): AlertRulesState => {
|
|
return { ...state, searchQuery: action.payload };
|
|
},
|
|
},
|
|
});
|
|
|
|
const notificationChannelSlice = createSlice({
|
|
name: 'notificationChannel',
|
|
initialState: initialChannelState,
|
|
reducers: {
|
|
setNotificationChannels: (state, action: PayloadAction<NotifierDTO[]>): NotificationChannelState => {
|
|
return {
|
|
...state,
|
|
notificationChannelTypes: transformNotifiers(action.payload),
|
|
notifiers: action.payload,
|
|
};
|
|
},
|
|
notificationChannelLoaded: (state, action: PayloadAction<any>): NotificationChannelState => {
|
|
const notificationChannel = action.payload;
|
|
const selectedType: NotifierDTO = state.notifiers.find((t) => t.type === notificationChannel.type)!;
|
|
const secureChannelOptions = selectedType.options.filter((o: NotificationChannelOption) => o.secure);
|
|
/*
|
|
If any secure field is in plain text we need to migrate it to use secure field instead.
|
|
*/
|
|
if (
|
|
secureChannelOptions.length > 0 &&
|
|
secureChannelOptions.some((o: NotificationChannelOption) => {
|
|
return notificationChannel.settings[o.propertyName] !== '';
|
|
})
|
|
) {
|
|
return migrateSecureFields(state, action.payload, secureChannelOptions);
|
|
}
|
|
|
|
return { ...state, notificationChannel: notificationChannel };
|
|
},
|
|
resetSecureField: (state, action: PayloadAction<string>): NotificationChannelState => {
|
|
return {
|
|
...state,
|
|
notificationChannel: {
|
|
...state.notificationChannel,
|
|
secureFields: { ...state.notificationChannel.secureFields, [action.payload]: false },
|
|
},
|
|
};
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { loadAlertRules, loadedAlertRules, setSearchQuery } = alertRulesSlice.actions;
|
|
|
|
export const { setNotificationChannels, notificationChannelLoaded, resetSecureField } =
|
|
notificationChannelSlice.actions;
|
|
|
|
export const alertRulesReducer = alertRulesSlice.reducer;
|
|
export const notificationChannelReducer = notificationChannelSlice.reducer;
|
|
|
|
export default {
|
|
alertRules: alertRulesReducer,
|
|
notificationChannel: notificationChannelReducer,
|
|
unifiedAlerting: unifiedAlertingReducer,
|
|
};
|
|
|
|
function migrateSecureFields(
|
|
state: NotificationChannelState,
|
|
notificationChannel: any,
|
|
secureChannelOptions: NotificationChannelOption[]
|
|
) {
|
|
const cleanedSettings: { [key: string]: string } = {};
|
|
const secureSettings: { [key: string]: string } = {};
|
|
|
|
secureChannelOptions.forEach((option) => {
|
|
secureSettings[option.propertyName] = notificationChannel.settings[option.propertyName];
|
|
cleanedSettings[option.propertyName] = '';
|
|
});
|
|
|
|
return {
|
|
...state,
|
|
notificationChannel: {
|
|
...notificationChannel,
|
|
settings: { ...notificationChannel.settings, ...cleanedSettings },
|
|
secureSettings: { ...secureSettings },
|
|
},
|
|
};
|
|
}
|
|
|
|
function transformNotifiers(notifiers: NotifierDTO[]) {
|
|
return notifiers
|
|
.map((option: NotifierDTO) => {
|
|
return {
|
|
value: option.type,
|
|
label: option.name,
|
|
...option,
|
|
typeName: option.type,
|
|
};
|
|
})
|
|
.sort((o1, o2) => {
|
|
if (o1.name > o2.name) {
|
|
return 1;
|
|
}
|
|
return -1;
|
|
});
|
|
}
|