Skip to content

Commit

Permalink
[Fix] [GGFE-236] 에러 처리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobin Cho committed Sep 9, 2023
1 parent 4e8245f commit 6e8ea21
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
10 changes: 6 additions & 4 deletions components/modal/store/purchase/BuyModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export default function BuyModal({ itemId, product, price }: PriceTag) {
};

const errorMessages: Record<errorCodeType, string> = {
IT100: '해당 아이템이 없습니다.',
IT201: '지금은 구매할 수 없는 아이템입니다.',
IT202: 'GG코인이 부족합니다.',
IT100: '해당 아이템이 없습니다 (• ᴖ •。)',
IT201: '지금은 구매할 수 없는 아이템입니다 (• ᴖ •。)',
IT202: 'GG코인이 부족합니다 (• ᴖ •。)',
IT203: '카카오 유저는 상점을 이용할 수 없습니다 (• ᴖ •。)',
UR100: 'USER NOT FOUND',
};
Expand Down Expand Up @@ -59,6 +59,8 @@ export default function BuyModal({ itemId, product, price }: PriceTag) {
} else {
setError('HB03');
}
} else {
setError('HB03');
}
}
resetModal();
Expand All @@ -76,7 +78,7 @@ export default function BuyModal({ itemId, product, price }: PriceTag) {
</div>
<div className={styles.itemPrice}>
<div>가격:</div>
<div>{price} 코인</div>
<div>{price.toLocaleString()} 코인</div>
</div>
</div>
<div className={styles.warning}>
Expand Down
12 changes: 7 additions & 5 deletions components/modal/store/purchase/GiftModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ export default function GiftModal({ itemId, product, price }: PriceTag) {
};

const errorMessages: Record<errorCodeType, string> = {
IT100: '해당 아이템이 없습니다.',
IT201: '지금은 구매할 수 없는 아이템입니다.',
IT202: 'GG코인이 부족합니다.',
IT100: '해당 아이템이 없습니다 (• ᴖ •。)',
IT201: '지금은 구매할 수 없는 아이템입니다 (• ᴖ •。)',
IT202: 'GG코인이 부족합니다 (• ᴖ •。)',
IT203: '카카오 유저는 상점을 이용할 수 없습니다 (• ᴖ •。)',
IT204: '카카오 유저에게는 선물할 수 없습니다 (• ᴖ •。)',
UR100: '선물하려는 유저가 없습니다.',
UR100: '선물하려는 유저가 없습니다 (• ᴖ •。)',
};

const onPurchase = async () => {
Expand Down Expand Up @@ -76,6 +76,8 @@ export default function GiftModal({ itemId, product, price }: PriceTag) {
} else {
setError('HB02');
}
} else {
setError('HB02');
}
}
resetModal();
Expand All @@ -93,7 +95,7 @@ export default function GiftModal({ itemId, product, price }: PriceTag) {
</div>
<div className={styles.itemPrice}>
<div>가격:</div>
<div>{price} 코인</div>
<div>{price.toLocaleString()} 코인</div>
</div>
</div>
<GiftSearchBar setGiftReqData={setGiftReqData} />
Expand Down

0 comments on commit 6e8ea21

Please sign in to comment.