09b4202a22
BREAKING CHANGE: Reactivity APIs adjustments: - `readonly` is now non-tracking if called on plain objects. `lock` and `unlock` have been removed. A `readonly` proxy can no longer be directly mutated. However, it can still wrap an already reactive object and track changes to the source reactive object. - `isReactive` now only returns true for proxies created by `reactive`, or a `readonly` proxy that wraps a `reactive` proxy. - A new utility `isProxy` is introduced, which returns true for both reactive or readonly proxies. - `markNonReactive` has been renamed to `markRaw`.
160 lines
4.5 KiB
TypeScript
160 lines
4.5 KiB
TypeScript
import { ComponentInternalInstance, currentInstance } from './component'
|
|
import {
|
|
VNode,
|
|
VNodeNormalizedChildren,
|
|
normalizeVNode,
|
|
VNodeChild,
|
|
InternalObjectKey
|
|
} from './vnode'
|
|
import {
|
|
isArray,
|
|
isFunction,
|
|
EMPTY_OBJ,
|
|
ShapeFlags,
|
|
PatchFlags,
|
|
extend,
|
|
def
|
|
} from '@vue/shared'
|
|
import { warn } from './warning'
|
|
import { isKeepAlive } from './components/KeepAlive'
|
|
import { withCtx } from './helpers/withRenderContext'
|
|
|
|
export type Slot = (...args: any[]) => VNode[]
|
|
|
|
export type InternalSlots = {
|
|
[name: string]: Slot | undefined
|
|
}
|
|
|
|
export type Slots = Readonly<InternalSlots>
|
|
|
|
export type RawSlots = {
|
|
[name: string]: unknown
|
|
// manual render fn hint to skip forced children updates
|
|
$stable?: boolean
|
|
// internal, for tracking slot owner instance. This is attached during
|
|
// normalizeChildren when the component vnode is created.
|
|
_ctx?: ComponentInternalInstance | null
|
|
// internal, indicates compiler generated slots
|
|
_?: 1
|
|
}
|
|
|
|
const isInternalKey = (key: string) => key[0] === '_' || key === '$stable'
|
|
|
|
const normalizeSlotValue = (value: unknown): VNode[] =>
|
|
isArray(value)
|
|
? value.map(normalizeVNode)
|
|
: [normalizeVNode(value as VNodeChild)]
|
|
|
|
const normalizeSlot = (
|
|
key: string,
|
|
rawSlot: Function,
|
|
ctx: ComponentInternalInstance | null | undefined
|
|
): Slot =>
|
|
withCtx((props: any) => {
|
|
if (__DEV__ && currentInstance) {
|
|
warn(
|
|
`Slot "${key}" invoked outside of the render function: ` +
|
|
`this will not track dependencies used in the slot. ` +
|
|
`Invoke the slot function inside the render function instead.`
|
|
)
|
|
}
|
|
return normalizeSlotValue(rawSlot(props))
|
|
}, ctx)
|
|
|
|
const normalizeObjectSlots = (rawSlots: RawSlots, slots: InternalSlots) => {
|
|
const ctx = rawSlots._ctx
|
|
for (const key in rawSlots) {
|
|
if (isInternalKey(key)) continue
|
|
const value = rawSlots[key]
|
|
if (isFunction(value)) {
|
|
slots[key] = normalizeSlot(key, value, ctx)
|
|
} else if (value != null) {
|
|
if (__DEV__) {
|
|
warn(
|
|
`Non-function value encountered for slot "${key}". ` +
|
|
`Prefer function slots for better performance.`
|
|
)
|
|
}
|
|
const normalized = normalizeSlotValue(value)
|
|
slots[key] = () => normalized
|
|
}
|
|
}
|
|
}
|
|
|
|
const normalizeVNodeSlots = (
|
|
instance: ComponentInternalInstance,
|
|
children: VNodeNormalizedChildren
|
|
) => {
|
|
if (__DEV__ && !isKeepAlive(instance.vnode)) {
|
|
warn(
|
|
`Non-function value encountered for default slot. ` +
|
|
`Prefer function slots for better performance.`
|
|
)
|
|
}
|
|
const normalized = normalizeSlotValue(children)
|
|
instance.slots.default = () => normalized
|
|
}
|
|
|
|
export const initSlots = (
|
|
instance: ComponentInternalInstance,
|
|
children: VNodeNormalizedChildren
|
|
) => {
|
|
if (instance.vnode.shapeFlag & ShapeFlags.SLOTS_CHILDREN) {
|
|
if ((children as RawSlots)._ === 1) {
|
|
instance.slots = children as InternalSlots
|
|
} else {
|
|
normalizeObjectSlots(children as RawSlots, (instance.slots = {}))
|
|
}
|
|
} else {
|
|
instance.slots = {}
|
|
if (children) {
|
|
normalizeVNodeSlots(instance, children)
|
|
}
|
|
}
|
|
def(instance.slots, InternalObjectKey, 1)
|
|
}
|
|
|
|
export const updateSlots = (
|
|
instance: ComponentInternalInstance,
|
|
children: VNodeNormalizedChildren
|
|
) => {
|
|
const { vnode, slots } = instance
|
|
let needDeletionCheck = true
|
|
let deletionComparisonTarget = EMPTY_OBJ
|
|
if (vnode.shapeFlag & ShapeFlags.SLOTS_CHILDREN) {
|
|
if ((children as RawSlots)._ === 1) {
|
|
// compiled slots.
|
|
if (
|
|
// bail on dynamic slots (v-if, v-for, reference of scope variables)
|
|
!(vnode.patchFlag & PatchFlags.DYNAMIC_SLOTS) &&
|
|
// bail on HRM updates
|
|
!(__DEV__ && instance.parent && instance.parent.renderUpdated)
|
|
) {
|
|
// compiled AND static.
|
|
// no need to update, and skip stale slots removal.
|
|
needDeletionCheck = false
|
|
} else {
|
|
// compiled but dynamic - update slots, but skip normalization.
|
|
extend(slots, children as Slots)
|
|
}
|
|
} else {
|
|
needDeletionCheck = !(children as RawSlots).$stable
|
|
normalizeObjectSlots(children as RawSlots, slots)
|
|
}
|
|
deletionComparisonTarget = children as RawSlots
|
|
} else if (children) {
|
|
// non slot object children (direct value) passed to a component
|
|
normalizeVNodeSlots(instance, children)
|
|
deletionComparisonTarget = { default: 1 }
|
|
}
|
|
|
|
// delete stale slots
|
|
if (needDeletionCheck) {
|
|
for (const key in slots) {
|
|
if (!isInternalKey(key) && !(key in deletionComparisonTarget)) {
|
|
delete slots[key]
|
|
}
|
|
}
|
|
}
|
|
}
|