vue3-yuanma/packages/runtime-core/src/h.ts

155 lines
4.1 KiB
TypeScript
Raw Normal View History

2019-09-05 15:11:33 +00:00
import {
VNode,
2019-11-01 13:58:27 +00:00
VNodeProps,
2019-09-05 15:11:33 +00:00
createVNode,
VNodeArrayChildren,
2019-09-05 15:11:33 +00:00
Fragment,
isVNode
2019-09-05 15:11:33 +00:00
} from './vnode'
import { Teleport, TeleportProps } from './components/Teleport'
import { Suspense, SuspenseProps } from './components/Suspense'
2019-08-23 19:27:17 +00:00
import { isObject, isArray } from '@vue/shared'
2019-09-05 15:11:33 +00:00
import { RawSlots } from './componentSlots'
import { FunctionalComponent, Component } from './component'
import { ComponentOptions } from './componentOptions'
2019-08-23 19:27:17 +00:00
// `h` is a more user-friendly version of `createVNode` that allows omitting the
// props when possible. It is intended for manually written render functions.
// Compiler-generated code uses `createVNode` because
// 1. it is monomorphic and avoids the extra call overhead
// 2. it allows specifying patchFlags for optimization
/*
// type only
h('div')
// type + props
h('div', {})
// type + omit props + children
// Omit props does NOT support named slots
h('div', []) // array
h('div', 'foo') // text
h('div', h('br')) // vnode
h(Component, () => {}) // default slot
2019-08-23 19:27:17 +00:00
// type + props + children
h('div', {}, []) // array
h('div', {}, 'foo') // text
h('div', {}, h('br')) // vnode
h(Component, {}, () => {}) // default slot
h(Component, {}, {}) // named slots
2019-08-23 19:27:17 +00:00
// named slots without props requires explicit `null` to avoid ambiguity
h(Component, null, {})
2019-08-23 19:27:17 +00:00
**/
2019-11-01 13:58:27 +00:00
type RawProps = VNodeProps & {
2019-09-05 15:11:33 +00:00
// used to differ from a single VNode object as children
__v_isVNode?: never
2019-09-05 15:11:33 +00:00
// used to differ from Array children
[Symbol.iterator]?: never
}
2019-11-01 13:58:27 +00:00
type RawChildren =
2019-09-06 16:58:31 +00:00
| string
| number
| boolean
| VNode
| VNodeArrayChildren
2019-09-06 16:58:31 +00:00
| (() => any)
// fake constructor type returned from `defineComponent`
2019-09-05 15:11:33 +00:00
interface Constructor<P = any> {
__isFragment?: never
__isTeleport?: never
__isSuspense?: never
2019-09-05 15:11:33 +00:00
new (): { $props: P }
}
// Excludes Component type from returned `defineComponent`
type NotDefinedComponent<T extends Component> = T extends Constructor
? never
: T
2019-09-05 15:11:33 +00:00
// The following is a series of overloads for providing props validation of
// manually written render functions.
// element
export function h(type: string, children?: RawChildren): VNode
export function h(
2019-09-05 15:11:33 +00:00
type: string,
2019-09-06 16:58:31 +00:00
props?: RawProps | null,
children?: RawChildren | RawSlots
2019-09-05 15:11:33 +00:00
): VNode
// fragment
export function h(type: typeof Fragment, children?: VNodeArrayChildren): VNode
export function h(
2019-09-05 15:11:33 +00:00
type: typeof Fragment,
props?: RawProps | null,
children?: VNodeArrayChildren
2019-09-05 15:11:33 +00:00
): VNode
// teleport (target prop is required)
export function h(
type: typeof Teleport,
props: RawProps & TeleportProps,
children: RawChildren
2019-09-05 15:11:33 +00:00
): VNode
2019-10-29 18:04:44 +00:00
// suspense
export function h(type: typeof Suspense, children?: RawChildren): VNode
export function h(
2019-10-29 18:04:44 +00:00
type: typeof Suspense,
props?: (RawProps & SuspenseProps) | null,
2019-10-29 18:04:44 +00:00
children?: RawChildren | RawSlots
): VNode
2019-09-05 15:11:33 +00:00
// functional component
export function h<P>(
2019-09-05 15:11:33 +00:00
type: FunctionalComponent<P>,
props?: (RawProps & P) | ({} extends P ? null : never),
2019-09-06 16:58:31 +00:00
children?: RawChildren | RawSlots
2019-09-05 15:11:33 +00:00
): VNode
// catch-all for generic component types
export function h(type: Component, children?: RawChildren): VNode
// exclude `defineComponent`
export function h<Options extends ComponentOptions | FunctionalComponent<{}>>(
type: NotDefinedComponent<Options>,
props?: RawProps | null,
2019-09-06 16:58:31 +00:00
children?: RawChildren | RawSlots
2019-09-05 15:11:33 +00:00
): VNode
// fake constructor type returned by `defineComponent` or class component
export function h(type: Constructor, children?: RawChildren): VNode
export function h<P>(
2019-09-05 15:11:33 +00:00
type: Constructor<P>,
props?: (RawProps & P) | ({} extends P ? null : never),
2019-09-06 16:58:31 +00:00
children?: RawChildren | RawSlots
2019-09-05 15:11:33 +00:00
): VNode
// Actual implementation
export function h(type: any, propsOrChildren?: any, children?: any): VNode {
2019-08-23 19:27:17 +00:00
if (arguments.length === 2) {
if (isObject(propsOrChildren) && !isArray(propsOrChildren)) {
// single vnode without props
if (isVNode(propsOrChildren)) {
return createVNode(type, null, [propsOrChildren])
}
2019-08-23 19:27:17 +00:00
// props without children
return createVNode(type, propsOrChildren)
} else {
// omit props
return createVNode(type, null, propsOrChildren)
}
} else {
if (isVNode(children)) {
children = [children]
}
2019-08-23 19:27:17 +00:00
return createVNode(type, propsOrChildren, children)
}
}