mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
e6a7cfd12e
Port 5eeb40bdbe
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
23 lines
681 B
TypeScript
23 lines
681 B
TypeScript
import type { AnyAction, Middleware } from 'redux';
|
|
|
|
import { showAlertForError } from 'flavours/glitch/actions/alerts';
|
|
|
|
import type { RootState } from '..';
|
|
|
|
const defaultFailSuffix = 'FAIL';
|
|
|
|
export const errorsMiddleware: Middleware<Record<string, never>, 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);
|
|
};
|