Skip to content

Commit f43ce3a

Browse files
authored
fix: invoke component node create hooks before insertion (#7823)
fix #7531
1 parent b7445a2 commit f43ce3a

File tree

5 files changed

+8
-31
lines changed

5 files changed

+8
-31
lines changed

flow/options.js

-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ declare type InternalComponentOptions = {
22
_isComponent: true;
33
parent: Component;
44
_parentVnode: VNode;
5-
_parentElm: ?Node;
6-
_refElm: ?Node;
75
render?: Function;
86
staticRenderFns?: Array<Function>
97
};
@@ -81,8 +79,6 @@ declare type ComponentOptions = {
8179
_componentTag: ?string;
8280
_scopeId: ?string;
8381
_base: Class<Component>;
84-
_parentElm: ?Node;
85-
_refElm: ?Node;
8682
};
8783

8884
declare type PropOptions = {

src/core/instance/init.js

-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ export function initInternalComponent (vm: Component, options: InternalComponent
7777
const parentVnode = options._parentVnode
7878
opts.parent = options.parent
7979
opts._parentVnode = parentVnode
80-
opts._parentElm = options._parentElm
81-
opts._refElm = options._refElm
8280

8381
const vnodeComponentOptions = parentVnode.componentOptions
8482
opts.propsData = vnodeComponentOptions.propsData

src/core/instance/lifecycle.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,7 @@ export function lifecycleMixin (Vue: Class<Component>) {
5959
// based on the rendering backend used.
6060
if (!prevVnode) {
6161
// initial render
62-
vm.$el = vm.__patch__(
63-
vm.$el, vnode, hydrating, false /* removeOnly */,
64-
vm.$options._parentElm,
65-
vm.$options._refElm
66-
)
67-
// no need for the ref nodes after initial patch
68-
// this prevents keeping a detached DOM tree in memory (#5851)
69-
vm.$options._parentElm = vm.$options._refElm = null
62+
vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */)
7063
} else {
7164
// updates
7265
vm.$el = vm.__patch__(prevVnode, vnode)

src/core/vdom/create-component.js

+3-14
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ import {
3434

3535
// inline hooks to be invoked on component VNodes during patch
3636
const componentVNodeHooks = {
37-
init (
38-
vnode: VNodeWithData,
39-
hydrating: boolean,
40-
parentElm: ?Node,
41-
refElm: ?Node
42-
): ?boolean {
37+
init (vnode: VNodeWithData, hydrating: boolean): ?boolean {
4338
if (
4439
vnode.componentInstance &&
4540
!vnode.componentInstance._isDestroyed &&
@@ -51,9 +46,7 @@ const componentVNodeHooks = {
5146
} else {
5247
const child = vnode.componentInstance = createComponentInstanceForVnode(
5348
vnode,
54-
activeInstance,
55-
parentElm,
56-
refElm
49+
activeInstance
5750
)
5851
child.$mount(hydrating ? vnode.elm : undefined, hydrating)
5952
}
@@ -215,15 +208,11 @@ export function createComponent (
215208
export function createComponentInstanceForVnode (
216209
vnode: any, // we know it's MountedComponentVNode but flow doesn't
217210
parent: any, // activeInstance in lifecycle state
218-
parentElm?: ?Node,
219-
refElm?: ?Node
220211
): Component {
221212
const options: InternalComponentOptions = {
222213
_isComponent: true,
223-
parent,
224214
_parentVnode: vnode,
225-
_parentElm: parentElm || null,
226-
_refElm: refElm || null
215+
parent
227216
}
228217
// check inline-template render functions
229218
const inlineTemplate = vnode.data.inlineTemplate

src/core/vdom/patch.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -212,14 +212,15 @@ export function createPatchFunction (backend) {
212212
if (isDef(i)) {
213213
const isReactivated = isDef(vnode.componentInstance) && i.keepAlive
214214
if (isDef(i = i.hook) && isDef(i = i.init)) {
215-
i(vnode, false /* hydrating */, parentElm, refElm)
215+
i(vnode, false /* hydrating */)
216216
}
217217
// after calling the init hook, if the vnode is a child component
218218
// it should've created a child instance and mounted it. the child
219219
// component also has set the placeholder vnode's elm.
220220
// in that case we can just return the element and be done.
221221
if (isDef(vnode.componentInstance)) {
222222
initComponent(vnode, insertedVnodeQueue)
223+
insert(parentElm, vnode.elm, refElm)
223224
if (isTrue(isReactivated)) {
224225
reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm)
225226
}
@@ -681,7 +682,7 @@ export function createPatchFunction (backend) {
681682
}
682683
}
683684

684-
return function patch (oldVnode, vnode, hydrating, removeOnly, parentElm, refElm) {
685+
return function patch (oldVnode, vnode, hydrating, removeOnly) {
685686
if (isUndef(vnode)) {
686687
if (isDef(oldVnode)) invokeDestroyHook(oldVnode)
687688
return
@@ -693,7 +694,7 @@ export function createPatchFunction (backend) {
693694
if (isUndef(oldVnode)) {
694695
// empty mount (likely as component), create new root element
695696
isInitialPatch = true
696-
createElm(vnode, insertedVnodeQueue, parentElm, refElm)
697+
createElm(vnode, insertedVnodeQueue)
697698
} else {
698699
const isRealElement = isDef(oldVnode.nodeType)
699700
if (!isRealElement && sameVnode(oldVnode, vnode)) {

0 commit comments

Comments
 (0)