DEV Community

Franca
Franca

Posted on • Updated on

Modern React: props for Functional Components

Most websites have recurrent design elements. As a developer, it saves you time and effort to build reusable code snippets for these elements. They are called components and React is perfect for creating them.

Note: For this article, I assume that you are familiar with basic React concepts.

Level 1: A reusable component

Imagine your website has cats all over the place.🐱🐱
Let’s build a Cat component:

// Cat.js
const Cat = () => <div className="cat">🐱</div>
Enter fullscreen mode Exit fullscreen mode

Note: Inside the div we would write our cat JSX.

Let’s look at the code a little closer. There’s no class, because this is a functional component, a modern way to write React. The function is written as an array function, a longer version would be:

// Cat.js
function Cat() {
  return <div className="cat">🐱</div>
}
Enter fullscreen mode Exit fullscreen mode

We can use our component anywhere we want:

// App.js
<Cat />
Enter fullscreen mode Exit fullscreen mode

If we want to change the cat, we only have to change it once in Cat.js and it will be applied everywhere. That’s the idea of components.

Level 2: An adaptive component

Your Cats are fine. But you dream of a website full of different sorts of cats. A first idea might be to create more cat components:

const Cat = () => ...
const ShorthairCat = () => ...
const BengalCat = () => ...
const PersianCat = () => ...
Enter fullscreen mode Exit fullscreen mode

Since the cats only differ in CSS, that’s a lot of JSX repetition. And what’s about your original Cat component? Change every existing <Cat /> in something more descriptive?

The solution: React properties

As all our cats share the same JSX, we can use our Cat component and modify it a little. It would be convenient to specify which type of cat we want when using it:

// App.js
<Cat type="shorthair" />
<Cat type="persian" />
Enter fullscreen mode Exit fullscreen mode

type is a React property we defined ourselves.
It’s inside the JSX tag as would be an attribute in HTML:

<a href="#">link</a>
Enter fullscreen mode Exit fullscreen mode

The href attribute in a specifies the link’s target.
The JSX property specifies the cat’s type: I don’t just want any cat, I want the shorthair cat.

We added a property, but haven’t defined it inside the Cat component yet. As for now, React still doesn’t know what’s so special about the persian type cat.

First, we have to add an invitation for properties in our component. We’ll use JS object restructuring here to be able to specify exactly what we can use as an argument.

// Cat.js
const Cat = ({type}) => <div className="cat">🐱</div>
Enter fullscreen mode Exit fullscreen mode

We now registered that a cat type can be passed to the component.

If we want to display the shorthair cat, we can pass the property typewith the value shorthair:

// App.js
<Cat type="shorthair" />
Enter fullscreen mode Exit fullscreen mode

We registered typeas a valid property. If we log the type, we get the desired value.

// Cat.js
const Cat = ({type}) => {
  console.log(type); // shorthair
  return <div className="cat">🐱</div>
}
Enter fullscreen mode Exit fullscreen mode

Now, the fun begins. We have to add our shorthair cat’s styling. There are several possibilities to do this – a simple solution is to add a modifier class to be able to define the shorthair cat’s styling in our CSS file. In the end, our HTML result loos like this:

<!-- In the browser -->
<div class="cat cat--shorthair">🐱</div>
Enter fullscreen mode Exit fullscreen mode

Every cat has the class cat, but if a type is added we want this type to be an additional modifier class.
To be able to do this, we need to prepare the class to change according to the passed type. With JS template literals, we can add variables to strings. With the ternary operator, we can provide the fallback if no type gets passed.

// Cat.js
const Cat = ({type}) => {
  return (
    <div className={`cat ${type ? `cat--${type}` : ""}`}>
      🐱
    </div>
  );
};
Enter fullscreen mode Exit fullscreen mode

Note: I recommend the React classnames package which makes dynamic classes much more readable.

If we want to pass multiple properties, we can do this as follows:

// App.js
<Cat type="shorthair" name="Leo" />
Enter fullscreen mode Exit fullscreen mode
// Cat.js
const Cat = ({type, name}) => {
  return (
    <div className={`cat ${type ? `cat--${type}` : ""}`}>
      Cat {name} 🐱
    </div>
  );
};
Enter fullscreen mode Exit fullscreen mode

Now it’s your time to try it out. I’ve built a CodeSandbox for you to fork 👇


Linklist

React-specific

Modern JS

Top comments (0)