类组件的beginWork。
Appfiber执行完递阶段之后,轮到DDfiber执行递解端。
对于类组件,在beginWork的时候,会调用updateClassComponent方法。
类组件的fiber如:
{
alternate: null
child: null
elementType: ? DD()
key: null
lanes: 16
mode: 1
pendingProps: {}
ref: null
return: FiberNode {tag: 0, key: null, stateNode: null, elementType: ?, type: ?, …}
sibling: null
stateNode: null
tag: 1
type: ? DD()
updateQueue: null
}
fiber.stateNode存放着类的实例。
updateClassComponent
对于updateClassComponent,主要做如下事情:
- 取出workInprogress.stateNode,判断如果为null,就调用constructClassInstance和mountClassInstance,并且将shouldUpdate置为true。constructClassInstance会new一个实例。
- 如果stateNode不为null,但是current为null,也就是处于mount阶段却有类实例,就调用resumeMountClassInstance方法
- 如果stateNode不为null,并且处于update阶段。调用updateClassInstance。
- 最后就是每个组件都会做的,为儿子创建fiber并且连接起来,然后返回子fiber。调用finishClassComponent。
constructClassInstance(workInProgress, Component, nextProps);
做的事情:
-
如果类上有静态属性contextType,获取context的value,通过context._currentValue -
直接new一个实例,初始化State,并且调用adoptClassInstance赋值类实例的updater对象 -
返回实例
function constructClassInstance(workInProgress, ctor, props) {
...
const contextType = ctor.contextType;
if (typeof contextType === 'object' && contextType !== null) {
context = readContext((contextType: any));
}
...
let instance = new ctor(props, context);
adoptClassInstance(workInProgress, instance);
...
return instance
}
mountClassInstance(workInProgress, Component, nextProps, renderLanes);
主要做的事情:
-
初始化实例赋初值 -
初始化fiber的udpateQueue -
有contextType赋值类实例的context属性 -
执行applyDerivedStateFromProps,返回值会与老的state进行合并。 -
没有getDerivedStateFormProps和getSnapShorBeforeUpdate,就会执行componentWillMount
function mountClassInstance(workInProgress, ctor, newProps, renderLanes){
const instance = workInProgress.stateNode;
instance.props = newProps;
instance.state = workInProgress.memoizedState;
instance.refs = emptyRefsObject;
initializeUpdateQueue(workInProgress);
const contextType = ctor.contextType;
if (typeof contextType === 'object' && contextType !== null) {
instance.context = readContext(contextType);
....
const getDerivedStateFromProps = ctor.getDerivedStateFromProps;
if (typeof getDerivedStateFromProps === 'function') {
applyDerivedStateFromProps(
workInProgress,
ctor,
getDerivedStateFromProps,
newProps,
);
instance.state = workInProgress.memoizedState;
}
...
callComponentWillMount(workInProgress, instance);
processUpdateQueue(workInProgress, newProps, instance, renderLanes);
instance.state = workInProgress.memoizedState;
类实例的getDerivedStateFormProps和componentWillMount是在类组件render阶段的beginWork执行的。
我们目前只看类组件mount阶段的beginWork,update的时候以后再注意,接着就要调用finishClassComponent创建子组件的fiber了。
finishClassComponent(current,workInProgress,Component,shouldUpdate…)
做的事情:
-
不管mount或者update,还是shouldCOmponentUpdate返回False,都需要更新ref -
通过shouldUpdate判断是否需要更新。调用类实例的render方法,获取返回的vdom -
调用reconcilerChildren,根据vdom创建子fiber,并且将他与类fiber连接起来,返回子fiber
function finishClassComponent(current,workInProgress,Component,shouldUpdate...){
markRef(current, workInProgress);
...
if (!shouldUpdate && !didCaptureError) {
return bailoutOnAlreadyFinishedWork(current, workInProgress, renderLanes);
}
const instance = workInProgress.stateNode;
...
nextChildren = instance.render();
....
reconcileChildren(current, workInProgress, nextChildren, renderLanes);
...
return workInProgress.child;
}
至此,类组件的beginWork执行完毕。
总结:
- 类组件mount的beginWork阶段,调用updateClassComponent,主要就是调用生命周期,创建实例,创建子fiber连接,并且返回子fiber。
- updateClassComponent调用constructClassInstance,new一个实例,并且赋值类实例的updater属性。
- updateClassComponent调用mountClassInstance,他会初始化fiber的updateQueue,并且执行getDerviedStateFormProps或者是componentWillMount
- 调用finishClassComponent方法,赋值ref,通过render获取返回的vdom,调用reoncilerChildren根据vdom创建子fiber并且连接,将子fiber返回。
|