mirror of https://github.com/mastodon/mastodon
parent
aea151a0de
commit
f88b8ce757
@ -0,0 +1,31 @@
|
|||||||
|
import { showNotification } from '../actions/notifications';
|
||||||
|
|
||||||
|
const defaultFailSuffix = 'FAIL';
|
||||||
|
|
||||||
|
export default function errorsMiddleware() {
|
||||||
|
return ({ dispatch }) => next => action => {
|
||||||
|
if (action.type) {
|
||||||
|
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g');
|
||||||
|
|
||||||
|
if (action.type.match(isFail)) {
|
||||||
|
if (action.error.response) {
|
||||||
|
const { data, status, statusText } = action.error.response;
|
||||||
|
|
||||||
|
let message = statusText;
|
||||||
|
let title = `${status}`;
|
||||||
|
|
||||||
|
if (data.error) {
|
||||||
|
message = data.error;
|
||||||
|
}
|
||||||
|
|
||||||
|
dispatch(showNotification(title, message));
|
||||||
|
} else {
|
||||||
|
console.error(action.error);
|
||||||
|
dispatch(showNotification('Oops!', 'An unexpected error occurred. Inspect the console for more details'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return next(action);
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in New Issue