2020-02-06 12:07:23 +08:00
|
|
|
import { compile } from '../src'
|
|
|
|
|
|
|
|
describe('ssr: components', () => {
|
|
|
|
test('basic', () => {
|
|
|
|
expect(compile(`<foo id="a" :prop="b" />`).code).toMatchInlineSnapshot(`
|
2020-06-27 02:23:50 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, mergeProps: _mergeProps } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-06 12:07:23 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-06 12:07:23 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _mergeProps({
|
2020-02-06 12:07:23 +08:00
|
|
|
id: \\"a\\",
|
|
|
|
prop: _ctx.b
|
2020-06-27 02:23:50 +08:00
|
|
|
}, _attrs), null, _parent))
|
2020-02-06 12:07:23 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('dynamic component', () => {
|
|
|
|
expect(compile(`<component is="foo" prop="b" />`).code)
|
|
|
|
.toMatchInlineSnapshot(`
|
2020-06-27 02:23:50 +08:00
|
|
|
"const { resolveDynamicComponent: _resolveDynamicComponent, mergeProps: _mergeProps } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-06 12:07:23 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
|
|
_push(_ssrRenderComponent(_resolveDynamicComponent(\\"foo\\"), _mergeProps({ prop: \\"b\\" }, _attrs), null, _parent))
|
2020-02-06 12:07:23 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
|
2020-02-10 22:20:07 +08:00
|
|
|
expect(compile(`<component :is="foo" prop="b" />`).code)
|
2020-02-06 12:07:23 +08:00
|
|
|
.toMatchInlineSnapshot(`
|
2020-06-27 02:23:50 +08:00
|
|
|
"const { resolveDynamicComponent: _resolveDynamicComponent, mergeProps: _mergeProps } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-03-11 04:52:08 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
|
|
|
_push(_ssrRenderComponent(_resolveDynamicComponent(_ctx.foo), _mergeProps({ prop: \\"b\\" }, _attrs), null, _parent))
|
2020-02-06 12:07:23 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
2020-02-07 01:05:53 +08:00
|
|
|
|
|
|
|
describe('slots', () => {
|
|
|
|
test('implicit default slot', () => {
|
|
|
|
expect(compile(`<foo>hello<div/></foo>`).code).toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, createVNode: _createVNode, createTextVNode: _createTextVNode } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, {
|
2020-03-16 23:23:29 +08:00
|
|
|
default: _withCtx((_, _push, _parent, _scopeId) => {
|
2020-02-07 14:06:51 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`hello<div\${_scopeId}></div>\`)
|
2020-02-07 06:45:34 +08:00
|
|
|
} else {
|
2020-02-07 14:06:51 +08:00
|
|
|
return [
|
2020-02-08 08:04:55 +08:00
|
|
|
_createTextVNode(\\"hello\\"),
|
|
|
|
_createVNode(\\"div\\")
|
2020-02-07 14:06:51 +08:00
|
|
|
]
|
2020-02-07 06:45:34 +08:00
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-02-13 02:45:35 +08:00
|
|
|
_: 1
|
2020-02-07 07:03:14 +08:00
|
|
|
}, _parent))
|
2020-02-07 01:05:53 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('explicit default slot', () => {
|
|
|
|
expect(compile(`<foo v-slot="{ msg }">{{ msg + outer }}</foo>`).code)
|
|
|
|
.toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, toDisplayString: _toDisplayString, createTextVNode: _createTextVNode } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent, ssrInterpolate: _ssrInterpolate } = require(\\"@vue/server-renderer\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, {
|
2020-03-16 23:23:29 +08:00
|
|
|
default: _withCtx(({ msg }, _push, _parent, _scopeId) => {
|
2020-02-07 14:06:51 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`\${_ssrInterpolate(msg + _ctx.outer)}\`)
|
|
|
|
} else {
|
|
|
|
return [
|
2020-03-07 03:52:15 +08:00
|
|
|
_createTextVNode(_toDisplayString(msg + _ctx.outer), 1 /* TEXT */)
|
2020-02-07 14:06:51 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-02-13 02:45:35 +08:00
|
|
|
_: 1
|
2020-02-07 07:03:14 +08:00
|
|
|
}, _parent))
|
2020-02-07 01:05:53 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('named slots', () => {
|
|
|
|
expect(
|
|
|
|
compile(`<foo>
|
|
|
|
<template v-slot>foo</template>
|
|
|
|
<template v-slot:named>bar</template>
|
|
|
|
</foo>`).code
|
|
|
|
).toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, createTextVNode: _createTextVNode } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, {
|
2020-03-16 23:23:29 +08:00
|
|
|
default: _withCtx((_, _push, _parent, _scopeId) => {
|
2020-02-07 14:06:51 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`foo\`)
|
|
|
|
} else {
|
|
|
|
return [
|
2020-02-08 08:04:55 +08:00
|
|
|
_createTextVNode(\\"foo\\")
|
2020-02-07 14:06:51 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-03-16 23:23:29 +08:00
|
|
|
named: _withCtx((_, _push, _parent, _scopeId) => {
|
2020-02-07 14:06:51 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`bar\`)
|
|
|
|
} else {
|
|
|
|
return [
|
2020-02-08 08:04:55 +08:00
|
|
|
_createTextVNode(\\"bar\\")
|
2020-02-07 14:06:51 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-02-13 02:45:35 +08:00
|
|
|
_: 1
|
2020-02-07 07:03:14 +08:00
|
|
|
}, _parent))
|
2020-02-07 01:05:53 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('v-if slot', () => {
|
|
|
|
expect(
|
|
|
|
compile(`<foo>
|
|
|
|
<template v-slot:named v-if="ok">foo</template>
|
|
|
|
</foo>`).code
|
|
|
|
).toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, createTextVNode: _createTextVNode, createSlots: _createSlots } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, _createSlots({ _: 1 }, [
|
2020-02-07 01:05:53 +08:00
|
|
|
(_ctx.ok)
|
|
|
|
? {
|
|
|
|
name: \\"named\\",
|
2020-03-16 23:23:29 +08:00
|
|
|
fn: _withCtx((_, _push, _parent, _scopeId) => {
|
2020-02-07 14:06:51 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`foo\`)
|
|
|
|
} else {
|
|
|
|
return [
|
2020-02-08 08:04:55 +08:00
|
|
|
_createTextVNode(\\"foo\\")
|
2020-02-07 14:06:51 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
})
|
2020-02-07 01:05:53 +08:00
|
|
|
}
|
|
|
|
: undefined
|
2020-02-07 07:03:14 +08:00
|
|
|
]), _parent))
|
2020-02-07 01:05:53 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('v-for slot', () => {
|
|
|
|
expect(
|
|
|
|
compile(`<foo>
|
|
|
|
<template v-for="key in names" v-slot:[key]="{ msg }">{{ msg + key + bar }}</template>
|
|
|
|
</foo>`).code
|
|
|
|
).toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, toDisplayString: _toDisplayString, createTextVNode: _createTextVNode, renderList: _renderList, createSlots: _createSlots } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent, ssrInterpolate: _ssrInterpolate } = require(\\"@vue/server-renderer\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 01:05:53 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, _createSlots({ _: 1 }, [
|
2020-02-08 08:04:55 +08:00
|
|
|
_renderList(_ctx.names, (key) => {
|
2020-02-07 01:05:53 +08:00
|
|
|
return {
|
|
|
|
name: key,
|
2020-03-16 23:23:29 +08:00
|
|
|
fn: _withCtx(({ msg }, _push, _parent, _scopeId) => {
|
2020-02-08 02:56:18 +08:00
|
|
|
if (_push) {
|
|
|
|
_push(\`\${_ssrInterpolate(msg + key + _ctx.bar)}\`)
|
|
|
|
} else {
|
|
|
|
return [
|
2020-03-07 03:52:15 +08:00
|
|
|
_createTextVNode(_toDisplayString(msg + _ctx.key + _ctx.bar), 1 /* TEXT */)
|
2020-02-08 02:56:18 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
})
|
2020-02-07 01:05:53 +08:00
|
|
|
}
|
|
|
|
})
|
2020-02-07 07:03:14 +08:00
|
|
|
]), _parent))
|
2020-02-07 01:05:53 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
2020-02-07 04:29:02 +08:00
|
|
|
|
2020-02-08 02:56:18 +08:00
|
|
|
test('nested transform scoping in vnode branch', () => {
|
|
|
|
expect(
|
|
|
|
compile(`<foo>
|
|
|
|
<template v-slot:foo="{ list }">
|
|
|
|
<div v-if="ok">
|
|
|
|
<span v-for="i in list"></span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-slot:bar="{ ok }">
|
|
|
|
<div v-if="ok">
|
|
|
|
<span v-for="i in list"></span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</foo>`).code
|
|
|
|
).toMatchInlineSnapshot(`
|
2020-03-16 23:23:29 +08:00
|
|
|
"const { resolveComponent: _resolveComponent, withCtx: _withCtx, renderList: _renderList, Fragment: _Fragment, openBlock: _openBlock, createBlock: _createBlock, createVNode: _createVNode, createCommentVNode: _createCommentVNode } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent, ssrRenderList: _ssrRenderList } = require(\\"@vue/server-renderer\\")
|
2020-02-08 02:56:18 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-08 02:56:18 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, _attrs, {
|
2020-03-16 23:23:29 +08:00
|
|
|
foo: _withCtx(({ list }, _push, _parent, _scopeId) => {
|
2020-02-08 02:56:18 +08:00
|
|
|
if (_push) {
|
|
|
|
if (_ctx.ok) {
|
2020-03-13 23:55:04 +08:00
|
|
|
_push(\`<div\${_scopeId}><!--[-->\`)
|
2020-02-08 02:56:18 +08:00
|
|
|
_ssrRenderList(list, (i) => {
|
|
|
|
_push(\`<span\${_scopeId}></span>\`)
|
|
|
|
})
|
2020-03-13 23:55:04 +08:00
|
|
|
_push(\`<!--]--></div>\`)
|
2020-02-08 02:56:18 +08:00
|
|
|
} else {
|
|
|
|
_push(\`<!---->\`)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return [
|
2020-02-12 07:40:21 +08:00
|
|
|
(_ctx.ok)
|
|
|
|
? (_openBlock(), _createBlock(\\"div\\", { key: 0 }, [
|
2020-02-11 07:19:49 +08:00
|
|
|
(_openBlock(true), _createBlock(_Fragment, null, _renderList(list, (i) => {
|
2020-02-08 08:04:55 +08:00
|
|
|
return (_openBlock(), _createBlock(\\"span\\"))
|
2020-02-08 02:56:18 +08:00
|
|
|
}), 256 /* UNKEYED_FRAGMENT */))
|
2020-02-12 07:40:21 +08:00
|
|
|
]))
|
|
|
|
: _createCommentVNode(\\"v-if\\", true)
|
2020-02-08 02:56:18 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-03-16 23:23:29 +08:00
|
|
|
bar: _withCtx(({ ok }, _push, _parent, _scopeId) => {
|
2020-02-08 02:56:18 +08:00
|
|
|
if (_push) {
|
|
|
|
if (ok) {
|
2020-03-13 23:55:04 +08:00
|
|
|
_push(\`<div\${_scopeId}><!--[-->\`)
|
2020-02-08 02:56:18 +08:00
|
|
|
_ssrRenderList(_ctx.list, (i) => {
|
|
|
|
_push(\`<span\${_scopeId}></span>\`)
|
|
|
|
})
|
2020-03-13 23:55:04 +08:00
|
|
|
_push(\`<!--]--></div>\`)
|
2020-02-08 02:56:18 +08:00
|
|
|
} else {
|
|
|
|
_push(\`<!---->\`)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return [
|
2020-02-12 07:40:21 +08:00
|
|
|
ok
|
|
|
|
? (_openBlock(), _createBlock(\\"div\\", { key: 0 }, [
|
2020-02-11 07:19:49 +08:00
|
|
|
(_openBlock(true), _createBlock(_Fragment, null, _renderList(_ctx.list, (i) => {
|
2020-02-08 08:04:55 +08:00
|
|
|
return (_openBlock(), _createBlock(\\"span\\"))
|
2020-02-08 02:56:18 +08:00
|
|
|
}), 256 /* UNKEYED_FRAGMENT */))
|
2020-02-12 07:40:21 +08:00
|
|
|
]))
|
|
|
|
: _createCommentVNode(\\"v-if\\", true)
|
2020-02-08 02:56:18 +08:00
|
|
|
]
|
|
|
|
}
|
2020-03-17 01:06:37 +08:00
|
|
|
}),
|
2020-02-13 02:45:35 +08:00
|
|
|
_: 1
|
2020-02-08 02:56:18 +08:00
|
|
|
}, _parent))
|
|
|
|
}"
|
|
|
|
`)
|
|
|
|
})
|
|
|
|
|
2020-02-07 04:29:02 +08:00
|
|
|
test('built-in fallthroughs', () => {
|
|
|
|
expect(compile(`<transition><div/></transition>`).code)
|
|
|
|
.toMatchInlineSnapshot(`
|
|
|
|
"
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-07 04:29:02 +08:00
|
|
|
_push(\`<div></div>\`)
|
|
|
|
}"
|
|
|
|
`)
|
|
|
|
|
|
|
|
expect(compile(`<transition-group><div/></transition-group>`).code)
|
|
|
|
.toMatchInlineSnapshot(`
|
|
|
|
"
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-03-13 23:55:04 +08:00
|
|
|
_push(\`<!--[--><div></div><!--]-->\`)
|
2020-02-07 04:29:02 +08:00
|
|
|
}"
|
|
|
|
`)
|
|
|
|
|
|
|
|
expect(compile(`<keep-alive><foo/></keep-alive>`).code)
|
|
|
|
.toMatchInlineSnapshot(`
|
2020-04-30 04:21:54 +08:00
|
|
|
"const { resolveComponent: _resolveComponent } = require(\\"vue\\")
|
2020-02-08 08:04:55 +08:00
|
|
|
const { ssrRenderComponent: _ssrRenderComponent } = require(\\"@vue/server-renderer\\")
|
2020-02-07 04:29:02 +08:00
|
|
|
|
2020-06-27 02:23:50 +08:00
|
|
|
return function ssrRender(_ctx, _push, _parent, _attrs) {
|
2020-02-08 08:04:55 +08:00
|
|
|
const _component_foo = _resolveComponent(\\"foo\\")
|
2020-02-07 04:29:02 +08:00
|
|
|
|
2020-02-07 07:03:14 +08:00
|
|
|
_push(_ssrRenderComponent(_component_foo, null, null, _parent))
|
2020-02-07 04:29:02 +08:00
|
|
|
}"
|
|
|
|
`)
|
2020-02-27 03:59:53 +08:00
|
|
|
})
|
2020-02-07 01:05:53 +08:00
|
|
|
})
|
2020-02-06 12:07:23 +08:00
|
|
|
})
|