useSuspenseQuery and enabled v5 #6206
Replies: 4 comments 12 replies
-
enabled is not included because one of the main expectations of suspense is that if you call useSuspenseQuery, data will be or, you can just return null from the queryFn:
becomes:
regarding placeholderData: I need to think about it. The idea was that placeholderData isn't really needed with suspense because for showing previous data, you would use transitions. For static data, you could still use |
Beta Was this translation helpful? Give feedback.
-
Thanks for getting back to me so quickly! The enabled comments makes sense. When you say component composition, what do you mean? The reason we need enabled is that sometimes the param is undefined, and we don't want to make a request yet in that case . I guess the best way to handle this is like you said, in the queryFn. But im curious what an example of component composition looks like - im unfamiliar with that term. As for the placeholderData, I think i see what you mean. InitialData wont work for us because it gets stored in the cache, and its a partial result. I guess with suspense, we would need to move it to the fallback prop, but then, i need to read directly from the cache of another query to render that partial fallback. It would work, but its a little messy since we are calling this hook all over the place. The placeholderData makes it so that it’s much cleaner and the rest of the components dont care how or where that placeholderData comes from - if its partially available render a partial view, if its fully available, render full view, if its not available at all, show loading spinner. V4 allowed us to do this while also using suspense. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to migrate codebase to v5 and I've faced an issue with the new
And it've worked that way:
So with a new |
Beta Was this translation helpful? Give feedback.
-
By the way, is it a good idea to use useQuery in that places, where you need enabled? useSuspenseQuery and useQuery shares the same cache if they have the same queryKey. @TkDodo what do you think about it? |
Beta Was this translation helpful? Give feedback.
-
Hello, I am trying to upgrade to v5, but i have some queries that need to be enabled or disabled based on some parameters, but I also want to use suspense with them. Unfortanately, when i switch to
useSuspenseQuery
we cannot useenabled
. But if I try to useuseQuery
withenabled
andsuspense: true
i get typescript errors. How are we supposed to fix this error:Another issue when migrating, is we have
suspense: true
andplaceholderData: () => readFromCache
- this happens when we watch to populate the cache of a query based on the data of other query that is (probably) already in the cache. However, this object is a partial, and just allows us to start rendering some thing ASAP while the more expensive query gets run in background immediately. Is this pattern also possible in v5?useSuspenseQuery
does not seem to support this. I can do this without suspense, but then i cannot use suspense for that query 😢Beta Was this translation helpful? Give feedback.
All reactions