how to trigger <Suspense> on revalidate?
in tanstack query, you can use
resetQueries
to do that, what is the solid router equivalent of that?17 Replies
Suspense is triggered while calling the accessor of a
createAsync
which is in a transition.
So calling revalidate
or any of the other response helpers (reload, redirect, json) inside an action
it will also cause the createAsync to refetch an so trigger the Suspense as long as you access the value inside a Suspense boundary and don’t use .latest
on the accessor.
If you provide a query key(s) to the helpers they will only revalidate the query matching the key(s), if you provide undefined they will revalidate all queries.Try doing
query.delete(someQuery.key)
this? did not work
i deleted the imports so the code is smaller
but they're known
do delete then revalidate
idk if it'll work but in theory it should leave no stale data for the createAsync
did not work either
query.delete(): boolean
its returning false
does that mean its not deleting?
i think so
ok so, no way?
i tried using tanstack query but i didn't know how to setup it correctly so it was refetching on the client after initial ssr
:(
i think its important to show loading on revalidate just as much as initial
do you have any tanstack query + solidstart template i can look at?
I’m afk, so I can’t really try things.
With some more effort you can create an action which just returns reload()
The fallback isn't showing because
revalidate
is triggering a transition. Use pending
to show a loading indicator.
what is reload?
this worked. thanks!
but i'm still interested in more ideas
its actually better then retriggering <Suspense> because that might hide old data which is worse UX
show something instead of nothing
reload - SolidDocs
Documentation for SolidJS, the signals-powered UI framework
"Reload is a response helper built on top of revalidate. It will receive a cache key, or an array of cache keys, to invalidate those queries, and cause them to fire again."
it doesn't say what it adds on top of revalidate
Actions will revalidate all active
query
s. reload
makes it selective; it also opts out of single filight mutation.
revalidate
is used outside of actions.
Here:
https://solid-movies.app/movie
pending
activates a CSS animation for the loading line at the top of the page.such a cool app!
as i added more stuff it started showing pending because of updates unrelated to the query
pending
is global so it's best used in the top level layout.its showing in the same page, i have no layouts
._.