-
Notifications
You must be signed in to change notification settings - Fork 4
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
[BUG] formData 훅 리팩토링하며 이름 미적용된 부분이 있어 오류발생 #844
Conversation
- git 이 대소문자 변화를 인지하지 못해 오류 발생
- 레이아웃을 수정해야 하는데 라이브러리로 배포된 부분이라 임시로 폼 태그 스타일을 수정 - 레이아웃 좌우 마진(10px) + 내용물(100%) 라 좌우드래그 발생 - 상위 폼태그에서 width: 100% - 20px 설정
- 한글의 경우 조합문자라서 발생하는 문제라고 함. - event.nativeEvent.isComposing를 통해 조합이 끝났는지 확인하여 이벤트 발생
- textAra padding때문에 잘리는 문제라고 판단 - google 의견보내기 참고하여 래퍼로 감싸 마진을 설정 태그를 생성 - 이로 인한 focus시 border가 어긋나보여 reset에 outline: 0 포함시킴
- z-index 재정의
- 검색해서 들어간 경우 "검색"으로 표시 - 상세페이지에서도 목록상태를 유지하기 위해 context에 정보 추가 - 홈페이지에 들어갈때 url을 확인해서 전역 목록 상태를 업데이트
- 신고처리 당한 내역 get - 세부공지 get
- 에러바운더리에서 에러가 reset되지 않아 문제 발생 - key를 주어 에러바운더리 reset시키기
⚡️ Lighthouse report!
|
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.
저는 상세 페이지에서 옆에 어떤 종류의 게시글을 보고 있는지에 대해서 발견하지 못했는데요 수아 대단해요!
점점 더 고도화되는 것을 느끼고 있어요 👍👍👍
- 궁금한 점
댓글이 2번 작성되는 경우의 경우에는 어떻게 해야 재현할 수 있나요?
<S.TextArea | ||
aria-label={isEdit ? '댓글 수정' : '댓글 작성'} | ||
value={content} | ||
aria-placeholder="댓글을 입력해주세요. 타인의 권리를 침해하거나 도배성/광고성/음란성 내용을 포함하는 경우, 댓글의 운영 원칙 및 관련 법률에 의하여 제재를 받을 수 있습니다." |
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.
aria-placeholder는 placeholder가 있으면 없어도 되지 않나요?
retry: (failCount, error) => { | ||
const fetchError = error as Error; | ||
const status = JSON.parse(fetchError.message).status; | ||
if (status === 404) { | ||
return false; | ||
} | ||
return failCount <= 3; | ||
}, |
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.
👍👍👍
fe-리뷰완 |
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.
ㅡ 수 ㅡ
🔥 연관 이슈
close: #843: [BUG] formData 훅 리팩토링하며 이름 미적용된 부분이 있어 오류발생
close: #836: [BUG] 글쓰기 화면 폴드에서 사이드가 잘리지 않게 조치
📝 작업 요약
⏰ 소요 시간
1일
🔎 작업 상세 설명
깃에서 파일명 대소문자 변경이 인식되지 않아 발생하는 문제 해결
글쓰기 페이지가 폭좁은 디스플레이에서는 잘리는 오류 해결
일반 에러바운더리에도 404 인 경우 다른 메세지가 나오도록 처리
공지사항, 신고처리 상세정보에도 404인 경우 재요청 하지 않도록 처리
사이드바에 위치한 현 게시물 목록 정보가 정확하지 않은 문제점 해결
댓글 작성 시 2개 입력되는 오류 해결
메뉴가 헤더보다 위에 위치한 오류 해결
게시물이 404인 경우 다른 게시물로 들어가도 refetch를 하지 않는 오류 해결
메인 게시물 목록 페이지 좌우 마진 없애기 및 배너 중앙 정렬