PromucFlow_constructor/app/client/src/sagas/ActionSagas.ts

214 lines
6.2 KiB
TypeScript
Raw Normal View History

2019-10-21 15:12:45 +00:00
import {
ReduxAction,
ReduxActionErrorTypes,
ReduxActionTypes,
} from "../constants/ReduxActionConstants";
import { Intent } from "@blueprintjs/core";
import {
all,
call,
select,
put,
takeEvery,
takeLatest,
} from "redux-saga/effects";
2019-10-21 15:12:45 +00:00
import { ActionPayload, PageAction } from "../constants/ActionConstants";
import ActionAPI, {
2019-11-11 11:42:52 +00:00
ActionApiResponse,
2019-10-21 15:12:45 +00:00
ActionCreateUpdateResponse,
ExecuteActionRequest,
RestAction,
2019-11-12 07:57:12 +00:00
ActionApiResponse,
2019-10-21 15:12:45 +00:00
} from "../api/ActionAPI";
2019-11-06 06:35:15 +00:00
import { AppState, DataTree } from "../reducers";
2019-10-21 15:12:45 +00:00
import _ from "lodash";
import { mapToPropList } from "../utils/AppsmithUtils";
2019-11-05 05:09:50 +00:00
import AppToaster from "../components/editorComponents/ToastComponent";
2019-10-21 15:12:45 +00:00
import { GenericApiResponse } from "../api/ApiResponses";
import {
createActionSuccess,
deleteActionSuccess,
updateActionSuccess,
} from "../actions/actionActions";
import { API_EDITOR_ID_URL, API_EDITOR_URL } from "../constants/routes";
2019-11-06 06:35:15 +00:00
import { getDynamicBoundValue } from "../utils/DynamicBindingUtils";
import history from "../utils/history";
2019-11-08 11:02:00 +00:00
import { createUpdateBindingsMap } from "../actions/bindingActions";
2019-10-21 15:12:45 +00:00
2019-11-06 06:35:15 +00:00
const getDataTree = (state: AppState): DataTree => {
2019-10-21 15:12:45 +00:00
return state.entities;
};
2019-11-05 05:09:50 +00:00
const getAction = (
state: AppState,
actionId: string,
): RestAction | undefined => {
return _.find(state.entities.actions.data, { id: actionId });
2019-10-21 15:12:45 +00:00
};
2019-11-06 06:35:15 +00:00
export function* evaluateJSONPathSaga(path: string): any {
2019-10-21 15:12:45 +00:00
const dataTree = yield select(getDataTree);
2019-11-06 06:35:15 +00:00
return getDynamicBoundValue(dataTree, path);
2019-10-21 15:12:45 +00:00
}
2019-11-05 05:09:50 +00:00
export function* executeAPIQueryActionSaga(apiAction: { actionId: string }) {
2019-10-21 15:12:45 +00:00
const api: PageAction = yield select(getAction, apiAction.actionId);
const executeActionRequest: ExecuteActionRequest = {
actionId: apiAction.actionId,
};
if (!_.isNil(api.jsonPathKeys)) {
2019-11-05 05:09:50 +00:00
const values: any = _.flatten(
yield all(
api.jsonPathKeys.map((jsonPath: string) => {
return call(evaluateJSONPathSaga, jsonPath);
}),
),
2019-10-21 15:12:45 +00:00
);
2019-11-05 05:09:50 +00:00
const dynamicBindings: Record<string, string> = {};
api.jsonPathKeys.forEach((key, i) => {
dynamicBindings[key] = values[i];
});
executeActionRequest.params = mapToPropList(dynamicBindings);
2019-10-21 15:12:45 +00:00
}
2019-11-08 11:02:00 +00:00
const response: ActionApiResponse = yield ActionAPI.executeAction(
executeActionRequest,
);
2019-11-06 06:35:15 +00:00
let payload = response;
if (response.responseMeta && response.responseMeta.error) {
payload = {
body: response.responseMeta.error,
statusCode: response.responseMeta.error.code,
...response,
};
if (apiAction.onError) {
2019-11-12 07:57:12 +00:00
yield put({
type: ReduxActionTypes.EXECUTE_ACTION,
payload: apiAction.onError,
});
}
2019-11-12 07:57:12 +00:00
yield put({
type: ReduxActionTypes.EXECUTE_ACTION_ERROR,
payload: { [apiAction.actionId]: payload },
});
} else {
if (apiAction.onSuccess) {
2019-11-12 07:57:12 +00:00
yield put({
type: ReduxActionTypes.EXECUTE_ACTION,
payload: apiAction.onSuccess,
});
}
2019-11-12 07:57:12 +00:00
yield put({
type: ReduxActionTypes.EXECUTE_ACTION_SUCCESS,
payload: { [apiAction.actionId]: payload },
});
2019-11-06 06:35:15 +00:00
}
return response;
2019-10-21 15:12:45 +00:00
}
// TODO(satbir): Refact this to not make this recursive.
export function* executeActionSaga(actionPayloads: ActionPayload[]): any {
yield all(
_.map(actionPayloads, (actionPayload: ActionPayload) => {
switch (actionPayload.actionType) {
case "API":
return call(executeAPIQueryActionSaga, actionPayload);
case "QUERY":
return call(executeAPIQueryActionSaga, actionPayload);
default:
return undefined;
}
}),
);
}
export function* executeReduxActionSaga(action: ReduxAction<ActionPayload[]>) {
2019-10-21 15:12:45 +00:00
if (!_.isNil(action.payload)) {
yield call(executeActionSaga, action.payload);
2019-10-21 15:12:45 +00:00
}
}
export function* createActionSaga(actionPayload: ReduxAction<RestAction>) {
const response: ActionCreateUpdateResponse = yield ActionAPI.createAPI(
actionPayload.payload,
);
if (response.responseMeta.success) {
AppToaster.show({
message: `${actionPayload.payload.name} Action created`,
intent: Intent.SUCCESS,
});
yield put(createActionSuccess(response.data));
2019-11-08 11:02:00 +00:00
yield put(createUpdateBindingsMap());
history.push(API_EDITOR_ID_URL(response.data.id));
2019-10-21 15:12:45 +00:00
}
}
export function* fetchActionsSaga() {
const response: GenericApiResponse<
RestAction[]
> = yield ActionAPI.fetchActions();
if (response.responseMeta.success) {
yield put({
type: ReduxActionTypes.FETCH_ACTIONS_SUCCESS,
payload: response.data,
});
} else {
yield put({
type: ReduxActionErrorTypes.FETCH_ACTIONS_ERROR,
payload: response.responseMeta.status,
});
}
}
export function* updateActionSaga(
actionPayload: ReduxAction<{ data: RestAction }>,
) {
const response: GenericApiResponse<RestAction> = yield ActionAPI.updateAPI(
2019-11-06 06:35:15 +00:00
actionPayload.payload.data,
2019-10-21 15:12:45 +00:00
);
if (response.responseMeta.success) {
AppToaster.show({
message: `${actionPayload.payload.data.name} Action updated`,
intent: Intent.SUCCESS,
});
yield put(updateActionSuccess({ data: response.data }));
2019-11-08 11:02:00 +00:00
yield put(createUpdateBindingsMap());
2019-10-21 15:12:45 +00:00
} else {
AppToaster.show({
message: "Error occurred when updating action",
intent: Intent.DANGER,
});
}
}
export function* deleteActionSaga(actionPayload: ReduxAction<{ id: string }>) {
const id = actionPayload.payload.id;
const response: GenericApiResponse<RestAction> = yield ActionAPI.deleteAction(
id,
);
if (response.responseMeta.success) {
AppToaster.show({
message: `${response.data.name} Action deleted`,
intent: Intent.SUCCESS,
});
yield put(deleteActionSuccess({ id }));
2019-11-08 11:02:00 +00:00
yield put(createUpdateBindingsMap());
history.push(API_EDITOR_URL);
2019-10-21 15:12:45 +00:00
} else {
AppToaster.show({
message: "Error occurred when deleting action",
intent: Intent.DANGER,
});
}
}
export function* watchActionSagas() {
yield all([
takeEvery(ReduxActionTypes.FETCH_ACTIONS_INIT, fetchActionsSaga),
takeLatest(ReduxActionTypes.EXECUTE_ACTION, executeReduxActionSaga),
takeLatest(ReduxActionTypes.CREATE_ACTION_INIT, createActionSaga),
takeLatest(ReduxActionTypes.UPDATE_ACTION_INIT, updateActionSaga),
takeLatest(ReduxActionTypes.DELETE_ACTION_INIT, deleteActionSaga),
2019-10-21 15:12:45 +00:00
]);
}