Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(custom-element): correctly handle number type props in prod #8989

Merged
merged 23 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7306078
fix(custom-element): Correctly handle number type props in prod
baiwusanyu-c Aug 16, 2023
981852f
fix(custom-element): added unit test
baiwusanyu-c Aug 16, 2023
df02ef9
chore: remove console
baiwusanyu-c Aug 17, 2023
bd3b0f5
chore: remove expect
baiwusanyu-c Aug 17, 2023
ad7dd23
chore: updated complier
baiwusanyu-c Aug 18, 2023
057886a
chore: format code
baiwusanyu-c Aug 21, 2023
b0d7417
chore: added isCE option to compiler sfc ctx
baiwusanyu-c Aug 21, 2023
8f1da9a
chore: updated unit test
baiwusanyu-c Aug 21, 2023
cc0ff63
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Aug 21, 2023
4a651d1
chore: added customElement options in SFCScriptCompileOptions
baiwusanyu-c Aug 22, 2023
f070820
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Aug 22, 2023
26fd1e3
Merge remote-tracking branch 'origin/bwsy/fix/CENumProps' into bwsy/f…
baiwusanyu-c Aug 22, 2023
dbfaf97
chore: updated code
baiwusanyu-c Aug 22, 2023
916388e
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Sep 5, 2023
64f9c5d
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Oct 20, 2023
6d0c7b4
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Oct 26, 2023
d2d98e6
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Oct 31, 2023
af82b74
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Nov 1, 2023
a7d48fb
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Nov 10, 2023
d73f608
[autofix.ci] apply automated fixes
autofix-ci[bot] Nov 10, 2023
eb89b9e
Merge remote-tracking branch 'origin/main' into bwsy/fix/CENumProps
baiwusanyu-c Nov 13, 2023
3564fce
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Nov 30, 2023
3640d9f
Merge branch 'main' into bwsy/fix/CENumProps
baiwusanyu-c Dec 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,66 @@ return { props, bar }
}"
`;

exports[`defineProps > custom element retains the props type & default value & production mode 1`] = `
"import { defineComponent as _defineComponent } from 'vue'
interface Props {
foo?: number;
}

export default /*#__PURE__*/_defineComponent({
__name: 'app.ce',
props: {
foo: { default: 5.5, type: Number }
},
setup(__props: any, { expose: __expose }) {
__expose();

const props = __props;

return { props }
}

})"
`;

exports[`defineProps > custom element retains the props type & production mode 1`] = `
"import { defineComponent as _defineComponent } from 'vue'

export default /*#__PURE__*/_defineComponent({
__name: 'app.ce',
props: {
foo: {type: Number}
},
setup(__props: any, { expose: __expose }) {
__expose();

const props = __props

return { props }
}

})"
`;

exports[`defineProps > custom element retains the props type w/ production mode 1`] = `
"import { defineComponent as _defineComponent } from 'vue'

export default /*#__PURE__*/_defineComponent({
__name: 'app.ce',
props: {
foo: {type: Number}
},
setup(__props: any, { expose: __expose }) {
__expose();

const props = __props

return { props }
}

})"
`;

exports[`defineProps > defineProps w/ runtime options 1`] = `
"import { defineComponent as _defineComponent } from 'vue'

Expand Down
31 changes: 31 additions & 0 deletions packages/compiler-sfc/__tests__/compileScript/defineProps.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -710,4 +710,35 @@ const props = defineProps({ foo: String })
'da-sh': BindingTypes.PROPS
})
})

// #8989
test('custom element retains the props type & production mode', () => {
const { content } = compile(
`<script setup lang="ts">
const props = defineProps<{ foo: number}>()
</script>`,
{ isProd: true, customElement: filename => /\.ce\.vue$/.test(filename) },
{ filename: 'app.ce.vue' }
)

expect(content).toMatch(`foo: {type: Number}`)
assertCode(content)
})

test('custom element retains the props type & default value & production mode', () => {
const { content } = compile(
`<script setup lang="ts">
interface Props {
foo?: number;
}
const props = withDefaults(defineProps<Props>(), {
foo: 5.5,
});
</script>`,
{ isProd: true, customElement: filename => /\.ce\.vue$/.test(filename) },
{ filename: 'app.ce.vue' }
)
expect(content).toMatch(`foo: { default: 5.5, type: Number }`)
assertCode(content)
})
})
4 changes: 4 additions & 0 deletions packages/compiler-sfc/src/compileScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ export interface SFCScriptCompileOptions {
* using it, disable this and switch to the [Vue Macros implementation](https://vue-macros.sxzz.moe/features/reactivity-transform.html).
*/
reactivityTransform?: boolean
/**
* Transform Vue SFCs into custom elements.
*/
customElement?: boolean | ((filename: string) => boolean)
sxzz marked this conversation as resolved.
Show resolved Hide resolved
}

export interface ImportBinding {
Expand Down
9 changes: 9 additions & 0 deletions packages/compiler-sfc/src/script/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { TypeScope } from './resolveType'
export class ScriptCompileContext {
isJS: boolean
isTS: boolean
isCE = false

scriptAst: Program | null
scriptSetupAst: Program | null
Expand Down Expand Up @@ -95,6 +96,14 @@ export class ScriptCompileContext {
scriptSetupLang === 'ts' ||
scriptSetupLang === 'tsx'

const customElement = options.customElement
const filename = this.descriptor.filename
if (customElement) {
this.isCE =
typeof customElement === 'boolean'
? customElement
: customElement(filename)
}
// resolve parser plugins
const plugins: ParserPlugin[] = resolveParserPlugins(
(scriptLang || scriptSetupLang)!,
Expand Down
11 changes: 11 additions & 0 deletions packages/compiler-sfc/src/script/defineProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,17 @@ function genRuntimePropFromType(
defaultString
])} }`
} else {
// #8989 for custom element, should keep the type
if (ctx.isCE) {
if (defaultString) {
return `${finalKey}: ${`{ ${defaultString}, type: ${toRuntimeTypeString(
type
)} }`}`
} else {
return `${finalKey}: {type: ${toRuntimeTypeString(type)}}`
}
}

// production: checks are useless
return `${finalKey}: ${defaultString ? `{ ${defaultString} }` : `{}`}`
}
Expand Down