mdynnl
Stale read in <List><Show><List>
with that assumption, that gives us https://playground.solidjs.com/anonymous/61aa97b9-7680-4f21-a7d8-8950bc0a48c9
17 replies
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
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
I need to run an effect when an async signal or a store signal, or another async signal are equal
8 replies
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 code8 replies
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 state8 replies