fix(compiler-core): assest id (#190)
* fix(compile-core): asset id * test(compile-core): asset id
This commit is contained in:
parent
4ca32c537d
commit
f71d252ffe
@ -54,7 +54,8 @@ exports[`compiler: codegen assets 1`] = `
|
|||||||
return function render() {
|
return function render() {
|
||||||
with (this) {
|
with (this) {
|
||||||
const _component_Foo = _resolveComponent(\\"Foo\\")
|
const _component_Foo = _resolveComponent(\\"Foo\\")
|
||||||
const _component_barbaz = _resolveComponent(\\"bar-baz\\")
|
const _component_bar_baz = _resolveComponent(\\"bar-baz\\")
|
||||||
|
const _component_barbaz = _resolveComponent(\\"barbaz\\")
|
||||||
const _directive_my_dir = _resolveDirective(\\"my_dir\\")
|
const _directive_my_dir = _resolveDirective(\\"my_dir\\")
|
||||||
|
|
||||||
return null
|
return null
|
||||||
|
@ -89,7 +89,7 @@ describe('compiler: codegen', () => {
|
|||||||
|
|
||||||
test('assets', () => {
|
test('assets', () => {
|
||||||
const root = createRoot({
|
const root = createRoot({
|
||||||
components: [`Foo`, `bar-baz`],
|
components: [`Foo`, `bar-baz`, `barbaz`],
|
||||||
directives: [`my_dir`]
|
directives: [`my_dir`]
|
||||||
})
|
})
|
||||||
const { code } = generate(root, { mode: 'function' })
|
const { code } = generate(root, { mode: 'function' })
|
||||||
@ -97,10 +97,15 @@ describe('compiler: codegen', () => {
|
|||||||
`const _component_Foo = _${helperNameMap[RESOLVE_COMPONENT]}("Foo")\n`
|
`const _component_Foo = _${helperNameMap[RESOLVE_COMPONENT]}("Foo")\n`
|
||||||
)
|
)
|
||||||
expect(code).toMatch(
|
expect(code).toMatch(
|
||||||
`const _component_barbaz = _${
|
`const _component_bar_baz = _${
|
||||||
helperNameMap[RESOLVE_COMPONENT]
|
helperNameMap[RESOLVE_COMPONENT]
|
||||||
}("bar-baz")\n`
|
}("bar-baz")\n`
|
||||||
)
|
)
|
||||||
|
expect(code).toMatch(
|
||||||
|
`const _component_barbaz = _${
|
||||||
|
helperNameMap[RESOLVE_COMPONENT]
|
||||||
|
}("barbaz")\n`
|
||||||
|
)
|
||||||
expect(code).toMatch(
|
expect(code).toMatch(
|
||||||
`const _directive_my_dir = _${
|
`const _directive_my_dir = _${
|
||||||
helperNameMap[RESOLVE_DIRECTIVE]
|
helperNameMap[RESOLVE_DIRECTIVE]
|
||||||
|
@ -241,7 +241,7 @@ export function toValidAssetId(
|
|||||||
name: string,
|
name: string,
|
||||||
type: 'component' | 'directive'
|
type: 'component' | 'directive'
|
||||||
): string {
|
): string {
|
||||||
return `_${type}_${name.replace(/[^\w]/g, '')}`
|
return `_${type}_${name.replace(/[^\w]/g, '_')}`
|
||||||
}
|
}
|
||||||
|
|
||||||
export function isEmptyExpression(node: ExpressionNode) {
|
export function isEmptyExpression(node: ExpressionNode) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user