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

fix: 다짐메시지, 환영배너, 프로필 등록 완료 QA 반영 #1572

Merged
merged 10 commits into from
Sep 26, 2024

Conversation

simeunseo
Copy link
Member

@simeunseo simeunseo commented Sep 25, 2024

🤫 쉿, 나한테만 말해줘요. 이슈넘버

🧐 어떤 것을 변경했어요~?

다짐메시지

  • 에러메시지 위치 조정
  • 텍스트필드 포커싱 제거
  • 300자 꽉 채웠을 때 POST 안되는 이슈 -> 이건 서버 500에러가 나는 이슈여서 예준이한테 확인 부탁했습니다!
  • 모달 스크롤 제거
  • 모바일 목표 칩 상하 패딩

환영배너

  • 명예회원 배너 fixed 제거
  • CTA 호버 디자인

프로필 등록 완료

  • 카드 뒷면 로고를 빠르게 렌더링 하도록 inlineSVG로 변경

🤔 그렇다면, 어떻게 구현했어요~?

모달 자동 포커스 해제 관련

다짐메시지 모달을 열었을 때 textarea에 자동으로 focus가 되는 걸 해제해달라는 QA 요청이 있었습니다.
여기서 헤맨 과정을 공유하자면...
textarea에 아무리 autoFocus={false} 옵션을 줘도(Components 탭에서 해당 옵션이 잘 적용되어있는 것도 확인) focus해제가 되지 않는 문제가 있었습니다. 여러가지 방법을 시도하다가, useState로 '첫 포커스'인지를 관리하고 이 값을 이용해 onFocus 함수를 핸들하는 방식 (관련 커밋)으로 문제를 해결했었는데요.
너무 해키한 방식이라고 생각해서 더 알아본 결과 자동 포커스는 radix ui Dialog.Content에서 자동으로 해주는 것이었습니다.
따라서 이를 해제하기위해 Dialog.Content에 onOpenAutoFocus 옵션을 추가해야했고, 따라서 불가피하게 Dialog 공통 컴포넌트를 살짝 건드리게 되었습니다.
onOpenAutoFocus 옵션에 preventDefault()를 넘겨주어 해결했습니다. 참고자료

프로필 등록 완료 카드 로고 관련

프로필 등록 완료 카드 뒷면 로고가 느리게 뜬다는 QA내용이 있었습니다. 저도 테스트해보니 캐싱되기 전에는 이미지가 뜨기도 전에 카드가 뒤집혀버릴 때도 있더라구요.
그래서 기존에 ResizedImage로 렌더하던 로고를 InlineSVG로 변경해서 즉각적으로 렌더링이 되도록 개선했습니다.

❤️‍🔥 당신이 생각하는 PR포인트, 내겐 매력포인트.

커밋 단위로 리뷰하시는게 편하실거예요!!!

📸 스크린샷, 없으면 이것 참,, 섭섭한데요?

@simeunseo simeunseo added the 🐛 Bug 버그픽스 label Sep 25, 2024
@simeunseo simeunseo self-assigned this Sep 25, 2024
Copy link

height bot commented Sep 25, 2024

Link Height tasks by mentioning a task ID in the pull request title or commit messages, or description and comments with the keyword link (e.g. "Link T-123").

💡Tip: You can also use "Close T-X" to automatically close a task when the pull request is merged.

Copy link

github-actions bot commented Sep 25, 2024

✨✨ 스토리북으로 확인하기 ✨✨

Copy link

github-actions bot commented Sep 25, 2024

🚀 프리뷰 배포 확인하기 🚀

https://ea5a3627.sopt-internal-dev.pages.dev

Copy link
Member

@seojisoosoo seojisoosoo left a comment

Choose a reason for hiding this comment

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

넘넘 고생했어요 믕서!!🚀

@@ -34,7 +35,7 @@ const ModalComponent: FC<ModalProps> = (props) => {
<DialogPortal>
<StyledBackground zIndex={props.zIndex} asChild>
<m.div initial={{ opacity: 0 }} animate={{ opacity: 1 }} transition={{ duration: 0.2 }}>
<StyledModalContainer asChild {...restProps}>
<StyledModalContainer onOpenAutoFocus={onOpenAutoFocus} asChild {...restProps}>
Copy link
Member

Choose a reason for hiding this comment

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

원인 파악 어려웠을텐데 넘 고생했어요!!ㅜㅜ 옵셔널로 props준 거라서 공통 컴포넌트에 큰 문제는 없어보입니다!혹시 이 함수가 없는 다른 모달에도 영향이 없는지 한 번만 더 확인 부탁드려요!

Copy link
Member Author

Choose a reason for hiding this comment

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

넵! 다른 모달들 정상 동작하는 것 확인 했씁니다!

@@ -42,6 +37,133 @@ const ImageHolder = styled.div`
height: 180px;
`;

const Image = styled(ResizedImage)`
Copy link
Member

Choose a reason for hiding this comment

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

이미지 자체가 크지 않고 정적으로 제공하는 이미지라 꼭 리사이즈하지 않아도 될 것 같아요 원인 파악하기 어려웠을 텐데 넘 고생했어요!!

@simeunseo simeunseo added this pull request to the merge queue Sep 26, 2024
Merged via the queue into main with commit 90b20bb Sep 26, 2024
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 Bug 버그픽스 size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fix: 다짐메시지, 환영배너 QA 반영
2 participants