You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
552 B
20 lines
552 B
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); |
|
};
|
|
|