React Internals Deep Dive 2 - Initial Mount, how does it work?
In this video, we will look into the details about how React construct fiber nodes and commit the tree structure into real DOM.
My blog post for this episode https://jser.dev/2023-07-14-initial-mount/
We would touch a few concept (the understanding is based on the understanding till this video, might be wrong)
1. fiberNode, sort of similar to DOM node, it is the basic node of React internal representation of a web app
2. fiberNodeRoot, the root of the fiber tree.
3. fiberNode.stateNode, the real component for this node, like the HTMLElement, or React Component
4. fiberNodeRoot.current, the real root of fiber tree. Think of this as a false head for linked list, which makes the node changes on first node much easier.
5. workInProgress, the current node which is being processed
6. fiberNode.alternate, since we only need compare previous state to diff, so alternate is reference for a fiber node in previous and next state.
About the process
1. workLoopSync calls performUnitOfWork repeatedly by moving workInProgress.
2. performUnitOfWork construct child nodes, when there is no child node, completeWork creates DOM elements and place it in the DOM fragment
3. when all work is performed, the DOM fragment is done, commitRoot is used to insert the DOM to DOM container of the root.
Hi I'm a JavaScript engineer who is not good at algorithms,
and currently practicing leetCode & BFE.dev. If you are interested, maybe we can learn together.
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «React Internals Deep Dive 2 - Initial Mount, how does it work?», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.