Refactor: 라우팅 시 즉각적인 loading 피드백, lint 수정, Footer를 layout으로 #675
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.
💡 왜 PR을 올렸나요?
💁 무엇이 어떻게 바뀌나요?
Tabs 컴포넌트 코드 스플리팅 제거
코드 스플리팅을 통해 초기 로딩 속도를 조금 상승시킬 수 있었지만 탭 전환시 필요한 모듈을 다운로드하는 속도가 느려 오히려 느려진듯한 경험이 되었습니다. 그래서 불필요하다고 판단해 제거했습니다.
a5cde02
useModal, useToast import error
nextjs 에서 useModal, useToast의 경로를 정확하게 인식하지 못해서 index 파일을 제거하고 임시로 import 구문들을 수정해 두었습니다.
c29a13e
CommunityArticle 컴포넌트 통합
커뮤니티 페이지의 카테고리마다 불필요하게 중복되던 컴포넌트를 하나로 합쳤습니다.
765ac3d
layout으로 Footer를 이동
페이지 전환 시 Footer가 깜빡이는 현상을 제거하기 위해 (main)라우트 하위 layout으로 Footer를 이동시켜 공유되는 컴포넌트로 만들었습니다.
또 페이지 라우팅 시 서버에서 페이지를 만드는 동안 유저는 멈춰있는 화면을 그대로 보게 되는데 유저에게 동작하고 있음을 즉각적으로 피드백 하기 위해서 loading.tsx를 적용했습니다.
https://nextjs.org/docs/app/building-your-application/routing/loading-ui-and-streaming
6cbf1e2
폴더 구조 변경
detail 페이지에 footer가 보이지 않도록 구조를 변경했습니다.
b13c314
자잘한 lint 경고 사항을 수정했습니다.
97d7c31
💬 리뷰어분들께