Memo And Refs In React

Introduction

 
In the previous article, we reviewed about Fragments and Pure Components in React and its usage. In this article, we will learn the concept of Memo and Ref in React and how it is used.
 

Memo

 
The concept named Memo is a function-based component, unlike Pure Component which is a class-based component. React.memo() is a higher-order component same as React.PureComponent(). It also provides a performance boost.
 
If the function component renders the same result using the same props, it can be wrapped in React.memo() for performance enhancement. This means that React will skip rendering the component and reuse the last rendered result.
 
By default React.memo() shallowly compares the objects in the props object. If it is required to control comparison or any custom comparison, we can pass a function in the second argument.
 
Before looking at the example, we must ensure from the package.json file that it is React version 16.6 or higher.
 
Memo And Refs In React
 
Let's look at the example below.
 
Create a component for memo.js.
  1. import React from 'react';  
  2. function MemoComp({name}){  
  3.           console.log("Memo component");  
  4.           return (  
  5.                     <div>  
  6.                               {name}  
  7.                     </div>  
  8.           )  
  9. }  
  10.   
  11. export default React.memo(MemoComp);  
Now, add the memo component to parent component.
  1. import React,{Component} from 'react';  
  2. import MemoComp from './Calculation';  
  3.   
  4. class ParentComponent extends Component{  
  5.         constructor(props){  
  6.                 super(props);  
  7.                 this.state={  
  8.                         name : 'React'   
  9.                 }   
  10.         }  
  11.   
  12.         componentDidMount(){  
  13.                 setInterval(()=>{  
  14.                         this.setState({  
  15.                                 name:'React'  
  16.                         })  
  17.                 },2000)  
  18.         }  
  19.   
  20.         render(){  
  21.                 console.log('rendered parent');  
  22.                 return(  
  23.                         <div>  
  24.                                 Parent Component  
  25.                                 <MemoComp name= {this.state.name}/>  
  26.                         </div>  
  27.                 )  
  28.         }  
  29. }  
  30.   
  31. export default ParentComponent;  
Add this parent component in App.js. Now, see the result in the browser.
 
Memo And Refs In React
 
As you can see in the console, the memo component is rendered once and after that, it is not rendered until any changes occur in props or state.
 
So, it is the same as Pure component irrespective of the fact that Pure component is used for class component and memo components are used for functional component.
 

Refs

 
Refs in React make it possible to access DOM nodes directly without using props or re-rendering a whole component.
 
Let’s look at an example to change the input element without using props.
  1. import React, { Component } from 'react'  
  2.   
  3. class RefsDemo extends Component {  
  4.         constructor(props) {  
  5.                 super(props);   
  6.                 this.inputRef = React.createRef()  
  7.         }  
  8.   
  9.         componentDidMount(){  
  10.                 this.inputRef.current.focus();  
  11.                 console.log(this.inputRef)  
  12.         }  
  13.   
  14.         clickHandler = () => {  
  15.                 alert(this.inputRef.current.value)  
  16.         }  
  17.   
  18.         render() {  
  19.                 return (  
  20.                         <div>  
  21.                                 <input type="text" ref={this.inputRef}/>  
  22.                                 <button onClick={this.clickHandler}>Click Me!</button>  
  23.                         </div>  
  24.                 )  
  25.         }  
  26. }  
  27.   
  28. export default RefsDemo  
Memo And Refs In React
 
The above image defines the 3 steps to use Refs for inputting an element.
 
The first step involves creating Ref; the second step includes accessing Ref in the input element, and the third step includes accessing the value of Ref.
 
Memo And Refs In React
 
Memo And Refs In React
 
Memo And Refs In React
 
In the above example, we have seen how an input text is used as Ref and how its value can be accessed. This is one of the ways to create and use Refs.
 
Another way to use Ref is a callback approach which is considered an old approach.
 
Let's see a demo with callback Ref.
  1. import React, { Component } from 'react'  
  2.   
  3. class RefsDemo extends Component {  
  4.         constructor(props) {  
  5.                 super(props);   
  6.                 this.inputRef = React.createRef()  
  7.                 this.callbackRef = null  
  8.                 this.setCallbackRef = (element) => {  
  9.                         this.callbackRef = element  
  10.                 }  
  11.         }  
  12.   
  13.         componentDidMount(){  
  14.                 if(this.callbackRef){  
  15.                         this.callbackRef.focus()  
  16.                 }  
  17.         }  
  18.   
  19.         clickHandler = () => {  
  20.                 alert(this.inputRef.current.value)  
  21.         }  
  22.   
  23.         render() {  
  24.                 return (  
  25.                         <div>  
  26.                                 <input type="text" ref={this.inputRef}/>  
  27.                                 <input type="text" ref={this.setCallbackRef}/>  
  28.                                 <button onClick={this.clickHandler}>Click Me!</button>  
  29.                         </div>  
  30.                 )  
  31.         }  
  32. }  
  33.   
  34. export default RefsDemo  
Memo And Refs In React
 
For callback Refs, we need to follow the following four steps.
  • First, create a Ref and assign it the null value.
  • Second, create a method to assign DOM elements to the Ref created in the first step.
  • The third step is to assign setCallbackRef method to the input element
  • Fourth, access in componentDidMount, but in this method, we need to make sure that React will call the callback when component mounts and call it null when the component is unmounted so it is necessary to check if value exists in callbackRef property and is not null.
The output for callback will be same as CreateRef,
 
Memo And Refs In React
 
Memo And Refs In React
 
Memo And Refs In React

Refs with class component

 
As we saw about adding Ref in the input element, we can also add Ref to the class component.
 
Let's create a InputRef component,
  1. import React, { Component } from 'react'  
  2.   
  3. export class InputRef extends Component {  
  4.           constructor(props) {  
  5.                     super(props)  
  6.                     this.inputRef = React.createRef();  
  7.           }  
  8.   
  9.           focusInput(){  
  10.                     this.inputRef.current.focus()  
  11.           }  
  12.   
  13.           render() {  
  14.                     return (  
  15.                               <div>  
  16.                                         <input type="text" ref={this.inputRef}/>  
  17.                               </div>  
  18.                     )  
  19.           }  
  20. }  
  21.   
  22. export default InputRef  
Now create a FocusInput.js and import InputRef
  1. import React, { Component } from 'react'  
  2. import InputRef from './InputRef'  
  3.   
  4. class FocusInput extends Component {  
  5.         constructor(props) {  
  6.                 super(props)  
  7.                 this.componentRef = React.createRef()  
  8.         }  
  9.   
  10.         clickHandler = () =>{  
  11.                 this.componentRef.current.focusInput()  
  12.         }  
  13.   
  14.         render() {  
  15.                 return (  
  16.                         <div>  
  17.                                 <InputRef ref={this.componentRef}/>  
  18.                                 <button onClick={this.clickHandler}>Focus Input</button>   
  19.                         </div>  
  20.                 )  
  21.         }  
  22. }  
  23.   
  24. export default FocusInput  
Now add FocusInput.js in App,js
  1. import React from 'react';  
  2. import logo from './logo.svg';  
  3. import './App.css';  
  4. import FocusInput from "./components/FocusInput"  
  5.   
  6. function App() {  
  7.      return (  
  8.           <div className="App">  
  9.                <header>  
  10.                     <img src={logo} className="App-logo" alt="logo" />   
  11.                </header>   
  12.                <FocusInput></FocusInput>  
  13.           </div>  
  14.      );  
  15. }  
  16.   
  17. export default App;  
The output will be as shown below. 
Memo And Refs In React
 
Memo And Refs In React
 
On button click, input element will get focus which is defined in the child component.
 
The Ref component can also use child component. But Ref can never be attached with the functional component. Only a class component can use Refs.
 

When Refs should be used

  • When required to focus on the text, text selection or playback media.
  • Triggering animations.
  • Integrating with third-party DOM libraries.
When you need to do anything complex in your app then Refs should not be used.
 

Forwarding Ref

 
Ref forwarding is a technique for passing a ref through the component to one of its child components. This technique is mainly useful for HOC (Higher Order Components).
 
React.forwardRef() accepts 2 parameters - the props of the parameter we are wrapping and ref object specifically for the ref we are forwarding.
 
Let’s look at the example below, create a component named FRInput.js
  1. import React, { Component } from 'react'  
  2. const FRTextInput = React.forwardRef((props,ref) => {  
  3.         return(  
  4.                 <div>  
  5.                         <input type="text" ref={ref}/>  
  6.                 </div>  
  7.         )  
  8. })  
  9.   
  10. export default FRTextInput  
And include FRInput to FRParent.js component,
  1. import React, { Component } from 'react'  
  2. import FRTextInput from './FRTextInput'  
  3.   
  4. class FRParent extends Component {  
  5.     constructor(props) {  
  6.         super(props)  
  7.       
  8.         this.inputRef = React.createRef()  
  9.     }  
  10.       
  11.     render() {  
  12.         return (  
  13.             <div>  
  14.                 <FRTextInput ref={this.inputRef}/>                  
  15.             </div>  
  16.         )  
  17.     }  
  18. }  
  19.   
  20. export default FRParent  
Here, you can see the created inputRef in ParentRef is passed to InputRef where it is used in the input element.
 
The output will be displayed as below.
 
Memo And Refs In React
 
Now on click of the button, the focus will be set on the text input.
 
Memo And Refs In React
 
The process of forwardRef is as below.
  • To be able to pass a ref into a component wrapped into the HOC via a forwardRef prop
  • The HOC to take a ref and forward it to the wrapped component.
  • The wrapped component to attach the ref to a child element.

Summary

 
In this article, we learned the concept of memo and Ref and 2 ways to use Ref in React. Then, we created Ref and Callback Ref approach in React and learned the concept of forwardRef in React. In the next article, we will learn about React portal and Error Boundary.
 
Next in this series >> Portal and Error Boundaries in React 
Author
Priyanka Jain
0 9.6k 874.5k
Next » Higher Order Component In React