70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import { takeLatest, put, all, select } from "redux-saga/effects";
|
|
import {
|
|
ReduxActionTypes,
|
|
ReduxActionErrorTypes,
|
|
ReduxAction,
|
|
} from "constants/ReduxActionConstants";
|
|
import { validateResponse } from "sagas/ErrorSagas";
|
|
import CurlImportApi, { CurlImportRequest } from "api/ImportApi";
|
|
import { ApiResponse } from "api/ApiResponses";
|
|
import AnalyticsUtil from "utils/AnalyticsUtil";
|
|
import { createMessage, CURL_IMPORT_SUCCESS } from "constants/messages";
|
|
import { getCurrentApplicationId } from "selectors/editorSelectors";
|
|
import { getCurrentOrgId } from "selectors/organizationSelectors";
|
|
import transformCurlImport from "transformers/CurlImportTransformer";
|
|
import { API_EDITOR_ID_URL } from "constants/routes";
|
|
import history from "utils/history";
|
|
import { Toaster } from "components/ads/Toast";
|
|
import { Variant } from "components/ads/common";
|
|
import { CURL } from "constants/AppsmithActionConstants/ActionConstants";
|
|
|
|
export function* curlImportSaga(action: ReduxAction<CurlImportRequest>) {
|
|
const { name, pageId, type } = action.payload;
|
|
let { curl } = action.payload;
|
|
try {
|
|
curl = transformCurlImport(curl);
|
|
const organizationId = yield select(getCurrentOrgId);
|
|
const request: CurlImportRequest = {
|
|
type,
|
|
pageId,
|
|
name,
|
|
curl,
|
|
organizationId,
|
|
};
|
|
|
|
const response: ApiResponse = yield CurlImportApi.curlImport(request);
|
|
const isValidResponse = yield validateResponse(response);
|
|
const applicationId = yield select(getCurrentApplicationId);
|
|
|
|
if (isValidResponse) {
|
|
AnalyticsUtil.logEvent("IMPORT_API", {
|
|
importSource: CURL,
|
|
});
|
|
|
|
Toaster.show({
|
|
text: createMessage(CURL_IMPORT_SUCCESS),
|
|
variant: Variant.success,
|
|
});
|
|
yield put({
|
|
type: ReduxActionTypes.SUBMIT_CURL_FORM_SUCCESS,
|
|
payload: response.data,
|
|
});
|
|
|
|
history.push(API_EDITOR_ID_URL(applicationId, pageId, response.data.id));
|
|
}
|
|
} catch (error) {
|
|
yield put({
|
|
type: ReduxActionErrorTypes.SUBMIT_CURL_FORM_ERROR,
|
|
payload: {
|
|
error,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export default function* curlImportSagas() {
|
|
yield all([
|
|
takeLatest(ReduxActionTypes.SUBMIT_CURL_FORM_INIT, curlImportSaga),
|
|
]);
|
|
}
|