Components as props - Advanced React course, Episode 3

Sdílet
Vložit
  • čas přidán 8. 09. 2024

Komentáře • 34

  • @Bukosaure
    @Bukosaure Před 9 měsíci +13

    Feels so good to have advanced React content for those that are already trained with it. CZcams is full of content targeted towards beginners. Thanks again for the clear and concise explanations with the cool visuals.

  • @YavuzKoca-lo7br
    @YavuzKoca-lo7br Před 9 měsíci +12

    You have no idea how useful these videos are. Even the biggest companies in the world make "huge" mistakes when writing React and your videos help me a lot to fix those issues.

  • @mostinho7
    @mostinho7 Před 2 měsíci +1

    Thanks for the insightful video
    Summary: you don’t want to directly pass elements as props, instead you should use render props pattern (next video) but even that custom hooks are usually more suitable in 99% of situations

  • @this-user-is-not-loser

    Magnificant pets! It might have taken so much time to find that icons for the video :)
    And thanks for that content as well!

  • @sarazamani4914
    @sarazamani4914 Před 9 měsíci +1

    This React JS tutorial is fantastic!
    Thanks for sharing!

  • @gilbertopalomeque8135
    @gilbertopalomeque8135 Před 8 měsíci

    Thank you very much for these tutorials. Until now I had not found anything similar to the quality provided by the knowledge of this advanced React course.

  • @eminvesting
    @eminvesting Před 9 měsíci

    Finally I will understand the Render Props pattern for good, looking forward to that :)

  • @antoniojurkic7455
    @antoniojurkic7455 Před 7 měsíci

    Pure extract of knowledge. Thank you so much for this!

  • @ThomasBurleson
    @ThomasBurleson Před 7 měsíci

    Love this content and your style. So clear and understandable. Thank you. I bought your hardback book. Love it. Keep up the great work.

  • @olamidejubril9913
    @olamidejubril9913 Před 9 měsíci

    Thanks for the good work. These video tutorials help a lot.

  • @lifeisbeautifu1
    @lifeisbeautifu1 Před 9 měsíci

    Thank you!

  • @hellyski
    @hellyski Před 9 měsíci

    Great video, thank you!

  • @lovrozagar3729
    @lovrozagar3729 Před 9 měsíci

    Very useful, amazing!

  • @devquen37
    @devquen37 Před 9 měsíci

    Thanks Nadia

  • @CrusaderMen
    @CrusaderMen Před 8 měsíci

    Thank you!

  • @dailydose7772
    @dailydose7772 Před 9 měsíci

    Your videos are epic. I get excited when I see you upload a new one. I get my self all ready and cosy, make sure there are no distractions then start to watch. There is one bad thing tho.... the video comes to an end . Ahah. Thanks again for this high quality, well conveyed tutorial. Looking forward to the next one!

  • @bvog99
    @bvog99 Před 7 měsíci

    excelent content!

  • @user-ie7md3mm6x
    @user-ie7md3mm6x Před 9 měsíci

    great content, keep up the good work!

  • @EsrafilElahi
    @EsrafilElahi Před 9 měsíci

    great😃

  • @K9KidsTrainingZone
    @K9KidsTrainingZone Před 7 měsíci +1

    isn''t usage of cloneCreateElement discouraged in react docs?

  • @lefteye3325
    @lefteye3325 Před 7 měsíci

    gj

  • @user-lm6hy6oy5w
    @user-lm6hy6oy5w Před 8 měsíci

  • @abcq1
    @abcq1 Před 9 měsíci +1

    Dear Nadia, hello. Is there a possibility for you to kindly accept a request to cover a specific topic?)

    • @developerwaypatterns
      @developerwaypatterns  Před 9 měsíci +2

      Depends on the topic :)

    • @abcq1
      @abcq1 Před 9 měsíci

      @@developerwaypatterns I can't find any reliable guidance on proper linkage between state changes and transitions/animations. React state changes are batched and generally lag back, so everytime I try to queue a transition/animation after sa state change, it either lags behind in time or stacks in weird ways. I'm aware about Green Sock, FramerMotion and other similar libs, but I want to learn this stuff for myself rather than rely on a 3rd party libs every single time I need smth very little to move around :)

    • @developerwaypatterns
      @developerwaypatterns  Před 9 měsíci +1

      @@abcq1 Hmmm, if it lags behind, maybe you're triggering it in useEffect? Take a look at useLayoutEffect (I had a video about it as well), maybe it will help.
      Other than that, I don't have anything animations related yet, but maybe in the future. It's a good and huge topic :)

    • @abcq1
      @abcq1 Před 9 měsíci

      @@developerwaypatterns It's not that) Like... Imagine a cube that is drawn in 3d space. I can drag it with mouse to rotate to arbitrary angle. Then, After I release (mouseup), it has to transit back to original position in 3000 ms, for example. I need the ability to intercept the rotation inbetween and repeat the process from the exact angle cube was when I stopped it on its way back. No ULF can help me there(

    • @developerwaypatterns
      @developerwaypatterns  Před 9 měsíci

      @@abcq1 oh wow, that sounds like an impressive challenge. Maybe it's you who should do an article/video about it when you figure it our ;)