You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current Svelte API feels very React-y. In React, you set context via a provider component and retrieve it via useContext, but in Svelte you set context with the setContext and retrieve it with getContext. Therefore, I propose the following API that feels more Svelte-y:
<script>
import { QueryClient, setQueryClientContext } from'@tanstack/svelte-query'constqueryClient=newQueryClient()setQueryClientContext(queryClient) // optional, would instantiate a new QueryClient if none is passed// or setQueryContext, or setQueryClient
</script>
<Example />
This could be an alternate syntax when the Svelte 5 adapter is released and the old syntax could be deprecated slowly and removed in a few major releases from now - both could coexist easily.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The current Svelte API feels very React-y. In React, you set context via a provider component and retrieve it via
useContext
, but in Svelte you set context with thesetContext
and retrieve it withgetContext
. Therefore, I propose the following API that feels more Svelte-y:Example.svelte
:This could be an alternate syntax when the Svelte 5 adapter is released and the old syntax could be deprecated slowly and removed in a few major releases from now - both could coexist easily.
Beta Was this translation helpful? Give feedback.
All reactions