I’m way too excited for the coming updates to @solidjs.com in 2025
- Fine grained async
- Mutable derivations
- Flush boundaries
- Derived signals
- Lazy memos
- Global batching
- Concurrent transitions? Maybe?
🧵
- Fine grained async
- Mutable derivations
- Flush boundaries
- Derived signals
- Lazy memos
- Global batching
- Concurrent transitions? Maybe?
🧵
Comments
if you just set the signal once the value arrives, you not only have to deal with loading and error state manually, your signal is undefined until the value arrives.
Hopefully someday a great UI project will be born with a Solid mindset and not an afterthought
Currently when something reads from an async signal, everything being rendered under Suspense is thrown away, fallback is shown, after the async fetch finishes, everything under Suspense is rendered again.
Currently derived primitives (createMemo) are immutable, and deeply reactive primitives (createStore) cannot be used in a derived way. Solid v2 will introduce a new primitive that is derived and deeply reactive, combining the best of both worlds.
Currently Solid has no way to know what a render effect depends on without running it, and no way to prevent side-effects once the render effect starts running. Split effects in Solid v2 let effects define pure reactive logic and effectful logic separately,
The underlying capability that enables Suspense, Offscreen, and other features that defer rendering part of the UI to a later time.
Currently a signal can only be derived (createMemo) or only be settable (createSignal). Creating a signal that's both settable and derived (e.g. optimistic state) requires breaking the dependency graph.