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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | 84x 84x 84x 84x 84x 84x 84x 84x 1424x 1424x 1424x 802x 622x 1x 1x 621x 3x 3x 3x 84x 19x 19x 17x 17x 17x 19x 19x 19x 11x 8x 8x 3x 8x 8x 84x 16x 1x 15x 15x 24x 4x 20x 3x 3x 7x 7x 7x 7x 7x 7x 7x 17x 14x 15x 1x 15x 1x 15x 15x 7x 1x 7x 1x 7x 1x 7x 16x 1x 1x 15x 19x 19x 1x 1x 5x 5x 5x 5x 5x 1x 1x 3x 3x 3x 19x 19x 1x 1x 1x 19x 2x 19x 84x 5124x | import { extend, hyphenate, isArray, isObject, isString, makeMap, normalizeClass, normalizeStyle, ShapeFlags, toHandlerKey } from '@vue/shared' import { Component, ComponentInternalInstance, ComponentOptions, Data, InternalRenderFunction } from '../component' import { currentRenderingInstance } from '../componentRenderContext' import { DirectiveArguments, withDirectives } from '../directives' import { resolveDirective, resolveDynamicComponent } from '../helpers/resolveAssets' import { Comment, createVNode, isVNode, normalizeChildren, VNode, VNodeArrayChildren, VNodeProps } from '../vnode' import { checkCompatEnabled, DeprecationTypes, isCompatEnabled } from './compatConfig' import { compatModelEventPrefix } from './componentVModel' export function convertLegacyRenderFn(instance: ComponentInternalInstance) { const Component = instance.type as ComponentOptions const render = Component.render as InternalRenderFunction | undefined // v3 runtime compiled, or already checked / wrapped if (!render || render._rc || render._compatChecked || render._compatWrapped) { return } if (render.length >= 2) { // v3 pre-compiled function, since v2 render functions never need more than // 2 arguments, and v2 functional render functions would have already been // normalized into v3 functional components render._compatChecked = true return } // v2 render function, try to provide compat if (checkCompatEnabled(DeprecationTypes.RENDER_FUNCTION, instance)) { const wrapped = (Component.render = function compatRender() { // @ts-ignore return render.call(this, compatH) }) // @ts-ignore wrapped._compatWrapped = true } } interface LegacyVNodeProps { key?: string | number ref?: string refInFor?: boolean staticClass?: string class?: unknown staticStyle?: Record<string, unknown> style?: Record<string, unknown> attrs?: Record<string, unknown> domProps?: Record<string, unknown> on?: Record<string, Function | Function[]> nativeOn?: Record<string, Function | Function[]> directives?: LegacyVNodeDirective[] // component only props?: Record<string, unknown> slot?: string scopedSlots?: Record<string, Function> model?: { value: any callback: (v: any) => void expression: string } } interface LegacyVNodeDirective { name: string value: unknown arg?: string modifiers?: Record<string, boolean> } type LegacyVNodeChildren = | string | number | boolean | VNode | VNodeArrayChildren export function compatH( type: string | Component, children?: LegacyVNodeChildren ): VNode export function compatH( type: string | Component, props?: Data & LegacyVNodeProps, children?: LegacyVNodeChildren ): VNode export function compatH( type: any, propsOrChildren?: any, children?: any ): VNode { Iif (!type) { type = Comment } // to support v2 string component name look!up if (typeof type === 'string') { const t = hyphenate(type) Iif (t === 'transition' || t === 'transition-group' || t === 'keep-alive') { // since transition and transition-group are runtime-dom-specific, // we cannot import them directly here. Instead they are registered using // special keys in @vue/compat entry. type = `__compat__${t}` } type = resolveDynamicComponent(type) } const l = arguments.length const is2ndArgArrayChildren = isArray(propsOrChildren) if (l === 2 || is2ndArgArrayChildren) { if (isObject(propsOrChildren) && !is2ndArgArrayChildren) { // single vnode without props Iif (isVNode(propsOrChildren)) { return convertLegacySlots(createVNode(type, null, [propsOrChildren])) } // props without children return convertLegacySlots( convertLegacyDirectives( createVNode(type, convertLegacyProps(propsOrChildren, type)), propsOrChildren ) ) } else { // omit props return convertLegacySlots(createVNode(type, null, propsOrChildren)) } } else { Iif (isVNode(children)) { children = [children] } return convertLegacySlots( convertLegacyDirectives( createVNode(type, convertLegacyProps(propsOrChildren, type), children), propsOrChildren ) ) } } const skipLegacyRootLevelProps = /*#__PURE__*/ makeMap( 'staticStyle,staticClass,directives,model,hook' ) function convertLegacyProps( legacyProps: LegacyVNodeProps | undefined, type: any ): (Data & VNodeProps) | null { if (!legacyProps) { return null } const converted: Data & VNodeProps = {} for (const key in legacyProps) { if (key === 'attrs' || key === 'domProps' || key === 'props') { extend(converted, legacyProps[key]) } else if (key === 'on' || key === 'nativeOn') { const listeners = legacyProps[key] for (const event in listeners) { let handlerKey = convertLegacyEventKey(event) if (key === 'nativeOn') handlerKey += `Native` const existing = converted[handlerKey] const incoming = listeners[event] if (existing !== incoming) { Iif (existing) { converted[handlerKey] = [].concat(existing as any, incoming as any) } else { converted[handlerKey] = incoming } } } } else if (!skipLegacyRootLevelProps(key)) { converted[key] = legacyProps[key as keyof LegacyVNodeProps] } } if (legacyProps.staticClass) { converted.class = normalizeClass([legacyProps.staticClass, converted.class]) } if (legacyProps.staticStyle) { converted.style = normalizeStyle([legacyProps.staticStyle, converted.style]) } Iif (legacyProps.model && isObject(type)) { // v2 compiled component v-model const { prop = 'value', event = 'input' } = (type as any).model || {} converted[prop] = legacyProps.model.value converted[compatModelEventPrefix + event] = legacyProps.model.callback } return converted } function convertLegacyEventKey(event: string): string { // normalize v2 event prefixes if (event[0] === '&') { event = event.slice(1) + 'Passive' } if (event[0] === '~') { event = event.slice(1) + 'Once' } if (event[0] === '!') { event = event.slice(1) + 'Capture' } return toHandlerKey(event) } function convertLegacyDirectives( vnode: VNode, props?: LegacyVNodeProps ): VNode { if (props && props.directives) { return withDirectives( vnode, props.directives.map(({ name, value, arg, modifiers }) => { return [ resolveDirective(name)!, value, arg, modifiers ] as DirectiveArguments[number] }) ) } return vnode } function convertLegacySlots(vnode: VNode): VNode { const { props, children } = vnode let slots: Record<string, any> | undefined if (vnode.shapeFlag & ShapeFlags.COMPONENT && isArray(children)) { slots = {} // check "slot" property on vnodes and turn them into v3 function slots for (let i = 0; i < children.length; i++) { const child = children[i] const slotName = (isVNode(child) && child.props && child.props.slot) || 'default' const slot = slots[slotName] || (slots[slotName] = [] as any[]) Iif (isVNode(child) && child.type === 'template') { slot.push(child.children) } else { slot.push(child) } } if (slots) { for (const key in slots) { const slotChildren = slots[key] slots[key] = () => slotChildren slots[key]._ns = true /* non-scoped slot */ } } } const scopedSlots = props && props.scopedSlots if (scopedSlots) { delete props!.scopedSlots Iif (slots) { extend(slots, scopedSlots) } else { slots = scopedSlots } } if (slots) { normalizeChildren(vnode, slots) } return vnode } export function defineLegacyVNodeProperties(vnode: VNode) { /* istanbul ignore if */ if ( isCompatEnabled( DeprecationTypes.RENDER_FUNCTION, currentRenderingInstance, true /* enable for built-ins */ ) && isCompatEnabled( DeprecationTypes.PRIVATE_APIS, currentRenderingInstance, true /* enable for built-ins */ ) ) { const context = currentRenderingInstance const getInstance = () => vnode.component && vnode.component.proxy let componentOptions: any Object.defineProperties(vnode, { tag: { get: () => vnode.type }, data: { get: () => vnode.props || {}, set: p => (vnode.props = p) }, elm: { get: () => vnode.el }, componentInstance: { get: getInstance }, child: { get: getInstance }, text: { get: () => (isString(vnode.children) ? vnode.children : null) }, context: { get: () => context && context.proxy }, componentOptions: { get: () => { if (vnode.shapeFlag & ShapeFlags.STATEFUL_COMPONENT) { if (componentOptions) { return componentOptions } return (componentOptions = { Ctor: vnode.type, propsData: vnode.props, children: vnode.children }) } } } }) } } |