Create a DOM reference using createRef in React 16.3

Nik Graf
InstructorNik Graf
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated 5 years ago

Refs allow you to imperatively modify a child outside of the typical React dataflow. With React 16.3 a new ref API was introduce that should provide the convenience of string refs with the safety of callback refs.

Instructor: [00:00] This application renders a bar chart. The bar chart isn't implemented yet, and only rendering an empty SVG element at the moment. To implement it, we want to use the charting library D3. It's a great tool but it needs access to the DOM element. To do so, we can import D3, add a class name to the SVG, and select it using D3 select inside componentDidMount.

[00:24] While this is possible, this could cause trouble for our whole application further down the road. For example, to avoid problems, we would need to ensure that this is the only class named chart used in our whole application. Not a great idea. How can we fix it?

[00:47] In the typical React data flow, props are the only way that parent components interact with the children. However, there are a few cases like hours where we need to imperatively modify a child outside of the typical data flow. React therefore provides an escape hatch with so-called refs, allowing us to modify an instance of a React component or a DOM element.

[01:12] To create a ref, we can use React.createRef in the constructor. In this case, we assign it to this.chartRef. Using ref, we can bind our chart ref to the SVG. In order to access it, we can then use this.chartRef.current. Let's log out ref to get a better understanding of what's happening here.

[01:47] First, we create the chart ref, but inside the constructor the current property is set to null. The ref is not bound yet. Since render didn't yet run, the changes haven't been committed to the DOM. Once that's done, componentDidMount run and we finally could access the ref. By the way, as an alternative, you also can instantiate the ref directly as a property of this class.

[02:15] Now that we can access the SVG, let's try a bunch of code to actually render a bar chart. I'm not going to go into detail here, as this isn't the purpose of this lesson. To give you a glimpse of it, we create the X scale function that helps us calculating the width. Then, we add a couple of rectangles and texts for the bars.

[02:54] Looks good. Previously, I briefly mentioned that we can also ref instances of React components. Let's try this with our bar chart component. We add a function highlight and when invoked it will fade the color of the selector bar to orange and back to steel blue.

[03:22] In App, we create a ref for the bar chart. Then at a button, use the ref to invoke highlight. Worked as expected and not that complicated after all. What you should know though is that you may not use the ref attribute on functional components simply because they don't have instances. For example, if you have a functional component containing an input, use the ref on it and it will stay null.

[04:11] Keep in mind, we can use ref for a functional component, but for sure can use refs inside it. For example, here, we create a ref for the input and provide a button that once clicked will switch the focus to the input.

[04:38] React also provides the callback refs which will continue to be supported in addition to the createRef API. While less convenient, this is likely more flexible in the sense that you have a lot more control.

egghead
egghead
~ 37 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today