Skip to content

Commit bf883be

Browse files
authored
[fizz] fix empty string href double warning (facebook#31783)
I think this is the suggested change from facebook#31765 (comment) But no tests fail and I'm not sure how to test it? Seems sus. Also seems like the `removeAttribute` here should be changed? https://github.com/facebook/react/blob/9d9f12f2699a049777fa88914306ad4de9e2b74d/packages/react-dom-bindings/src/client/ReactDOMComponent.js#L400-L427
1 parent f42f8c0 commit bf883be

File tree

3 files changed

+27
-29
lines changed

3 files changed

+27
-29
lines changed

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

+9-18
Original file line numberDiff line numberDiff line change
@@ -2510,26 +2510,17 @@ function diffHydratedGenericElement(
25102510
);
25112511
}
25122512
}
2513-
hydrateSanitizedAttribute(
2514-
domElement,
2515-
propKey,
2516-
propKey,
2517-
null,
2518-
extraAttributes,
2519-
serverDifferences,
2520-
);
2521-
continue;
2522-
} else {
2523-
hydrateSanitizedAttribute(
2524-
domElement,
2525-
propKey,
2526-
propKey,
2527-
value,
2528-
extraAttributes,
2529-
serverDifferences,
2530-
);
25312513
continue;
25322514
}
2515+
hydrateSanitizedAttribute(
2516+
domElement,
2517+
propKey,
2518+
propKey,
2519+
value,
2520+
extraAttributes,
2521+
serverDifferences,
2522+
);
2523+
continue;
25332524
case 'action':
25342525
case 'formAction': {
25352526
const serverValue = domElement.getAttribute(propKey);

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1139,7 +1139,9 @@ export function canHydrateInstance(
11391139
} else if (
11401140
rel !== anyProps.rel ||
11411141
element.getAttribute('href') !==
1142-
(anyProps.href == null ? null : anyProps.href) ||
1142+
(anyProps.href == null || anyProps.href === ''
1143+
? null
1144+
: anyProps.href) ||
11431145
element.getAttribute('crossorigin') !==
11441146
(anyProps.crossOrigin == null ? null : anyProps.crossOrigin) ||
11451147
element.getAttribute('title') !==
@@ -2984,7 +2986,7 @@ export function hydrateHoistable(
29842986
const node = nodes[i];
29852987
if (
29862988
node.getAttribute('href') !==
2987-
(props.href == null ? null : props.href) ||
2989+
(props.href == null || props.href === '' ? null : props.href) ||
29882990
node.getAttribute('rel') !==
29892991
(props.rel == null ? null : props.rel) ||
29902992
node.getAttribute('title') !==

packages/react-dom/src/__tests__/ReactDOMServerIntegrationAttributes-test.js

+14-9
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,23 @@ describe('ReactDOMServerIntegration', () => {
6262
expect(e.getAttribute('href')).toBe('');
6363
});
6464

65-
itRenders('empty href on other tags', async render => {
65+
itRenders('empty href on base tags as null', async render => {
66+
const e = await render(<base href="" />, 1);
67+
expect(e.getAttribute('href')).toBe(null);
68+
});
69+
70+
itRenders('empty href on area tags as null', async render => {
6671
const e = await render(
67-
// <link href="" /> would be more sensible.
68-
// However, that results in a hydration warning as well.
69-
// Our test helpers do not support different error counts for initial
70-
// server render and hydration.
71-
// The number of errors on the server need to be equal to the number of
72-
// errors during hydration.
73-
// So we use a <div> instead.
74-
<div href="" />,
72+
<map>
73+
<area alt="" href="" />
74+
</map>,
7575
1,
7676
);
77+
expect(e.firstChild.getAttribute('href')).toBe(null);
78+
});
79+
80+
itRenders('empty href on link tags as null', async render => {
81+
const e = await render(<link rel="stylesheet" href="" />, 1);
7782
expect(e.getAttribute('href')).toBe(null);
7883
});
7984

0 commit comments

Comments
 (0)