Article

Working With React Idioms

By Pluralsight    |    April 29, 2016

JavaScript is a dynamic and extremely flexible language. While Python, for example, says, “There should be one — and preferably only one — obvious way to do things,” JavaScript allows us to express one idea in many different ways. React is no different.

Today, we’ll look at two features covered in our new React course, Powering Up With React, and see different ways we can write those features.

Creating React Components

The very first thing we learn in React is how to create a component — the most common way to do that is using the class syntax, like this:

A JavaScript class inheriting from React.Component has access to a few different things, including the state object, this.props, and lifecycle methods. Not all components we write will need these things, though, and some may even use nothing more than a few props. Stateless function components are those that don’t rely on state changes and can be written using pure JavaScript functions — here’s what they look like:

As you can see in the previous example, Greeting is a function that takes one argument — the props object. We can use the props object to read arguments passed to the Greeting component, and this component can be used just like any other React component, like on the following example:

The official React documentation recommends using this pattern as much as possible. According to them, “In the future we’ll also be able to make performance optimizations specific to these components by avoiding unnecessary checks and memory allocations.” So if we don’t need anything other than props, we should favor creating components with stateless function components instead of JavaScript classes.

Exporting React Components

The simplest way to run a React application is by transpiling ES2015 and JSX code on the fly — this saves you time because it lets you avoid setting up a build system. While this is the strategy we used in Powering Up With React, you would most likely use a build system in a real-world scenario.

There are many reasons to use a build system in JavaScript applications, but the main one is that build systems allow React apps to run faster. (Tip: Check out our Watch Us Build screencast series on React, where Powering Up With React Course Instructor Sergio Cruz and I take a deeper dive into this subject.)

Another benefit of build systems is the ability to use ES2015 features that browsers have not yet implemented — one such feature is the module system. Separating each component into its own module makes it easier to understand the codebase and avoids conflicts when our team grows and multiple people have to edit files at the same time.

Here’s an example of a React component inside its own module:

The class part should be familiar, and on the last line, we export this class so other modules can import this module and invoke the component, like so:

When working with stateless function components, the syntax for exporting a module is the same:

And we can import it and use it from another module just like before:

 

The JavaScript module system is very powerful and can do much more than this, but you will typically find that most real-world React applications export individual components as illustrated in this example.

These are just two React and ES2015 features for you to look into further as you learn the basics of React — which you can get a headstart on now by playing Powering Up With React.

About the author

Pluralsight is the technology skills platform. We enable individuals and teams to grow their skills, accelerate their careers and create the future.