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] 헤더 레이아웃 작업 #14

Merged
merged 5 commits into from
Aug 13, 2024
Merged

[feat] 헤더 레이아웃 작업 #14

merged 5 commits into from
Aug 13, 2024

Conversation

wo-o29
Copy link
Member

@wo-o29 wo-o29 commented Aug 1, 2024

🎯 이슈 번호

🏁 작업 내용(필수)

  • 레이아웃 작업을 추가하였습니다.

💬 리뷰 요구 사항(선택)

  • 헤더를 유라님이 맡아주셔서 헤더 만드시면 HeaderLayout/index.tsx에 반영해주시면 될 것 같습니다!
  • 지금 디자인 상으로는 전역적으로 헤더를 사용해도 무방하긴 한데 나중에 헤더 안쓰는 페이지가 늘어나면 유지보수하기 힘들 것 같아서 레이아웃을 분리하였습니다.
// 전역적으로 헤더 사용
export default function App({ Component, pageProps }: AppPropsWithLayout) {
  return (
      <Header>
         {<Component {...pageProps} />}
      </Header>
  );
}

📢 참고 사항(선택)

import HeaderLayout from '../components/layout/HeaderLayout';
 
export default function ExamplePage() {
  return (
    // 페이지 컴포넌트
  )
}
 
ExamplePage.getLayout = function getLayout(page) {
  return <HeaderLayout>{page}</HeaderLayout>
}

@github-actions github-actions bot requested a review from yura0302 August 1, 2024 12:57
@wo-o29 wo-o29 added the ⚙ feat label Aug 1, 2024
@wo-o29 wo-o29 linked an issue Aug 1, 2024 that may be closed by this pull request
@wo-o29 wo-o29 removed the ⚙ feat label Aug 1, 2024
@github-actions github-actions bot added the ⚙️ feat 기능 추가 label Aug 1, 2024
Copy link
Contributor

@yura0302 yura0302 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다 !

@@ -8,7 +8,7 @@ function HeaderLayout({ children }: HeaderLayoutProps) {
return (
<>
<header>추후 헤더 완성되면 만들어진 헤더 사용 예정 </header>
<main>{children}</main>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

혹시 메인태그 어떤 이유로 적어두셨었나요 ?? 🧐

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

처음 의도는 어차피 본문은 시맨틱하게 main 태그로 시작한다고 생각해서 추가 하였는데, 사용하는 곳마다 css 설정이 다를 수 있을 것 같다고 생각해서 제거하였습니다!

main 태그 넣고도 그 안에서 section이나 div 태그로도 디자인할 수 있지만 불필요한 태그가 추가되어 DOM의 깊이가 깊어질 수 있을 것 같아서 사용하는 곳에서 main 태그를 추가하여 디자인하는게 좋을 것 같다고 생각했습니다🙃

Comment on lines -28 to +39
<Component {...pageProps} />
{getLayout(<Component {...pageProps} />)}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Component가 페이지 기본 구조대로 렌더링 되는것(어떤 레이아웃이든지 상관없이 페이지 컴포넌트만 렌더링) 되는 방식에서 getLayout을 통한 렌더링으로 바꿔주셨네요 !! 유지보수까지 고려한 코드 LGTM입니다 !! 👍

@wo-o29 wo-o29 merged commit f3b6e53 into develop Aug 13, 2024
2 checks passed
@wo-o29 wo-o29 deleted the feature/layout branch August 13, 2024 11:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚙️ feat 기능 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[feat] 헤더 레이아웃 작업
2 participants