PrefaceI'm preparing for an interview recently. I reviewed some knowledge points of react and summarized them here. start React LifecycleThe life cycle before react 16 was like this The component is instantiated when it is first rendered, and then the componentWillMount, render, and componentDidMount functions on the instance are called. Components can call componentWillReceiveProps, shouldComponentUpdate, componentWillUpdate, render, and componentDidUpdate functions when updating rendering. The componentWillUnmount function can be called when the component is uninstalled. Borrowed picture: Starting from React v16.3, React recommends using getDerivedStateFromProps and getSnapshotBeforeUpdate to replace componentWillMount, componentWillReceiveProps, and componentWillUpdate. It should be noted here that the two newly added life cycle functions and the original three life cycle functions must be used separately and cannot be mixed. Current life cycle (borrowed picture): Problems with componentWillMount Some people think that asynchronous requests can be made in advance in componentWillMount to avoid white screen. However, when react calls render to render the page, render does not wait for the asynchronous request to end before obtaining data for rendering. There are potential risks in writing this way. And after react fiber, it may be called multiple times in one rendering. The reason is: react fiber technology uses incremental rendering to solve the problem of dropped frames. Each task unit is scheduled and executed through requestIdleCallback, which can be interrupted and resumed. Once the life cycle is interrupted, it will run the previous life cycle again after recovery. New life cycle static getDerivedStateFromProps
getSnapshotBeforeUpdate Trigger time: when update occurs, after render and before component DOM rendering. React FiberOnce the React rendering/update process starts, it cannot be interrupted and will continue to occupy the main thread. The main thread is busy executing JS and has no time to take care of other things (layout, animation), resulting in poor experiences such as frame drops, delayed responses (or even no response). Fiber came into being. Fiber is a reconstruction of the core algorithm of react reconciler. Key features include:
Incremental rendering is used to solve the problem of dropped frames. After the rendering task is split, only a small part is done each time. After each part is completed, the time control is returned to the main thread, instead of occupying it for a long time like before. Fiber tree
The fiber tree is actually a single linked list structure, where child points to the first child node, return points to the parent node, and sibling points to the next sibling node. The structure is as follows: // fiber tree node structure { stateNode, child, return, sibling, ... } Fiber reconciler The reconcile process is divided into two stages: 1. (Interruptible) Rendering/reconciliation derives changes by constructing a workInProgress tree 2. (Uninterruptible) commit applies these DOM changes (updates the DOM tree, calls component lifecycle functions, and updates internal states such as ref) The process of building the workInProgress tree is the process of diff. We schedule a group of tasks through requestIdleCallback. After completing each task, we check to see if there are any queue jumpers (more urgent). After completing each group of tasks, we return the time control to the main thread until the next requestIdleCallback callback to continue building the workInProgress tree. The life cycle is also divided into two stages: // Phase 1 rendering/reconciliation componentWillMount componentWillReceiveProps shouldComponentUpdate componentWillUpdate //Phase 2 commit componentDidMount componentDidUpdate componentWillUnmount The lifecycle function in phase 1 may be called multiple times. It is executed at low priority by default. If it is interrupted by a high-priority task, it will be re-executed later. Fiber tree and workInProgress tree Double buffering technology: It means that after the workInProgress tree is constructed, a new fiber tree is obtained, and then the current pointer is pointed to the workInProgress tree. Since the fiber and workInProgress hold references to each other, the old fiber is used as a reserved space for the new fiber update, thereby achieving the purpose of reusing fiber instances. Each fiber has an alternate property, which also points to a fiber. When creating a workInProgress node, the alternate is given priority. If there is no alternate, create one. let workInProgress = current.alternate; if (workInProgress === null) { //... workInProgress.alternate = current; current.alternate = workInProgress; } else { // We already have an alternate. // Reset the effect tag. workInProgress.effectTag = NoEffect; // The effect list is no longer valid. workInProgress.nextEffect = null; workInProgress.firstEffect = null; workInProgress.lastEffect = null; } The benefits of doing this:
Fiber outage recovery Interrupt: Check the work unit currently being processed, save the current results (firstEffect, lastEffect), modify the tag, quickly finish and open another requestIdleCallback, and do it next time when you have the chance Breakpoint recovery: The next time you process the work unit, you will see that the tag is the interrupted task, and then continue to do the unfinished part or redo it. PS Whether it is a "natural" interruption due to time running out, or a rude interruption by a high-priority task, it is the same for the interruption mechanism. React setStateAfter calling the setState function in the code, React will merge the passed parameter object with the current state of the component and then trigger the so-called reconciliation process. After the reconciliation process, React will build the React element tree according to the new state in a relatively efficient manner and proceed to re-render the entire UI interface. After React gets the element tree, it automatically calculates the node differences between the new tree and the old tree, and then minimizes and re-renders the interface based on the differences. In the difference calculation algorithm, React can know relatively accurately which positions have changed and how they should be changed, which ensures on-demand updates instead of full re-rendering. setState is sometimes called synchronously (settimeout, custom DOM events) and sometimes asynchronously (normal calls) React event mechanismReact events are uniformly distributed on the outermost document through event proxy, and are not bound to the actual Dom node. Moreover, react wraps the native Event object internally. It has the same interface as the browser's native events, including stopPropagation() and preventDefault(). The above is the detailed content of the summary of the basic knowledge of react. For more information about the basic knowledge of react, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to check where the metadata lock is blocked in MySQL
>>: VMware Workstation installation Linux system
1. Background The following two problems are enco...
Preface I made a loading style component before. ...
The project scaffolding built with vue-cli has al...
vuex-persistedstate Core principle: store all vue...
Although Microsoft provides T4 templates, I find ...
Using the Vue language and element components, we...
Documentation: https://github.com/hilongjw/vue-la...
Table of contents 1. Reduce the number of image l...
Open the centos yum folder Enter the command cd /...
1. Install nginx in docker: It is very simple to ...
Preface I am currently working on a high-quality ...
This article mainly introduces the analysis of th...
Preface We often need to do something based on so...
Yesterday I bought an Alibaba Cloud server that h...
Loading rules of require method Prioritize loadin...