Skip to content

Commit fd907c1

Browse files
committed
Re-land "Use highest priority lane to detect interruptions (facebook#21088)""
This re-lands commit b4044f8.
1 parent 79740da commit fd907c1

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -301,15 +301,16 @@ export function getNextLanes(root: FiberRoot, wipLanes: Lanes): Lanes {
301301
// bother waiting until the root is complete.
302302
(wipLanes & suspendedLanes) === NoLanes
303303
) {
304-
getHighestPriorityLanes(wipLanes);
305-
const wipLanePriority = return_highestLanePriority;
304+
const nextLane = getHighestPriorityLane(nextLanes);
305+
const wipLane = getHighestPriorityLane(wipLanes);
306306
if (
307-
nextLanePriority <= wipLanePriority ||
307+
// Tests whether the next lane is equal or lower priority than the wip
308+
// one. This works because the bits decrease in priority as you go left.
309+
nextLane >= wipLane ||
308310
// Default priority updates should not interrupt transition updates. The
309311
// only difference between default updates and transition updates is that
310312
// default updates do not support refresh transitions.
311-
(nextLanePriority === DefaultLanePriority &&
312-
wipLanePriority === TransitionPriority)
313+
(nextLane === DefaultLane && (wipLane & TransitionLanes) !== NoLanes)
313314
) {
314315
// Keep working on the existing in-progress tree. Do not interrupt.
315316
return wipLanes;

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -301,15 +301,16 @@ export function getNextLanes(root: FiberRoot, wipLanes: Lanes): Lanes {
301301
// bother waiting until the root is complete.
302302
(wipLanes & suspendedLanes) === NoLanes
303303
) {
304-
getHighestPriorityLanes(wipLanes);
305-
const wipLanePriority = return_highestLanePriority;
304+
const nextLane = getHighestPriorityLane(nextLanes);
305+
const wipLane = getHighestPriorityLane(wipLanes);
306306
if (
307-
nextLanePriority <= wipLanePriority ||
307+
// Tests whether the next lane is equal or lower priority than the wip
308+
// one. This works because the bits decrease in priority as you go left.
309+
nextLane >= wipLane ||
308310
// Default priority updates should not interrupt transition updates. The
309311
// only difference between default updates and transition updates is that
310312
// default updates do not support refresh transitions.
311-
(nextLanePriority === DefaultLanePriority &&
312-
wipLanePriority === TransitionPriority)
313+
(nextLane === DefaultLane && (wipLane & TransitionLanes) !== NoLanes)
313314
) {
314315
// Keep working on the existing in-progress tree. Do not interrupt.
315316
return wipLanes;

0 commit comments

Comments
 (0)