[Glitch] Type Redux store and middleware
Port 6aeb162927 to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
18
app/javascript/flavours/glitch/store/middlewares/errors.ts
Normal file
18
app/javascript/flavours/glitch/store/middlewares/errors.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
};
|
||||
Reference in New Issue
Block a user