vue3-yuanma/packages/compiler-core/src/index.ts

69 lines
2.1 KiB
TypeScript
Raw Normal View History

import { parse, ParserOptions } from './parse'
import { transform, TransformOptions } from './transform'
import { generate, CodegenOptions, CodegenResult } from './codegen'
2019-09-22 03:47:26 +08:00
import { RootNode } from './ast'
import { isString } from '@vue/shared'
2019-09-23 04:50:57 +08:00
import { transformIf } from './transforms/vIf'
import { transformFor } from './transforms/vFor'
2019-09-24 08:45:40 +08:00
import { transformElement } from './transforms/transformElement'
import { transformOn } from './transforms/vOn'
import { transformBind } from './transforms/vBind'
2019-09-24 08:45:40 +08:00
import { transformExpression } from './transforms/transformExpression'
import { defaultOnError, createCompilerError, ErrorCodes } from './errors'
import { transformStyle } from './transforms/transformStyle'
export type CompilerOptions = ParserOptions & TransformOptions & CodegenOptions
export function compile(
2019-09-22 03:47:26 +08:00
template: string | RootNode,
options: CompilerOptions = {}
): CodegenResult {
if (__BROWSER__ && options.prefixIdentifiers === false) {
;(options.onError || defaultOnError)(
2019-09-24 01:29:41 +08:00
createCompilerError(ErrorCodes.X_PREFIX_ID_NOT_SUPPORTED)
)
}
2019-09-25 10:39:20 +08:00
const ast = isString(template) ? parse(template, options) : template
const prefixIdentifiers = !__BROWSER__ && options.prefixIdentifiers === true
transform(ast, {
...options,
prefixIdentifiers,
2019-09-22 05:42:12 +08:00
nodeTransforms: [
2019-09-23 04:50:57 +08:00
transformIf,
transformFor,
...(prefixIdentifiers ? [transformExpression] : []),
transformStyle,
2019-09-24 08:45:40 +08:00
transformElement,
2019-09-22 05:42:12 +08:00
...(options.nodeTransforms || []) // user transforms
],
directiveTransforms: {
on: transformOn,
bind: transformBind,
2019-09-22 05:42:12 +08:00
...(options.directiveTransforms || {}) // user transforms
}
})
return generate(ast, options)
}
// Also expose lower level APIs & types
export { parse, ParserOptions, TextModes } from './parse'
2019-09-20 12:12:37 +08:00
export {
transform,
2019-09-22 05:42:12 +08:00
createStructuralDirectiveTransform,
2019-09-20 12:12:37 +08:00
TransformOptions,
2019-09-22 03:47:26 +08:00
TransformContext,
NodeTransform,
2019-09-22 05:42:12 +08:00
StructuralDirectiveTransform
2019-09-20 12:12:37 +08:00
} from './transform'
2019-09-22 03:47:26 +08:00
export {
generate,
CodegenOptions,
CodegenContext,
CodegenResult
} from './codegen'
2019-09-20 12:12:37 +08:00
export { ErrorCodes, CompilerError, createCompilerError } from './errors'
export * from './ast'