test(ssr): test rendering vnode elements

This commit is contained in:
Evan You 2020-01-29 17:36:06 -05:00
parent 8cdaf28515
commit eaf414f063
5 changed files with 118 additions and 27 deletions

View File

@ -104,13 +104,14 @@ export { registerRuntimeCompiler } from './component'
// SSR -------------------------------------------------------------------------
import { createComponentInstance, setupComponent } from './component'
import { renderComponentRoot } from './componentRenderUtils'
import { normalizeVNode } from './vnode'
import { isVNode, normalizeVNode } from './vnode'
// SSR utils are only exposed in cjs builds.
const _ssrUtils = {
createComponentInstance,
setupComponent,
renderComponentRoot,
isVNode,
normalizeVNode
}

View File

@ -55,6 +55,17 @@ describe('ssr: renderProps', () => {
})
).toBe(` readonly for="foobar"`)
})
test('preserve name on custom element', () => {
expect(
renderProps(
{
fooBar: 'ok'
},
'my-el'
)
).toBe(` fooBar="ok"`)
})
})
describe('ssr: renderClass', () => {

View File

@ -1,5 +1,5 @@
import { createApp, h } from 'vue'
import { renderToString, renderComponent, renderSlot } from '../src'
import { createApp, h, createCommentVNode } from 'vue'
import { renderToString, renderComponent, renderSlot, escapeHtml } from '../src'
describe('ssr: renderToString', () => {
describe('components', () => {
@ -251,21 +251,82 @@ describe('ssr: renderToString', () => {
})
})
describe('vnode element', () => {
test('props', async () => {
expect(
await renderToString(
h('div', { id: 'foo&', class: ['bar', 'baz'] }, 'hello')
)
).toBe(`<div id="foo&amp;" class="bar baz">hello</div>`)
})
test('text children', async () => {
expect(await renderToString(h('div', 'hello'))).toBe(`<div>hello</div>`)
})
test('array children', async () => {
expect(
await renderToString(
h('div', [
'foo',
h('span', 'bar'),
[h('span', 'baz')],
createCommentVNode('qux')
])
)
).toBe(
`<div>foo<span>bar</span><!----><span>baz</span><!----><!--qux--></div>`
)
})
test('void elements', async () => {
expect(await renderToString(h('input'))).toBe(`<input>`)
})
test('innerHTML', async () => {
expect(
await renderToString(
h(
'div',
{
innerHTML: `<span>hello</span>`
},
'ignored'
)
)
).toBe(`<div><span>hello</span></div>`)
})
test('textContent', async () => {
expect(
await renderToString(
h(
'div',
{
textContent: `<span>hello</span>`
},
'ignored'
)
)
).toBe(`<div>${escapeHtml(`<span>hello</span>`)}</div>`)
})
test('textarea value', async () => {
expect(
await renderToString(
h(
'textarea',
{
value: `<span>hello</span>`
},
'ignored'
)
)
).toBe(`<textarea>${escapeHtml(`<span>hello</span>`)}</textarea>`)
})
})
describe('scopeId', () => {
// TODO
})
describe('vnode', () => {
test('text children', () => {})
test('array children', () => {})
test('void elements', () => {})
test('innerHTML', () => {})
test('textContent', () => {})
test('textarea value', () => {})
})
})

View File

@ -8,16 +8,23 @@ import {
isNoUnitNumericStyleProp,
isOn,
isSSRSafeAttrName,
isBooleanAttr
isBooleanAttr,
makeMap
} from '@vue/shared'
const shouldIgnoreProp = makeMap(`key,ref,innerHTML,textContent`)
export function renderProps(
props: Record<string, unknown>,
isCustomElement: boolean = false
tag?: string
): string {
let ret = ''
for (const key in props) {
if (key === 'key' || key === 'ref' || isOn(key)) {
if (
shouldIgnoreProp(key) ||
isOn(key) ||
(tag === 'textarea' && key === 'value')
) {
continue
}
const value = props[key]
@ -26,8 +33,9 @@ export function renderProps(
} else if (key === 'style') {
ret += ` style="${renderStyle(value)}"`
} else if (value != null) {
const attrKey = isCustomElement
? key
const attrKey =
tag && tag.indexOf('-') > 0
? key // preserve raw name on custom elements
: propsToAttrMap[key] || key.toLowerCase()
if (isBooleanAttr(attrKey)) {
if (value !== false) {

View File

@ -12,7 +12,8 @@ import {
Portal,
ShapeFlags,
ssrUtils,
Slot
Slot,
createApp
} from 'vue'
import {
isString,
@ -25,6 +26,7 @@ import { renderProps } from './renderProps'
import { escapeHtml } from './ssrUtils'
const {
isVNode,
createComponentInstance,
setupComponent,
renderComponentRoot,
@ -81,7 +83,15 @@ function unrollBuffer(buffer: ResolvedSSRBuffer): string {
return ret
}
export async function renderToString(app: App): Promise<string> {
export async function renderToString(input: App | VNode): Promise<string> {
if (isVNode(input)) {
return renderAppToString(createApp({ render: () => input }))
} else {
return renderAppToString(input)
}
}
async function renderAppToString(app: App): Promise<string> {
const resolvedBuffer = await renderComponent(app._component, app._props, null)
return unrollBuffer(resolvedBuffer)
}
@ -143,7 +153,7 @@ function renderComponentSubTree(
return hasAsync() ? Promise.all(buffer) : (buffer as ResolvedSSRBuffer)
}
export function renderVNode(
function renderVNode(
push: PushFn,
vnode: VNode,
parentComponent: ComponentInternalInstance | null = null
@ -203,7 +213,7 @@ function renderElement(
// TODO directives
if (props !== null) {
openTag += renderProps(props, tag.indexOf(`-`) > 0)
openTag += renderProps(props, tag)
}
if (scopeId !== null) {