React 16.0–16.6 new features for every day use

Artem Sapegin
HackerNoon.com
4 min readMay 15, 2018

--

This is a short cheat sheet for developers migrating from React 15 to React 16, or from earlier 16.x versions to 16.6. It focuses on features you’ll use often.

Returning multiple elements from components with fragments

Splitting UI into small reusable components may lead to creation of unnecessary DOM elements, like when you need to return multiple elements from a component. React 16 has several options to avoid that:

Note that the short syntax may not be supported by the tools you’re using.

Returning strings and numbers from components

In React 16 components can return strings and numbers. This is useful for components that don’t need any markup, like internationalization or formatting:

Cancelling setState() to avoid rerendering

In React 15 it wasn’t possible to cancel setState() and avoid rerendering, if your next state was based on the previous state. In React 16 you could return null in setState()’s callback:

In this example calling handleChange() with the same city name as in the state won’t cause a rerender.

Avoiding prop drilling with the official context API (16.3)

Prop drilling is when you’re passing some data to a deeply nested component using a prop, so you have to add this prop to each layer of your React component tree between a component that owns the data and a component that consumes it.

That’s a lot of boilerplate code! With the context API we can access our theme props anywhere in the component tree:

Check out an example on CodeSandbox.

Updating state based on props with getDerivedStateFromProps() (16.3)

The getDerivedStateFromProps() lifecycle method is a replacement for componentWillReceiveProps(). It’s useful when you have a prop with a default value for a state property, but you want to reset the state when that prop changes. For example, a modal that has a prop that says if it’s initially open, and a state that says if a modal is open now:

The getDerivedStateFromProps() method is called when a component is created and when it receives new props, so you don’t have to convert props to state twice (on initialization and in componentWillReceiveProps()).

Rerendering function components on props change with React.memo() (16.6)

React.memo() does the same for function components as PureComponent does for class components: only rerenders the component if its props change.

Easier access to context in class components with contextType (16.6)

Class.contextType simplifies access to the React context in class components:

Other new features

React 16.x has many other useful features:

I also highly recommend Nik Graf’s course on React 16 at Egghead.

Subscribe to my newsletter: https://tinyletter.com/sapegin

--

--

Artem Sapegin
HackerNoon.com

Frontend developer, passionate photographer and owner of crazy dogs. Creator of React Styleguidist.