types: improve h inference + infer required props without need for as const
This commit is contained in:
parent
b5c501c0b4
commit
7b7b8ef221
@ -35,7 +35,7 @@ test('createComponent type inference', () => {
|
|||||||
type: Array as () => string[],
|
type: Array as () => string[],
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
} as const, // required to narrow for conditional check
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
props.a && props.a * 2
|
props.a && props.a * 2
|
||||||
props.b.slice()
|
props.b.slice()
|
||||||
|
@ -7,18 +7,15 @@ import {
|
|||||||
} from './apiOptions'
|
} from './apiOptions'
|
||||||
import { SetupContext, RenderFunction } from './component'
|
import { SetupContext, RenderFunction } from './component'
|
||||||
import { ComponentPublicInstance } from './componentProxy'
|
import { ComponentPublicInstance } from './componentProxy'
|
||||||
import { ExtractPropTypes } from './componentProps'
|
import { ExtractPropTypes, ComponentPropsOptions } from './componentProps'
|
||||||
import { isFunction } from '@vue/shared'
|
import { isFunction } from '@vue/shared'
|
||||||
import { VNodeProps } from './vnode'
|
import { VNodeProps } from './vnode'
|
||||||
|
|
||||||
// overload 1: direct setup function
|
// overload 1: direct setup function
|
||||||
// (uses user defined props interface)
|
// (uses user defined props interface)
|
||||||
// __isConstructor: true is a type-only differentiator to avoid returned
|
|
||||||
// constructor type from being matched as an options object in h()
|
|
||||||
export function createComponent<Props, RawBindings = object>(
|
export function createComponent<Props, RawBindings = object>(
|
||||||
setup: (props: Props, ctx: SetupContext) => RawBindings | RenderFunction
|
setup: (props: Props, ctx: SetupContext) => RawBindings | RenderFunction
|
||||||
): {
|
): {
|
||||||
__isConstructor: true
|
|
||||||
new (): ComponentPublicInstance<
|
new (): ComponentPublicInstance<
|
||||||
Props,
|
Props,
|
||||||
RawBindings,
|
RawBindings,
|
||||||
@ -42,7 +39,6 @@ export function createComponent<
|
|||||||
>(
|
>(
|
||||||
options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M>
|
options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M>
|
||||||
): {
|
): {
|
||||||
__isConstructor: true
|
|
||||||
new (): ComponentPublicInstance<
|
new (): ComponentPublicInstance<
|
||||||
Props,
|
Props,
|
||||||
RawBindings,
|
RawBindings,
|
||||||
@ -65,7 +61,6 @@ export function createComponent<
|
|||||||
>(
|
>(
|
||||||
options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M>
|
options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M>
|
||||||
): {
|
): {
|
||||||
__isConstructor: true
|
|
||||||
// array props technically doesn't place any contraints on props in TSX
|
// array props technically doesn't place any contraints on props in TSX
|
||||||
new (): ComponentPublicInstance<VNodeProps, RawBindings, D, C, M>
|
new (): ComponentPublicInstance<VNodeProps, RawBindings, D, C, M>
|
||||||
}
|
}
|
||||||
@ -73,7 +68,7 @@ export function createComponent<
|
|||||||
// overload 4: object format with object props declaration
|
// overload 4: object format with object props declaration
|
||||||
// see `ExtractPropTypes` in ./componentProps.ts
|
// see `ExtractPropTypes` in ./componentProps.ts
|
||||||
export function createComponent<
|
export function createComponent<
|
||||||
PropsOptions,
|
PropsOptions extends Readonly<ComponentPropsOptions>,
|
||||||
RawBindings,
|
RawBindings,
|
||||||
D,
|
D,
|
||||||
C extends ComputedOptions = {},
|
C extends ComputedOptions = {},
|
||||||
@ -81,10 +76,9 @@ export function createComponent<
|
|||||||
>(
|
>(
|
||||||
options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M>
|
options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M>
|
||||||
): {
|
): {
|
||||||
__isConstructor: true
|
|
||||||
// for Vetur and TSX support
|
// for Vetur and TSX support
|
||||||
new (): ComponentPublicInstance<
|
new (): ComponentPublicInstance<
|
||||||
ExtractPropTypes<PropsOptions, false>,
|
ExtractPropTypes<PropsOptions>,
|
||||||
RawBindings,
|
RawBindings,
|
||||||
D,
|
D,
|
||||||
C,
|
C,
|
||||||
|
@ -67,8 +67,8 @@ export interface ComponentOptionsBase<
|
|||||||
inheritAttrs?: boolean
|
inheritAttrs?: boolean
|
||||||
|
|
||||||
// type-only differentiator to separate OptionWihtoutProps from a constructor
|
// type-only differentiator to separate OptionWihtoutProps from a constructor
|
||||||
// type returned by createComponent()
|
// type returned by createComponent() or FunctionalComponent
|
||||||
__isConstructor?: never
|
call?: never
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ComponentOptionsWithoutProps<
|
export type ComponentOptionsWithoutProps<
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import {
|
import {
|
||||||
VNodeTypes,
|
|
||||||
VNode,
|
VNode,
|
||||||
VNodeProps,
|
VNodeProps,
|
||||||
createVNode,
|
createVNode,
|
||||||
@ -146,11 +145,7 @@ export function h<P>(
|
|||||||
): VNode
|
): VNode
|
||||||
|
|
||||||
// Actual implementation
|
// Actual implementation
|
||||||
export function h(
|
export function h(type: any, propsOrChildren?: any, children?: any): VNode {
|
||||||
type: VNodeTypes,
|
|
||||||
propsOrChildren?: any,
|
|
||||||
children?: any
|
|
||||||
): VNode {
|
|
||||||
if (arguments.length === 2) {
|
if (arguments.length === 2) {
|
||||||
if (isObject(propsOrChildren) && !isArray(propsOrChildren)) {
|
if (isObject(propsOrChildren) && !isArray(propsOrChildren)) {
|
||||||
// single vnode without props
|
// single vnode without props
|
||||||
|
Loading…
x
Reference in New Issue
Block a user