-
Notifications
You must be signed in to change notification settings - Fork 1
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
[Feature] 나의 스터디 페이지 UI 구축 #35
Conversation
const handleScroll = (distance: number) => { | ||
if (!containerRef.current) { | ||
return; | ||
} | ||
|
||
containerRef.current.scrollBy({ | ||
left: distance, | ||
behavior: "smooth", | ||
}); | ||
}; | ||
|
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.
P3;
왼쪽, 오른쪽으로 handleScroll
을 다른 핸들러 함수로 구현하면 더 좋을 것 같아요!
containerRef
의 scrollBy객체에 distance
길이만큼 마이너스 값을 주면 될 것 같습니당.
그리고 스크롤의 시작점 이외에는 왼쪽 캐러셀 버튼이 활성화되도록 해도 좋을 것 같아요!
apps/client/app/(afterLogin)/my-study/_components/StudyCurriculum.tsx
Outdated
Show resolved
Hide resolved
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.
수고하셨어요~!!
과제 관련 dto 가 assignment 라는 명칭으로 되어있어서 homework
랑 assignment
가 섞여서 한 단어랑 통일되면 좋을 듯 한데 어떻게 생각하시나요?! 괜찮으시다면 제 PR 쪽에서도 고쳐볼게요 ㅎ,,ㅎ
apps/client/app/(afterLogin)/my-study/_components/StudyCurriculum.tsx
Outdated
Show resolved
Hide resolved
스터디 페이지는 assignment로 반영해뒀습니다! |
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.
좋습니다 수고 많으셨어요~!!
🎉 변경 사항
나의 스터디 페이지 UI 부분 완성했습니다.
아직 api 연결 전이라 지금 올라온 api 기반으로 임시 목데이터 작성해뒀습니다. (올라오지 않은 api는 제가 임시로 만들어놨습니다.)
현재 next/image Image 컴포넌트로 모든 svg 파일들 넣어놨는데, 개발 완료한 후 한 번에 반영할 예정입니다..
🚩 관련 이슈
🙏 여기는 꼭 봐주세요!