Preventing React re-renders with composition

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • 👉 Advanced React Book: www.advanced-r...
    👉 Comprehensive guide on React re-renders (www.developerw...)
    👉 How to useMemo and useCallback: you can remove most of them (www.developerw...)
    👉 The mystery of React Element, children, parents and re-renders (www.developerw...)
    💬 Twitter: / adevnadia
    💬 Linkedin: / adevnadia
    Looking into how re-renders of React components can be prevented with the help of three composition patterns.
    #react #reactjs #webdevelopment #programming #frontend

ความคิดเห็น • 129

  • @0xlodz
    @0xlodz ปีที่แล้ว +6

    Great perf patterns! I will now think about "Isolate state changes" when adding state to a component! It helps to use more composition and test components more easily.

  • @alifiasyalsabila3001
    @alifiasyalsabila3001 หลายเดือนก่อน +3

    Preventing React re-renders with composition
    1. Moving state down 1:48
    2. Components as children props 4:37
    3. Components as props 7:58

  • @shivshankarshejwal6728
    @shivshankarshejwal6728 ปีที่แล้ว +1

    Absolutely loved the presentation and example. We know these but using this on the fly and for keeping these concepts in mind , such examples really help. Thanks

  • @LucasFariaDev
    @LucasFariaDev 10 หลายเดือนก่อน

    Nadia, your content is incredible and I'm glad I found you! I already bought your book and have been enjoying it a lot. Love the way you teach, please keep it up

  • @mohanant7557
    @mohanant7557 ปีที่แล้ว

    Please provide more videos in any topic on react 🙂Your content is awesome and practical

  • @PaweTkocz
    @PaweTkocz ปีที่แล้ว

    Great video, just keep going. Your material are great source of knowledge both YT and Your website.

  • @K.Huynh.
    @K.Huynh. 2 หลายเดือนก่อน

    so cool, thank you for sharing!

  • @filipecolaquecez9053
    @filipecolaquecez9053 ปีที่แล้ว +1

    great video :)

  • @marketkombat
    @marketkombat ปีที่แล้ว

    Interesting content

  • @АлексейПолтораднев-л6л
    @АлексейПолтораднев-л6л 10 หลายเดือนก่อน

  • @gibber1sh-c6w
    @gibber1sh-c6w ปีที่แล้ว

    How do you track which components re-render? I'm a newbie and what I would think to do is add a console.log to every file, to see if it's re-rendered (which, I'm sure, is not the best way to do it).

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว +2

      You can also use tools like "why-did-you-render": github.com/welldone-software/why-did-you-render

    • @habalgarmin
      @habalgarmin ปีที่แล้ว

      @@developerwaypatterns хороший инструмент, сам им пользуюсь.

  • @downtown_coffee
    @downtown_coffee ปีที่แล้ว +30

    Nadia you're an underrated content creator! You break down concepts clearly both on your blog and here. Am going to dive deeper into all your other articles.

  • @h3nry_t122
    @h3nry_t122 ปีที่แล้ว +1

    at around 6:50 I found it really hard to understand.
    so components in the RETURN statement is not the same as {children} ? so there is a differentiation?
    "children are just props" just isn't really a comfortable reason to justify them not re-rendering. they are still components?
    I tried reading your blog posts too but I'm still struggling to understand your explanations.
    this is the explanation:
    “children” is a element that is created in SomeOutsideComponent. When MovingComponent re-renders because of its state change, its props stay the same. Therefore any Element (i.e. definition object) that comes from props won’t be re-created, and therefore re-renders of those components won’t happen.
    how does the props "staying the same" explain the children not re-rendering. I thought props changing does not cause re-renders anyways.
    overall I really like your content but my brain is just finding it such a hard time to understand it.

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว +2

      It really is just a matter where the Element is created and where the state is triggered. When we pass elements as props to a component with state, those elements are created in the parent components. Something like this:
      ```
      const App = ({ elemAsProp }) => {
      const [state, setState] = useState();
      // elemAsProp content won't re-render because of setState
      return {elemAsProp}
      }
      ```
      Whatever is passed in `elemAsProp` won't be affected by the state change from `setState` in the `App` - they are higher in the components hierarchy. And when you pass components as `children` - it's exactly the same, they are just props in this case.
      If, however, you create an Element inside the `App`, when state change is triggered and `App` re-renders, every Element declared inside will be re-rendered as well:
      ```
      const App = () => {
      const [state, setState] = useState();
      // this one will re-render when setState is triggered
      const elemInside =
      return {elemInside}
      }
      ```
      It's described in more details here: www.developerway.com/posts/react-elements-children-parents

  • @wanted70a
    @wanted70a ปีที่แล้ว +1

    Great work and thx! One questio if I may?
    Example with scroll tracking?
    Is that compontent usefull? How would we fire a callback or some logic without re-render?
    Updating the state in the wrapper is not usefull for itself, ins't it?

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว

      That really depends on what you want to do with that logic, hard to answer without seeing a real-life usecase or code. There are multiple options here, like throttling or exposing that state through render props (if some external component needs access to it without being re-rendered)

  • @pranayahirwar
    @pranayahirwar 3 หลายเดือนก่อน +2

    I really really like your explanation, the time you have put in to make these videos and the cat sticker, it's really cute specially the cat with crown. Wishing you success in getting what you desire.

  • @nicholaschu203
    @nicholaschu203 5 หลายเดือนก่อน

    Love your content! Very clear presentation and absolutely amazing! Thank you for your sharing!

  • @matt112fly
    @matt112fly หลายเดือนก่อน

    hey nadia, thanks for creating this video.. very straight forward and understandable !

  • @zksumon847
    @zksumon847 ปีที่แล้ว +5

    Here after reading your blog.

  • @jegadheeswarank6290
    @jegadheeswarank6290 5 หลายเดือนก่อน

    Great explanation!. You earned a subscriber. I hope your channel experiences steady growth

  • @SoulmatesLive
    @SoulmatesLive หลายเดือนก่อน

    Thank you for this amazing video! 🙏🏻🙏🏻

  • @MrEnsiferum77
    @MrEnsiferum77 ปีที่แล้ว

    I've jump to codebase that written the code like that at 10:50, and the code is mess and re-rendering like crazy... there is not good way to stop re-rendering in react, unless to slowly started switching to solidjs.

  • @kdev_007
    @kdev_007 ปีที่แล้ว +1

    last week I discovered your blogs and now the vids. Amazing stuffs. I'm building a crypto exchange UI with React and your blogs are helping me a lot. Thank you very much. Keep sharing knowledge.

  • @JoyceLu-d9g
    @JoyceLu-d9g 5 หลายเดือนก่อน

    Thanks so much!!! for your great explanation!

  • @kwaku_2023
    @kwaku_2023 4 หลายเดือนก่อน

    Awesome 🎉 this is super crazy and valuable at the same!!

  • @alexandreagra239
    @alexandreagra239 4 หลายเดือนก่อน

    This is very amazing. Thank you so much, big W !!!

  • @igor5379
    @igor5379 ปีที่แล้ว +1

    brilliant!

  • @Ginold
    @Ginold ปีที่แล้ว +1

    I dont get it, you say that if state changes within a component it will make it re-render completely, but then at 7:00 you say that if state changes children are not affected because they are just props, but they should be re-rendered as a whole because of the state change, no?

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว +2

      Nope, that's the beauty of passing components as children! If you think of the components as a tree, then when state change triggers a re-render, it will be propagated "down" the tree, not up. And if you pass components as props, they will be "above" in that tree, so they will not be affected.

    • @Antoshkiv1
      @Antoshkiv1 8 หลายเดือนก่อน

      @@developerwaypatterns Thanks for this answer!
      I was struggling with this as well and just cant get why it is works like that.
      By the way I bought your books and it is amazing! Thanks a lot for such great and structured content and for the videos as well!

    • @developerwaypatterns
      @developerwaypatterns  8 หลายเดือนก่อน

      @@Antoshkiv1 Thank you! 😊

  • @skchintu6172
    @skchintu6172 3 หลายเดือนก่อน

    wonder full tutorial mam, i loved your explanation 💌

  • @syahrulanuar4521
    @syahrulanuar4521 ปีที่แล้ว +3

    Enjoying these new patterns of writing. A lot better than other TH-camrs out there suggesting to just 'deal' with the re-renders... Thanks so much for these! 🤙🏾🤙🏾🙏🏽🙏🏽

  • @MundiWay
    @MundiWay 8 หลายเดือนก่อน

    WOw, best way to explain with editing, Keep going on.

  • @devware5609
    @devware5609 ปีที่แล้ว +1

    Wow amazing explanation, I'm going to use this good practice from now on, just to mention all the content I have found out there just tells you to use Memoization but you track the main problem and offer the best solution, Thanks for it and Greetings from Mexico

  • @notcountdankula
    @notcountdankula 3 หลายเดือนก่อน

    Wow. So grateful for this video. 🙏

  • @OmarGhostt
    @OmarGhostt หลายเดือนก่อน

    I read your book, and I truly thank you. Your expertise is incredible. Thanks for sharing all that knowledge.

  • @elik3765
    @elik3765 ปีที่แล้ว

    ragarding the last example with column and content. What would you say if Layout still wraps children, and and inside the Layout they are accessed via array destructuring, const [column, content] = children, and then used at appropriate places? I don't see any benefits over 'components as chidren', just wandering if that could be an alternative

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว

      For me, that would be confusing - I would understand what the intention is I'd say, but it would take a few seconds from my mental capacity to figure it out. So I'd rather go with some more "traditional" approach.
      From performance/re-renders perspective it doesn't look like it would bring any benefit either 🤔

  • @ka5539
    @ka5539 4 หลายเดือนก่อน

    This was very useful. Thank you!

  • @marouaniAymen
    @marouaniAymen ปีที่แล้ว +1

    Thanks for the video, I encountered the first problem with modal (your first example) in a real world project with Material UI modals. The modal component accepts a prop "open" to show it, at first I saw that with a naive approach (useState + modal inside the parent) I'll trigger a re-render on the parent, so first solution, I opted to useRef + forwardRef and I extracted modals as reusable components, then I used a Redux store to save a key+open and dispatch an open/close modal action from the parent with the modal id as key, the modal will have its own id as key and a call to useSelector to see if it's open or not. In fact, extracting as shown in your video was not a solution to make the parent component easy to read.

  • @Bukosaure
    @Bukosaure ปีที่แล้ว +2

    Love your way of teaching. Very clear and organized. And sweet animations!

  • @sushantrajbanshi4508
    @sushantrajbanshi4508 ปีที่แล้ว +1

    Is there any optimization difference between Component as a children and Component as a prop pattern ? I found both of them to be quite similar in terms of efficiency, as in both the cases the children or the props don't get re-rendered on state updates ? Lovely video BTW 💛

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว +1

      No difference that I know of, children are props, just have nicer jsx "nesting" syntax :)

    • @sushantrajbanshi4508
      @sushantrajbanshi4508 ปีที่แล้ว +1

      @@developerwaypatterns That's what I thought too :)

  • @AlexStefan-vs2dj
    @AlexStefan-vs2dj ปีที่แล้ว +1

    Thank you so much for explaining these concepts, one question though: passing many components as props at multiple levels wouldn't make it look terrible at the top level? Like some pyramid of code that mabey makes you scroll-x in your code editor to fully see?

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว

      It might! 🙂 No silver bullet for anything. Those are just techniques that are useful for certain cases, but over-use of them might result in unreadable code that doesn't make sense

  • @sarcasticdna
    @sarcasticdna ปีที่แล้ว +1

    Golden content

  • @talatkuyuk6556
    @talatkuyuk6556 หลายเดือนก่อน

    Nice video, I actually wonder how you make this video with which tools?

  • @satejbidvai
    @satejbidvai 10 หลายเดือนก่อน

    Very very helpful! Thanks!

  • @melon5063
    @melon5063 ปีที่แล้ว +7

    I never write comments, but this one deserves huge credit for great explanation

  • @albertdugba
    @albertdugba ปีที่แล้ว +1

    Very educative. Keep them coming in

  • @sumeetprajapati15
    @sumeetprajapati15 ปีที่แล้ว +1

    Great video, very helpful. Thanks for sharing!

  • @dianaduran159
    @dianaduran159 3 หลายเดือนก่อน

    You explain so well, love it 😅

  • @Piyush-gt3wf
    @Piyush-gt3wf ปีที่แล้ว

    Wow, you're amazing!

  • @anaalmeida2327
    @anaalmeida2327 4 หลายเดือนก่อน

    wtf great content!!! keep it up

  • @nallaparajuamareshvarma8471
    @nallaparajuamareshvarma8471 ปีที่แล้ว

    great content please make more videos

  • @thierryrenematos
    @thierryrenematos ปีที่แล้ว +1

    omg, your videos about react are so didactic that they took away my anxiety of not being able to deal with performance problems, thank you!!

  • @alexodan
    @alexodan ปีที่แล้ว +1

    this series are making me realize I've been writing some terrible things lol, nice work keep it up!! 🙌

  • @mrstudioguitar2808
    @mrstudioguitar2808 ปีที่แล้ว

    Great video! Thanks!

  • @GokuHindustani
    @GokuHindustani 7 หลายเดือนก่อน

    you are really underated creator

  • @MisterPitou
    @MisterPitou 7 หลายเดือนก่อน

    very nice, thank you

  • @runner4digits
    @runner4digits 7 หลายเดือนก่อน

    видео просто супер
    Спасибо 💌

  • @michaelscofield2469
    @michaelscofield2469 ปีที่แล้ว

    omg

  • @B-Amir
    @B-Amir ปีที่แล้ว +1

    I'm really enjoying your React tutorials! Your explanations are clear and concise, and I'm learning a lot.

  • @shahryartavakkoli
    @shahryartavakkoli ปีที่แล้ว

    Thank you, I have a question, how can find our components are re-rendered or not? Create a useEffect on them without second entry? What is your way to test and debug when you have no request to an API

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว +1

      This will work. Also, just console.log in render function will be good for it most of the time.
      And a lot of people like this tool for this: github.com/welldone-software/why-did-you-render

    • @shahryartavakkoli
      @shahryartavakkoli ปีที่แล้ว

      @@developerwaypatterns 🌹♥

  • @nachowolf4471
    @nachowolf4471 ปีที่แล้ว

    Great content! Thanks

  • @martinnieva8484
    @martinnieva8484 10 หลายเดือนก่อน

    Thank you VERY much Nadia Makarevich, I was missing some fundamentals on this and your article (and maybe this video is as useful) helped a LOT. It was so clear. Maybe I should have read the official docs from the very beginning I started using React hahaha

  • @jguix
    @jguix ปีที่แล้ว

    great content! thanks

  • @shrikantjha5630
    @shrikantjha5630 หลายเดือนก่อน

    Helpful

  • @darindaxd
    @darindaxd ปีที่แล้ว

    Amazing stuff..

  • @salmon.hanif9000
    @salmon.hanif9000 6 หลายเดือนก่อน

    Awesome video

  • @gabrielalvescunha9405
    @gabrielalvescunha9405 ปีที่แล้ว

    This is gold 🪙🪙🪙🥇

  • @21agdmnm
    @21agdmnm 3 หลายเดือนก่อน

    Bought your book after watching some of your videos, you explain so well!

  • @KO-lm6wh
    @KO-lm6wh ปีที่แล้ว

    keep up your work

  • @morchellemusic2829
    @morchellemusic2829 9 หลายเดือนก่อน

    thanks Nadia

  • @4BeerLife
    @4BeerLife ปีที่แล้ว

    Thx a lot!

  • @akashbhadouria6727
    @akashbhadouria6727 8 หลายเดือนก่อน

    wow, you are awesome. One of the best content creators, God gifted explanation skills.

  • @ivaylopetrov9956
    @ivaylopetrov9956 11 หลายเดือนก่อน

    Great job

  • @kashmirtechtv2948
    @kashmirtechtv2948 9 หลายเดือนก่อน

    Great

  • @aissanadjemeddine1330
    @aissanadjemeddine1330 ปีที่แล้ว

    Thanks ❤❤❤

  • @amirdiafi
    @amirdiafi ปีที่แล้ว

    Thanks, Also we can work in such an MVVM architecture and manage the states on the presenter/controller and consume it in variant components.

  • @mleger45
    @mleger45 5 หลายเดือนก่อน

    this content is gold! thanks for such a great detailed explanation on how to properly handle states!

  • @hmatpin
    @hmatpin ปีที่แล้ว

    How would you go about preventing rerenders in list generated with Array.map? If the list is passed as a children prop, you end up in a scenario where a prop depends on another prop, ie, , and you can't pass props to props.children in the render code. Nice videos. Thanks

  • @dylpckl
    @dylpckl ปีที่แล้ว +1

    very clear and concise

  • @SarShaGaming
    @SarShaGaming 8 หลายเดือนก่อน

    This is probably the best video about why and how composition reduce re-renders. great stuff!

  • @jasondilao6172
    @jasondilao6172 ปีที่แล้ว

    Thank you very much Nadia. Very insightful!!

  • @thebarnowlsmusic
    @thebarnowlsmusic ปีที่แล้ว

    Valuable gems, thanks for putting this video and your articles together. Learned some valuable info.

  • @toyurc
    @toyurc ปีที่แล้ว

    Watching these videos after reading those long blog posts cements many of the ideas Nadia always talks about. Thank you so much for sharing🙏

  • @gaddp
    @gaddp ปีที่แล้ว

    oh wow, this video is pretty new.
    explained beautifully and clearly as well. made me re-think everything I have done so far. thank you so much!

  • @mayurkukade8902
    @mayurkukade8902 ปีที่แล้ว

    Thanks for creating such a great video .. From your article, I came here.. Could you please include a separate tab for react hooks in your article .. This would be very helpful to me and other developers.

  • @janasheehan
    @janasheehan 6 หลายเดือนก่อน

    talk about boiling things down and getting to the point. thank you for this. amazing.

  • @trollflix
    @trollflix ปีที่แล้ว

    you are so amazing, this video helped me so much

  • @gautamadhikari2590
    @gautamadhikari2590 ปีที่แล้ว

    I just discovered this channel and the content quality is so good. Love your videos :)

  • @katsunoi
    @katsunoi ปีที่แล้ว

    this is a great video - useful, practical, and well-explained

  • @eddi3ms
    @eddi3ms ปีที่แล้ว

    great video. It really helped! Thank you

  • @gedas7529
    @gedas7529 ปีที่แล้ว

    Very well explained and concise thank you !!

  • @PontusHultman
    @PontusHultman ปีที่แล้ว

    Great video!
    How would you go about the ButtonWithDialog example if the component had a datagrid in it, and when clicking an item we want to open up the by passing an id.
    Then it feels like we need to have [id, setId] inside of the component which forces it to rerender?
    const Component = () => {
    const [id, setId] = useState(0)
    const [open, setOpen] = useState(false)
    const handleItemClick = (id: number) => (
    setId(id)
    setOpen(true)
    }
    return (

    {open &&
    }

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว

      Yeah, in this case Datagrid will re-render. If it's something you need to prevent, you'd have to either go with React.memo for it, or pass that id through Context/any state management solutions you use

  • @danilocecilia7831
    @danilocecilia7831 ปีที่แล้ว

    Loved this video! I didn't know props didn't affect changes on the state, thanks so much for going through all possible scenarios we can use in order to avoid unnecessary re-render!
    Can you also explain on the case where I can useSelector for example:
    const { trainingMode } = useSelector((state) => state);
    const { checkedIn } = useSelector((state) => state.checkin);
    Is there any implications on using only state or state.somethingElse when it comes to re-render?

    • @developerwaypatterns
      @developerwaypatterns  ปีที่แล้ว

      `useSelector` I assume is something like `reselect` library? Of normal state or React Context it won't matter, re-renders will be triggered at the fact that the state/Context value changes.
      If you're using Redux or other library, I would need to double check how it behaves, depends on the library

  • @davidasiamah2898
    @davidasiamah2898 ปีที่แล้ว

    This was quite enlightening as it was refreshing. I think I've leveled up my React Skills in this video. I just subscribed.

  • @matthewbriggs9414
    @matthewbriggs9414 ปีที่แล้ว

    Cheers! Really helpful to have these fundamental patterns explained in one place and so concisely.

  • @fanpeter-z3c
    @fanpeter-z3c ปีที่แล้ว

    awesome video, thanks for the advice to avoid caveats

  • @EnriqueMartinezInter
    @EnriqueMartinezInter ปีที่แล้ว

    This is just what I needed, thank you so much!!

  • @NosherwanGhazanfar
    @NosherwanGhazanfar ปีที่แล้ว

    Simple and informative performance patterns.

  • @Javascriptallabout-ss9my
    @Javascriptallabout-ss9my 11 หลายเดือนก่อน

    Simple and very clear explanation 👌

  • @sarcasticdna
    @sarcasticdna ปีที่แล้ว +2

    One suggestion please try to use dark themes in your video

  • @haallefs
    @haallefs 4 หลายเดือนก่อน

    This content is pure gold

  • @NoudvD63
    @NoudvD63 ปีที่แล้ว

    Great! Very useful info.