Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

value of using React.forwardRef vs custom ref prop

I see that React.forwardRef seems to be the sanctioned way of passing a ref to a child functional component, from the react docs:

const FancyButton = React.forwardRef((props, ref) => (   <button ref={ref} className="FancyButton">     {props.children}   </button> ));  // You can now get a ref directly to the DOM button: const ref = React.createRef(); <FancyButton ref={ref}>Click me!</FancyButton>; 

However, what is the advantage of doing this over simply passing a custom prop?:

const FancyButton = ({ innerRef }) => (   <button ref={innerRef} className="FancyButton">     {props.children}   </button> ));  const ref = React.createRef(); <FancyButton innerRef={ref}>Click me!</FancyButton>; 

The only advantage I can think of is maybe having a consistent api for refs, but is there any other advantage? Does passing a custom prop affect diffing when it comes to rendering and cause additional renders, surely not as the ref is stored as mutable state in the current field?

Say for example you wanted to pass multiple refs (which tbh, might indicate code smell, but still), then the only solution I can see would be to use customRef props.

I guess my question is what is the value of using forwardRef over a custom prop?

like image 207
Lesbaa Avatar asked Oct 27 '19 10:10

Lesbaa


People also ask

Why should I use forwardRef?

React forwardRef is a method that allows parent components pass down (i.e., “forward”) refs to their children. Using forwardRef in React gives the child component a reference to a DOM element created by its parent component. This then allows the child to read and modify that element anywhere it is being used.

Why we should not use REF IN React?

It is a general rule of thumb to avoid using refs unless you absolutely have to. The official React documentation outlined only three possible use cases where refs are entirely considered useful for lack of better alternatives: Managing focus, text selection, or media playback. Triggering imperative animations.

What is difference between useRef and forwardRef?

The forwardRef hooks allows React users to pass refs to child components. The ref can be created and referenced with useRef or createRef and then passed in a parent component. Using forwardRef instead of useRef is useful when a ref needs to be accessed in a parent component.

Is React forwardRef a hoc?

forwardRef() which means we have to apply the HOC before React.


1 Answers

Even React docs mention the custom ref prop as a more flexible approach to forwardRef:

If you use React 16.2 or lower, or if you need more flexibility than provided by ref forwarding, you can use this alternative approach and explicitly pass a ref as a differently named prop.

There is also a gist, in which Dan Abramov writes about its advantages:

  • compatible with all React versions
  • works for class and function components
  • simplifies passing a ref to a nested component several layers deep

I would add, that passing refs as usual props does not cause breaking changes and is the way to go for multiple refs. The only advantages of forwardRef coming to my mind are:

  • uniform access API for DOM nodes, functional and class components (you mentioned that)
  • ref attribute does not bloat your props API, e.g. if you provide types with TypeScript

Does passing a custom prop affect diffing when it comes to rendering and cause additional renders?

A ref can potentially trigger a re-render if you pass an inline callback ref function down as prop. But it is a better idea anyway to define it as class instance method or via some memoization like useCallback.

like image 198
ford04 Avatar answered Oct 16 '22 08:10

ford04