YIZHUANG / react-multi-carousel

A lightweight production-ready Carousel that rocks supports multiple items and server-side rendering with no dependency. Bundle size 2kb.
MIT License
1.25k stars 286 forks source link

Clear timeouts on component unmount to prevent memory leaks #380

Closed Arooba-git closed 1 year ago

Arooba-git commented 1 year ago

Hello 👋 As part of our project, we are using Facebook's new Memlab tool to detect memory leaks in SPA applications. While running the tool and analyzing the code of react-multi-carousel, we saw that your project does a very good job of ensuring that all async operations are cancelled when the component unmounts. However, as per Memlab execution results, we found some dangling timers that were causing the memory to leak (screenshots below).

[before]

Screen Shot 2023-01-28 at 9 15 19 PM


Hence we added the fix by clearing the timeouts and you can see the heap size and # of leaks reducing noticeably:

Screen Shot 2023-01-28 at 8 55 21 PM

We used static variables, instead of normal ones, so that in future, even if the code changes for e.g encapsulating these timers in a nested function, the ID vars should still retain their correct (class) context, as opposed to volatile 'this' context.

We ran the unit test cases, and the results were the same as before our patch, i.e these patches had no effect on any case result. You can analyze this and other potential leak sources, if you like, by running Memlab with a scenario file covering the maximum # of use cases. Following is a sample of the scenario file we used (it needs to be a .js file but attaching here in .txt form): multi-carousel-memlab-scenario.txt

Note that some other reported leaks (in Memlab) originated from Storybook, hence were ignored.

Arooba-git commented 1 year ago

bump @YIZHUANG