-
-
Notifications
You must be signed in to change notification settings - Fork 698
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useOnScreen causing issue while unmounting #19
Comments
This problem is caused by the callback passed to the IntersectionObserver. The callback calls setIsVisible which can, due to the asynchronous nature of the InserctionObserver, be called, when the component using useOnScreen is no longer mounted. To prevent this error setIsVisible should only be called when the component is mounted. A potential fix could like this. useEffect(() => {
let isActive = true;
if (!ref.current) return
const observer = new IntersectionObserver(
([entry]) => isActive && setIsVisible(entry.isIntersecting),
{ rootMargin }
)
observer.observe(ref.current)
return () => {
isActive = false;
ref.current && observer.unobserve(ref.current)
}
}, [ref.current, rootMargin]) |
if found the fix use=>useLayoutEffect instead of useEffect this will fix the problem |
This works too because useLayoutEffect fires synchronously. However according to the react docs using useEffect is preferred over using useLayoutEffect to avoid blocking visual updates. |
Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a use effect cleanup function.
The text was updated successfully, but these errors were encountered: