Ryan Carniato
Ryan Carniato
Ok first on Concurrent Mode. React uses their own scheduler but essentially it's a play on `requestIdleCallback`. I implemented the Sierpinski demo and basically made my own version of this...
Yeah I wonder too. They've built a queuing system if you look at the source code that they could apply anywhere. They basically polyfill `requestIdleCallback` by using the timestamp on...
Yeah a lot has changed in understanding (and even the React implementation) since the original post was made. I think things have been better defined now and Svelte should be...
> I'm not convinced useTransition is a useful tool for Svelte though. In every case I've looked at, useTransition is properly some form of routing and covered by frameworks like...
I'm not surprised as the types for Stores.. especially the setter types are quite expensive I imagine. Honestly I didn't know if it would even be possible to type this...
I agree this is sort of loose territory. We have some big change to store reconcile in 2.0. Mainly there is no `merge` option. Right now we merge things sometimes...
Yeah for non-primitive values it is going to look at the reference. I'm not sure if there is much anything to do for that. We've been looking at wrapping anything...
Oh interesting.. I didn't know `$fetch` existed. And since Vinxi doesn't use Nitro in Dev I'm a little surprised it ever worked. I have to admit I have no idea...
Hmm.. it's just that 1.0.7 vs 1.0.6 had very minimal changes on our side. The only thing I can think that could be related is: https://github.com/solidjs/solid-start/pull/1586. Other than changing to...
This seems reasonable.. just thinking about naming.. Do the other Signal accessor pair have a name? Maybe consistent naming won't be possible until 2.0. Would love someone who looks at...