Ryan Carniato

Results 599 comments of Ryan Carniato

I was playing around with something similar. At first I simply tried to hoist up the owner in `devComponent`, but obviously that would break DevTools. The whole point is to...

Yeah this is an extension of the original design. Related to issues brought up here: https://github.com/solidjs/solid/issues/1392 Stores were originally created with the path-based syntax in mind. Mutation based APIs came...

Yeah this just was never added probably. HTML renderer was something I created a couple days back in 2018 (I think) and over time got updates because the runtime improved....

This is interesting. Yeah the udomdiff algorithm we moved to in march 2020, will produce the blur event. https://github.com/WebReflection/udomdiff/issues/7 I will need to see which ones don't. Keeping track of...

Yeah thinking about this. This is a bug. I changed some stuff in the transform a few versions back to fix one problem but introduced this one. We will look...

Hmm.. I can't think of a way with how our current reactivity works to solve both issues. Either we process the prop too eagerly which isn't acceptable (and can break...

Yeah hmm... It's because the queuing happens on change at which point the value has changed, and then changing back sees it in the queue, but it still gets queued...

I see. Looks like something a bit fiddly to fix. Interested to see if any framework with event delegation has solved this and how they went about doing so.

Yeah I'm not qualified to answer this. I mean pretty much anything can error, what are we supposed to do. I think memo's and derived might be different cases. `createRoot`...

It is interesting because it does throw in all these cases unless you specifically have an error boundary above it. It rethrows when it doesn't find an error context. Of...