Skip to content

Commit 3ae3605

Browse files
committed
warn in a loop
1 parent 52ac465 commit 3ae3605

File tree

2 files changed

+38
-20
lines changed

2 files changed

+38
-20
lines changed

packages/react-reconciler/src/ReactFiberHydrationContext.new.js

+19-10
Original file line numberDiff line numberDiff line change
@@ -339,12 +339,16 @@ function tryHydrate(fiber, nextInstance) {
339339
}
340340
}
341341

342-
function throwOnHydrationMismatchIfConcurrentMode(fiber: Fiber) {
343-
if (
342+
function shouldClientRenderOnMismatch(fiber: Fiber) {
343+
return (
344344
enableClientRenderFallbackOnHydrationMismatch &&
345345
(fiber.mode & ConcurrentMode) !== NoMode &&
346346
(fiber.flags & DidCapture) === NoFlags
347-
) {
347+
);
348+
}
349+
350+
function throwOnHydrationMismatchIfConcurrentMode(fiber: Fiber) {
351+
if (shouldClientRenderOnMismatch(fiber)) {
348352
throw new Error(
349353
'An error occurred during hydration. The server HTML was replaced with client content',
350354
);
@@ -553,11 +557,14 @@ function popHydrationState(fiber: Fiber): boolean {
553557
) {
554558
let nextInstance = nextHydratableInstance;
555559
if (nextInstance) {
556-
warnIfUnhydratedTailNodes(fiber);
557-
throwOnHydrationMismatchIfConcurrentMode(fiber);
558-
while (nextInstance) {
559-
deleteHydratableInstance(fiber, nextInstance);
560-
nextInstance = getNextHydratableSibling(nextInstance);
560+
if (shouldClientRenderOnMismatch(fiber)) {
561+
warnIfUnhydratedTailNodes(fiber);
562+
throwOnHydrationMismatchIfConcurrentMode(fiber);
563+
} else {
564+
while (nextInstance) {
565+
deleteHydratableInstance(fiber, nextInstance);
566+
nextInstance = getNextHydratableSibling(nextInstance);
567+
}
561568
}
562569
}
563570
}
@@ -577,8 +584,10 @@ function hasUnhydratedTailNodes() {
577584
}
578585

579586
function warnIfUnhydratedTailNodes(fiber: Fiber) {
580-
if (nextHydratableInstance) {
581-
warnUnhydratedInstance(fiber, nextHydratableInstance);
587+
let nextInstance = nextHydratableInstance;
588+
while (nextInstance) {
589+
warnUnhydratedInstance(fiber, nextInstance);
590+
nextInstance = getNextHydratableSibling(nextInstance);
582591
}
583592
}
584593

packages/react-reconciler/src/ReactFiberHydrationContext.old.js

+19-10
Original file line numberDiff line numberDiff line change
@@ -339,12 +339,16 @@ function tryHydrate(fiber, nextInstance) {
339339
}
340340
}
341341

342-
function throwOnHydrationMismatchIfConcurrentMode(fiber: Fiber) {
343-
if (
342+
function shouldClientRenderOnMismatch(fiber: Fiber) {
343+
return (
344344
enableClientRenderFallbackOnHydrationMismatch &&
345345
(fiber.mode & ConcurrentMode) !== NoMode &&
346346
(fiber.flags & DidCapture) === NoFlags
347-
) {
347+
);
348+
}
349+
350+
function throwOnHydrationMismatchIfConcurrentMode(fiber: Fiber) {
351+
if (shouldClientRenderOnMismatch(fiber)) {
348352
throw new Error(
349353
'An error occurred during hydration. The server HTML was replaced with client content',
350354
);
@@ -553,11 +557,14 @@ function popHydrationState(fiber: Fiber): boolean {
553557
) {
554558
let nextInstance = nextHydratableInstance;
555559
if (nextInstance) {
556-
warnIfUnhydratedTailNodes(fiber);
557-
throwOnHydrationMismatchIfConcurrentMode(fiber);
558-
while (nextInstance) {
559-
deleteHydratableInstance(fiber, nextInstance);
560-
nextInstance = getNextHydratableSibling(nextInstance);
560+
if (shouldClientRenderOnMismatch(fiber)) {
561+
warnIfUnhydratedTailNodes(fiber);
562+
throwOnHydrationMismatchIfConcurrentMode(fiber);
563+
} else {
564+
while (nextInstance) {
565+
deleteHydratableInstance(fiber, nextInstance);
566+
nextInstance = getNextHydratableSibling(nextInstance);
567+
}
561568
}
562569
}
563570
}
@@ -577,8 +584,10 @@ function hasUnhydratedTailNodes() {
577584
}
578585

579586
function warnIfUnhydratedTailNodes(fiber: Fiber) {
580-
if (nextHydratableInstance) {
581-
warnUnhydratedInstance(fiber, nextHydratableInstance);
587+
let nextInstance = nextHydratableInstance;
588+
while (nextInstance) {
589+
warnUnhydratedInstance(fiber, nextInstance);
590+
nextInstance = getNextHydratableSibling(nextInstance);
582591
}
583592
}
584593

0 commit comments

Comments
 (0)