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