f4045ba3d9
* Add eslint-plugin-jsx-a11y. * Fix npm script. * Adjust npm scripts so test also runs lint. * Fix existing lint errors. * Don't break on a11y issues. * Add role and tabIndex. * Add vim and Mac files to .gitignore and .dockerignore. * Handle htmlFor (partially), a that's actually a button. * Fix missing tabIndex. * Add cursor:pointer to load-more * Revert change to load_more. * Fixes based on review. * Update yarn.lock. * Don't try to install fsevents on Linux (hides warning noise).
34 lines
956 B
JavaScript
34 lines
956 B
JavaScript
import { showAlert } from '../actions/alerts';
|
|
|
|
const defaultSuccessSuffix = 'SUCCESS';
|
|
const defaultFailSuffix = 'FAIL';
|
|
|
|
export default function errorsMiddleware() {
|
|
return ({ dispatch }) => next => action => {
|
|
if (action.type && !action.skipAlert) {
|
|
const isFail = new RegExp(`${defaultFailSuffix}$`, 'g');
|
|
const isSuccess = new RegExp(`${defaultSuccessSuffix}$`, '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(showAlert(title, message));
|
|
} else {
|
|
console.error(action.error); // eslint-disable-line no-console
|
|
dispatch(showAlert('Oops!', 'An unexpected error occurred.'));
|
|
}
|
|
}
|
|
}
|
|
|
|
return next(action);
|
|
};
|
|
};
|