Skip to content

Commit

Permalink
Call setProps only if Tooltip component is not mounted (#1011)
Browse files Browse the repository at this point in the history
Previously we were getting errors due to uncancelled timers not getting
cleaned up properly when the component unmounted. This resulted in a
delayed call to setProps and an error.

Unfortunately cancelling the timeouts directly appears to be
challenging, so this change introduces a simple `isMountedRef` which is
used a guard on calls to setProps.
  • Loading branch information
tcbegley authored Apr 14, 2024
1 parent 19bbcff commit 4e294c1
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions src/private/Overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ const Overlay = ({
const targetRef = useRef(null);
const hideTimeout = useRef(null);
const showTimeout = useRef(null);
const isMountedRef = useRef(false);
// TODO: we use this as a guard to make sure we don't call setProps if the component
// has unmounted. cancelling the timeouts directly would be neater but I haven't been
// able to make it work.
useEffect(() => {
isMountedRef.current = true;
return () => {
isMountedRef.current = false;
};
});

// Triggers can be passed using space separated values
const triggers = typeof trigger === 'string' ? trigger.split(' ') : [];
Expand All @@ -63,7 +73,7 @@ const Overlay = ({
if (isOpenRef.current) {
hideTimeout.current = clearTimeout(hideTimeout.current);
setIsOpen(false);
if (setProps) {
if (setProps && isMountedRef.current) {
setProps({is_open: false});
}
}
Expand All @@ -84,7 +94,7 @@ const Overlay = ({
if (!isOpenRef.current) {
showTimeout.current = clearTimeout(showTimeout.current);
setIsOpen(true);
if (setProps) {
if (setProps && isMountedRef) {
setProps({is_open: true});
}
}
Expand Down Expand Up @@ -148,8 +158,8 @@ const Overlay = ({
}
// Focus event trigger
if (triggers.indexOf('focus') > -1) {
t.addEventListener('focusin', show, true);
t.addEventListener('focusout', hide, true);
t.addEventListener('focusin', showWithDelay, true);
t.addEventListener('focusout', hideWithDelay, true);
}
// Click or Legacy event trigger
if (triggers.indexOf('click') > -1 || triggers.indexOf('legacy') > -1) {
Expand Down Expand Up @@ -216,7 +226,7 @@ const Overlay = ({
// need to make sure that props stay in sync
onHide={() => {
setIsOpen(false);
if (setProps) {
if (setProps && isMountedRef.current) {
setProps({is_open: false});
}
}}
Expand Down

0 comments on commit 4e294c1

Please sign in to comment.