Skip to content

Commit

Permalink
refactor(compiler-vapor): remove template ir node
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Feb 21, 2024
1 parent ba29b4c commit ed26551
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 114 deletions.
10 changes: 2 additions & 8 deletions packages/compiler-vapor/__tests__/transforms/vBind.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ describe('compiler v-bind', () => {
id: 1,
flags: DynamicFlag.REFERENCED,
})
expect(ir.template[0]).toMatchObject({
type: IRNodeTypes.TEMPLATE_FACTORY,
template: '<div></div>',
})
expect(ir.template).toEqual(['<div></div>'])
expect(ir.effect).lengthOf(1)
expect(ir.effect[0].expressions).lengthOf(1)
expect(ir.effect[0].operations).lengthOf(1)
Expand Down Expand Up @@ -243,10 +240,7 @@ describe('compiler v-bind', () => {
end: { line: 1, column: 19 },
},
})
expect(ir.template[0]).toMatchObject({
type: IRNodeTypes.TEMPLATE_FACTORY,
template: '<div arg></div>',
})
expect(ir.template).toEqual(['<div arg></div>'])

expect(code).matchSnapshot()
expect(code).contains(JSON.stringify('<div arg></div>'))
Expand Down
8 changes: 1 addition & 7 deletions packages/compiler-vapor/__tests__/transforms/vFor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,7 @@ describe('compiler: v-for', () => {
expect(code).matchSnapshot()
expect(vaporHelpers).contains('createFor')
expect(helpers.size).toBe(0)
expect(ir.template).lengthOf(1)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>'])
expect(ir.operation).toMatchObject([
{
type: IRNodeTypes.FOR,
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-vapor/__tests__/transforms/vHtml.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('v-html', () => {
expect(helpers.size).toBe(0)

// children should have been removed
expect(ir.template).toMatchObject([{ template: '<div></div>' }])
expect(ir.template).toEqual(['<div></div>'])

expect(ir.operation).toEqual([])
expect(ir.effect).toMatchObject([
Expand Down
88 changes: 12 additions & 76 deletions packages/compiler-vapor/__tests__/transforms/vIf.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,7 @@ describe('compiler: v-if', () => {
expect(vaporHelpers).contains('createIf')
expect(helpers.size).toBe(0)

expect(ir.template).lengthOf(1)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>'])
expect(ir.operation).toMatchObject([
{
type: IRNodeTypes.IF,
Expand Down Expand Up @@ -72,13 +66,7 @@ describe('compiler: v-if', () => {
)
expect(code).matchSnapshot()

expect(ir.template).lengthOf(1)
expect(ir.template).toMatchObject([
{
template: '<div></div>hello<p></p>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>hello<p></p>'])

expect(ir.effect).toEqual([])
expect((ir.operation[0] as IfIRNode).positive.effect).toMatchObject([
Expand Down Expand Up @@ -109,13 +97,7 @@ describe('compiler: v-if', () => {
`<div v-if="ok">hello</div><div v-if="ok">hello</div>`,
)
expect(code).matchSnapshot()
expect(ir.template).lengthOf(1)
expect(ir.template).toMatchObject([
{
template: '<div>hello</div>',
type: 2,
},
])
expect(ir.template).toEqual(['<div>hello</div>'])
expect(ir.returns).toEqual([1, 3])
})

Expand All @@ -127,17 +109,7 @@ describe('compiler: v-if', () => {
`<div v-if="ok"/><p v-else/>`,
)
expect(code).matchSnapshot()
expect(ir.template).lengthOf(2)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: '<p></p>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>', '<p></p>'])

expect(vaporHelpers).contains('createIf')
expect(ir.effect).lengthOf(0)
Expand Down Expand Up @@ -169,17 +141,7 @@ describe('compiler: v-if', () => {
`<div v-if="ok"/><p v-else-if="orNot"/>`,
)
expect(code).matchSnapshot()
expect(ir.template).lengthOf(2)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: '<p></p>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>', '<p></p>'])

expect(ir.operation).toMatchObject([
{
Expand Down Expand Up @@ -216,21 +178,7 @@ describe('compiler: v-if', () => {
`<div v-if="ok"/><p v-else-if="orNot"/><template v-else>fine</template>`,
)
expect(code).matchSnapshot()
expect(ir.template).lengthOf(3)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: '<p></p>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: 'fine',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
])
expect(ir.template).toEqual(['<div></div>', '<p></p>', 'fine'])

expect(ir.returns).toEqual([1])
expect(ir.operation).toMatchObject([
Expand Down Expand Up @@ -266,24 +214,12 @@ describe('compiler: v-if', () => {
<input v-text="text" />
`)
expect(code).matchSnapshot()
expect(ir.template).lengthOf(4)
expect(ir.template).toMatchObject([
{
template: '<div></div>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: '<!--foo--><p></p>',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
template: '<!--bar-->fine',
type: IRNodeTypes.TEMPLATE_FACTORY,
},
{
type: IRNodeTypes.TEMPLATE_FACTORY,
template: '<input>',
},
expect(ir.template).toEqual([
'<div></div>',
'<!--foo--><p></p>',
'<!--bar-->fine',

'<input>',
])
})

Expand Down
2 changes: 1 addition & 1 deletion packages/compiler-vapor/__tests__/transforms/vText.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('v-text', () => {
])

// children should have been removed
expect(ir.template).toMatchObject([{ template: '<div></div>' }])
expect(ir.template).toEqual(['<div></div>'])

expect(ir.effect).toMatchObject([
{
Expand Down
10 changes: 3 additions & 7 deletions packages/compiler-vapor/src/generators/template.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
import type { CodegenContext } from '../generate'
import {
DynamicFlag,
type IRDynamicInfo,
type TemplateFactoryIRNode,
} from '../ir'
import { DynamicFlag, type IRDynamicInfo } from '../ir'
import { NEWLINE, buildCodeFragment, genCall } from './utils'

export function genTemplates(
templates: TemplateFactoryIRNode[],
templates: string[],
{ vaporHelper }: CodegenContext,
) {
return templates
.map(
(template, i) =>
`const t${i} = ${vaporHelper('template')}(${JSON.stringify(template.template)})\n`,
`const t${i} = ${vaporHelper('template')}(${JSON.stringify(template)})\n`,
)
.join('')
}
Expand Down
11 changes: 2 additions & 9 deletions packages/compiler-vapor/src/ir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ export enum IRNodeTypes {
ROOT,
BLOCK_FUNCTION,

TEMPLATE_FACTORY,

SET_PROP,
SET_DYNAMIC_PROPS,
SET_TEXT,
Expand Down Expand Up @@ -58,7 +56,7 @@ export interface RootIRNode extends Omit<BlockFunctionIRNode, 'type'> {
type: IRNodeTypes.ROOT
node: RootNode
source: string
template: Array<TemplateFactoryIRNode>
template: string[]
}

export interface IfIRNode extends BaseIRNode {
Expand All @@ -80,11 +78,6 @@ export interface ForIRNode extends BaseIRNode {
render: BlockFunctionIRNode
}

export interface TemplateFactoryIRNode extends BaseIRNode {
type: IRNodeTypes.TEMPLATE_FACTORY
template: string
}

export interface IRProp extends Omit<DirectiveTransformResult, 'value'> {
values: SimpleExpressionNode[]
}
Expand Down Expand Up @@ -177,7 +170,7 @@ export interface WithDirectiveIRNode extends BaseIRNode {
builtin?: VaporHelper
}

export type IRNode = OperationNode | RootIRNode | TemplateFactoryIRNode
export type IRNode = OperationNode | RootIRNode
export type OperationNode =
| SetPropIRNode
| SetDynamicPropsIRNode
Expand Down
7 changes: 2 additions & 5 deletions packages/compiler-vapor/src/transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,16 +178,13 @@ function createRootContext(
}

const existing = root.template.findIndex(
t => t.template === this.template,
template => template === this.template,
)
if (existing !== -1) {
return (this.block.templateIndex = existing)
}

root.template.push({
type: IRNodeTypes.TEMPLATE_FACTORY,
template: this.template,
})
root.template.push(this.template)
return (this.block.templateIndex = root.template.length - 1)
},
registerOperation(...node) {
Expand Down

0 comments on commit ed26551

Please sign in to comment.