KEY-IN 결제 페이지 다국어 지원 추가

KEY-IN 결제 관련 모든 페이지에 대한 다국어 지원을 추가했습니다.

변경사항:
- 목록 페이지: 페이지 타이틀 다국어화
- 결제 신청 페이지: 모든 폼 레이블, 버튼, 에러 메시지 다국어화
- 성공 페이지: 성공 메시지, 버튼 다국어화

번역 키 추가:
- 폼 레이블: merchant, productName, productPrice, buyerName, buyerEmail, buyerPhoneNumber, cardNumber, expiryDate, installmentPeriod, lumpSum, orderNumber
- 성공/실패 메시지: requestSuccess, requestFailed, requestError
- 성공 페이지: paymentRequestComplete, resultLabel, arsRequestComplete, confirm
- 기타: phoneNumberPlaceholder, fullCancel, postCancel

중복 keyIn 섹션 제거 및 통합 완료

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-03 17:04:04 +09:00
parent 42424d164a
commit 4771e43010
5 changed files with 81 additions and 37 deletions

View File

@@ -50,7 +50,7 @@ export const KeyInPaymentPage = () => {
const [maxAmount, setMaxAmount] = useState<number>();
const [emailBottomSheetOn, setEmailBottomSheetOn] = useState<boolean>(false);
useSetHeaderTitle('KEY-IN 결제');
useSetHeaderTitle(t('additionalService.keyIn.title'));
useSetHeaderType(HeaderType.LeftArrow);
useSetFooterMode(false);
useSetOnBack(() => {

View File

@@ -16,8 +16,10 @@ import { Dialog } from '@/shared/ui/dialogs/dialog';
import { useStore } from '@/shared/model/store';
import { snackBar } from '@/shared/lib';
import { NumericFormat, PatternFormat } from 'react-number-format';
import { useTranslation } from 'react-i18next';
export const KeyInPaymentRequestPage = () => {
const { t } = useTranslation();
const { navigate } = useNavigate();
const location = useLocation();
@@ -41,7 +43,7 @@ export const KeyInPaymentRequestPage = () => {
const { mutateAsync: keyInApply } = useExtensionKeyinApplyMutation();
useSetHeaderTitle('KEY-IN 결제');
useSetHeaderTitle(t('additionalService.keyIn.title'));
useSetHeaderType(HeaderType.LeftArrow);
useSetFooterMode(false);
useSetOnBack(() => {
@@ -87,25 +89,25 @@ export const KeyInPaymentRequestPage = () => {
if (rs.status && rs.data?.success) {
// 성공: 화면 유지 & 입력 내용 초기화
snackBar("KEY-IN 결제 신청을 성공하였습니다.")
snackBar(t('additionalService.keyIn.requestSuccess'))
resetForm();
} else {
// 실패: 화면 유지 & 입력 내용 유지
const errorMessage = rs.data?.resultMessage ||
rs.error?.message ||
'결제 신청에 실패했습니다.';
t('additionalService.keyIn.requestFailed');
console.log('최종 errorMessage:', errorMessage);
// HTML 태그 제거
const cleanMessage = errorMessage.replace(/<br\s*\/?>/gi, ' ').trim();
snackBar(`[실패] ${cleanMessage}`);
snackBar(`[${t('common.failed')}] ${cleanMessage}`);
}
}).catch((error) => {
console.error('결제 실패:', error);
const errorMessage = error?.response?.data?.data?.resultMessage ||
error?.response?.data?.error?.message ||
error?.message ||
'결제 요청 중 오류가 발생했습니다';
snackBar(`[실패] ${errorMessage}`);
t('additionalService.keyIn.requestError');
snackBar(`[${t('common.failed')}] ${errorMessage}`);
});
};
@@ -152,7 +154,7 @@ export const KeyInPaymentRequestPage = () => {
<div className="option-list">
<div className="billing-form gap-16">
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.merchant')} <span>*</span></div>
<div className="billing-field">
<select
value={mid}
@@ -171,7 +173,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.productName')} <span>*</span></div>
<div className="billing-field">
<input
type="text"
@@ -182,7 +184,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.productPrice')} <span>*</span></div>
<div className="billing-field">
<NumericFormat
value={amount}
@@ -198,7 +200,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.buyerName')} <span>*</span></div>
<div className="billing-field">
<input
type="text"
@@ -209,7 +211,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.buyerEmail')} <span>*</span></div>
<div className="billing-field">
<input
type="email"
@@ -221,12 +223,12 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.buyerPhoneNumber')} <span>*</span></div>
<div className="billing-field">
<input
type="tel"
value={phoneNumber}
placeholder='- 제외하고 입력'
placeholder={t('additionalService.keyIn.phoneNumberPlaceholder')}
onChange={(e: ChangeEvent<HTMLInputElement>) => {
const onlyNumbers = e.target.value.replace(/[^0-9]/g, '');
setPhoneNumber(onlyNumbers);
@@ -240,7 +242,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.cardNumber')} <span>*</span></div>
<div className="billing-field">
<PatternFormat
value={cardNo1}
@@ -284,7 +286,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label">(/)<span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.expiryDate')}<span>*</span></div>
<div className="billing-field" style={{ display: 'flex', gap: '8px', alignItems: 'center' }}>
<PatternFormat
placeholder='MM'
@@ -326,14 +328,14 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"> <span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.installmentPeriod')}<span>*</span></div>
<div className="billing-field">
<select
disabled={amount < 50000}
value={instmnt}
onChange={(e: ChangeEvent<HTMLSelectElement>) => setInstmnt(e.target.value)}
>
<option value="00"></option>
<option value="00">{t('additionalService.keyIn.lumpSum')}</option>
{/* {amount >= 50000 && (
<>
<option value="02">2개월</option>
@@ -354,7 +356,7 @@ export const KeyInPaymentRequestPage = () => {
</div>
<div className="billing-row">
<div className="billing-label"><span>*</span></div>
<div className="billing-label">{t('additionalService.keyIn.orderNumber')}<span>*</span></div>
<div className="billing-field">
<input
type="text"
@@ -370,7 +372,7 @@ export const KeyInPaymentRequestPage = () => {
className="btn-50 btn-blue flex-1"
onClick={() => onClickToRequest()}
disabled={!isFormValid()}
> </button>
>{t('additionalService.keyIn.paymentRequest')}</button>
</div>
</div>
</div>

View File

@@ -1,11 +1,13 @@
import { PATHS } from '@/shared/constants/paths';
import { useNavigate } from '@/shared/lib/hooks/use-navigate';
import { useTranslation } from 'react-i18next';
import { HeaderType } from '@/entities/common/model/types';
import {
import {
useSetHeaderType,
useSetFooterMode,
} from '@/widgets/sub-layout/use-sub-layout';
export const KeyInPaymentRequestSuccessPage = () => {
const { t } = useTranslation();
const { navigate } = useNavigate();
useSetHeaderType(HeaderType.NoHeader);
@@ -19,23 +21,23 @@ export const KeyInPaymentRequestSuccessPage = () => {
<>
<div className="success-page" >
<div className="success-body">
<div
<div
className="success-icon"
aria-hidden="true"
></div>
<h1 className="success-title">
<span>KEY-IN </span><br/>
<span> .</span>
<span>{t('additionalService.keyIn.title')}</span><br/>
<span>{t('additionalService.keyIn.paymentRequestComplete')}</span>
</h1>
<div className="success-result">
<p className="result-text"> : [0000] ARS </p>
<p className="result-text">{t('additionalService.keyIn.resultLabel')} : [0000] {t('additionalService.keyIn.arsRequestComplete')}</p>
</div>
</div>
<div className="apply-row">
<button
<button
className="btn-50 btn-blue flex-1"
onClick={ () => onClickToNavigate() }
></button>
>{t('additionalService.keyIn.confirm')}</button>
</div>
</div>
</>