wip(ssr): further restructure
This commit is contained in:
parent
27fbfbdb8b
commit
f4d190cc9c
@ -1,4 +1,4 @@
|
|||||||
describe('ssr: render raw vnodes', () => {
|
describe('ssr: render props', () => {
|
||||||
test('class', () => {})
|
test('class', () => {})
|
||||||
|
|
||||||
test('styles', () => {
|
test('styles', () => {
|
@ -1,16 +1,11 @@
|
|||||||
import { toDisplayString } from 'vue'
|
import { toDisplayString } from 'vue'
|
||||||
|
import { escape } from './escape'
|
||||||
|
|
||||||
export { renderToString, renderComponent } from './renderToString'
|
export { escape }
|
||||||
|
|
||||||
export {
|
|
||||||
renderVNode,
|
|
||||||
renderClass,
|
|
||||||
renderStyle,
|
|
||||||
renderProps
|
|
||||||
} from './renderVnode'
|
|
||||||
|
|
||||||
export { escape } from './escape'
|
|
||||||
|
|
||||||
export function interpolate(value: unknown) {
|
export function interpolate(value: unknown) {
|
||||||
return escape(toDisplayString(value))
|
return escape(toDisplayString(value))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export { renderToString, renderComponent, renderSlot } from './renderToString'
|
||||||
|
export { renderClass, renderStyle, renderProps } from './renderProps'
|
||||||
|
5
packages/server-renderer/src/renderProps.ts
Normal file
5
packages/server-renderer/src/renderProps.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export function renderProps() {}
|
||||||
|
|
||||||
|
export function renderClass() {}
|
||||||
|
|
||||||
|
export function renderStyle() {}
|
@ -9,11 +9,10 @@ import {
|
|||||||
renderComponentRoot
|
renderComponentRoot
|
||||||
} from 'vue'
|
} from 'vue'
|
||||||
import { isString, isPromise, isArray, isFunction } from '@vue/shared'
|
import { isString, isPromise, isArray, isFunction } from '@vue/shared'
|
||||||
import { renderVNode } from './renderVnode'
|
|
||||||
|
|
||||||
export type SSRBuffer = SSRBufferItem[]
|
type SSRBuffer = SSRBufferItem[]
|
||||||
export type SSRBufferItem = string | ResolvedSSRBuffer | Promise<SSRBuffer>
|
type SSRBufferItem = string | ResolvedSSRBuffer | Promise<SSRBuffer>
|
||||||
export type ResolvedSSRBuffer = (string | ResolvedSSRBuffer)[]
|
type ResolvedSSRBuffer = (string | ResolvedSSRBuffer)[]
|
||||||
|
|
||||||
function createBuffer() {
|
function createBuffer() {
|
||||||
let appendable = false
|
let appendable = false
|
||||||
@ -107,3 +106,11 @@ function innerRenderComponent(
|
|||||||
Promise.all(buffer as any)
|
Promise.all(buffer as any)
|
||||||
: (buffer as ResolvedSSRBuffer)
|
: (buffer as ResolvedSSRBuffer)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function renderVNode(push: (item: SSRBufferItem) => void, vnode: VNode) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
export function renderSlot() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
import { VNode } from 'vue'
|
|
||||||
import { SSRBufferItem } from './renderToString'
|
|
||||||
|
|
||||||
export function renderVNode(
|
|
||||||
push: (item: SSRBufferItem) => void,
|
|
||||||
vnode: VNode
|
|
||||||
) {}
|
|
||||||
|
|
||||||
export function renderProps() {}
|
|
||||||
|
|
||||||
export function renderClass() {}
|
|
||||||
|
|
||||||
export function renderStyle() {}
|
|
Loading…
x
Reference in New Issue
Block a user