2018-04-02 22:51:02 +10:00
|
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
unexpectedTitle: { id: 'alert.unexpected.title', defaultMessage: 'Oops!' },
|
|
|
|
unexpectedMessage: { id: 'alert.unexpected.message', defaultMessage: 'An unexpected error occurred.' },
|
|
|
|
});
|
|
|
|
|
2016-11-21 05:39:18 +11:00
|
|
|
export const ALERT_SHOW = 'ALERT_SHOW';
|
|
|
|
export const ALERT_DISMISS = 'ALERT_DISMISS';
|
|
|
|
export const ALERT_CLEAR = 'ALERT_CLEAR';
|
2019-06-11 10:26:37 +10:00
|
|
|
export const ALERT_NOOP = 'ALERT_NOOP';
|
2016-11-21 05:39:18 +11:00
|
|
|
|
|
|
|
export function dismissAlert(alert) {
|
|
|
|
return {
|
|
|
|
type: ALERT_DISMISS,
|
2017-05-21 01:31:47 +10:00
|
|
|
alert,
|
2016-11-21 05:39:18 +11:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function clearAlert() {
|
|
|
|
return {
|
2017-05-21 01:31:47 +10:00
|
|
|
type: ALERT_CLEAR,
|
2016-11-21 05:39:18 +11:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-02-03 06:22:05 +11:00
|
|
|
export function showAlert(title = messages.unexpectedTitle, message = messages.unexpectedMessage) {
|
2016-11-21 05:39:18 +11:00
|
|
|
return {
|
|
|
|
type: ALERT_SHOW,
|
|
|
|
title,
|
2017-05-21 01:31:47 +10:00
|
|
|
message,
|
2016-11-21 05:39:18 +11:00
|
|
|
};
|
|
|
|
};
|
2018-04-02 22:51:02 +10:00
|
|
|
|
|
|
|
export function showAlertForError(error) {
|
|
|
|
if (error.response) {
|
|
|
|
const { data, status, statusText } = error.response;
|
|
|
|
|
2019-04-09 13:02:48 +10:00
|
|
|
if (status === 404 || status === 410) {
|
|
|
|
// Skip these errors as they are reflected in the UI
|
2019-06-11 10:26:37 +10:00
|
|
|
return { type: ALERT_NOOP };
|
2019-04-09 13:02:48 +10:00
|
|
|
}
|
|
|
|
|
2018-04-02 22:51:02 +10:00
|
|
|
let message = statusText;
|
|
|
|
let title = `${status}`;
|
|
|
|
|
|
|
|
if (data.error) {
|
|
|
|
message = data.error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return showAlert(title, message);
|
|
|
|
} else {
|
|
|
|
console.error(error);
|
2019-02-03 06:22:05 +11:00
|
|
|
return showAlert();
|
2018-04-02 22:51:02 +10:00
|
|
|
}
|
|
|
|
}
|