mastodon/app/javascript/mastodon/store/middlewares/errors.ts

36 lines
920 B
TypeScript
Raw Normal View History

2024-01-08 10:57:40 +00:00
import { isAction } from '@reduxjs/toolkit';
import type { Action, Middleware } from '@reduxjs/toolkit';
import type { RootState } from '..';
import { showAlertForError } from '../../actions/alerts';
const defaultFailSuffix = 'FAIL';
2024-01-08 10:57:40 +00:00
const isFailedAction = new RegExp(`${defaultFailSuffix}$`, 'g');
2024-01-08 10:57:40 +00:00
interface ActionWithMaybeAlertParams extends Action {
skipAlert?: boolean;
skipNotFound?: boolean;
error?: unknown;
}
function isActionWithmaybeAlertParams(
action: unknown,
): action is ActionWithMaybeAlertParams {
return isAction(action);
}
export const errorsMiddleware: Middleware<Record<string, never>, RootState> =
({ dispatch }) =>
(next) =>
2024-01-08 10:57:40 +00:00
(action) => {
if (
isActionWithmaybeAlertParams(action) &&
!action.skipAlert &&
action.type.match(isFailedAction)
) {
dispatch(showAlertForError(action.error, action.skipNotFound));
}
return next(action);
};