2019-02-10 21:28:29 +01:00
|
|
|
import { showAlertForError } from 'flavours/glitch/actions/alerts';
|
2016-10-18 17:09:45 +02:00
|
|
|
|
|
|
|
const defaultFailSuffix = 'FAIL';
|
|
|
|
|
|
|
|
export default function errorsMiddleware() {
|
|
|
|
return ({ dispatch }) => next => action => {
|
2017-02-26 23:06:27 +01:00
|
|
|
if (action.type && !action.skipAlert) {
|
2016-10-18 17:09:45 +02:00
|
|
|
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g');
|
|
|
|
|
|
|
|
if (action.type.match(isFail)) {
|
2020-03-28 17:59:45 +01:00
|
|
|
dispatch(showAlertForError(action.error, action.skipNotFound));
|
2016-10-18 17:09:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
};
|
2023-02-03 20:52:07 +01:00
|
|
|
}
|