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

[feat, fix, refactor] 선착순 안내 경품 섹션 추가, 각종 버그 수정 #87

Merged
merged 29 commits into from
Aug 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ffa027c
[feat] 로그인 상태가 변하면 로그인참여를 갱신하도록 변경
lybell-art Aug 9, 2024
2caef51
[perf] 로그인 상태 전환 후 재렌더링될 때 폴백이 띄워지지 않도록 변경
lybell-art Aug 9, 2024
ca8e43d
[fix] 서버 에러 시 오프라인 상태로 전환되지 않는 버그 수정
lybell-art Aug 9, 2024
aaf4cbc
Merge branch 'dev' of https://github.com/softeerbootcamp4th/Team6-Awe…
lybell-art Aug 9, 2024
a318aca
[fix] participated가 401 에러를 반환해도 정상 동작하게 수정
lybell-art Aug 9, 2024
3f9a378
[fix] PC 환경 - 거리 인터랙션에서 간헐적으로 인터랙션이 동작하지 않는 버그 수정
lybell-art Aug 10, 2024
ea9b03b
[refactor] isDragging 상태를 각 인터랙션의 훅이 아닌 useMountDragEvent 훅에서 관리하도록 변경
lybell-art Aug 10, 2024
686f935
[fix] 고속충전, 유니버설 아일랜드에서 간헐적으로 인터랙션이 안되던 버그 수정
lybell-art Aug 10, 2024
e4d35a9
[feat] 유니버설 아일랜드 리셋 시 스무스하게 이동하도록 변경
lybell-art Aug 10, 2024
3735170
[perf] 인터랙션 모달에서 backdrop-blur 대신 미리 블러처리한 배경을 사용하도록 변경
lybell-art Aug 10, 2024
7cc63e6
[chore] 상세설명 이미지의 경로 변경
lybell-art Aug 10, 2024
5c61167
[refactor] 고속충전쪽 매직넘버 상수화
lybell-art Aug 10, 2024
946ed4e
[refactor] 고속충전 리셋 코드 간결화
lybell-art Aug 10, 2024
7e21c92
[fix] v2l 인터랙션에서 퍼즐을 4번 이상 클릭 후 리셋 시 리셋이 안 되는 버그 수정
lybell-art Aug 10, 2024
ee9c446
[fix] 모달이 2개 이상일 시 모달을 지울 때 스크롤이 가능해지는 버그 수정 ( resolve #81 )
lybell-art Aug 10, 2024
a997a17
[feat] 선착순 이벤트 경품안내 섹션 추가
lybell-art Aug 10, 2024
a9f8afa
[design] 이벤트 상세안내 설명 그리드로 전환
lybell-art Aug 10, 2024
ac1d17f
[refactor] 인터랙션 상세 안내 섹션이 동일한 event decription layout을 참조하도록 변경
lybell-art Aug 11, 2024
46d10fb
[refactor] getEventDate 받아오는 함수 순수함수로 분리
lybell-art Aug 11, 2024
cf811c9
[refactor] swiperRef가 아니라 slideTo 함수를 정의해서 반환하도록 변경
lybell-art Aug 11, 2024
91d2ed3
[design] 인터랙션 섹션의 상하 간격 다른 컴포넌트와 동일하게 수정
lybell-art Aug 11, 2024
731e44b
[design] Button 컴포넌트 확장 (어두운 배경 전용 버튼 대응)
lybell-art Aug 11, 2024
328327a
[refactor] 인터랙션 정답 확인 페이지 버튼에 디자인 시스템 적용
lybell-art Aug 11, 2024
1a3cf92
[design] 선착수 이벤트 이미지 추가
lybell-art Aug 11, 2024
b771e63
[chore] 린트 수정 및 프리티어 적용
lybell-art Aug 11, 2024
a838cde
[feat] 이벤트 경품 현재시간에 맞춰 카운팅하는 기능 추가
lybell-art Aug 11, 2024
19e58cd
[chore] 프리티어 적용
lybell-art Aug 11, 2024
975e750
[fix] 기대평 섹션에서 알 수 없는 pending 제거
lybell-art Aug 11, 2024
5f60e08
[fix] 명세에 맞게 대기중인 상태에선 이미 이벤트에 참여했어도 대기중 상태가 뜨도록 변경
lybell-art Aug 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[fix] v2l 인터랙션에서 퍼즐을 4번 이상 클릭 후 리셋 시 리셋이 안 되는 버그 수정
lybell-art committed Aug 10, 2024
commit 7e21c92981bf0ac108f1e90513980a330081c58c
1 change: 1 addition & 0 deletions src/interactions/v2l/PuzzlePiece.jsx
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ function PuzzlePiece({ shape, onClick, fixRotate }) {
if (shape.rotate < 4) return;
setFixing(true);
fixRotate();
setTimeout( ()=>setFixing(false), 60 );
}}
>
<svg