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 | 2x 2x 191x 191x 191x 191x 191x 191x 191x 4x 8x 8x 8x 8x 8x 8x 8x 4x 4x 4x 191x 12x 12x 5x 5x 12x 4x 4x 12x 12x 175x 175x 70x 105x 191x 191x 191x 191x 191x 191x 191x 191x 191x 125x 50x 49x 49x 1x 1x 1x 1x 49x 1x 1x 49x 48x 49x 191x 7x 4x 4x 1x 1x 4x 1x 1x 7x 191x 22x 191x 153x 153x 153x 153x 153x 45x 28x 28x 17x 45x 9x 45x 36x 36x 17x 17x 36x 153x 34x 34x 17x 17x 102x 74x 74x 74x 153x 153x 119x 119x 153x 34x 34x 153x 153x 191x | import type { SuspenseBoundary } from './components/Suspense' import type { VNode, VNodeNormalizedRef, VNodeNormalizedRefAtom } from './vnode' import { EMPTY_OBJ, 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 } from './scheduler' import { queuePostRenderEffect } from './renderer' import { type ComponentOptions, getComponentPublicInstance } from './component' import { knownTemplateRefs } from './helpers/useTemplateRef' /** * 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 ? () => false : (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) } // dynamic ref changed. unset old ref if (oldRef != null && oldRef !== ref) { if (isString(oldRef)) { refs[oldRef] = null if (canSetSetupRef(oldRef)) { setupState[oldRef] = null } } else if (isRef(oldRef)) { oldRef.value = 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] : ref.value if (isUnmount) { isArray(existing) && remove(existing, refValue) } else { if (!isArray(existing)) { if (_isString) { refs[ref] = [refValue] if (canSetSetupRef(ref)) { setupState[ref] = refs[ref] } } else { ref.value = [refValue] if (rawRef.k) refs[rawRef.k] = ref.value } } else if (!existing.includes(refValue)) { existing.push(refValue) } } } else if (_isString) { refs[ref] = value if (canSetSetupRef(ref)) { setupState[ref] = value } } else if (_isRef) { 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 ;(doSet as SchedulerJob).id = -1 queuePostRenderEffect(doSet, parentSuspense) } else { doSet() } } else if (__DEV__) { warn('Invalid template ref type:', ref, `(${typeof ref})`) } } } |