2020-05-05 03:15:26 +08:00
|
|
|
import {
|
|
|
|
compile,
|
|
|
|
NodeTypes,
|
|
|
|
CREATE_STATIC,
|
|
|
|
createSimpleExpression
|
|
|
|
} from '../../src'
|
2020-02-13 04:00:00 +08:00
|
|
|
import {
|
|
|
|
stringifyStatic,
|
|
|
|
StringifyThresholds
|
|
|
|
} from '../../src/transforms/stringifyStatic'
|
|
|
|
|
|
|
|
describe('stringify static html', () => {
|
|
|
|
function compileWithStringify(template: string) {
|
|
|
|
return compile(template, {
|
|
|
|
hoistStatic: true,
|
|
|
|
prefixIdentifiers: true,
|
|
|
|
transformHoist: stringifyStatic
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function repeat(code: string, n: number): string {
|
|
|
|
return new Array(n)
|
|
|
|
.fill(0)
|
|
|
|
.map(() => code)
|
|
|
|
.join('')
|
|
|
|
}
|
|
|
|
|
|
|
|
test('should bail on non-eligible static trees', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div><div>hello</div><div>hello</div></div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// should be a normal vnode call
|
2020-05-16 03:50:42 +08:00
|
|
|
expect(ast.hoists[0]!.type).toBe(NodeTypes.VNODE_CALL)
|
2020-02-13 04:00:00 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
test('should work on eligible content (elements with binding > 5)', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div>${repeat(
|
|
|
|
`<span class="foo"/>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// should be optimized now
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.JS_CALL_EXPRESSION,
|
|
|
|
callee: CREATE_STATIC,
|
|
|
|
arguments: [
|
|
|
|
JSON.stringify(
|
|
|
|
`<div>${repeat(
|
|
|
|
`<span class="foo"></span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div>`
|
2020-05-16 03:50:42 +08:00
|
|
|
),
|
|
|
|
'1'
|
2020-02-13 04:00:00 +08:00
|
|
|
]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should work on eligible content (elements > 20)', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div>${repeat(
|
|
|
|
`<span/>`,
|
|
|
|
StringifyThresholds.NODE_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// should be optimized now
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.JS_CALL_EXPRESSION,
|
|
|
|
callee: CREATE_STATIC,
|
|
|
|
arguments: [
|
|
|
|
JSON.stringify(
|
|
|
|
`<div>${repeat(
|
|
|
|
`<span></span>`,
|
|
|
|
StringifyThresholds.NODE_COUNT
|
|
|
|
)}</div>`
|
2020-05-16 03:50:42 +08:00
|
|
|
),
|
|
|
|
'1'
|
|
|
|
]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should work for multiple adjacent nodes', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div>${repeat(
|
|
|
|
`<span class="foo"/>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div>`
|
|
|
|
)
|
|
|
|
// should have 5 hoisted nodes, but the other 4 should be null
|
|
|
|
expect(ast.hoists.length).toBe(5)
|
|
|
|
for (let i = 1; i < 5; i++) {
|
|
|
|
expect(ast.hoists[i]).toBe(null)
|
|
|
|
}
|
|
|
|
// should be optimized now
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.JS_CALL_EXPRESSION,
|
|
|
|
callee: CREATE_STATIC,
|
|
|
|
arguments: [
|
|
|
|
JSON.stringify(
|
|
|
|
repeat(
|
|
|
|
`<span class="foo"></span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'5'
|
2020-02-13 04:00:00 +08:00
|
|
|
]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-01 21:42:58 +08:00
|
|
|
test('serializing constant bindings', () => {
|
2020-02-13 04:00:00 +08:00
|
|
|
const { ast } = compileWithStringify(
|
2020-02-21 20:10:13 +08:00
|
|
|
`<div><div :style="{ color: 'red' }">${repeat(
|
|
|
|
`<span :class="[{ foo: true }, { bar: true }]">{{ 1 }} + {{ false }}</span>`,
|
2020-02-13 04:00:00 +08:00
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// should be optimized now
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.JS_CALL_EXPRESSION,
|
|
|
|
callee: CREATE_STATIC,
|
|
|
|
arguments: [
|
|
|
|
JSON.stringify(
|
2020-02-21 20:10:13 +08:00
|
|
|
`<div style="color:red;">${repeat(
|
|
|
|
`<span class="foo bar">1 + false</span>`,
|
2020-02-13 04:00:00 +08:00
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div>`
|
2020-05-16 03:50:42 +08:00
|
|
|
),
|
|
|
|
'1'
|
2020-02-13 04:00:00 +08:00
|
|
|
]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
test('escape', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div>${repeat(
|
|
|
|
`<span :class="'foo' + '>ar'">{{ 1 }} + {{ '<' }}</span>` +
|
|
|
|
`<span>&</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// should be optimized now
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.JS_CALL_EXPRESSION,
|
|
|
|
callee: CREATE_STATIC,
|
|
|
|
arguments: [
|
|
|
|
JSON.stringify(
|
|
|
|
`<div>${repeat(
|
|
|
|
`<span class="foo>ar">1 + <</span>` + `<span>&</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div>`
|
2020-05-16 03:50:42 +08:00
|
|
|
),
|
|
|
|
'1'
|
2020-02-13 04:00:00 +08:00
|
|
|
]
|
|
|
|
})
|
|
|
|
})
|
2020-05-05 03:15:26 +08:00
|
|
|
|
|
|
|
test('should bail on runtime constant v-bind bindings', () => {
|
|
|
|
const { ast } = compile(
|
2020-05-18 22:04:03 +08:00
|
|
|
`<div><div>${repeat(
|
2020-05-05 03:15:26 +08:00
|
|
|
`<span class="foo">foo</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
2020-05-18 22:04:03 +08:00
|
|
|
)}<img src="./foo" /></div></div>`,
|
2020-05-05 03:15:26 +08:00
|
|
|
{
|
|
|
|
hoistStatic: true,
|
|
|
|
prefixIdentifiers: true,
|
|
|
|
transformHoist: stringifyStatic,
|
|
|
|
nodeTransforms: [
|
|
|
|
node => {
|
|
|
|
if (node.type === NodeTypes.ELEMENT && node.tag === 'img') {
|
|
|
|
const exp = createSimpleExpression(
|
|
|
|
'_imports_0_',
|
|
|
|
false,
|
|
|
|
node.loc,
|
|
|
|
true
|
|
|
|
)
|
|
|
|
exp.isRuntimeConstant = true
|
|
|
|
node.props[0] = {
|
|
|
|
type: NodeTypes.DIRECTIVE,
|
|
|
|
name: 'bind',
|
|
|
|
arg: createSimpleExpression('src', true),
|
|
|
|
exp,
|
|
|
|
modifiers: [],
|
|
|
|
loc: node.loc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
// the expression and the tree are still hoistable
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
// ...but the hoisted tree should not be stringified
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
// if it's stringified it will be NodeTypes.CALL_EXPRESSION
|
|
|
|
type: NodeTypes.VNODE_CALL
|
|
|
|
})
|
|
|
|
})
|
2020-05-07 22:32:13 +08:00
|
|
|
|
|
|
|
// #1128
|
|
|
|
test('should bail on non attribute bindings', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div><input indeterminate>${repeat(
|
|
|
|
`<span class="foo">foo</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
|
|
|
|
const { ast: ast2 } = compileWithStringify(
|
|
|
|
`<div><div><input :indeterminate="true">${repeat(
|
|
|
|
`<span class="foo">foo</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</div></div>`
|
|
|
|
)
|
|
|
|
expect(ast2.hoists.length).toBe(1)
|
|
|
|
expect(ast2.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
})
|
2020-06-10 04:26:03 +08:00
|
|
|
|
|
|
|
test('should bail on non attribute bindings', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<div><div>${repeat(
|
|
|
|
`<span class="foo">foo</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}<input indeterminate></div></div>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
|
|
|
|
const { ast: ast2 } = compileWithStringify(
|
|
|
|
`<div><div>${repeat(
|
|
|
|
`<span class="foo">foo</span>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}<input :indeterminate="true"></div></div>`
|
|
|
|
)
|
|
|
|
expect(ast2.hoists.length).toBe(1)
|
|
|
|
expect(ast2.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
})
|
2020-06-10 05:10:07 +08:00
|
|
|
|
2020-06-11 02:31:51 +08:00
|
|
|
test('should bail on tags that has placement constraints (eg.tables related tags)', () => {
|
2020-06-10 05:10:07 +08:00
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<table><tbody>${repeat(
|
|
|
|
`<tr class="foo"><td>foo</td></tr>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</tbody></table>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(1)
|
|
|
|
expect(ast.hoists[0]).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
})
|
2020-06-11 02:31:51 +08:00
|
|
|
|
|
|
|
test('should bail inside slots', () => {
|
|
|
|
const { ast } = compileWithStringify(
|
|
|
|
`<foo>${repeat(
|
|
|
|
`<div class="foo"></div>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</foo>`
|
|
|
|
)
|
|
|
|
expect(ast.hoists.length).toBe(
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)
|
|
|
|
ast.hoists.forEach(node => {
|
|
|
|
expect(node).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
const { ast: ast2 } = compileWithStringify(
|
|
|
|
`<foo><template #foo>${repeat(
|
|
|
|
`<div class="foo"></div>`,
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)}</template></foo>`
|
|
|
|
)
|
|
|
|
expect(ast2.hoists.length).toBe(
|
|
|
|
StringifyThresholds.ELEMENT_WITH_BINDING_COUNT
|
|
|
|
)
|
|
|
|
ast2.hoists.forEach(node => {
|
|
|
|
expect(node).toMatchObject({
|
|
|
|
type: NodeTypes.VNODE_CALL // not CALL_EXPRESSION
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2020-02-13 04:00:00 +08:00
|
|
|
})
|