Skip to content

Commit d3ecde8

Browse files
authoredOct 11, 2024··
fix(compiler-sfc): do not skip TSInstantiationExpression when transforming props destructure (#12064)
1 parent 76a8223 commit d3ecde8

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed
 

‎packages/compiler-sfc/__tests__/compileScript/__snapshots__/definePropsDestructure.spec.ts.snap

+19
Original file line numberDiff line numberDiff line change
@@ -320,3 +320,22 @@ return { rest }
320320
321321
}"
322322
`;
323+
324+
exports[`sfc reactive props destructure > with TSInstantiationExpression 1`] = `
325+
"import { defineComponent as _defineComponent } from 'vue'
326+
type Foo = <T extends string | number>(data: T) => void
327+
328+
export default /*@__PURE__*/_defineComponent({
329+
props: {
330+
value: { type: Function }
331+
},
332+
setup(__props: any) {
333+
334+
335+
const foo = __props.value<123>
336+
337+
return () => {}
338+
}
339+
340+
})"
341+
`;

‎packages/compiler-sfc/__tests__/compileScript/definePropsDestructure.spec.ts

+15
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,21 @@ describe('sfc reactive props destructure', () => {
198198
}`)
199199
})
200200

201+
test('with TSInstantiationExpression', () => {
202+
const { content } = compile(
203+
`
204+
<script setup lang="ts">
205+
type Foo = <T extends string | number>(data: T) => void
206+
const { value } = defineProps<{ value: Foo }>()
207+
const foo = value<123>
208+
</script>
209+
`,
210+
{ isProd: true },
211+
)
212+
assertCode(content)
213+
expect(content).toMatch(`const foo = __props.value<123>`)
214+
})
215+
201216
test('aliasing', () => {
202217
const { content, bindings } = compile(`
203218
<script setup>

‎packages/compiler-sfc/src/script/definePropsDestructure.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import type {
1010
import { walk } from 'estree-walker'
1111
import {
1212
BindingTypes,
13+
TS_NODE_TYPES,
1314
extractIdentifiers,
1415
isFunctionType,
1516
isInDestructureAssignment,
@@ -240,10 +241,7 @@ export function transformDestructuredProps(
240241
if (
241242
parent &&
242243
parent.type.startsWith('TS') &&
243-
parent.type !== 'TSAsExpression' &&
244-
parent.type !== 'TSNonNullExpression' &&
245-
parent.type !== 'TSSatisfiesExpression' &&
246-
parent.type !== 'TSTypeAssertion'
244+
!TS_NODE_TYPES.includes(parent.type)
247245
) {
248246
return this.skip()
249247
}

0 commit comments

Comments
 (0)
Please sign in to comment.