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.
21 lines
656 B
21 lines
656 B
import type { AnyAction, Middleware } from 'redux'; |
|
|
|
import type { RootState } from '..'; |
|
import { showAlertForError } from '../../actions/alerts'; |
|
|
|
const defaultFailSuffix = 'FAIL'; |
|
|
|
export const errorsMiddleware: Middleware<unknown, RootState> = |
|
({ dispatch }) => |
|
(next) => |
|
(action: AnyAction & { skipAlert?: boolean; skipNotFound?: boolean }) => { |
|
if (action.type && !action.skipAlert) { |
|
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g'); |
|
|
|
if (typeof action.type === 'string' && action.type.match(isFail)) { |
|
dispatch(showAlertForError(action.error, action.skipNotFound)); |
|
} |
|
} |
|
|
|
return next(action); |
|
};
|
|
|