Then in my component I’m using useReadQuery(), but the networkStatus doesn’t seem to change when my URL params change. Just wondering if I’m expecting something to happen differently here?
function IndexList() {
const dataRef = Route.useLoaderData();
const search = Route.useSearch();
const { data, networkStatus } = useReadQuery(dataRef);
// ^? this doesn't seem to change when URL params trigger a new loader fetch
useReadQuery suspends your component every time a query is made (so a top Suspense boundary would show) - if your component renders, it will always have loaded a valid result, so I wouldn’t really expect to see any networkStatus other than ready.
What are you seeing and what would you expect instead?
Currently I’m seeing what you describe in that it sets the network status to ready and that value is unchanged even after triggering the preloadQuery to be executed again when the search params change.
I think I was expecting that the preload would cause the network status to reflect that it was performing a new query. I moved to the use of .toPromise() to avoid the suspense boundary from being thrown to keep the current data while an updated loader query is occurring and assumed that I could leverage the network status to reflect a visual difference between refetch, loading etc.