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

Поділитися
Вставка
  • Опубліковано 12 вер 2024

КОМЕНТАРІ • 29

  • @cusematt23
    @cusematt23 6 місяців тому +5

    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 2 місяці тому +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..).

  • @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.

  • @kamiladamczyk9369
    @kamiladamczyk9369 2 роки тому +2

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

  • @dixztube
    @dixztube Рік тому +1

    Great job. Love the background music too

  • @demarco6967
    @demarco6967 2 місяці тому +1

    Great Video!

  • @TalesOfJoy
    @TalesOfJoy 2 роки тому +1

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

  • @oriamir2648
    @oriamir2648 2 роки тому +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  2 роки тому +1

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

  • @affafa100
    @affafa100 2 роки тому +2

    Gold.

  • @programmingwithnit5308
    @programmingwithnit5308 Рік тому +1

    Thank you so much

  • @mrwick2op
    @mrwick2op 9 місяців тому +1

  • @kokoyroy
    @kokoyroy 2 роки тому +2

    What about the functional components?

    • @PhilipFabianek
      @PhilipFabianek  2 роки тому

      Check out the first video in the series: ua-cam.com/video/7YhdqIR2Yzo/v-deo.html Functional components are just functions that output an element tree.

    • @kokoyroy
      @kokoyroy 2 роки тому +1

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

  • @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/