-
Notifications
You must be signed in to change notification settings - Fork 0
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
[feat, fix, refactor] 선착순 안내 경품 섹션 추가, 각종 버그 수정 #87
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…someOrange-FE into feature/13-fcfs
-[fix] 모달을 띄울 때 모달 뒷배경의 레이아웃이 틀어지는 버그 수정
This was
linked to
issues
Aug 11, 2024
Closed
darkdulgi
approved these changes
Aug 12, 2024
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.
고생하셨습니다!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#️⃣ 연관 이슈
📝 작업 내용
원인은 드래그 시 인터랙션 설명이 선택되고, 다시 드래그를 하면 텍스트를 끌려는 브라우저 동작을 수행하려 하기 때문이었습니다. 드래그 도중에는 텍스트가 선택되지 않도록 수정했습니다.
participated가 401 에러를 반환해도, 정상적으로 카드 게임을 할 수는 있습니다. 단, 이 경우는 로그인 요청이 뜨겠지요.
또한, 이벤트가 404 에러를 반환해도 오프라인 폴백 모드로 카드 게임이 전환됩니다.
정확히는, 인터랙션을 포함한 모든 렌더링의 성능을 심각하게 저해하고 있던 backdrop을 제거했고, 미리 블러처리된 10kb 가량의 대체 이미지를 띄우도록 했습니다. 이렇게 하면 심각하게 GPU를 잡아먹던 backdrop이 제거되면서 모든 인터랙션의 성능이 향상됩니다.
모달을 열거나 닫는 동작을 수행할 시, 모달이 하나라도 열려 있을 때 본문의 스크롤을 방지시키고, 1개에서 0개로 전환할 때 본문의 스크롤을 푸는 동작을 추가하도록 하여 버그를 수정했습니다.
💬 리뷰 요구사항
현재 선착순 이벤트, 메인 섹션, 인터랙션 섹션에서 "서버 시간"이라는 상태를 공통적으로 요구하고 있습니다. 이에 선착순 이벤트에 정의되어 있던 서버시간 및 이벤트 상태 로직을 fcfs 종속이 아닌 별도의 기능으로 판정하여, 별도의 기능으로 분리하는 것을 고려하고 있습니다.
다만, "서버시간"이라는 상태가 서버에 종속되어 있고, 별개의 상태로 분리한다면 use를 2번 써야 하는데, 이러면 서버시간 받아온 뒤 또 폴백이 작동해서 네트워크 워터폴이 일어난다는 문제가 있습니다. (use로 서버 데이터 가져오는 건 무조건 순차적으로 수행됨)