Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
22 lines
701 B
TypeScript
22 lines
701 B
TypeScript
import { type AnyAction, type 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);
|
|
};
|