부가서비스
- 링크결제 결제신청 API 연결
This commit is contained in:
@@ -1,18 +1,58 @@
|
||||
import { HeaderType } from '@/entities/common/model/types';
|
||||
import { useSetFooterMode, useSetHeaderTitle, useSetHeaderType } from '@/widgets/sub-layout/use-sub-layout';
|
||||
import { useNavigate } from '@/shared/lib/hooks/use-navigate';
|
||||
import { useLocation } from 'react-router';
|
||||
import { IMAGE_ROOT } from "@/shared/constants/common";
|
||||
import { PATHS } from '@/shared/constants/paths';
|
||||
import { LinkPaymentFormData } from '@/entities/additional-service/model/types'
|
||||
import { useExtensionLinkPayRequestMutation } from '@/entities/additional-service/api/link-payment/use-extension-link-pay-request-mutation';
|
||||
import { ExtensionLinkPayRequestParams } from '@/entities/additional-service/model/types';
|
||||
|
||||
export const LinkPaymentApplyConfirmPage = () => {
|
||||
const { navigate } = useNavigate();
|
||||
const location = useLocation();
|
||||
|
||||
const formData: LinkPaymentFormData = location.state?.formData;
|
||||
const { mutateAsync: linkPayRequest } = useExtensionLinkPayRequestMutation();
|
||||
|
||||
useSetHeaderTitle('메시지 미리보기');
|
||||
useSetHeaderType(HeaderType.LeftArrow);
|
||||
useSetFooterMode(false);
|
||||
|
||||
const onClickToConfirm = () => {
|
||||
navigate(PATHS.additionalService.linkPayment.confirmSuccess);
|
||||
if (!formData) {
|
||||
console.error('Form data is missing');
|
||||
return;
|
||||
}
|
||||
|
||||
const requestParams: ExtensionLinkPayRequestParams = {
|
||||
mid: formData.mid,
|
||||
sendMethod: formData.sendMethod,
|
||||
goodsName: formData.goodsName,
|
||||
amount: formData.amount,
|
||||
moid: formData.moid,
|
||||
paymentExpiryDate: formData.paymentExpiryDate.replace(/\./g, ''),
|
||||
buyerName: formData.buyerName,
|
||||
email: formData.email,
|
||||
phoneNumber: formData.phoneNumber,
|
||||
isIdentity: formData.isIdentity,
|
||||
identityType: formData.identityType,
|
||||
identityValue: formData.identityValue,
|
||||
language: formData.language,
|
||||
linkContentType: formData.linkContentType
|
||||
};
|
||||
|
||||
console.log("Link Payment 요청 파라미터: ", requestParams);
|
||||
|
||||
linkPayRequest(requestParams)
|
||||
.then((response) => {
|
||||
console.log("Link Payment 성공 응답: ", response);
|
||||
navigate(PATHS.additionalService.linkPayment.confirmSuccess);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error("Link Payment 실패: ", error);
|
||||
// 에러 처리 로직 추가 가능
|
||||
});
|
||||
};
|
||||
|
||||
const onClickToBack = () => {
|
||||
@@ -37,8 +77,8 @@ export const LinkPaymentApplyConfirmPage = () => {
|
||||
!${pay_url}<br/><br/>
|
||||
<b>
|
||||
가맹점 상호 : 나이스페이먼츠 주식회사<br/>
|
||||
상품명 : TEST<br/>
|
||||
금액 : 123,123원
|
||||
상품명 : {formData.goodsName}<br/>
|
||||
금액 : {formData.amount}원
|
||||
</b>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user