-
Notifications
You must be signed in to change notification settings - Fork 4
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
[온보딩] step02 -> step03 넘어갈 때 스켈레톤 ui 적용 #483
Conversation
|
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.
고생하셨습니다!! 저와 같은 현상을 겪으셨군요ㅠㅠ 리팩토링 하면서 같이 suspense 해결책을 찾아봅시다👊👊
const OnboardingSkeletonWrapper = styled.div` | ||
gap: 11.6rem; | ||
`; | ||
|
||
const TitleWrapper = styled.div` | ||
${({ theme }) => theme.mixin.flexBox({ direction: 'column' })}; | ||
gap: 0.9rem; | ||
border-radius: 4px; | ||
`; | ||
|
||
const DetailWrapper = styled.div` | ||
margin-top: 11.6rem; | ||
`; |
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.
요 부분 스타일 파일 분리해도 될 것 같아요~!
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.
넵 분리 했습니다!!
이슈 넘버
구현 사항
Need Review
스켈레톤이라는 컴포넌트를 따로 만들고 isLoading 상태 boolean값에 따라 보여지게 만들었습니다.
suspense는 왜인지 모르겠는데 적용이 안되더라구요 ㅠ
시간 촉박 이슈로 일단 isLoading으로 처리했습니다.
추후 리팩토링 때 suspense 더 공부하고 적용시키겠습니다!
아래 영상은 로딩중 스켈레톤 ui를 보기 위해 일부러 아주 고용량 이미지 업로드를 진행한 점 참고부탁드립니다!
📸 스크린샷
2024-03-11.10.06.03.mov
Reference