Closed anacierdem closed 1 year ago
This is now supported as part of the improved Store/Container API https://github.com/atlassian/react-sweet-state/pull/198 .
Basically by using the new containedBy
attribute on store creation we also support handlers.onDestroy
.
See docs. It will be available on v2.7.0+
Currently, the
createContainer
provides an ability to do some cleanup on a per-container basis. It is also possible to create a single store instance shared among a number of containers and know when each of them is destroyed.Then when rendering we can do;
We also know that by design RSS destroys the store when there are no more containers left in a given scope (for this case
my-scope
). Currently there is not an integrated way of knowing when the store is destroyed. This can become necessary for example to abort all ongoing requests.As a solution consider;
Or there may be alternatives where we can 'deduce' when to do the final cleanup, for example providing number of containers left as a prop to
onCleanup
etc.