Skip to content

Commit

Permalink
fix(runtime-core): use correct container for moving Teleport content (
Browse files Browse the repository at this point in the history
  • Loading branch information
underfin authored Jul 28, 2020
1 parent fbf865d commit 04a4eba
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
49 changes: 48 additions & 1 deletion packages/runtime-core/__tests__/components/Teleport.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ import {
Teleport,
Text,
ref,
nextTick
nextTick,
markRaw
} from '@vue/runtime-test'
import { createVNode, Fragment } from '../../src/vnode'
import { compile } from 'vue'

describe('renderer: teleport', () => {
test('should work', () => {
Expand Down Expand Up @@ -299,4 +301,49 @@ describe('renderer: teleport', () => {
)
expect(serializeInner(target)).toBe('')
})

test('should work with block tree', async () => {
const target = nodeOps.createElement('div')
const root = nodeOps.createElement('div')
const disabled = ref(false)

const App = {
setup() {
return {
target: markRaw(target),
disabled
}
},
render: compile(`
<teleport :to="target" :disabled="disabled">
<div>teleported</div><span>{{ disabled }}</span>
</teleport>
<div>root</div>
`)
}
render(h(App), root)
expect(serializeInner(root)).toMatchInlineSnapshot(
`"<!--teleport start--><!--teleport end--><div>root</div>"`
)
expect(serializeInner(target)).toMatchInlineSnapshot(
`"<div>teleported</div><span>false</span>"`
)

disabled.value = true
await nextTick()
expect(serializeInner(root)).toMatchInlineSnapshot(
`"<!--teleport start--><div>teleported</div><span>true</span><!--teleport end--><div>root</div>"`
)
expect(serializeInner(target)).toBe(``)

// toggle back
disabled.value = false
await nextTick()
expect(serializeInner(root)).toMatchInlineSnapshot(
`"<!--teleport start--><!--teleport end--><div>root</div>"`
)
expect(serializeInner(target)).toMatchInlineSnapshot(
`"<div>teleported</div><span>false</span>"`
)
})
})
7 changes: 7 additions & 0 deletions packages/runtime-core/src/components/Teleport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ export const TeleportImpl = {
parentSuspense,
isSVG
)
if (n2.patchFlag > 0 && n2.shapeFlag & ShapeFlags.ARRAY_CHILDREN) {
const oldChildren = n1.children as VNode[]
const children = n2.children as VNode[]
for (let i = 0; i < children.length; i++) {
children[i].el = oldChildren[i].el
}
}
} else if (!optimized) {
patchChildren(
n1,
Expand Down
3 changes: 2 additions & 1 deletion packages/runtime-core/src/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,8 @@ function baseCreateRenderer(
// which also requires the correct parent container
!isSameVNodeType(oldVNode, newVNode) ||
// - In the case of a component, it could contain anything.
oldVNode.shapeFlag & ShapeFlags.COMPONENT
oldVNode.shapeFlag & ShapeFlags.COMPONENT ||
oldVNode.shapeFlag & ShapeFlags.TELEPORT
? hostParentNode(oldVNode.el!)!
: // In other cases, the parent container is not actually used so we
// just pass the block element here to avoid a DOM parentNode call.
Expand Down

0 comments on commit 04a4eba

Please sign in to comment.