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

65 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-09-10 15:01:11 +00:00
import { VNode, normalizeVNode } from './vnode'
import { ShapeFlags } from '.'
2019-09-07 15:28:40 +00:00
export const SuspenseSymbol = __DEV__ ? Symbol('Suspense key') : Symbol()
2019-09-09 20:00:50 +00:00
export interface SuspenseBoundary<
HostNode,
HostElement,
HostVNode = VNode<HostNode, HostElement>
> {
vnode: HostVNode
2019-09-09 17:59:53 +00:00
parent: SuspenseBoundary<HostNode, HostElement> | null
2019-09-10 15:01:11 +00:00
container: HostElement
subTree: HostVNode | null
oldSubTree: HostVNode | null
2019-09-09 20:00:50 +00:00
fallbackTree: HostVNode | null
oldFallbackTree: HostVNode | null
2019-09-07 15:28:40 +00:00
deps: number
isResolved: boolean
2019-09-09 17:59:53 +00:00
bufferedJobs: Function[]
2019-09-07 15:28:40 +00:00
resolve(): void
}
2019-09-09 17:59:53 +00:00
export function createSuspenseBoundary<HostNode, HostElement>(
2019-09-09 20:00:50 +00:00
vnode: VNode<HostNode, HostElement>,
parent: SuspenseBoundary<HostNode, HostElement> | null,
2019-09-10 15:01:11 +00:00
container: HostElement,
resolve: () => void
2019-09-09 17:59:53 +00:00
): SuspenseBoundary<HostNode, HostElement> {
return {
2019-09-09 20:00:50 +00:00
vnode,
2019-09-09 17:59:53 +00:00
parent,
2019-09-10 15:01:11 +00:00
container,
2019-09-07 15:28:40 +00:00
deps: 0,
subTree: null,
oldSubTree: null,
2019-09-09 17:59:53 +00:00
fallbackTree: null,
2019-09-09 20:00:50 +00:00
oldFallbackTree: null,
2019-09-07 15:28:40 +00:00
isResolved: false,
2019-09-09 17:59:53 +00:00
bufferedJobs: [],
resolve
2019-09-07 15:28:40 +00:00
}
}
2019-09-10 15:01:11 +00:00
export function normalizeSuspenseChildren(
vnode: VNode
): {
content: VNode
fallback: VNode
} {
const { shapeFlag } = vnode
const children = vnode.children as any
if (shapeFlag & ShapeFlags.SLOTS_CHILDREN) {
return {
content: normalizeVNode(children.default()),
fallback: normalizeVNode(children.fallback ? children.fallback() : null)
}
} else {
return {
content: normalizeVNode(children),
fallback: normalizeVNode(null)
}
}
}