Data Fetching
Data Fetching Architecture with TanStack Query and Server Actions in Letrazβs client side repository. This architecture provides a robust solution for data fetching in Next.js applications featuring seamless server-side and client-side data fetching, efficient caching and revalidation, type-safe API interactions, comprehensive error handling, feature-based organization, and built-in support for infinite scrolling.
Overview
This architecture provides a robust solution for data fetching in Next.js applications by combining Server Actions with TanStack Query. We use this in our Letrazβs client side code. Key features:
- π Seamless server-side and client-side data fetching
- π¦ Efficient caching and revalidation
- π‘οΈ Type-safe API interactions
- π¨ Comprehensive error handling
- π― Feature-based organization
- βΎοΈ Built-in support for infinite scrolling
Please note that this documentation is tailored for the Letrazβs client side code and is an evolving document. The information provided here is subject to change based on the evolving requirements of the project.
Setup
Provider Setup
Core Types
Project Structure
Implementation Details
API Client Configuration
Custom React Query Hooks Example
Query Hooks
Mutation Hooks
Server Actions Integration
Error Handling
Query Key Management
Using Prefetched Data with Hydration
Key Concepts
- Prefetching Data: Fetch data on the server using TanStack Queryβs
queryClient.prefetchQuery
. - Hydration: Pass server-fetched data to the client using the
dehydrate
andHydrate
APIs.
Prefetch Data in a Page
In Next.js page (page.tsx
), fetch data on the server and use dehydrate
to serialize it for hydration:
Fetch Data with TanStack Query
Create a utility to fetch data:
In custom hook, use useQuery
to access the hydrated data:
Optimistic Updates
1: Make a Server Action
2: Create a Custom Hook for Optimistic Updates
3: Make Reuseable Query Options
3: Use the Hook in a Component
For more details, refer to the following links.
- Example Repo
- Server Rendering & Hydration
- Advanced Server Rendering
- Next 14 + React Query COMBO with Server Actions and RSC
- TanStack Query docs
- Next.js App Router docs