Skip to content

Clear timeout refs correctly #1205

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

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 17 additions & 34 deletions src/components/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ import {
getScrollParent,
computeTooltipPosition,
cssTimeToMs,
clearTimeoutRef,
} from 'utils'
import type { IComputedPosition } from 'utils'
import { useTooltip } from 'components/TooltipProvider'
@@ -223,9 +224,7 @@ const Tooltip = ({
if (show === wasShowing.current) {
return
}
if (missedTransitionTimerRef.current) {
clearTimeout(missedTransitionTimerRef.current)
}
clearTimeoutRef(missedTransitionTimerRef)
wasShowing.current = show
if (show) {
afterShow?.()
@@ -257,9 +256,7 @@ const Tooltip = ({
}

const handleShowTooltipDelayed = (delay = delayShow) => {
if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
}
clearTimeoutRef(tooltipShowDelayTimerRef)

if (rendered) {
// if the tooltip is already rendered, ignore delay
@@ -273,9 +270,7 @@ const Tooltip = ({
}

const handleHideTooltipDelayed = (delay = delayHide) => {
if (tooltipHideDelayTimerRef.current) {
clearTimeout(tooltipHideDelayTimerRef.current)
}
clearTimeoutRef(tooltipHideDelayTimerRef)

tooltipHideDelayTimerRef.current = setTimeout(() => {
if (hoveringTooltip.current) {
@@ -307,9 +302,7 @@ const Tooltip = ({
setActiveAnchor(target)
setProviderActiveAnchor({ current: target })

if (tooltipHideDelayTimerRef.current) {
clearTimeout(tooltipHideDelayTimerRef.current)
}
clearTimeoutRef(tooltipHideDelayTimerRef)
}

const handleHideTooltip = () => {
@@ -322,9 +315,7 @@ const Tooltip = ({
handleShow(false)
}

if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
}
clearTimeoutRef(tooltipShowDelayTimerRef)
}

const handleTooltipPosition = ({ x, y }: IPosition) => {
@@ -386,9 +377,7 @@ const Tooltip = ({
return
}
handleShow(false)
if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
}
clearTimeoutRef(tooltipShowDelayTimerRef)
}

// debounce handler to prevent call twice when
@@ -697,12 +686,8 @@ const Tooltip = ({
setRendered(false)
handleShow(false)
setActiveAnchor(null)
if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
}
if (tooltipHideDelayTimerRef.current) {
clearTimeout(tooltipHideDelayTimerRef.current)
}
clearTimeoutRef(tooltipShowDelayTimerRef)
clearTimeoutRef(tooltipHideDelayTimerRef)
return true
}
return false
@@ -790,12 +775,8 @@ const Tooltip = ({
handleShow(true)
}
return () => {
if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
}
if (tooltipHideDelayTimerRef.current) {
clearTimeout(tooltipHideDelayTimerRef.current)
}
clearTimeoutRef(tooltipShowDelayTimerRef)
clearTimeoutRef(tooltipHideDelayTimerRef)
}
}, [])

@@ -818,7 +799,11 @@ const Tooltip = ({

useEffect(() => {
if (tooltipShowDelayTimerRef.current) {
clearTimeout(tooltipShowDelayTimerRef.current)
/**
* if the delay changes while the tooltip is waiting to show,
* reset the timer with the new delay
*/
clearTimeoutRef(tooltipShowDelayTimerRef)
handleShowTooltipDelayed(delayShow)
}
}, [delayShow])
@@ -875,9 +860,7 @@ const Tooltip = ({
clickable && coreStyles['clickable'],
)}
onTransitionEnd={(event: TransitionEvent) => {
if (missedTransitionTimerRef.current) {
clearTimeout(missedTransitionTimerRef.current)
}
clearTimeoutRef(missedTransitionTimerRef)
if (show || event.propertyName !== 'opacity') {
return
}
18 changes: 17 additions & 1 deletion src/test/utils.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { debounce, deepEqual, computeTooltipPosition, cssTimeToMs } from 'utils'
import { debounce, deepEqual, computeTooltipPosition, cssTimeToMs, clearTimeoutRef } from 'utils'

describe('compute positions', () => {
test('empty reference elements', async () => {
@@ -256,3 +256,19 @@ describe('deepEqual', () => {
expect(deepEqual(obj1, obj2)).toBe(false)
})
})

describe('clearTimeoutRef', () => {
jest.useFakeTimers()

const func = jest.fn()

test('clears timeout ref', () => {
const timeoutRef = { current: setTimeout(func, 1000) }
clearTimeoutRef(timeoutRef)

jest.runAllTimers()

expect(func).not.toHaveBeenCalled()
expect(timeoutRef.current).toBe(null)
})
})
9 changes: 9 additions & 0 deletions src/utils/clear-timeout-ref.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const clearTimeoutRef = (ref: React.MutableRefObject<NodeJS.Timeout | null>) => {
if (ref.current) {
clearTimeout(ref.current)
// eslint-disable-next-line no-param-reassign
ref.current = null
}
}

export default clearTimeoutRef
2 changes: 2 additions & 0 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ import debounce from './debounce'
import deepEqual from './deep-equal'
import getScrollParent from './get-scroll-parent'
import useIsomorphicLayoutEffect from './use-isomorphic-layout-effect'
import clearTimeoutRef from './clear-timeout-ref'

export type { IComputedPosition }
export {
@@ -16,4 +17,5 @@ export {
deepEqual,
getScrollParent,
useIsomorphicLayoutEffect,
clearTimeoutRef,
}