PromucFlow_constructor/app/client/src/sagas/ErrorSagas.tsx

75 lines
2.0 KiB
TypeScript
Raw Normal View History

2019-10-07 13:11:18 +00:00
import _ from "lodash";
import { Intent } from "@blueprintjs/core";
2019-09-27 16:05:33 +00:00
import {
ReduxActionTypes,
ReduxActionErrorTypes,
ReduxAction,
} from "../constants/ReduxActionConstants";
2019-11-05 05:09:50 +00:00
import AppToaster from "../components/editorComponents/ToastComponent";
2019-10-07 13:11:18 +00:00
import {
DEFAULT_ERROR_MESSAGE,
DEFAULT_ACTION_ERROR,
} from "../constants/errors";
2019-09-27 16:05:33 +00:00
import { ApiResponse } from "../api/ApiResponses";
import { put, takeLatest } from "redux-saga/effects";
export function* validateResponse(response: ApiResponse) {
if (response.responseMeta.success) {
return true;
} else {
yield put({
type: ReduxActionErrorTypes.API_ERROR,
payload: {
error: response.responseMeta.error,
},
});
return false;
}
}
2019-10-07 13:19:29 +00:00
type ErrorPayloadType = object | { message: string };
let ActionErrorDisplayMap: {
2019-10-07 13:19:29 +00:00
[key: string]: (error: ErrorPayloadType) => string;
} = {};
Object.keys(ReduxActionErrorTypes).forEach((type: string) => {
ActionErrorDisplayMap[type] = () =>
DEFAULT_ERROR_MESSAGE + " action: " + type;
});
ActionErrorDisplayMap = {
...ActionErrorDisplayMap,
2019-10-07 13:11:18 +00:00
[ReduxActionErrorTypes.API_ERROR]: error =>
_.get(error, "message", DEFAULT_ERROR_MESSAGE),
[ReduxActionErrorTypes.FETCH_PAGE_ERROR]: () =>
DEFAULT_ACTION_ERROR("fetching the page"),
[ReduxActionErrorTypes.SAVE_PAGE_ERROR]: () =>
DEFAULT_ACTION_ERROR("saving the page"),
};
2019-10-07 13:19:29 +00:00
export function* errorSaga(
errorAction: ReduxAction<{ error: ErrorPayloadType }>,
) {
2019-09-27 16:05:33 +00:00
// Just a pass through for now.
// Add procedures to customize errors here
2019-10-07 12:29:38 +00:00
console.log({ error: errorAction });
// Show a toast when the error occurs
const {
type,
payload: { error },
} = errorAction;
const message = ActionErrorDisplayMap[type](error);
AppToaster.show({ message, intent: Intent.DANGER });
2019-09-27 16:05:33 +00:00
yield put({
type: ReduxActionTypes.REPORT_ERROR,
payload: {
message: errorAction.payload.error,
source: errorAction.type,
},
});
}
export default function* errorSagas() {
yield takeLatest(Object.values(ReduxActionErrorTypes), errorSaga);
}