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