| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import { compile } from '../src'
- describe('ssr: <slot>', () => {
- test('basic', () => {
- expect(compile(`<slot/>`).code).toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"default\\", {}, null, _push, _parent)
- }"
- `)
- })
- test('with name', () => {
- expect(compile(`<slot name="foo" />`).code).toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"foo\\", {}, null, _push, _parent)
- }"
- `)
- })
- test('with dynamic name', () => {
- expect(compile(`<slot :name="bar.baz" />`).code).toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, _ctx.bar.baz, {}, null, _push, _parent)
- }"
- `)
- })
- test('with props', () => {
- expect(compile(`<slot name="foo" :p="1" bar="2" />`).code)
- .toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"foo\\", {
- p: 1,
- bar: \\"2\\"
- }, null, _push, _parent)
- }"
- `)
- })
- test('with fallback', () => {
- expect(compile(`<slot>some {{ fallback }} content</slot>`).code)
- .toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot, ssrInterpolate: _ssrInterpolate } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"default\\", {}, () => {
- _push(\`some \${_ssrInterpolate(_ctx.fallback)} content\`)
- }, _push, _parent)
- }"
- `)
- })
- test('with scopeId', async () => {
- expect(
- compile(`<slot/>`, {
- scopeId: 'hello'
- }).code
- ).toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"default\\", {}, null, _push, _parent, \\"hello-s\\")
- }"
- `)
- })
- test('with scopeId + slotted:false', async () => {
- expect(
- compile(`<slot/>`, {
- scopeId: 'hello',
- slotted: false
- }).code
- ).toMatchInlineSnapshot(`
- "const { ssrRenderSlot: _ssrRenderSlot } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- _ssrRenderSlot(_ctx.$slots, \\"default\\", {}, null, _push, _parent)
- }"
- `)
- })
- test('with forwarded scopeId', async () => {
- expect(
- compile(`<Comp><slot/></Comp>`, {
- scopeId: 'hello'
- }).code
- ).toMatchInlineSnapshot(`
- "const { resolveComponent: _resolveComponent, withCtx: _withCtx, renderSlot: _renderSlot } = require(\\"vue\\")
- const { ssrRenderSlot: _ssrRenderSlot, ssrRenderComponent: _ssrRenderComponent } = require(\\"vue/server-renderer\\")
- return function ssrRender(_ctx, _push, _parent, _attrs) {
- const _component_Comp = _resolveComponent(\\"Comp\\")
- _push(_ssrRenderComponent(_component_Comp, _attrs, {
- default: _withCtx((_, _push, _parent, _scopeId) => {
- if (_push) {
- _ssrRenderSlot(_ctx.$slots, \\"default\\", {}, null, _push, _parent, \\"hello-s\\" + _scopeId)
- } else {
- return [
- _renderSlot(_ctx.$slots, \\"default\\")
- ]
- }
- }),
- _: 3 /* FORWARDED */
- }, _parent))
- }"
- `)
- })
- })
|