Javier Marquez
Javier Marquez
In fact! Here it is the article draft. If you want to preview and share your thoughts I'll be so grateful: https://medium.com/@arqex/7-tips-using-react-with-freezer-f4d75e363b94
By selector you mean this? https://github.com/reactjs/reselect It's great, I had never heard of them and I think it's possible to use them with freezer out of the box. Good appreciation...
Hi @solugebefola it seems that you found some kind of bug when pivot on the root. I need to have a look at the code and check what's happening, but...
Hey @solugebefola, Sorry for my late late reply. I have tested it and for me it's working fine http://jsbin.com/mizumamota/1/edit?js,console I don't know if some update has fixed it.
Thanks for the suggestion @viebel I'll have a look at it :)
Be careful when caching the values of freezer, you might be trying to update a value that is not attached to the main freezer object. Instead of doing ```js let...
Hey @dantman, thanks for the suggestion. It fails because can't sort an immutable array, but maybe the `sort` method for arrays is something that can be added to the next...
I am afraid that you will never get `arr.sort() === arr` working with freezer. By convention all the update operations return the new updated version of the object. So `arr.sort()`...
Thanks for your list @kuraga 1) I skipped that buggy version in github since I have released the 0.9.5. 2) I merged your PR for this. 3 & 4) I...
What do you think about implementing it using react portals? We can inject the node in the dom and use a portal to show/hide. We can ship simple styling for...