252 lines
6.8 KiB
TypeScript
252 lines
6.8 KiB
TypeScript
import {
|
|
h,
|
|
createVNode,
|
|
render,
|
|
nodeOps,
|
|
NodeTypes,
|
|
TestElement,
|
|
Fragment,
|
|
PatchFlags,
|
|
resetOps,
|
|
dumpOps,
|
|
NodeOpTypes,
|
|
serializeInner
|
|
} from '@vue/runtime-test'
|
|
|
|
describe('renderer: fragment', () => {
|
|
it('should allow returning multiple component root nodes', () => {
|
|
const App = {
|
|
render() {
|
|
return [h('div', 'one'), 'two']
|
|
}
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
render(h(App), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<!----><div>one</div>two<!---->`)
|
|
expect(root.children.length).toBe(4)
|
|
expect(root.children[0]).toMatchObject({
|
|
type: NodeTypes.COMMENT
|
|
})
|
|
expect(root.children[1]).toMatchObject({
|
|
type: NodeTypes.ELEMENT,
|
|
tag: 'div'
|
|
})
|
|
expect((root.children[1] as TestElement).children[0]).toMatchObject({
|
|
type: NodeTypes.TEXT,
|
|
text: 'one'
|
|
})
|
|
expect(root.children[2]).toMatchObject({
|
|
type: NodeTypes.TEXT,
|
|
text: 'two'
|
|
})
|
|
expect(root.children[3]).toMatchObject({
|
|
type: NodeTypes.COMMENT
|
|
})
|
|
})
|
|
|
|
it('explicitly create fragments', () => {
|
|
const root = nodeOps.createElement('div')
|
|
render(h('div', [h(Fragment, [h('div', 'one'), 'two'])]), root)
|
|
const parent = root.children[0] as TestElement
|
|
expect(serializeInner(parent)).toBe(`<!----><div>one</div>two<!---->`)
|
|
})
|
|
|
|
it('patch fragment children (manual, keyed)', () => {
|
|
const root = nodeOps.createElement('div')
|
|
render(
|
|
h(Fragment, [h('div', { key: 1 }, 'one'), h('div', { key: 2 }, 'two')]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>one</div><div>two</div><!---->`
|
|
)
|
|
|
|
resetOps()
|
|
render(
|
|
h(Fragment, [h('div', { key: 2 }, 'two'), h('div', { key: 1 }, 'one')]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>two</div><div>one</div><!---->`
|
|
)
|
|
const ops = dumpOps()
|
|
// should be moving nodes instead of re-creating or patching them
|
|
expect(ops).toMatchObject([
|
|
{
|
|
type: NodeOpTypes.INSERT
|
|
}
|
|
])
|
|
})
|
|
|
|
it('patch fragment children (manual, unkeyed)', () => {
|
|
const root = nodeOps.createElement('div')
|
|
render(h(Fragment, [h('div', 'one'), h('div', 'two')]), root)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>one</div><div>two</div><!---->`
|
|
)
|
|
|
|
resetOps()
|
|
render(h(Fragment, [h('div', 'two'), h('div', 'one')]), root)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>two</div><div>one</div><!---->`
|
|
)
|
|
const ops = dumpOps()
|
|
// should be patching nodes instead of moving or re-creating them
|
|
expect(ops).toMatchObject([
|
|
{
|
|
type: NodeOpTypes.SET_ELEMENT_TEXT
|
|
},
|
|
{
|
|
type: NodeOpTypes.SET_ELEMENT_TEXT
|
|
}
|
|
])
|
|
})
|
|
|
|
it('patch fragment children (compiler generated, unkeyed)', () => {
|
|
const root = nodeOps.createElement('div')
|
|
render(
|
|
createVNode(Fragment, 0, [h('div', 'one'), 'two'], PatchFlags.UNKEYED),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(`<!----><div>one</div>two<!---->`)
|
|
|
|
render(
|
|
createVNode(
|
|
Fragment,
|
|
0,
|
|
[h('div', 'foo'), 'bar', 'baz'],
|
|
PatchFlags.UNKEYED
|
|
),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(`<!----><div>foo</div>barbaz<!---->`)
|
|
})
|
|
|
|
it('patch fragment children (compiler generated, keyed)', () => {
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(
|
|
createVNode(
|
|
Fragment,
|
|
0,
|
|
[h('div', { key: 1 }, 'one'), h('div', { key: 2 }, 'two')],
|
|
PatchFlags.KEYED
|
|
),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>one</div><div>two</div><!---->`
|
|
)
|
|
|
|
resetOps()
|
|
render(
|
|
createVNode(
|
|
Fragment,
|
|
0,
|
|
[h('div', { key: 2 }, 'two'), h('div', { key: 1 }, 'one')],
|
|
PatchFlags.KEYED
|
|
),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>two</div><div>one</div><!---->`
|
|
)
|
|
const ops = dumpOps()
|
|
// should be moving nodes instead of re-creating or patching them
|
|
expect(ops).toMatchObject([
|
|
{
|
|
type: NodeOpTypes.INSERT
|
|
}
|
|
])
|
|
})
|
|
|
|
it('move fragment', () => {
|
|
const root = nodeOps.createElement('div')
|
|
render(
|
|
h('div', [
|
|
h('div', { key: 1 }, 'outer'),
|
|
h(Fragment, { key: 2 }, [
|
|
h('div', { key: 1 }, 'one'),
|
|
h('div', { key: 2 }, 'two')
|
|
])
|
|
]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<div><div>outer</div><!----><div>one</div><div>two</div><!----></div>`
|
|
)
|
|
|
|
resetOps()
|
|
render(
|
|
h('div', [
|
|
h(Fragment, { key: 2 }, [
|
|
h('div', { key: 2 }, 'two'),
|
|
h('div', { key: 1 }, 'one')
|
|
]),
|
|
h('div', { key: 1 }, 'outer')
|
|
]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<div><!----><div>two</div><div>one</div><!----><div>outer</div></div>`
|
|
)
|
|
const ops = dumpOps()
|
|
// should be moving nodes instead of re-creating them
|
|
expect(ops).toMatchObject([
|
|
// 1. re-order inside the fragment
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
// 2. move entire fragment, including anchors
|
|
// not the most efficient move, but this case is super rare
|
|
// and optimizing for this special case complicates the algo quite a bit
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'comment' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'comment' } }
|
|
])
|
|
})
|
|
|
|
it('handle nested fragments', () => {
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(
|
|
h(Fragment, [
|
|
h('div', { key: 1 }, 'outer'),
|
|
h(Fragment, { key: 2 }, [
|
|
h('div', { key: 1 }, 'one'),
|
|
h('div', { key: 2 }, 'two')
|
|
])
|
|
]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><div>outer</div><!----><div>one</div><div>two</div><!----><!---->`
|
|
)
|
|
|
|
resetOps()
|
|
render(
|
|
h(Fragment, [
|
|
h(Fragment, { key: 2 }, [
|
|
h('div', { key: 2 }, 'two'),
|
|
h('div', { key: 1 }, 'one')
|
|
]),
|
|
h('div', { key: 1 }, 'outer')
|
|
]),
|
|
root
|
|
)
|
|
expect(serializeInner(root)).toBe(
|
|
`<!----><!----><div>two</div><div>one</div><!----><div>outer</div><!---->`
|
|
)
|
|
const ops = dumpOps()
|
|
// should be moving nodes instead of re-creating them
|
|
expect(ops).toMatchObject([
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'comment' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'element' } },
|
|
{ type: NodeOpTypes.INSERT, targetNode: { type: 'comment' } }
|
|
])
|
|
})
|
|
})
|