fix(compiler-sfc): fix import usage check in template strings in expressions

fix #4340
This commit is contained in:
Evan You 2021-08-16 18:03:03 -04:00
parent ad66295cb3
commit f855ccb2c1
3 changed files with 18 additions and 6 deletions

View File

@ -206,7 +206,7 @@ return { x }
exports[`SFC compile <script setup> imports imports not used in <template> should not be exposed 1`] = ` exports[`SFC compile <script setup> imports imports not used in <template> should not be exposed 1`] = `
"import { defineComponent as _defineComponent } from 'vue' "import { defineComponent as _defineComponent } from 'vue'
import { FooBar, FooBaz, FooQux, vMyDir, x, y, z, x$y, Last } from './x' import { FooBar, FooBaz, FooQux, vMyDir, x, y, z, x$y, VAR, VAR2, VAR3, Last } from './x'
export default _defineComponent({ export default _defineComponent({
setup(__props, { expose }) { setup(__props, { expose }) {
@ -214,7 +214,7 @@ export default _defineComponent({
const fooBar: FooBar = 1 const fooBar: FooBar = 1
return { fooBar, FooBaz, FooQux, vMyDir, x, z, x$y, Last } return { fooBar, FooBaz, FooQux, vMyDir, x, z, x$y, VAR, VAR3, Last }
} }
})" })"

View File

@ -213,17 +213,17 @@ defineExpose({ foo: 123 })
test('imports not used in <template> should not be exposed', () => { test('imports not used in <template> should not be exposed', () => {
const { content } = compile(` const { content } = compile(`
<script setup lang="ts"> <script setup lang="ts">
import { FooBar, FooBaz, FooQux, vMyDir, x, y, z, x$y, Last } from './x' import { FooBar, FooBaz, FooQux, vMyDir, x, y, z, x$y, VAR, VAR2, VAR3, Last } from './x'
const fooBar: FooBar = 1 const fooBar: FooBar = 1
</script> </script>
<template> <template>
<FooBaz v-my-dir>{{ x }} {{ yy }} {{ x$y }}</FooBaz> <FooBaz v-my-dir>{{ x }} {{ yy }} {{ x$y }}</FooBaz>
<foo-qux/> <foo-qux/>
<div :id="z + 'y'">FooBar</div> <div :id="z + 'y'">FooBar</div>
{{ \`\${VAR}VAR2\${VAR3}\` }}
<Last/> <Last/>
</template> </template>
`) `)
assertCode(content)
// FooBar: should not be matched by plain text // FooBar: should not be matched by plain text
// FooBaz: used as PascalCase component // FooBaz: used as PascalCase component
// FooQux: used as kebab-case component // FooQux: used as kebab-case component
@ -231,9 +231,11 @@ defineExpose({ foo: 123 })
// x: used in interpolation // x: used in interpolation
// y: should not be matched by {{ yy }} or 'y' in binding exps // y: should not be matched by {{ yy }} or 'y' in binding exps
// x$y: #4274 should escape special chars when creating Regex // x$y: #4274 should escape special chars when creating Regex
// VAR & VAR3: #4340 interpolations in tempalte strings
expect(content).toMatch( expect(content).toMatch(
`return { fooBar, FooBaz, FooQux, vMyDir, x, z, x$y, Last }` `return { fooBar, FooBaz, FooQux, vMyDir, x, z, x$y, VAR, VAR3, Last }`
) )
assertCode(content)
}) })
}) })

View File

@ -2242,5 +2242,15 @@ function resolveTemplateUsageCheckString(sfc: SFCDescriptor) {
} }
function stripStrings(exp: string) { function stripStrings(exp: string) {
return exp.replace(/'[^']+'|"[^"]+"|`[^`]+`/g, '') return exp
.replace(/'[^']+'|"[^"]+"/g, '')
.replace(/`[^`]+`/g, stripTemplateString)
}
function stripTemplateString(str: string): string {
const interpMatch = str.match(/\${[^}]+}/g)
if (interpMatch) {
return interpMatch.map(m => m.slice(2, -1)).join(',')
}
return ''
} }