react-tooltip icon indicating copy to clipboard operation
react-tooltip copied to clipboard

Fix memory leak in tooltip children cleanup

Open Copilot opened this issue 2 months ago • 7 comments

Description

Fixes #1476 - Memory leak where React children rendered in tooltips were not being properly cleaned up, causing DOM nodes to accumulate when tooltips were shown and hidden repeatedly.

Root Cause

The issue was caused by three sources of memory leaks in the Tooltip component:

  1. ResizeObserver timeout accumulation: The ResizeObserver callback created multiple setTimeout calls, but only the last timeout ID was tracked. When tooltips were rapidly shown/hidden, older timeouts continued running, holding references to DOM nodes and closures.

  2. Untracked handleShow timeouts: The handleShow function created a 10ms setTimeout on every call without tracking or cleanup. Rapid show/hide cycles accumulated multiple timeouts.

  3. Async promise state updates: The computeTooltipPosition promise could resolve after component unmount, attempting state updates on unmounted components.

Changes

All changes are in src/components/Tooltip/Tooltip.tsx:

ResizeObserver Effect

  • Track all timeout IDs in a Set instead of a single variable
  • Clear all pending timeouts in cleanup function
  • Added check for rendered state before creating observer
  • Added mounted.current check before calling updateTooltipPosition
  • Removed content from dependencies (was causing unnecessary effect re-runs)

handleShow Timeout Tracking

  • Added tooltipShowTimerRef to track the setTimeout
  • Clear existing timeout before creating new ones
  • Added cleanup in component unmount effect

Position Calculation Promises

  • Added mounted.current check in handleTooltipPosition promise callback
  • Prevents state updates after component unmounts

Benchmarking Tools

Added comprehensive benchmarking suite in benchmark/ directory to validate the fixes and measure impact:

  • Automated build and test script (memory-benchmark.js) - Builds both versions and generates comparison tests
  • Browser-based test harness (memory-leak-test.html) - Interactive stress testing tool
  • Comprehensive documentation:
    • DECISION_GUIDE.md - Quick TL;DR for reviewers
    • ANALYSIS.md - Detailed technical analysis and cost-benefit breakdown
    • BENCHMARK_GUIDE.md - Step-by-step testing instructions
    • TROUBLESHOOTING.md - Common issues and solutions

Running Benchmarks

cd benchmark
node memory-benchmark.js

This builds both versions (before/after fixes) and creates test HTML files for side-by-side comparison in Chrome DevTools.

Impact

These changes ensure:

  • All timeouts are properly tracked and cleared when tooltips close
  • ResizeObserver disconnects and clears all pending callbacks
  • No state updates occur on unmounted components
  • React children are fully garbage collected when tooltips close
  • Memory usage remains stable even with frequent tooltip show/hide cycles

Expected Results

  • Normal usage: Minimal to no measurable difference
  • Stress tests (1000+ rapid cycles): Small but measurable improvement in timeout cleanup
  • Dynamic content tooltips: More significant improvement when content updates frequently

See benchmark/ANALYSIS.md for detailed technical analysis of when each fix provides value.

Testing

To verify the fix, rapidly hover on and off a tooltip trigger element multiple times. Browser DevTools should show:

  • Stable memory usage
  • No continuously increasing DOM node count
  • No warnings about state updates on unmounted components

Example test case:

<button data-tooltip-id="test">Hover me</button>
<Tooltip id="test">
  <div>Complex content with children</div>
</Tooltip>

The fix is backward compatible and doesn't change any public APIs or behavior.

Fixes ReactTooltip/react-tooltip#1242

Original prompt

This section details on the original issue you should resolve

<issue_title>[BUG] Children are not cleaned from memory</issue_title> <issue_description>Bug description When tooltip is rendered with react children, it's not cleaning up rendered children and they remain in the memory

Version of Package v5.28.0

To Reproduce https://react-tooltip.com/docs/examples/children

Hover over example and see DOM nodes in dev tools rising

Expected behavior Children is correctly cleaned up

Screenshots

https://github.com/user-attachments/assets/0e9684f0-f1b0-4823-a451-f64c64ac5371

Desktop

  • OS: mac
  • Browser: chrome
  • Version: 133.0.6943.142

</issue_description>

Comments on the Issue (you are @copilot in this section)

@danielbarion Hi @kamil-sienkiewicz-asi, I'm sorry for the delay!

thanks for reporting and for the recording video, I'll be taking a look as soon as possible</comment_new> <comment_new>@danielbarion

I took a look in the master branch and also in the e v6 branch, I've added a few extra cleanup code to prevent memory leak, but on my tests, looks like there's no relevant progress so far, so I'll add the help wanted label on this one, please feel free to help too if you have any available time.</comment_new>

Fixes ReactTooltip/react-tooltip#1242


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Copilot avatar Oct 09 '25 19:10 Copilot