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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | 84x 84x 84x 84x 84x 84x 84x 84x 84x 84x 53x 84x 171x 84x 2x 2x 34x 34x 34x 34x 34x 2x 134x 134x 4x 134x 134x 134x 134x 134x 5x 5x 1x 1x 1x 5x 5x 1x 1x 1x 2x 2x 2x 2x 3x 3x 3x 2x 3x 2x 9x 9x 9x 117x 66x 4x 62x 51x 44x 44x 44x 44x 44x 4x 1x 1x 3x 4x 4x 7x 5x 5x 2x 2x 132x 1x 132x 2x 62x 62x 62x 62x 62x 2x 62x 25x 18x 27x 16x 7x 5x 62x 62x 2x 62x 2x 2x 2x 62x 18x 18x 18x 3x 3x 2x 2x 3x 3x 3x 44x 31x 2x 2x 2x 62x 2x 32x 32x 32x 32x 32x 60x 60x 56x 4x 1x 3x 3x 2x 2x 3x 32x 2x 9x 9x 9x 9x 9x 7x 2x 2x 2x 2x 4x 4x 4x 4x 1x 1x 4x 4x 3x 1x 4x 4x 4x 4x 4x 2x 6x 6x 24x 24x 12x 12x 6x 6x 2x | import { VNode, normalizeVNode, Text, Comment, Static, Fragment, VNodeHook, createVNode, createTextVNode, invokeVNodeHook } from './vnode' import { flushPostFlushCbs } from './scheduler' import { ComponentInternalInstance } from './component' import { invokeDirectiveHook } from './directives' import { warn } from './warning' import { PatchFlags, ShapeFlags, isReservedProp, isOn } from '@vue/shared' import { RendererInternals } from './renderer' import { setRef } from './rendererTemplateRef' import { SuspenseImpl, SuspenseBoundary, queueEffectWithSuspense } from './components/Suspense' import { TeleportImpl, TeleportVNode } from './components/Teleport' import { isAsyncWrapper } from './apiAsyncComponent' export type RootHydrateFunction = ( vnode: VNode<Node, Element>, container: Element | ShadowRoot ) => void const enum DOMNodeTypes { ELEMENT = 1, TEXT = 3, COMMENT = 8 } let hasMismatch = false const isSVGContainer = (container: Element) => /svg/.test(container.namespaceURI!) && container.tagName !== 'foreignObject' const isComment = (node: Node): node is Comment => node.nodeType === DOMNodeTypes.COMMENT // Note: hydration is DOM-specific // But we have to place it in core due to tight coupling with core - splitting // it out creates a ton of unnecessary complexity. // Hydration also depends on some renderer internal logic which needs to be // passed in via arguments. export function createHydrationFunctions( rendererInternals: RendererInternals<Node, Element> ) { const { mt: mountComponent, p: patch, o: { patchProp, nextSibling, parentNode, remove, insert, createComment } } = rendererInternals const hydrate: RootHydrateFunction = (vnode, container) => { Iif (!container.hasChildNodes()) { __DEV__ && warn( `Attempting to hydrate existing markup but container is empty. ` + `Performing full mount instead.` ) patch(null, vnode, container) flushPostFlushCbs() return } hasMismatch = false hydrateNode(container.firstChild!, vnode, null, null, null) flushPostFlushCbs() Iif (hasMismatch && !__TEST__) { // this error should show up in production console.error(`Hydration completed but contains mismatches.`) } } const hydrateNode = ( node: Node, vnode: VNode, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, slotScopeIds: string[] | null, optimized = false ): Node | null => { const isFragmentStart = isComment(node) && node.data === '[' const onMismatch = () => handleMismatch( node, vnode, parentComponent, parentSuspense, slotScopeIds, isFragmentStart ) const { type, ref, shapeFlag } = vnode const domType = node.nodeType vnode.el = node let nextNode: Node | null = null switch (type) { case Text: Iif (domType !== DOMNodeTypes.TEXT) { nextNode = onMismatch() } else { if ((node as Text).data !== vnode.children) { hasMismatch = true __DEV__ && warn( `Hydration text mismatch:` + `\n- Client: ${JSON.stringify((node as Text).data)}` + `\n- Server: ${JSON.stringify(vnode.children)}` ) ;(node as Text).data = vnode.children as string } nextNode = nextSibling(node) } break case Comment: Iif (domType !== DOMNodeTypes.COMMENT || isFragmentStart) { nextNode = onMismatch() } else { nextNode = nextSibling(node) } break case Static: Iif (domType !== DOMNodeTypes.ELEMENT) { nextNode = onMismatch() } else { // determine anchor, adopt content nextNode = node // if the static vnode has its content stripped during build, // adopt it from the server-rendered HTML. const needToAdoptContent = !(vnode.children as string).length for (let i = 0; i < vnode.staticCount!; i++) { if (needToAdoptContent) vnode.children += (nextNode as Element).outerHTML if (i === vnode.staticCount! - 1) { vnode.anchor = nextNode } nextNode = nextSibling(nextNode)! } return nextNode } break case Fragment: Iif (!isFragmentStart) { nextNode = onMismatch() } else { nextNode = hydrateFragment( node as Comment, vnode, parentComponent, parentSuspense, slotScopeIds, optimized ) } break default: if (shapeFlag & ShapeFlags.ELEMENT) { if ( domType !== DOMNodeTypes.ELEMENT || (vnode.type as string).toLowerCase() !== (node as Element).tagName.toLowerCase() ) { nextNode = onMismatch() } else { nextNode = hydrateElement( node as Element, vnode, parentComponent, parentSuspense, slotScopeIds, optimized ) } } else if (shapeFlag & ShapeFlags.COMPONENT) { // when setting up the render effect, if the initial vnode already // has .el set, the component will perform hydration instead of mount // on its sub-tree. vnode.slotScopeIds = slotScopeIds const container = parentNode(node)! mountComponent( vnode, container, null, parentComponent, parentSuspense, isSVGContainer(container), optimized ) // component may be async, so in the case of fragments we cannot rely // on component's rendered output to determine the end of the fragment // instead, we do a lookahead to find the end anchor node. nextNode = isFragmentStart ? locateClosingAsyncAnchor(node) : nextSibling(node) // #3787 // if component is async, it may get moved / unmounted before its // inner component is loaded, so we need to give it a placeholder // vnode that matches its adopted DOM. if (isAsyncWrapper(vnode)) { let subTree if (isFragmentStart) { subTree = createVNode(Fragment) subTree.anchor = nextNode ? nextNode.previousSibling : container.lastChild } else { subTree = node.nodeType === 3 ? createTextVNode('') : createVNode('div') } subTree.el = node vnode.component!.subTree = subTree } } else if (shapeFlag & ShapeFlags.TELEPORT) { Iif (domType !== DOMNodeTypes.COMMENT) { nextNode = onMismatch() } else { nextNode = (vnode.type as typeof TeleportImpl).hydrate( node, vnode as TeleportVNode, parentComponent, parentSuspense, slotScopeIds, optimized, rendererInternals, hydrateChildren ) } } else if (__FEATURE_SUSPENSE__ && shapeFlag & ShapeFlags.SUSPENSE) { nextNode = (vnode.type as typeof SuspenseImpl).hydrate( node, vnode, parentComponent, parentSuspense, isSVGContainer(parentNode(node)!), slotScopeIds, optimized, rendererInternals, hydrateNode ) } else IEif (__DEV__) { warn('Invalid HostVNode type:', type, `(${typeof type})`) } } if (ref != null) { setRef(ref, null, parentSuspense, vnode) } return nextNode } const hydrateElement = ( el: Element, vnode: VNode, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, slotScopeIds: string[] | null, optimized: boolean ) => { optimized = optimized || !!vnode.dynamicChildren const { type, props, patchFlag, shapeFlag, dirs } = vnode // #4006 for form elements with non-string v-model value bindings // e.g. <option :value="obj">, <input type="checkbox" :true-value="1"> const forcePatchValue = (type === 'input' && dirs) || type === 'option' // skip props & children if this is hoisted static nodes // #5405 in dev, always hydrate children for HMR if (__DEV__ || forcePatchValue || patchFlag !== PatchFlags.HOISTED) { if (dirs) { invokeDirectiveHook(vnode, null, parentComponent, 'created') } // props if (props) { if ( forcePatchValue || !optimized || patchFlag & (PatchFlags.FULL_PROPS | PatchFlags.HYDRATE_EVENTS) ) { for (const key in props) { if ( (forcePatchValue && key.endsWith('value')) || (isOn(key) && !isReservedProp(key)) ) { patchProp( el, key, null, props[key], false, undefined, parentComponent ) } } } else if (props.onClick) { // Fast path for click listeners (which is most often) to avoid // iterating through props. patchProp( el, 'onClick', null, props.onClick, false, undefined, parentComponent ) } } // vnode / directive hooks let vnodeHooks: VNodeHook | null | undefined Iif ((vnodeHooks = props && props.onVnodeBeforeMount)) { invokeVNodeHook(vnodeHooks, parentComponent, vnode) } if (dirs) { invokeDirectiveHook(vnode, null, parentComponent, 'beforeMount') } if ((vnodeHooks = props && props.onVnodeMounted) || dirs) { queueEffectWithSuspense(() => { vnodeHooks && invokeVNodeHook(vnodeHooks, parentComponent, vnode) dirs && invokeDirectiveHook(vnode, null, parentComponent, 'mounted') }, parentSuspense) } // children if ( shapeFlag & ShapeFlags.ARRAY_CHILDREN && // skip if element has innerHTML / textContent !(props && (props.innerHTML || props.textContent)) ) { let next = hydrateChildren( el.firstChild, vnode, el, parentComponent, parentSuspense, slotScopeIds, optimized ) let hasWarned = false while (next) { hasMismatch = true if (__DEV__ && !hasWarned) { warn( `Hydration children mismatch in <${vnode.type as string}>: ` + `server rendered element contains more child nodes than client vdom.` ) hasWarned = true } // The SSRed DOM contains more nodes than it should. Remove them. const cur = next next = next.nextSibling remove(cur) } } else if (shapeFlag & ShapeFlags.TEXT_CHILDREN) { if (el.textContent !== vnode.children) { hasMismatch = true __DEV__ && warn( `Hydration text content mismatch in <${ vnode.type as string }>:\n` + `- Client: ${el.textContent}\n` + `- Server: ${vnode.children as string}` ) el.textContent = vnode.children as string } } } return el.nextSibling } const hydrateChildren = ( node: Node | null, parentVNode: VNode, container: Element, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, slotScopeIds: string[] | null, optimized: boolean ): Node | null => { optimized = optimized || !!parentVNode.dynamicChildren const children = parentVNode.children as VNode[] const l = children.length let hasWarned = false for (let i = 0; i < l; i++) { const vnode = optimized ? children[i] : (children[i] = normalizeVNode(children[i])) if (node) { node = hydrateNode( node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized ) } else if (vnode.type === Text && !vnode.children) { continue } else { hasMismatch = true if (__DEV__ && !hasWarned) { warn( `Hydration children mismatch in <${container.tagName.toLowerCase()}>: ` + `server rendered element contains fewer child nodes than client vdom.` ) hasWarned = true } // the SSRed DOM didn't contain enough nodes. Mount the missing ones. patch( null, vnode, container, null, parentComponent, parentSuspense, isSVGContainer(container), slotScopeIds ) } } return node } const hydrateFragment = ( node: Comment, vnode: VNode, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, slotScopeIds: string[] | null, optimized: boolean ) => { const { slotScopeIds: fragmentSlotScopeIds } = vnode Iif (fragmentSlotScopeIds) { slotScopeIds = slotScopeIds ? slotScopeIds.concat(fragmentSlotScopeIds) : fragmentSlotScopeIds } const container = parentNode(node)! const next = hydrateChildren( nextSibling(node)!, vnode, container, parentComponent, parentSuspense, slotScopeIds, optimized ) if (next && isComment(next) && next.data === ']') { return nextSibling((vnode.anchor = next)) } else { // fragment didn't hydrate successfully, since we didn't get a end anchor // back. This should have led to node/children mismatch warnings. hasMismatch = true // since the anchor is missing, we need to create one and insert it insert((vnode.anchor = createComment(`]`)), container, next) return next } } const handleMismatch = ( node: Node, vnode: VNode, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary | null, slotScopeIds: string[] | null, isFragment: boolean ): Node | null => { hasMismatch = true __DEV__ && warn( `Hydration node mismatch:\n- Client vnode:`, vnode.type, `\n- Server rendered DOM:`, node, node.nodeType === DOMNodeTypes.TEXT ? `(text)` : isComment(node) && node.data === '[' ? `(start of fragment)` : `` ) vnode.el = null if (isFragment) { // remove excessive fragment nodes const end = locateClosingAsyncAnchor(node) while (true) { const next = nextSibling(node) if (next && next !== end) { remove(next) } else { break } } } const next = nextSibling(node) const container = parentNode(node)! remove(node) patch( null, vnode, container, next, parentComponent, parentSuspense, isSVGContainer(container), slotScopeIds ) return next } const locateClosingAsyncAnchor = (node: Node | null): Node | null => { let match = 0 while (node) { node = nextSibling(node) if (node && isComment(node)) { Iif (node.data === '[') match++ if (node.data === ']') { if (match === 0) { return nextSibling(node) } else E{ match-- } } } } return node } return [hydrate, hydrateNode] as const } |