this post was submitted on 24 Dec 2024
5 points (85.7% liked)

WebDev

1161 readers
2 users here now

Community for all things Web Development related.

founded 2 years ago
MODERATORS
 

A couple of weeks ago I decided to put together a website in my spare time, and it went absolutely terribly.

Then I scrapped that project and started over in React JS.

Anyways, what are the pros and cons of defining the Header and Footer like so:

const Header = () => {
  return (
    <div>
      This is where I'd put my Nav Bar
    </div>
  )
}

const Footer = () => {
  return (
    <div>
      
      copyright 2024

    </div>
  )
}

const App = () => {
  return (
    <div>
      <Header />
      
         The Entire Bee Movie Script might go here for example

      <Footer />
    </div>
  )
}

Is there any issue with this sort of design versus storing the navbar and footer in a separate file and calling them as needed when pages load?

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 1 day ago

Split the file if it feels like to much code to read comfortably. Most often I have a Layout component in a single file that receives its contents as children. Header and Footer are most often their own file in my case but if they are just a few lines of code I leave them in the Layout.

[–] sloppy_diffuser 4 points 1 day ago (2 children)

No. I usually have a Layout.tsx that looks like this. Then I make App a higher-order component (hoc), so I can reuse the layout on every page by just passing in a content component.

[–] [email protected] 2 points 1 day ago (1 children)
[–] sloppy_diffuser 2 points 1 day ago

Is there any issue with this sort of design

I was answering this question. No, no issue. A HoC is just an enhancement to reuse the layout. See my self reply with more info on file splitting by single export convention. It is just for ease of navigating a repo and human-readability. Is it needed for a small project? No. My personal preference is to be consistent so I usually follow the same conventions regardless of project size.

[–] sloppy_diffuser 2 points 1 day ago (1 children)

In addition, one advantage of still splitting Header and Footer, even with a Layout, is you can make them optional props to App with what you have as the defaults so they can be overriden.

It could still be the same file, but the typical convention is one exported component per file where the filename matches the component name. This is just a style guide for recommended best practices and readability.

[–] [email protected] 2 points 1 day ago

Aight, that's enough justification for me. I'll go get to work.