2023-05-10 10:59:29 +00:00
|
|
|
import type { AnyAction, Middleware } from 'redux';
|
|
|
|
|
|
|
|
import type { RootState } from '..';
|
2023-05-09 14:56:26 +00:00
|
|
|
import { showAlertForError } from '../../actions/alerts';
|
2016-10-18 15:09:45 +00:00
|
|
|
|
|
|
|
const defaultFailSuffix = 'FAIL';
|
|
|
|
|
2023-05-09 14:56:26 +00:00
|
|
|
export const errorsMiddleware: Middleware<Record<string, never>, RootState> =
|
2023-05-09 17:02:12 +00:00
|
|
|
({ dispatch }) =>
|
|
|
|
(next) =>
|
2023-05-10 10:59:29 +00:00
|
|
|
(action: AnyAction & { skipAlert?: boolean; skipNotFound?: boolean }) => {
|
2017-02-26 22:06:27 +00:00
|
|
|
if (action.type && !action.skipAlert) {
|
2016-10-18 15:09:45 +00:00
|
|
|
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g');
|
|
|
|
|
2023-05-10 10:59:29 +00:00
|
|
|
if (typeof action.type === 'string' && action.type.match(isFail)) {
|
2020-03-28 16:59:45 +00:00
|
|
|
dispatch(showAlertForError(action.error, action.skipNotFound));
|
2016-10-18 15:09:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
};
|