@@ -13,7 +13,6 @@ import type {Lanes, Lane} from './ReactFiberLane.new';
13
13
import type { ReactPriorityLevel } from './ReactInternalTypes' ;
14
14
import type { Interaction } from 'scheduler/src/Tracing' ;
15
15
import type { SuspenseState } from './ReactFiberSuspenseComponent.new' ;
16
- import type { Effect as HookEffect } from './ReactFiberHooks.new' ;
17
16
import type { StackCursor } from './ReactFiberStack.new' ;
18
17
import type { FunctionComponentUpdateQueue } from './ReactFiberHooks.new' ;
19
18
@@ -120,12 +119,11 @@ import {
120
119
NoFlags ,
121
120
PerformedWork ,
122
121
Placement ,
123
- ChildDeletion ,
124
- Passive ,
125
122
PassiveStatic ,
126
123
Incomplete ,
127
124
HostEffectMask ,
128
125
Hydrating ,
126
+ PassiveMask ,
129
127
StaticMask ,
130
128
} from './ReactFiberFlags' ;
131
129
import {
@@ -183,7 +181,6 @@ import {
183
181
commitPassiveEffectDurations ,
184
182
commitPassiveMountEffects ,
185
183
commitPassiveUnmountEffects ,
186
- detachFiberAfterEffects ,
187
184
} from './ReactFiberCommitWork.new' ;
188
185
import { enqueueUpdate } from './ReactUpdateQueue.new' ;
189
186
import { resetContextDependencies } from './ReactFiberNewContext.new' ;
@@ -314,7 +311,6 @@ export function getRenderTargetTime(): number {
314
311
return workInProgressRootRenderTargetTime ;
315
312
}
316
313
317
- let nextEffect: Fiber | null = null;
318
314
let hasUncaughtError = false;
319
315
let firstUncaughtError = null;
320
316
let legacyErrorBoundariesThatAlreadyFailed: Set< mixed > | null = null;
@@ -1938,8 +1934,8 @@ function commitRootImpl(root, renderPriorityLevel) {
1938
1934
// TODO: Delete all other places that schedule the passive effect callback
1939
1935
// They're redundant.
1940
1936
if (
1941
- ( finishedWork . subtreeFlags & Passive ) !== NoFlags ||
1942
- ( finishedWork . flags & Passive ) !== NoFlags
1937
+ ( finishedWork . subtreeFlags & PassiveMask ) !== NoFlags ||
1938
+ ( finishedWork . flags & PassiveMask ) !== NoFlags
1943
1939
) {
1944
1940
if ( ! rootDoesHavePassiveEffects ) {
1945
1941
rootDoesHavePassiveEffects = true ;
@@ -2061,31 +2057,6 @@ function commitRootImpl(root, renderPriorityLevel) {
2061
2057
rootWithPendingPassiveEffects = root ;
2062
2058
pendingPassiveEffectsLanes = lanes ;
2063
2059
pendingPassiveEffectsRenderPriority = renderPriorityLevel ;
2064
- } else {
2065
- // We are done with the effect chain at this point so let's clear the
2066
- // nextEffect pointers to assist with GC. If we have passive effects, we'll
2067
- // clear this in flushPassiveEffects
2068
- // TODO: We should always do this in the passive phase, by scheduling
2069
- // a passive callback for every deletion.
2070
- nextEffect = firstEffect ;
2071
- while ( nextEffect !== null ) {
2072
- const nextNextEffect = nextEffect . nextEffect ;
2073
- nextEffect . nextEffect = null ;
2074
- if ( nextEffect . flags & ChildDeletion ) {
2075
- const deletions = nextEffect . deletions ;
2076
- if ( deletions !== null ) {
2077
- for ( let i = 0 ; i < deletions . length ; i ++ ) {
2078
- const deletion = deletions [ i ] ;
2079
- const alternate = deletion . alternate ;
2080
- detachFiberAfterEffects ( deletion ) ;
2081
- if ( alternate !== null ) {
2082
- detachFiberAfterEffects ( alternate ) ;
2083
- }
2084
- }
2085
- }
2086
- }
2087
- nextEffect = nextNextEffect ;
2088
- }
2089
2060
}
2090
2061
2091
2062
// Read this again, since an effect might have updated it
@@ -2229,32 +2200,6 @@ export function enqueuePendingPassiveProfilerEffect(fiber: Fiber): void {
2229
2200
}
2230
2201
}
2231
2202
2232
- export function enqueuePendingPassiveHookEffectMount (
2233
- fiber : Fiber ,
2234
- effect : HookEffect ,
2235
- ) : void {
2236
- if ( ! rootDoesHavePassiveEffects ) {
2237
- rootDoesHavePassiveEffects = true ;
2238
- scheduleCallback ( NormalSchedulerPriority , ( ) => {
2239
- flushPassiveEffects ( ) ;
2240
- return null ;
2241
- } ) ;
2242
- }
2243
- }
2244
-
2245
- export function enqueuePendingPassiveHookEffectUnmount (
2246
- fiber : Fiber ,
2247
- effect : HookEffect ,
2248
- ) : void {
2249
- if ( ! rootDoesHavePassiveEffects ) {
2250
- rootDoesHavePassiveEffects = true ;
2251
- scheduleCallback ( NormalSchedulerPriority , ( ) => {
2252
- flushPassiveEffects ( ) ;
2253
- return null ;
2254
- } ) ;
2255
- }
2256
- }
2257
-
2258
2203
function flushPassiveEffectsImpl ( ) {
2259
2204
if ( rootWithPendingPassiveEffects === null ) {
2260
2205
return false ;
0 commit comments