JavaScript FrameworksReact

Refactoring a Nav Component in React

In this video, we’re going to refactor a Nav component we created in a separate video. We will store the nav menu in the state object in the parent component, and pass it down to the child component to render the data. We’ll use a map() to iterate through the nav data object (JSON-like format) and then use conditional rendering to render the nav to the browser (view).

Here is the video showing how I go over the refactoring process and source code are listed below.

Source code for our NavData (JSON-like format).

JavaScript

The parent component manages the state of these data and passes the data down to the child component to render them.

JSX

The child component is refactored and two additional child components are created.

JavaScript

On Line 42 of the Nav component, notice how the navData that was passed down from the parent App component is also passed down to the child NavMenu component of the Nav component.

The output of our app.

Verified by MonsterInsights