This repository was archived by the owner on Dec 5, 2024. It is now read-only.
Fix Reference & Manager compatibility with React 18's StrictMode #459
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reference
, at least in how BlueprintJS is using it, seems to be broken in React 18's StrictMode due to effects running twice. (This causes popovers to no longer close when clicking outside them and was very fun to track down.)Fixing Reference
https://github.com/floating-ui/react-popper/blob/master/src/Reference.js#L17-L27
In
Reference
, therefHandler
passed tochildren
asref
is only called by React once on initial mount. However, React 18 calls thesetRef(innerRef, null)
cleanup function after theref
has mounted, andinnerRef
ends up being cleared and left tonull
.Since React claims to always unmount ref callbacks, I couldn't see a reason to manually set
innerRef
tonull
in auseEffect
- so I'd think to just remove it.Fixing Manager
Additionally,
Manager
uses a "one-way" effect to keep track of mounting/unmounting - this is no longer compatible with React 18, so I added a line to reset the ref state when the effect is "remounted". Didn't bother tracking down a concrete bug with this, but at least this change shouldn't break anything.