test: test for transformStyle
This commit is contained in:
parent
6c8f226a79
commit
b5d21aeff7
@ -5,7 +5,6 @@ import {
|
|||||||
transform,
|
transform,
|
||||||
ErrorCodes
|
ErrorCodes
|
||||||
} from '../../src'
|
} from '../../src'
|
||||||
import { transformElement } from '../../src/transforms/transformElement'
|
|
||||||
import {
|
import {
|
||||||
RESOLVE_COMPONENT,
|
RESOLVE_COMPONENT,
|
||||||
CREATE_VNODE,
|
CREATE_VNODE,
|
||||||
@ -21,6 +20,10 @@ import {
|
|||||||
DirectiveNode,
|
DirectiveNode,
|
||||||
RootNode
|
RootNode
|
||||||
} from '../../src/ast'
|
} from '../../src/ast'
|
||||||
|
import { transformElement } from '../../src/transforms/transformElement'
|
||||||
|
import { transformOn } from '../../src/transforms/vOn'
|
||||||
|
import { transformStyle } from '../../src/transforms/transformStyle'
|
||||||
|
import { transformBind } from '../../src/transforms/vBind'
|
||||||
|
|
||||||
function parseWithElementTransform(
|
function parseWithElementTransform(
|
||||||
template: string,
|
template: string,
|
||||||
@ -466,7 +469,84 @@ describe('compiler: element transform', () => {
|
|||||||
])
|
])
|
||||||
})
|
})
|
||||||
|
|
||||||
test.todo(`props dedupe`)
|
test(`props merging: event handlers`, () => {
|
||||||
|
const { node } = parseWithElementTransform(
|
||||||
|
`<div @click.foo="a" @click.bar="b" />`,
|
||||||
|
{
|
||||||
|
directiveTransforms: {
|
||||||
|
on: transformOn
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
expect(node.arguments[1]).toMatchObject({
|
||||||
|
type: NodeTypes.JS_OBJECT_EXPRESSION,
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
type: NodeTypes.JS_PROPERTY,
|
||||||
|
key: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `onClick`,
|
||||||
|
isStatic: true
|
||||||
|
},
|
||||||
|
value: {
|
||||||
|
type: NodeTypes.JS_ARRAY_EXPRESSION,
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `a`,
|
||||||
|
isStatic: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `b`,
|
||||||
|
isStatic: false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
test(`props merging: style`, () => {
|
||||||
|
const { node } = parseWithElementTransform(
|
||||||
|
`<div style="color: red" :style="{ color: 'red' }" />`,
|
||||||
|
{
|
||||||
|
nodeTransforms: [transformStyle, transformElement],
|
||||||
|
directiveTransforms: {
|
||||||
|
bind: transformBind
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
expect(node.arguments[1]).toMatchObject({
|
||||||
|
type: NodeTypes.JS_OBJECT_EXPRESSION,
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
type: NodeTypes.JS_PROPERTY,
|
||||||
|
key: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `style`,
|
||||||
|
isStatic: true
|
||||||
|
},
|
||||||
|
value: {
|
||||||
|
type: NodeTypes.JS_ARRAY_EXPRESSION,
|
||||||
|
elements: [
|
||||||
|
{
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `_hoisted_1`,
|
||||||
|
isStatic: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `{ color: 'red' }`,
|
||||||
|
isStatic: false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
test.todo('slot outlets')
|
test.todo('slot outlets')
|
||||||
})
|
})
|
||||||
|
@ -0,0 +1,80 @@
|
|||||||
|
import {
|
||||||
|
parse,
|
||||||
|
transform,
|
||||||
|
CompilerOptions,
|
||||||
|
ElementNode,
|
||||||
|
NodeTypes
|
||||||
|
} from '../../src'
|
||||||
|
import { transformStyle } from '../../src/transforms/transformStyle'
|
||||||
|
import { transformBind } from '../../src/transforms/vBind'
|
||||||
|
import { transformElement } from '../../src/transforms/transformElement'
|
||||||
|
|
||||||
|
function transformWithStyleTransform(
|
||||||
|
template: string,
|
||||||
|
options: CompilerOptions = {}
|
||||||
|
) {
|
||||||
|
const ast = parse(template)
|
||||||
|
transform(ast, {
|
||||||
|
nodeTransforms: [transformStyle],
|
||||||
|
...options
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
root: ast,
|
||||||
|
node: ast.children[0] as ElementNode
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('compiler: style transform', () => {
|
||||||
|
test('should transform into directive node and hoist value', () => {
|
||||||
|
const { root, node } = transformWithStyleTransform(
|
||||||
|
`<div style="color: red"/>`
|
||||||
|
)
|
||||||
|
expect(root.hoists).toMatchObject([
|
||||||
|
{
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `{"color":"red"}`,
|
||||||
|
isStatic: false
|
||||||
|
}
|
||||||
|
])
|
||||||
|
expect(node.props[0]).toMatchObject({
|
||||||
|
type: NodeTypes.DIRECTIVE,
|
||||||
|
name: `bind`,
|
||||||
|
arg: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `style`,
|
||||||
|
isStatic: true
|
||||||
|
},
|
||||||
|
exp: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `_hoisted_1`,
|
||||||
|
isStatic: false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
test('working with v-bind transform', () => {
|
||||||
|
const { node } = transformWithStyleTransform(`<div style="color: red"/>`, {
|
||||||
|
nodeTransforms: [transformStyle, transformElement],
|
||||||
|
directiveTransforms: {
|
||||||
|
bind: transformBind
|
||||||
|
}
|
||||||
|
})
|
||||||
|
expect(node.codegenNode!.arguments[1]).toMatchObject({
|
||||||
|
type: NodeTypes.JS_OBJECT_EXPRESSION,
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
key: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `style`,
|
||||||
|
isStatic: true
|
||||||
|
},
|
||||||
|
value: {
|
||||||
|
type: NodeTypes.EXPRESSION,
|
||||||
|
content: `_hoisted_1`,
|
||||||
|
isStatic: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user