Skip to content

Commit 346242e

Browse files
committed
SuspenseList: Reschedule at same priority
SuspenseList progressively renders items even if the list is CPU bound, i.e. it isn't waiting for missing data. It does this by showing a fallback for the remaining items, committing the items in that have already finished, then starting a new render to continue working on the rest. When it schedules that subsequent render, it uses a slightly lower priority than the current render: `renderExpirationTime - 1`. This commit changes it to reschedule at `renderExpirationTime` instead. I don't know what the original motivation was for bumping the expiration time slightly lower. The comment says that the priorities of the two renders are the same (which makes sense to me) so I imagine it was motivated by some implementation detail. I don't think it's necessary anymore, though perhaps it was when it was originally written. If it is still necessary, we should write a test case that illustrates why.
1 parent cb70753 commit 346242e

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

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

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,7 @@ import {
127127
renderHasNotSuspendedYet,
128128
} from './ReactFiberWorkLoop.new';
129129
import {createFundamentalStateInstance} from './ReactFiberFundamental.new';
130-
import {
131-
Never,
132-
isSameOrHigherPriority,
133-
bumpPriorityLower,
134-
} from './ReactFiberExpirationTime.new';
130+
import {Never, isSameOrHigherPriority} from './ReactFiberExpirationTime.new';
135131
import {resetChildFibers} from './ReactChildFiber.new';
136132
import {updateDeprecatedEventListeners} from './ReactFiberDeprecatedEvents.new';
137133
import {createScopeMethods} from './ReactFiberScope.new';
@@ -1118,11 +1114,9 @@ function completeWork(
11181114
// them, then they really have the same priority as this render.
11191115
// So we'll pick it back up the very next render pass once we've had
11201116
// an opportunity to yield for paint.
1121-
1122-
const nextPriority = bumpPriorityLower(renderExpirationTime);
1123-
workInProgress.expirationTime_opaque = workInProgress.childExpirationTime_opaque = nextPriority;
1117+
workInProgress.expirationTime_opaque = renderExpirationTime;
11241118
if (enableSchedulerTracing) {
1125-
markSpawnedWork(nextPriority);
1119+
markSpawnedWork(renderExpirationTime);
11261120
}
11271121
}
11281122
}

0 commit comments

Comments
 (0)