A Trick Every React Developer Should Know: Ref Forwarding

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 36

  • @dennisadamczyk5067
    @dennisadamczyk5067 Год назад +26

    Actually, using useEffect with a ref in the dependency array does not work as expected because refs are not part of reacts component dependency system. A component does not rerender when you change the current value of a ref, so the useEffect will also not run in this case.

    • @meaningmean
      @meaningmean Год назад +3

      Thanks for the comment. Ive learned from you.
      import { useRef, useEffect } from 'react';
      function MyComponent() {
      const myRef = useRef(null);
      useEffect(() => {
      console.log('useEffect ran');
      console.log(myRef.current);
      }, [myRef]);
      const handleClick = () => {
      myRef.current = 'new value';
      };
      return (

      Change ref value

      );
      }
      In the example above, we have a useEffect hook with a dependency array that includes myRef. When the component mounts, the useEffect callback runs and logs 'useEffect ran' and the current value of myRef to the console.
      However, when we click the button to change the current value of myRef, the useEffect does not run again. This is because refs are not part of the React component dependency system, so changing the value of a ref does not trigger a re-render or cause the useEffect hook to run again.

    • @martapfahl940
      @martapfahl940 Год назад

      I had cases where this was exactly the behaviour I needed :P

    • @dennisadamczyk5067
      @dennisadamczyk5067 Год назад

      @@martapfahl940 In this case you could also leave the dependency array empty. There is no point in adding the ref as dependency for the useEffect then.

    • @martapfahl940
      @martapfahl940 Год назад

      @@dennisadamczyk5067 You're actually right I mixed up 2 different topics...

  • @Diego_Cabrera
    @Diego_Cabrera Год назад +2

    Bro you saved me. I literally was mindblowed I dont know how I never came across this while learning react

  • @welserrano
    @welserrano Год назад +3

    Exactly what I needed. Thanks and keep doing great content like this!

  • @kc-bytes743
    @kc-bytes743 Год назад

    new thing to learn , You genius you make difficult concept easy

  • @anmoljhamb9024
    @anmoljhamb9024 Год назад

    Thank you for the tutorial man! I was looking for this exact thing!

  • @ayushjain7023
    @ayushjain7023 Год назад +2

    Nice video, Could also have added the usage of useImperativeHandle hook, this would have given the viewers more insight to use the forwarded refs

  • @kinzeyrahardja2600
    @kinzeyrahardja2600 Год назад +4

    Does putting [ref] as the dependency array for useEffect work? I thought useRef doesn't create any component re-renders like useState.
    Or perhaps is it that whenever the "ref.current" changes, no re-render is done, but changing the value of "ref" causes a re-render

  • @taiwodamilola8636
    @taiwodamilola8636 Год назад

    Properly explained 👍🏼, thanks man do a full react typescript.tutorial..

  • @merotuts9819
    @merotuts9819 Год назад +2

    Could you make a video on passing refs between child & parent components along with *useImperativeHandle* hook ?

  • @shawn-skull
    @shawn-skull Год назад +2

    Why didn't you just rename the *ref* so it be treated as a prop instead of an attribute. It works for me

  • @adamrodriguez7598
    @adamrodriguez7598 Год назад

    if you start typing log instead of console.log then it will auto complete @7:25

  • @prasathj7436
    @prasathj7436 Год назад

    Excellent, thanks a lot !!!

  • @timekouka
    @timekouka Год назад

    great one brother!

  • @ai.vangogh
    @ai.vangogh Год назад

    what name of extension did you use for typescript snippets?

  • @iwantfrens5804
    @iwantfrens5804 Год назад

    Hey Josh. Why do you use Firefox?

  • @filipesommer8253
    @filipesommer8253 Год назад

    What is the extension to see the gzip size on imports?

  • @ksas323
    @ksas323 Год назад

    Thank you

  • @milon27
    @milon27 Год назад

    🎉 how to accept generic with forward ref().
    i am using forward ref with react hook form, so i need to pass the control and need to make the types generic so that based on the control i get name="" auto suggestions

  • @AngelEduardoLopezZambrano
    @AngelEduardoLopezZambrano Год назад +1

    You could have named the ref prop something other that ref. It would have worked as well.

  • @idobleicher
    @idobleicher Год назад

    nice video.

  • @soymartiinez
    @soymartiinez Год назад

    Inspired on shadcn.

    • @joshtriedcoding
      @joshtriedcoding  Год назад

      His work is great

    • @amotekundev
      @amotekundev Год назад

      @@joshtriedcoding The way you aknowledge others is really commendable

  • @wakinki
    @wakinki 11 месяцев назад

    Why stop using typescript in the middle of the video ?

  • @0xPanda1
    @0xPanda1 Год назад

    🥰

  • @boris---
    @boris--- Год назад

    Back to flipping burgers... I have no idea what just happened in this video.. I watching this my 3th time.. and still don't understand even where you possibly want use ref...