-
Notifications
You must be signed in to change notification settings - Fork 2
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: quiz loading + intro #286
Conversation
- api 연동은 아직 구현 안되어있습니다
…t-quiz # Conflicts: # src/app/(routes)/quiz/[id]/page.tsx # src/app/(routes)/quiz/page.tsx # src/requests/quiz/index.tsx
…t-quiz # Conflicts: # src/app/(routes)/quiz/[id]/page.tsx
f771f5c
to
28122e6
Compare
…t-quiz # Conflicts: # src/requests/index.ts
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.
LGTM!!
searchParams: { | ||
tab?: 'document-content' | 'quiz' | ||
} | ||
} | ||
|
||
const DocumentDetailPage = ({ searchParams }: Props) => { | ||
const DocumentDetailPage = async ({ params, searchParams }: Props) => { | ||
const id = params.id | ||
const tab = searchParams.tab ?? 'document-content' | ||
const activeTab = ['document-content', 'quiz'].includes(tab) ? tab : 'document-content' |
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.
이 방식은 너무 좋지만 탭이 바뀔 때 해당 url이 브라우저 history에 남지 않도록 하면 좋을 것 같아요!
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.
이 방식은 너무 좋지만 탭이 바뀔 때 해당 url이 브라우저 history에 남지 않도록 하면 좋을 것 같아요!
오 그렇네요! router.replace()를 사용하는 쪽으로 코드를 수정하려고 합니다ㅎㅎ
…t-quiz # Conflicts: # src/requests/collection/index.ts # src/shared/configs/endpoint.ts # src/types/collection.d.ts
* fix: quiz - 변경된 사항들 반영해 코드 수정 * feat: 오답 터뜨리기 ui / interaction 구현 - api 연동은 아직 구현 안되어있습니다 * feat: 다음 작업 주석처리 * feat: 오답 터뜨리기 접근 시 로딩 추가 * fix: css 수정 * fix: 애니메이션 수정 * refactor: 코드리뷰 반영 + bombPositions 컨벤션 통일 * feat: quiz loading + intro * fix: "use client" 추가 * fix: client * fix: debugging * fix: debugging + refactoring * fix: build error * fix: build error * fix: format error * fix: api 변경 * fix: api 변경 * fix: build error * fix: build error * fix: build error
개요
퀴즈 도입 부분 1차 구현해봤습니다 (보완 필요)지금 코드는 레이아웃 컴포넌트에서 useRef를 사용하는 식으로 작성되어있는데 이 부분은 수정할 예정입니다
수정 계획은 인트로 처리까지 별도 클라이언트 컴포넌트를 만들어서 페이지에서 import해서 사용하려고 합니다!
(수정)
api 변동 있을 예정
[ 현재 동작하는 기능 ]
세부 내용
관련 링크