Skip to content
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

Setting and deleting custom properties #106

Open
coot opened this issue Jul 21, 2017 · 3 comments
Open

Setting and deleting custom properties #106

coot opened this issue Jul 21, 2017 · 3 comments

Comments

@coot
Copy link

coot commented Jul 21, 2017

Checkout the gist.

This allows to set custom properties on ReactThis within componentWillMount and required to delete them in componentWillUnmount (no memory leaks).

Beyond basic react components setting callbacks on ReactThis is necessary. For example if you want to create a debounced event callback where you need to access to ReactThis you will need to create it in componentWillMount.

I think this approach can be extended to refs (where the render method would be allowed to change the type of This.

We could allow the resulting type of this in componentWillUnmount to be a subrow of what componentWillMount returns. Just the Subrow class from purescript-records fails to recognize that () is a subrow of any non empty row. Maybe that's an actual bug in Union type class.

@coot
Copy link
Author

coot commented Jul 21, 2017

I think I found a pretty nice solution using idexed monads to track changed of properties that are added / removed from ReactThis. For now I put it in a separate repo. Now it's just a proof of concept. There are some example in the test file that compile.

@ethul
Copy link
Contributor

ethul commented Jul 27, 2017 via email

@coot
Copy link
Author

coot commented Jul 27, 2017

I packaged this in purescript-react-ix. I hope to get some nice algebra for combining various specs in this indexed monad (in a horizontal way, not changing the render method but adding things in componentWillMount, e.g. adding isMounted property or something else).

Indeed there are a few reasons why one would like to add properties to this

  • store refs
  • create callbacks in componentWillMount: also for optimisation, since now one is forcing react to remove and reattach event handlers on every render.

I like the current mechanism for refs and the type of spec: it's very simple, while doing things with an indexed monad adds complexity (but also safety).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants