react

"mulling over state management stuff"
Aron 2020-10-27T09:00:58.001600Z

what do you think of react17 changes? šŸ™‚

orestis 2020-10-27T09:25:31.003100Z

The mounting of event handles on the root node vs the document is nice. It would have made a ton of difference when I was starting my current project which involves a legacy application.

Aron 2020-10-27T10:01:39.003600Z

yeah, it's something i've struggled a lot in the past when i had to use multiple react apps on the same page

Aron 2020-10-27T10:02:34.004300Z

but there are other changes that i find interesting, e.g. events are usable again, no need to cache them or manually opt out from the optimization

dominicm 2020-10-27T10:45:18.005500Z

Usable again? You mean they're no longer reused after the callback is run? Huh, interesting.

orestis 2020-10-27T12:00:06.006700Z

The new jsx transform should also be a bit nicer for hiccup, Iā€™m not sure if anyone has had a look in the cljs ecosystem though.

Aron 2020-10-27T13:01:36.006900Z

https://github.com/facebook/react/pull/18969

Aron 2020-10-27T13:01:42.007200Z

remove event pooling

Aron 2020-10-27T13:02:01.007400Z

not sure what they mean by 'proper fork'