mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Warn if static flag is accidentally cleared (#20807)
* Warn if static flag is accidentally cleared "Static" fiber flags are flags that are meant to exist for the lifetime of a component. It's really important not to accidentally reset these, because we use them to decide whether or not to perform some operation on a tree (which we can do because they get bubbled via `subtreeFlags)`. We've had several bugs that were caused by this mistake, so we actually don't rely on static flags anywhere, yet. But we'd like to. So let's roll out this warning and see if it fires anywhere. Once we can confirm that there are no warnings, we can assume that it's safe to start using static flags. I did not wrap it behind a feature flag, because it's dev-only, and we can use our internal warning filter to hide this from the console. * Intentionally clear static flag to test warning * ...and fix it again
This commit is contained in:
@@ -471,6 +471,21 @@ export function renderWithHooks<Props, SecondArg>(
|
||||
currentHookNameInDev = null;
|
||||
hookTypesDev = null;
|
||||
hookTypesUpdateIndexDev = -1;
|
||||
|
||||
// Confirm that a static flag was not added or removed since the last
|
||||
// render. If this fires, it suggests that we incorrectly reset the static
|
||||
// flags in some other part of the codebase. This has happened before, for
|
||||
// example, in the SuspenseList implementation.
|
||||
if (
|
||||
current !== null &&
|
||||
(current.flags & PassiveStaticEffect) !==
|
||||
(workInProgress.flags & PassiveStaticEffect)
|
||||
) {
|
||||
console.error(
|
||||
'Internal React error: Expected static flag was missing. Please ' +
|
||||
'notify the React team.',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
didScheduleRenderPhaseUpdate = false;
|
||||
|
||||
@@ -471,6 +471,21 @@ export function renderWithHooks<Props, SecondArg>(
|
||||
currentHookNameInDev = null;
|
||||
hookTypesDev = null;
|
||||
hookTypesUpdateIndexDev = -1;
|
||||
|
||||
// Confirm that a static flag was not added or removed since the last
|
||||
// render. If this fires, it suggests that we incorrectly reset the static
|
||||
// flags in some other part of the codebase. This has happened before, for
|
||||
// example, in the SuspenseList implementation.
|
||||
if (
|
||||
current !== null &&
|
||||
(current.flags & PassiveStaticEffect) !==
|
||||
(workInProgress.flags & PassiveStaticEffect)
|
||||
) {
|
||||
console.error(
|
||||
'Internal React error: Expected static flag was missing. Please ' +
|
||||
'notify the React team.',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
didScheduleRenderPhaseUpdate = false;
|
||||
|
||||
Reference in New Issue
Block a user