Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | 3x 3x 3x 211x 211x 211x 211x 211x 211x 211x 4x 8x 8x 8x 8x 8x 8x 8x 4x 4x 4x 211x 12x 12x 5x 5x 12x 4x 4x 12x 12x 195x 195x 73x 122x 211x 211x 211x 211x 211x 211x 211x 211x 211x 142x 53x 51x 51x 1x 1x 1x 1x 51x 1x 1x 51x 50x 51x 211x 113x 113x 211x 9x 9x 5x 5x 1x 1x 9x 2x 1x 1x 2x 2x 2x 9x 211x 20x 211x 175x 175x 175x 175x 173x 54x 28x 28x 26x 23x 3x 54x 9x 54x 45x 3x 3x 3x 3x 2x 2x 3x 3x 45x 23x 23x 45x 173x 37x 37x 19x 19x 113x 82x 74x 74x 82x 82x 173x 175x 138x 136x 136x 136x 138x 138x 138x 175x 37x 37x 37x 175x 175x 211x 46x 46x 46x 2x 2x 2x 46x | import type { SuspenseBoundary } from './components/Suspense' import type { VNode, VNodeNormalizedRef, VNodeNormalizedRefAtom, VNodeRef, } from './vnode' import { EMPTY_OBJ, NO, ShapeFlags, hasOwn, isArray, isFunction, isString, remove, } from '@vue/shared' import { isAsyncWrapper } from './apiAsyncComponent' import { warn } from './warning' import { isRef, toRaw } from '@vue/reactivity' import { ErrorCodes, callWithErrorHandling } from './errorHandling' import { type SchedulerJob, SchedulerJobFlags } from './scheduler' import { queuePostRenderEffect } from './renderer' import { type ComponentOptions, getComponentPublicInstance } from './component' import { knownTemplateRefs } from './helpers/useTemplateRef' const pendingSetRefMap = new WeakMap<VNodeNormalizedRef, SchedulerJob>() /** * Function for handling a template ref */ export function setRef( rawRef: VNodeNormalizedRef, oldRawRef: VNodeNormalizedRef | null, parentSuspense: SuspenseBoundary | null, vnode: VNode, isUnmount = false, ): void { if (isArray(rawRef)) { rawRef.forEach((r, i) => setRef( r, oldRawRef && (isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), parentSuspense, vnode, isUnmount, ), ) return } if (isAsyncWrapper(vnode) && !isUnmount) { // #4999 if an async component already resolved and cached by KeepAlive, // we need to set the ref to inner component if ( vnode.shapeFlag & ShapeFlags.COMPONENT_KEPT_ALIVE && (vnode.type as ComponentOptions).__asyncResolved && vnode.component!.subTree.component ) { setRef(rawRef, oldRawRef, parentSuspense, vnode.component!.subTree) } // otherwise, nothing needs to be done because the template ref // is forwarded to inner component return } const refValue = vnode.shapeFlag & ShapeFlags.STATEFUL_COMPONENT ? getComponentPublicInstance(vnode.component!) : vnode.el const value = isUnmount ? null : refValue const { i: owner, r: ref } = rawRef if (__DEV__ && !owner) { warn( `Missing ref owner context. ref cannot be used on hoisted vnodes. ` + `A vnode with ref must be created inside the render function.`, ) return } const oldRef = oldRawRef && (oldRawRef as VNodeNormalizedRefAtom).r const refs = owner.refs === EMPTY_OBJ ? (owner.refs = {}) : owner.refs const setupState = owner.setupState const rawSetupState = toRaw(setupState) const canSetSetupRef = setupState === EMPTY_OBJ ? NO : (key: string) => { if (__DEV__) { if (hasOwn(rawSetupState, key) && !isRef(rawSetupState[key])) { warn( `Template ref "${key}" used on a non-ref value. ` + `It will not work in the production build.`, ) } if (knownTemplateRefs.has(rawSetupState[key] as any)) { return false } } return hasOwn(rawSetupState, key) } const canSetRef = (ref: VNodeRef) => { return !__DEV__ || !knownTemplateRefs.has(ref as any) } // dynamic ref changed. unset old ref if (oldRef != null && oldRef !== ref) { invalidatePendingSetRef(oldRawRef!) if (isString(oldRef)) { refs[oldRef] = null if (canSetSetupRef(oldRef)) { setupState[oldRef] = null } } else if (isRef(oldRef)) { if (canSetRef(oldRef)) { oldRef.value = null } // this type assertion is valid since `oldRef` has already been asserted to be non-null const oldRawRefAtom = oldRawRef as VNodeNormalizedRefAtom if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null } } if (isFunction(ref)) { callWithErrorHandling(ref, owner, ErrorCodes.FUNCTION_REF, [value, refs]) } else { const _isString = isString(ref) const _isRef = isRef(ref) if (_isString || _isRef) { const doSet = () => { if (rawRef.f) { const existing = _isString ? canSetSetupRef(ref) ? setupState[ref] : refs[ref] : canSetRef(ref) || !rawRef.k ? ref.value : refs[rawRef.k] if (isUnmount) { isArray(existing) && remove(existing, refValue) } else { if (!isArray(existing)) { if (_isString) { refs[ref] = [refValue] if (canSetSetupRef(ref)) { setupState[ref] = refs[ref] } } else { const newVal = [refValue] if (canSetRef(ref)) { ref.value = newVal } if (rawRef.k) refs[rawRef.k] = newVal } } else if (!existing.includes(refValue)) { existing.push(refValue) } } } else if (_isString) { refs[ref] = value if (canSetSetupRef(ref)) { setupState[ref] = value } } else if (_isRef) { if (canSetRef(ref)) { ref.value = value } if (rawRef.k) refs[rawRef.k] = value } else if (__DEV__) { warn('Invalid template ref type:', ref, `(${typeof ref})`) } } if (value) { // #1789: for non-null values, set them after render // null values means this is unmount and it should not overwrite another // ref with the same key const job: SchedulerJob = () => { doSet() pendingSetRefMap.delete(rawRef) } job.id = -1 pendingSetRefMap.set(rawRef, job) queuePostRenderEffect(job, parentSuspense) } else { invalidatePendingSetRef(rawRef) doSet() } } else if (__DEV__) { warn('Invalid template ref type:', ref, `(${typeof ref})`) } } } function invalidatePendingSetRef(rawRef: VNodeNormalizedRef) { const pendingSetRef = pendingSetRefMap.get(rawRef) if (pendingSetRef) { pendingSetRef.flags! |= SchedulerJobFlags.DISPOSED pendingSetRefMap.delete(rawRef) } } |