Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GGFE-207] 확성기 등록 삭제 조회 api 연결 #976

Merged
merged 13 commits into from
Sep 6, 2023

Conversation

yoouyeon
Copy link
Member

@yoouyeon yoouyeon commented Sep 5, 2023

📌 개요

  • 확성기 등록, 삭제, 조회 api 연결했습니다.

💻 작업사항

이 브랜치에는 아직 상점 조회 api가 연결되어 있지 않기 때문에 확성기 구매는 GGFE-215 브랜치에서 구매하시는 것 추천드립니다. ^_^
최대한 에러 코드에 맞게 alert를 보이도록 했는데 문구가 어색하면 말씀해주세요!

  • 확성기 등록
    • 사용전 상태인 아이템을 눌러서 사용할 수 있습니다.
  • 확성기 조회
    • 대기중, 사용중 아이템을 누르면 모달에 등록했던 확성기 내용이 표시됩니다.
  • 확성기 삭제
    • 대기중, 사용중 아이템을 눌러서 등록한 확성기를 삭제할 수 있습니다.
    • 삭제한 확성기는 바로 보관함에서 사라집니다.

✅ 변경로직

@yoouyeon yoouyeon self-assigned this Sep 5, 2023
.catch(() => {
// TODO : 에러 코드 정의 필요함.
alert('확성기 삭제에 실패했습니다.');
.catch((error: unknown) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

에러 나고 resetModal이 빠져서 계속 모달이 떠있네요! 그 부분만 추가하면 좋을 것 같습니다!

Copy link
Member

@hyobb109 hyobb109 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확성기 등록, 삭제 모두 다 잘 되는 것 확인했습니다! 에러코드 타입 지정해서 처리하는 방식도 배워갑니다👍 코멘트 남긴 부분만 수정하면 될 것 같아요! 고생하셨습니다👍👍

Copy link
Contributor

@PHJoon PHJoon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확성기 삭제는 잘 작동하네요! 등록은 잘 되는데 내일 목록에 잘 올라가는지만 확인해보면 될 듯 합니다! 고생하셨습니다!! 👍

Comment on lines +41 to +45
const errorMessages: Record<errorCodeType, string> = {
ME200: '확성기를 찾을 수 없습니다.',
RC500: '삭제할 수 없는 확성기입니다.',
RC200: '삭제할 수 없는 확성기입니다.',
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Record 배워갑니다! 👍

Comment on lines +72 to +77
if (isAxiosError<errorPayload>(error) && error.response) {
const { code } = error.response.data;
if (errorCode.includes(code) && code !== 'RC100')
alert(errorMessages[code]);
else setError('JY06');
} else setError('JY06');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

에러가 axios에서 발생한 건지 확인할 수 있는 isAxiosError 란 게 있었군요! 배워갑니다! 👍
axios 최신 버전에서는 isAxiosError 함수를 따로 만들 필요 없이 사용해도 된다는데 저희 axios 버전 업데이트 하면 문제될까요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

음... 잘 모르겠습니다 ㅎㅎㅜ 업데이트를 할까요?? 저도 업데이트를 하고 싶었는데 해도 될지 잘 모르겠어서 안했던것이거든요..! ㅜㅜ

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

axios 업데이트는 이슈로 남겨둘게요!

@yoouyeon yoouyeon merged commit 48a074f into main Sep 6, 2023
1 check passed
@yoouyeon yoouyeon deleted the GGFE-207-확성기-등록-삭제-조회-api-연결 branch September 6, 2023 02:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants