vue3-yuanma/packages/runtime-test/src/serialize.ts

57 lines
1.3 KiB
TypeScript
Raw Normal View History

2019-06-20 21:28:37 +08:00
import {
TestElement,
TestNode,
NodeTypes,
TestText,
TestComment
} from './nodeOps'
2018-10-29 05:43:27 +08:00
import { isOn } from '@vue/shared'
2018-10-02 05:22:49 +08:00
export function serialize(
node: TestNode,
indent: number = 0,
depth: number = 0
): string {
2018-10-02 05:22:49 +08:00
if (node.type === NodeTypes.ELEMENT) {
return serializeElement(node, indent, depth)
2018-10-02 05:22:49 +08:00
} else {
return serializeText(node, indent, depth)
2018-10-02 05:22:49 +08:00
}
}
function serializeElement(
node: TestElement,
indent: number,
depth: number
): string {
2018-10-02 05:22:49 +08:00
const props = Object.keys(node.props)
.map(key => {
2018-10-29 05:43:27 +08:00
return isOn(key) ? `` : `${key}=${JSON.stringify(node.props[key])}`
2018-10-02 05:22:49 +08:00
})
.join(' ')
const newLine = indent ? `\n` : ``
2018-10-02 05:22:49 +08:00
const children = node.children.length
? newLine +
node.children.map(c => serialize(c, indent, depth + 1)).join(newLine) +
newLine
2018-10-02 05:22:49 +08:00
: ``
const padding = indent ? ` `.repeat(indent).repeat(depth) : ``
2018-10-02 05:22:49 +08:00
return (
`${padding}<${node.tag}${props ? ` ${props}` : ``}>` +
`${children}` +
`${padding}</${node.tag}>`
)
}
2019-06-20 21:28:37 +08:00
function serializeText(
node: TestText | TestComment,
indent: number,
depth: number
): string {
const padding = indent ? ` `.repeat(indent).repeat(depth) : ``
2019-06-20 21:28:37 +08:00
return (
padding +
(node.type === NodeTypes.COMMENT ? `<!--${node.text}-->` : node.text)
)
2018-10-02 05:22:49 +08:00
}