I need to run an effect when an async signal or a store signal, or another async signal are equal
This equality test is supposed to make sure not pass forward when the memos are not equal but it does why, and how can I make sure it only passes when they are equal.
https://playground.solidjs.com/anonymous/70c547e4-4c55-407f-a31a-d369aa3028eb
Solid Playground
Quickly discover what the solid compiler will generate from your JSX template
4 Replies
there is 2 separate async data is loading, and they are changing over time, i want to display the view only when both data are loaded and in sync.
A rough rethink:
Keep in mind that reactivity and effects are scheduled differently; signals are not events.
You need to untrack:
console.log(a(), b(), a() === b())
on
Successive true
values won't trigger the effect.on - SolidDocs
Documentation for SolidJS, the signals-powered UI framework
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
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
yeah, also this, at this point you want on
https://playground.solidjs.com/anonymous/962690f5-7359-40bc-aaab-d4aa3ea1f649