fix(runtime-core/hmr): only use cloneNode mount optimization in prod
fix #1626
This commit is contained in:
parent
b3af5dbe5d
commit
4655d69983
@ -10,8 +10,7 @@ import {
|
|||||||
isSameVNodeType,
|
isSameVNodeType,
|
||||||
Static,
|
Static,
|
||||||
VNodeNormalizedRef,
|
VNodeNormalizedRef,
|
||||||
VNodeHook,
|
VNodeHook
|
||||||
isVNode
|
|
||||||
} from './vnode'
|
} from './vnode'
|
||||||
import {
|
import {
|
||||||
ComponentInternalInstance,
|
ComponentInternalInstance,
|
||||||
@ -638,34 +637,10 @@ function baseCreateRenderer(
|
|||||||
isSVG,
|
isSVG,
|
||||||
optimized
|
optimized
|
||||||
)
|
)
|
||||||
} else {
|
|
||||||
if (
|
|
||||||
__DEV__ &&
|
|
||||||
isHmrUpdating &&
|
|
||||||
hostCloneNode !== undefined &&
|
|
||||||
n2.patchFlag === PatchFlags.HOISTED
|
|
||||||
) {
|
|
||||||
// https://github.com/vitejs/vite/issues/514
|
|
||||||
// reused hoisted trees are inserted with cloneNode
|
|
||||||
// which makes them not patch-able. In production hoisted trees are
|
|
||||||
// never patched (because they are not collected as dynamic nodes), but
|
|
||||||
// they can be udpated during HMR. In this case just mount it as new
|
|
||||||
// and remove the stale DOM tree.
|
|
||||||
mountElement(
|
|
||||||
n2,
|
|
||||||
container,
|
|
||||||
n1.el,
|
|
||||||
parentComponent,
|
|
||||||
parentSuspense,
|
|
||||||
isSVG,
|
|
||||||
optimized
|
|
||||||
)
|
|
||||||
hostRemove(n1.el!)
|
|
||||||
} else {
|
} else {
|
||||||
patchElement(n1, n2, parentComponent, parentSuspense, isSVG, optimized)
|
patchElement(n1, n2, parentComponent, parentSuspense, isSVG, optimized)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
const mountElement = (
|
const mountElement = (
|
||||||
vnode: VNode,
|
vnode: VNode,
|
||||||
@ -688,6 +663,7 @@ function baseCreateRenderer(
|
|||||||
dirs
|
dirs
|
||||||
} = vnode
|
} = vnode
|
||||||
if (
|
if (
|
||||||
|
!__DEV__ &&
|
||||||
vnode.el &&
|
vnode.el &&
|
||||||
hostCloneNode !== undefined &&
|
hostCloneNode !== undefined &&
|
||||||
patchFlag === PatchFlags.HOISTED
|
patchFlag === PatchFlags.HOISTED
|
||||||
@ -695,6 +671,7 @@ function baseCreateRenderer(
|
|||||||
// If a vnode has non-null el, it means it's being reused.
|
// If a vnode has non-null el, it means it's being reused.
|
||||||
// Only static vnodes can be reused, so its mounted DOM nodes should be
|
// Only static vnodes can be reused, so its mounted DOM nodes should be
|
||||||
// exactly the same, and we can simply do a clone here.
|
// exactly the same, and we can simply do a clone here.
|
||||||
|
// only do this in production since cloned trees cannot be HMR updated.
|
||||||
el = vnode.el = hostCloneNode(vnode.el)
|
el = vnode.el = hostCloneNode(vnode.el)
|
||||||
} else {
|
} else {
|
||||||
el = vnode.el = hostCreateElement(
|
el = vnode.el = hostCreateElement(
|
||||||
@ -2107,14 +2084,11 @@ function baseCreateRenderer(
|
|||||||
const ch2 = n2.children
|
const ch2 = n2.children
|
||||||
if (isArray(ch1) && isArray(ch2)) {
|
if (isArray(ch1) && isArray(ch2)) {
|
||||||
for (let i = 0; i < ch1.length; i++) {
|
for (let i = 0; i < ch1.length; i++) {
|
||||||
const c1 = ch1[i]
|
// this is only called in the optimized path so array children are
|
||||||
const c2 = ch2[i]
|
// guaranteed to be vnodes
|
||||||
if (
|
const c1 = ch1[i] as VNode
|
||||||
isVNode(c1) &&
|
const c2 = (ch2[i] = cloneIfMounted(ch2[i] as VNode))
|
||||||
isVNode(c2) &&
|
if (c2.shapeFlag & ShapeFlags.ELEMENT && !c2.dynamicChildren) {
|
||||||
c2.shapeFlag & ShapeFlags.ELEMENT &&
|
|
||||||
!c2.dynamicChildren
|
|
||||||
) {
|
|
||||||
if (c2.patchFlag <= 0) {
|
if (c2.patchFlag <= 0) {
|
||||||
c2.el = c1.el
|
c2.el = c1.el
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user