vue3-yuanma/packages/compiler-core/src/transforms/vBind.ts

39 lines
1.3 KiB
TypeScript
Raw Normal View History

import { DirectiveTransform } from '../transform'
import { createObjectProperty, createSimpleExpression, NodeTypes } from '../ast'
import { createCompilerError, ErrorCodes } from '../errors'
2019-09-25 02:03:28 +00:00
import { camelize } from '@vue/shared'
import { CAMELIZE } from '../runtimeConstants'
// v-bind without arg is handled directly in ./element.ts due to it affecting
// codegen for the entire props object. This transform here is only for v-bind
// *with* args.
export const transformBind: DirectiveTransform = (dir, context) => {
const { exp, modifiers, loc } = dir
const arg = dir.arg!
2019-09-25 02:03:28 +00:00
if (!exp) {
context.onError(createCompilerError(ErrorCodes.X_V_BIND_NO_EXPRESSION, loc))
}
// .prop is no longer necessary due to new patch behavior
// .sync is replced by v-model:arg
if (modifiers.includes('camel')) {
if (arg.type === NodeTypes.SIMPLE_EXPRESSION) {
if (arg.isStatic) {
arg.content = camelize(arg.content)
} else {
arg.content = `${context.helper(CAMELIZE)}(${arg.content})`
}
} else {
arg.children.unshift(`${context.helper(CAMELIZE)}(`)
arg.children.push(`)`)
}
}
return {
props: createObjectProperty(
2019-09-25 02:03:28 +00:00
arg!,
exp || createSimpleExpression('', true, loc),
2019-09-25 02:03:28 +00:00
loc
),
needRuntime: false
}
}