page_id | series | permalink | title | description | hero_image | imageUrl | dayDir | day | introBannerUrl | date | includeFile |
---|---|---|---|---|---|---|---|---|---|---|---|
30-days-of-react/day-4 |
30-days-of-react |
day-4 |
Complex Components |
Awesome, we've built our first component. Now let's get a bit fancier and start building a more complex interface. |
/assets/images/series/30-days-of-react/headings/4.jpg |
/assets/images/series/30-days-of-react/headings/4.jpg |
04 |
4 |
/assets/images/series/30-days-of-react/headings/4_wide.jpg |
Fri Oct 07 2016 21:29:42 GMT-0700 (PDT) |
./../_params.yaml |
In the previous section of 30 Days of React, we started building our first React component. In this section, we'll continue our work with our App
component and start building a more complex UI.
A common web element we might see is a user timeline. For instance, we might have an application that shows a history of events happening such as applications like Facebook and Twitter.
We could build this entire UI in a single component. However, building an entire application in a single component is not a great idea as it can grow huge, complex, and difficult to test.
{lang=html,crop-query=.Timeline} <<
Rather than build this in a single component, let's break it down into multiple components.
Looking at this component, there are 2 separate parts to the larger component as a whole:
- The title bar
- The content
We can chop up the content part of the component into individual places of concern. There are 3 different item components inside the content part.
If we wanted to go one step further, we could even break down the title bar into 3 component parts, the menu button, the title, and the search icon. We could dive even further into each one of those if we needed to.
Deciding how deep to split your components is more of an art than a science.
In any case, it's usually a good idea to start looking at applications using the idea of components. By breaking our app down into components it becomes easier to test and easier to keep track of what functionality goes where.
To build our notifications app, let's start by building the container to hold the entire app. Our container is simply going to be a "wrapper" for the other two components.
None of these components will require special functionality (yet), so they will look similar to our HelloWorld
component in that it's just a component with a single render function.
Let's build a wrapper component we'll call App
that might look similar to this:
{lang=javascript,crop-query=.App} <<
Notice that we use the attribute called
className
in React instead of the HTML version ofclass
. Remember that we're not writing to the DOM directly and thus not writing HTML, but JSX (which is just JavaScript).The reason we use
className
is becauseclass
is a reserved word in JavaScript.
When a component is nested inside another component, it's called a child component. A component can have multiple children components. The component that uses a child component is then called it's parent component.
With the wrapper component defined, we can build our title
and content
components by, essentially, grabbing the source from our original design and putting the source file into each component.
For instance, the header component looks like this, with a container element <div className="header">
, the menu icon, a title, and the search bar:
{lang=javascript,crop-query=.Header} <<
And finally, we can write the Content
component with timeline items. Each timeline item is wrapped in a single component, has an avatar associated with it, a timestamp, and some text.
{lang=javascript,crop-query=.Content} <<
In order to write a comment in a React component, we have to place it in the brackets as a multi-line comment in JavaScript.
Now that we have our two children components, we can set the Header
and the Content
components to be children of the App
component. Our App
component can then use these components as if they are HTML elements built-in to the browser. Our new App
component, with a header and content now looks like:
{lang=javascript,crop-query=.App} <<
With this knowledge, we now have the ability to write multiple components and we can start to build more complex applications.
However, you may notice that this app does not have any user interaction nor custom data. In fact, as it stands right now our React application isn't that much easier to build than straight, no-frills HTML.
In the next section, we'll look how to make our component more dynamic and become data-driven with React.