33 lines
941 B
TypeScript
33 lines
941 B
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
|
|
import { httpBatchLink } from "@trpc/client"
|
|
import { env } from "@/env/client"
|
|
import { api } from "./client"
|
|
import { transformer } from "@/server/transformer"
|
|
|
|
function initializeTrpcClient() {
|
|
return api.createClient({
|
|
links: [
|
|
httpBatchLink({
|
|
transformer,
|
|
/**
|
|
* This is locally in Next.js
|
|
*/
|
|
url: `http://localhost:${env.NEXT_PUBLIC_PORT}/api/web/trpc`,
|
|
}),
|
|
],
|
|
})
|
|
}
|
|
|
|
export default function TrpcProvider({ children }: React.PropsWithChildren) {
|
|
const [queryClient] = useState(() => new QueryClient({}))
|
|
const [trpcClient] = useState(() => initializeTrpcClient())
|
|
return (
|
|
<api.Provider client={trpcClient} queryClient={queryClient}>
|
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
|
</api.Provider>
|
|
)
|
|
}
|