Skip to content

Commit 978fae4

Browse files
authored
[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.
1 parent 8a9f82e commit 978fae4

10 files changed

+427
-296
lines changed

packages/react-dom-bindings/src/client/ReactDOMComponent.js

+75-65
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,7 @@ import {
5555
setValueForStyles,
5656
validateShorthandPropertyCollisionInDev,
5757
} from './CSSPropertyOperations';
58-
import {
59-
HTML_NAMESPACE,
60-
MATH_NAMESPACE,
61-
SVG_NAMESPACE,
62-
getIntrinsicNamespace,
63-
} from '../shared/DOMNamespaces';
58+
import {HTML_NAMESPACE, getIntrinsicNamespace} from '../shared/DOMNamespaces';
6459
import {
6560
getPropertyInfo,
6661
shouldIgnoreAttribute,
@@ -380,15 +375,83 @@ function updateDOMProperties(
380375
}
381376
}
382377

378+
// creates a script element that won't execute
379+
export function createPotentiallyInlineScriptElement(
380+
ownerDocument: Document,
381+
): Element {
382+
// Create the script via .innerHTML so its "parser-inserted" flag is
383+
// set to true and it does not execute
384+
const div = ownerDocument.createElement('div');
385+
if (__DEV__) {
386+
if (enableTrustedTypesIntegration && !didWarnScriptTags) {
387+
console.error(
388+
'Encountered a script tag while rendering React component. ' +
389+
'Scripts inside React components are never executed when rendering ' +
390+
'on the client. Consider using template tag instead ' +
391+
'(https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template).',
392+
);
393+
didWarnScriptTags = true;
394+
}
395+
}
396+
div.innerHTML = '<script><' + '/script>'; // eslint-disable-line
397+
// This is guaranteed to yield a script element.
398+
const firstChild = ((div.firstChild: any): HTMLScriptElement);
399+
const element = div.removeChild(firstChild);
400+
return element;
401+
}
402+
403+
export function createSelectElement(
404+
props: Object,
405+
ownerDocument: Document,
406+
): Element {
407+
let element;
408+
if (typeof props.is === 'string') {
409+
element = ownerDocument.createElement('select', {is: props.is});
410+
} else {
411+
// 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+
} else if (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+
return element;
426+
}
427+
383428
// Creates elements in the HTML namesapce
384429
export function createHTMLElement(
385430
type: string,
386431
props: Object,
387432
ownerDocument: Document,
388433
): 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.',
447+
type,
448+
);
449+
}
450+
}
451+
389452
let isCustomComponentTag;
390453

391-
let domElement: Element;
454+
let element: Element;
392455
if (__DEV__) {
393456
isCustomComponentTag = isCustomComponent(type, props);
394457
// Should this check be gated by parent namespace? Not sure we want to
@@ -403,59 +466,20 @@ export function createHTMLElement(
403466
}
404467
}
405468

406-
if (type === 'script') {
407-
// Create the script via .innerHTML so its "parser-inserted" flag is
408-
// set to true and it does not execute
409-
const div = ownerDocument.createElement('div');
410-
if (__DEV__) {
411-
if (enableTrustedTypesIntegration && !didWarnScriptTags) {
412-
console.error(
413-
'Encountered a script tag while rendering React component. ' +
414-
'Scripts inside React components are never executed when rendering ' +
415-
'on the client. Consider using template tag instead ' +
416-
'(https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template).',
417-
);
418-
didWarnScriptTags = true;
419-
}
420-
}
421-
div.innerHTML = '<script><' + '/script>'; // eslint-disable-line
422-
// This is guaranteed to yield a script element.
423-
const firstChild = ((div.firstChild: any): HTMLScriptElement);
424-
domElement = div.removeChild(firstChild);
425-
} else if (typeof props.is === 'string') {
426-
domElement = ownerDocument.createElement(type, {is: props.is});
469+
if (typeof props.is === 'string') {
470+
element = ownerDocument.createElement(type, {is: props.is});
427471
} else {
428472
// Separate else branch instead of using `props.is || undefined` above because of a Firefox bug.
429473
// See discussion in https://github.com/facebook/react/pull/6896
430474
// and discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1276240
431-
domElement = ownerDocument.createElement(type);
432-
// Normally attributes are assigned in `setInitialDOMProperties`, however the `multiple` and `size`
433-
// attributes on `select`s needs to be added before `option`s are inserted.
434-
// This prevents:
435-
// - a bug where the `select` does not scroll to the correct option because singular
436-
// `select` elements automatically pick the first item #13222
437-
// - a bug where the `select` set the first item as selected despite the `size` attribute #14239
438-
// See https://github.com/facebook/react/issues/13222
439-
// and https://github.com/facebook/react/issues/14239
440-
if (type === 'select') {
441-
const node = ((domElement: any): HTMLSelectElement);
442-
if (props.multiple) {
443-
node.multiple = true;
444-
} else if (props.size) {
445-
// Setting a size greater than 1 causes a select to behave like `multiple=true`, where
446-
// it is possible that no option is selected.
447-
//
448-
// This is only necessary when a select in "single selection mode".
449-
node.size = props.size;
450-
}
451-
}
475+
element = ownerDocument.createElement(type);
452476
}
453477

454478
if (__DEV__) {
455479
if (
456480
!isCustomComponentTag &&
457481
// $FlowFixMe[method-unbinding]
458-
Object.prototype.toString.call(domElement) ===
482+
Object.prototype.toString.call(element) ===
459483
'[object HTMLUnknownElement]' &&
460484
!hasOwnProperty.call(warnedUnknownTags, type)
461485
) {
@@ -469,21 +493,7 @@ export function createHTMLElement(
469493
}
470494
}
471495

472-
return domElement;
473-
}
474-
475-
export function createSVGElement(
476-
type: string,
477-
ownerDocument: Document,
478-
): Element {
479-
return ownerDocument.createElementNS(SVG_NAMESPACE, type);
480-
}
481-
482-
export function createMathElement(
483-
type: string,
484-
ownerDocument: Document,
485-
): Element {
486-
return ownerDocument.createElementNS(MATH_NAMESPACE, type);
496+
return element;
487497
}
488498

489499
export function createTextNode(

packages/react-dom-bindings/src/client/ReactDOMComponentTree.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const internalEventHandlersKey = '__reactEvents$' + randomKey;
4747
const internalEventHandlerListenersKey = '__reactListeners$' + randomKey;
4848
const internalEventHandlesSetKey = '__reactHandles$' + randomKey;
4949
const internalRootNodeResourcesKey = '__reactResources$' + randomKey;
50-
const internalResourceMarker = '__reactMarker$' + randomKey;
50+
const internalHoistableMarker = '__reactMarker$' + randomKey;
5151

5252
export function detachDeletedInstance(node: Instance): void {
5353
// TODO: This function is only called on host components. I don't think all of
@@ -288,10 +288,16 @@ export function getResourcesFromRoot(root: HoistableRoot): RootResources {
288288
return resources;
289289
}
290290

291-
export function isMarkedResource(node: Node): boolean {
292-
return !!(node: any)[internalResourceMarker];
291+
export function isMarkedHoistable(node: Node): boolean {
292+
return !!(node: any)[internalHoistableMarker];
293293
}
294294

295-
export function markNodeAsResource(node: Node) {
296-
(node: any)[internalResourceMarker] = true;
295+
export function markNodeAsHoistable(node: Node) {
296+
(node: any)[internalHoistableMarker] = true;
297+
}
298+
299+
export function isOwnedInstance(node: Node): boolean {
300+
return !!(
301+
(node: any)[internalHoistableMarker] || (node: any)[internalInstanceKey]
302+
);
297303
}

0 commit comments

Comments
 (0)