mdynnl
mdynnl
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
here, the node that triggers the error eventually gets cleaned up as a result of its reparent recomputing
17 replies
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
i know that it was done to detect cases like this but it isn't that obvious that this might happen in real world scenarios
17 replies
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
essentially what List or indexArray helper is doing under the hood
17 replies
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
17 replies
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
it basically boils down to recomputation of a child node that access the condition as a result of write operation that negates the condition
17 replies
SSolidJS
Created by webstrand on 4/21/2025 in #support
Stale read in <List><Show><List>
17 replies
SSolidJS
Created by hyperknot on 4/5/2025 in #support
Can I use Solid for rendering DOM elements under non-Solid parts of the website?
from the surface, it looks as if it'd modify the node in its own way
9 replies
SSolidJS
Created by hyperknot on 4/5/2025 in #support
Can I use Solid for rendering DOM elements under non-Solid parts of the website?
what does that update do exactly?
9 replies
SSolidJS
Created by hyperknot on 4/5/2025 in #support
Can I use Solid for rendering DOM elements under non-Solid parts of the website?
to explain in this particular case, if ProseMirror doesn't interact with the node or its content in any way, it should be fine but you need to handle the disposal when ProseMirror removes the node
9 replies
SSolidJS
Created by hyperknot on 4/5/2025 in #support
Can I use Solid for rendering DOM elements under non-Solid parts of the website?
also if you're using render, it's the responsibility of the caller to hook up the disposal
9 replies
SSolidJS
Created by hyperknot on 4/5/2025 in #support
Can I use Solid for rendering DOM elements under non-Solid parts of the website?
you can render to any target anywhere in the DOM but solid has to be the sole manager of that node, it's unaware of anything that happens outside of the system
9 replies
SSolidJS
Created by jdgamble555 on 4/5/2025 in #support
Show Loading
if you disable client side js and check the response, you should see that async signal right in the html in seroval encoded form
8 replies
SSolidJS
Created by jdgamble555 on 4/5/2025 in #support
Show Loading
Yeah, because of deferStream: true ssr will wait for that async to resolve first
8 replies
SSolidJS
Created by jdgamble555 on 4/5/2025 in #support
getTodo is not defined
try removing export from getTodo
3 replies
SSolidJS
Created by grobitto on 4/1/2025 in #support
How to detect if I got to the Route with back button or navigate(-1)
this begs for a notice in the docs
5 replies
SSolidJS
Created by grobitto on 4/1/2025 in #support
How to detect if I got to the Route with back button or navigate(-1)
5 replies
SSolidJS
Created by gsoutz on 3/14/2025 in #support
I need to run an effect when an async signal or a store signal, or another async signal are equal
8 replies
SSolidJS
Created by gsoutz on 3/14/2025 in #support
I need to run an effect when an async signal or a store signal, or another async signal are equal
yeah, also this, at this point you want on
8 replies
SSolidJS
Created by gsoutz on 3/14/2025 in #support
I need to run an effect when an async signal or a store signal, or another async signal are equal
i assume the playground is a minimal example but createAsync should contain some async operation, and i guess you probably have one in actual code
8 replies
SSolidJS
Created by gsoutz on 3/14/2025 in #support
I need to run an effect when an async signal or a store signal, or another async signal are equal
currently, only createAsync is there without isPending which should be in solid 2 so while you still could wait for async to resolve using Suspense, createResource should give you more control over loading state and then check for completion state
8 replies