You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Float][Fiber] implement a faster hydration match for hoistable elements (#26154)
This PR is now based on #26256
The original matching function for `hydrateHoistable` some challenging
time complexity since we built up the list of matchable nodes for each
link of that type and then had to check to exclusion. This new
implementation aims to improve the complexity
For hoisted title tags we match the first title if it is valid (not in
SVG context and does not have `itemprop`, the two ways you opt out of
hoisting when rendering titles). This path is much faster than others
and we use it because valid Documents only have 1 title anyway and if we
did have a mismatch the rendered title still ends up as the
Document.title so there is no functional degradation for misses.
For hoisted link and meta tags we track all potentially hydratable
Elements of this type in a cache per Document. The cache is refreshed
once each commit if and only if there is a title or meta hoistable
hydrating. The caches are partitioned by a natural key for each type
(href for link and content for meta). Then secondary attributes are
checked to see if the potential match is matchable.
For link we check `rel`, `title`, and `crossorigin`. These should
provide enough entropy that we never have collisions except is contrived
cases and even then it should not affect functionality of the page. This
should also be tolerant of links being injected in arbitrary places in
the Document by 3rd party scripts and browser extensions
For meta we check `name`, `property`, `http-equiv`, and `charset`. These
should provide enough entropy that we don't have meaningful collisions.
It is concievable with og tags that there may be true duplciates `<meta
property="og:image:size:height" content="100" />` but even if we did
bind to the wrong instance meta tags are typically only read from SSR by
bots and rarely inserted by 3rd parties so an adverse functional outcome
is not expected.
// Separate else branch instead of using `props.is || undefined` above because of a Firefox bug.
412
+
// See discussion in https://github.com/facebook/react/pull/6896
413
+
// and discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1276240
414
+
element=ownerDocument.createElement('select');
415
+
}
416
+
if(props.multiple){
417
+
element.multiple=true;
418
+
}elseif(props.size){
419
+
// Setting a size greater than 1 causes a select to behave like `multiple=true`, where
420
+
// it is possible that no option is selected.
421
+
//
422
+
// This is only necessary when a select in "single selection mode".
423
+
element.size=props.size;
424
+
}
425
+
returnelement;
426
+
}
427
+
383
428
// Creates elements in the HTML namesapce
384
429
exportfunctioncreateHTMLElement(
385
430
type: string,
386
431
props: Object,
387
432
ownerDocument: Document,
388
433
): Element{
434
+
if(__DEV__){
435
+
switch(type){
436
+
case 'script':
437
+
case 'select':
438
+
console.error(
439
+
'createHTMLElement was called with a "%s" type. This type has special creation logic in React and should use the create function implemented specifically for it. This is a bug in React.',
440
+
type,
441
+
);
442
+
break;
443
+
case 'svg':
444
+
case 'math':
445
+
console.error(
446
+
'createHTMLElement was called with a "%s" type. This type must be created with Document.createElementNS which this method does not implement. This is a bug in React.',
0 commit comments