Type Redux store and middleware (#24843)

This commit is contained in:
Renaud Chaput
2023-05-09 16:56:26 +02:00
committed by GitHub
parent e1f466fbbe
commit 6aeb162927
9 changed files with 61 additions and 35 deletions

View File

@@ -0,0 +1,18 @@
import { Middleware } from 'redux';
import { showAlertForError } from '../../actions/alerts';
import { RootState } from '..';
const defaultFailSuffix = 'FAIL';
export const errorsMiddleware: Middleware<Record<string, never>, RootState> =
({ dispatch }) => next => action => {
if (action.type && !action.skipAlert) {
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g');
if (action.type.match(isFail)) {
dispatch(showAlertForError(action.error, action.skipNotFound));
}
}
return next(action);
};