luciodale / fork

A non-intrusive Clojurescript form management library for Re-frame and Reagent.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

:clean-on-unmount? broken or vestigial

psagers opened this issue · comments

The :clean-on-unmount? option under re-frame ends up dispatching the :fork.re-frame/clean event, which is not registered. It looks like the option may be obsolete, although some app-db cleanup may still be warranted.

Thanks

Besides the fact that the on clean event doesn’t exist anymore, I was thinking about whether we should still support the component-will-unmount Lifecycle method, as react deprecated it in favour of useEffect.

I removed clean-on-unmount? in v2.0.1, as react doesn't support component-will-unmount anymore.

Out of curiosity, could you link to a reference to React dropping support for componentWillUnmount? I see that they've deprecated componentWillMount, but I can't find any references to deprecating componentWillUnmount.

Thanks

Oh my! It's not deprecated, you are right! I shouldn't work when I am too tired :) I'll revert.

If you pull v2.0.2 it should work properly now. Let me know :)