mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
96e99e2170
Port 51b83ed195
to glitch-soc
21 lines
562 B
TypeScript
21 lines
562 B
TypeScript
import { Middleware } from 'redux';
|
|
import { showAlertForError } from 'flavours/glitch/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);
|
|
};
|