From a4645d7e71bf6e56ff31efaf6d9b0f3ed0342281 Mon Sep 17 00:00:00 2001 From: Sayali Joshi Date: Mon, 7 Oct 2024 21:12:08 +0530 Subject: [PATCH] Removed console --- ui/src/pages/Migration/index.tsx | 66 +++++++++++++++----------------- 1 file changed, 31 insertions(+), 35 deletions(-) diff --git a/ui/src/pages/Migration/index.tsx b/ui/src/pages/Migration/index.tsx index d740e15f9..411bea726 100644 --- a/ui/src/pages/Migration/index.tsx +++ b/ui/src/pages/Migration/index.tsx @@ -292,47 +292,43 @@ const Migration = () => { // handle on proceed to destination stack const handleOnClickLegacyCms = async (event: MouseEvent ) => { setIsLoading(true); - if(isCompleted){ + + if (isCompleted) { event.preventDefault(); - console.log("======= isCompleted", isCompleted); - - //Update Data in backend - await updateLegacyCMSData(selectedOrganisation?.value, projectId, { - legacy_cms: newMigrationData?.legacy_cms?.selectedCms?.cms_id - }); - await updateAffixData(selectedOrganisation?.value, projectId, { affix: newMigrationData?.legacy_cms?.affix }); - await fileformatConfirmation(selectedOrganisation?.value, projectId, { - fileformat_confirmation: true - }); - - await affixConfirmation(selectedOrganisation?.value, projectId, { - affix_confirmation: true - }) - await updateFileFormatData(selectedOrganisation?.value, projectId, { - file_format: newMigrationData?.legacy_cms?.selectedCms?.allowed_file_formats[0]?.fileformat_id?.toString() , - file_path: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.localPath, - is_fileValid: newMigrationData?.legacy_cms?.uploadedFile?.isValidated, - is_localPath: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.isLocalPath, - awsDetails:{ - awsRegion: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.awsRegion, - bucketName: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.bucketName, - buketKey: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.buketKey - } - }); - const res = await updateCurrentStepData(selectedOrganisation.value, projectId); - handleStepChange(1); - if (res) { - setIsLoading(false); + //Update Data in backend + await updateLegacyCMSData(selectedOrganisation?.value, projectId, { + legacy_cms: newMigrationData?.legacy_cms?.selectedCms?.cms_id + }); + await updateAffixData(selectedOrganisation?.value, projectId, { affix: newMigrationData?.legacy_cms?.affix }); + await fileformatConfirmation(selectedOrganisation?.value, projectId, { + fileformat_confirmation: true + }); - const url = `/projects/${projectId}/migration/steps/2`; - navigate(url, { replace: true }); - } + await affixConfirmation(selectedOrganisation?.value, projectId, { + affix_confirmation: true + }); + await updateFileFormatData(selectedOrganisation?.value, projectId, { + file_format: newMigrationData?.legacy_cms?.selectedCms?.allowed_file_formats[0]?.fileformat_id?.toString() , + file_path: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.localPath, + is_fileValid: newMigrationData?.legacy_cms?.uploadedFile?.isValidated, + is_localPath: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.isLocalPath, + awsDetails:{ + awsRegion: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.awsRegion, + bucketName: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.bucketName, + buketKey: newMigrationData?.legacy_cms?.uploadedFile?.file_details?.awsData?.buketKey + } + }); + const res = await updateCurrentStepData(selectedOrganisation.value, projectId); + handleStepChange(1); + if (res) { + setIsLoading(false); + const url = `/projects/${projectId}/migration/steps/2`; + navigate(url, { replace: true }); + } } else { - console.log("inside else"); - setIsLoading(false); if (legacyCMSRef?.current) {