-
Notifications
You must be signed in to change notification settings - Fork 8
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
The head ref may contain hidden characters: "GGFE-207-\uD655\uC131\uAE30-\uB4F1\uB85D-\uC0AD\uC81C-\uC870\uD68C-api-\uC5F0\uACB0"
Conversation
.catch(() => { | ||
// TODO : 에러 코드 정의 필요함. | ||
alert('확성기 삭제에 실패했습니다.'); | ||
.catch((error: unknown) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
에러 나고 resetModal이 빠져서 계속 모달이 떠있네요! 그 부분만 추가하면 좋을 것 같습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확성기 등록, 삭제 모두 다 잘 되는 것 확인했습니다! 에러코드 타입 지정해서 처리하는 방식도 배워갑니다👍 코멘트 남긴 부분만 수정하면 될 것 같아요! 고생하셨습니다👍👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확성기 삭제는 잘 작동하네요! 등록은 잘 되는데 내일 목록에 잘 올라가는지만 확인해보면 될 듯 합니다! 고생하셨습니다!! 👍
const errorMessages: Record<errorCodeType, string> = { | ||
ME200: '확성기를 찾을 수 없습니다.', | ||
RC500: '삭제할 수 없는 확성기입니다.', | ||
RC200: '삭제할 수 없는 확성기입니다.', | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Record 배워갑니다! 👍
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'); |
There was a problem hiding this comment.
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 버전 업데이트 하면 문제될까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
음... 잘 모르겠습니다 ㅎㅎㅜ 업데이트를 할까요?? 저도 업데이트를 하고 싶었는데 해도 될지 잘 모르겠어서 안했던것이거든요..! ㅜㅜ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
axios 업데이트는 이슈로 남겨둘게요!
📌 개요
💻 작업사항
이 브랜치에는 아직 상점 조회 api가 연결되어 있지 않기 때문에 확성기 구매는 GGFE-215 브랜치에서 구매하시는 것 추천드립니다. ^_^
최대한 에러 코드에 맞게 alert를 보이도록 했는데 문구가 어색하면 말씀해주세요!
✅ 변경로직