2025-09-20 11:35:40 +09:00
|
|
|
/**
|
|
|
|
|
* React Query Provider
|
|
|
|
|
* Simple provider setup for TanStack Query
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
|
|
|
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
|
|
|
|
|
import { useState } from "react";
|
2025-10-22 10:58:16 +09:00
|
|
|
import { isApiError } from "@/lib/api/runtime/client";
|
2025-09-20 11:35:40 +09:00
|
|
|
|
|
|
|
|
export function QueryProvider({ children }: { children: React.ReactNode }) {
|
|
|
|
|
const [queryClient] = useState(
|
|
|
|
|
() =>
|
|
|
|
|
new QueryClient({
|
|
|
|
|
defaultOptions: {
|
|
|
|
|
queries: {
|
|
|
|
|
staleTime: 5 * 60 * 1000, // 5 minutes
|
|
|
|
|
gcTime: 10 * 60 * 1000, // 10 minutes
|
2025-09-24 18:00:49 +09:00
|
|
|
retry: (failureCount, error: unknown) => {
|
|
|
|
|
if (isApiError(error)) {
|
|
|
|
|
const status = error.response?.status;
|
|
|
|
|
if (status && status >= 400 && status < 500) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
const body = error.body as Record<string, unknown> | undefined;
|
|
|
|
|
const code = typeof body?.code === "string" ? body.code : undefined;
|
|
|
|
|
if (code === "AUTHENTICATION_REQUIRED" || code === "FORBIDDEN") {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2025-09-20 11:35:40 +09:00
|
|
|
}
|
|
|
|
|
return failureCount < 3;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<QueryClientProvider client={queryClient}>
|
|
|
|
|
{children}
|
|
|
|
|
{process.env.NODE_ENV === "development" && <ReactQueryDevtools />}
|
|
|
|
|
</QueryClientProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|