How Does React State Actually Work? React.js Deep Dive #4

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

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

  • @cusematt23
    @cusematt23 10 หลายเดือนก่อน +7

    These videos are very underrated and underviewed imo ... as someone that tends to get parallelized until i "really get something" ... your videos did a ton for me.

  • @rotvein4629
    @rotvein4629 6 หลายเดือนก่อน +1

    Actually the best videos on React I've ever seen. As a beginner in React I find your content amazingly helpful, deep and clear-cut. Thank you a lot, man, you're GOAT

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

    Great content and video! I've finally understood _how_ effects (side-effects and DOM mutations) are scheduled in React.
    It's a pity, that React documentation doesn't have this information (or it's not on the surface..).

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

    Great video as all of them in this series. Thank you for your work

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

      Thank you, glad you enjoyed them!

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

    Great job. Love the background music too

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

    I really appreciate your efforts , thanks buddy for such a nice explanation.

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

    Really nice presentation thanks. Can we have a deep dive video on Redux also?

    • @PhilipFabianek
      @PhilipFabianek  3 ปีที่แล้ว

      Thank you! While I'm currently working on other videos, I will take it into consideration in the future.

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

    thanks for the great videos ! since we don't have life cycles methods in hooks , it's the same flow or it's work diff ?

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

      With hooks it works pretty much the same way, we just use hooks instead of class methods.

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

    Thank you so much

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

    Gold.

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

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

    What about the functional components?

    • @PhilipFabianek
      @PhilipFabianek  3 ปีที่แล้ว

      Check out the first video in the series: th-cam.com/video/7YhdqIR2Yzo/w-d-xo.html Functional components are just functions that output an element tree.

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

      @@PhilipFabianek I saw them all, u are awesome dude, I really hope to see more deep dive in the Library we love !

  • @demarco6967
    @demarco6967 6 หลายเดือนก่อน +1

    Great Video!

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

    Is this the same flow with *_useState_* hook?

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

      Essentially yes, although there are a few small differences, for example setState calls are forwarded to the renderer (React DOM) using a field called updater, but in terms of React hooks, the field is instead called dispatcher.

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

    If this is kind of content charged, am ready to even go bankrupt 😀. I started with deep dive react fibre ended up watching all videos.

    • @PhilipFabianek
      @PhilipFabianek  2 ปีที่แล้ว

      Thank you!

    • @SatwikBonny
      @SatwikBonny 2 ปีที่แล้ว

      I don't know if you have time, can you do a video on how you research into these, I mean how you approach to these topics and do reverse engineering.

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

      I don't think it is necessary to create a video about that. I mostly just search text resources online. Articles, documentations, etc. The most important resource has probably been Dan Abramov's blog overreacted.io/