blob: c11331f0dee2cda2f02151fc3ed37a56b6258665 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { httpBatchLink } from "@trpc/client";
import { useCallback, useEffect, useState } from "react";
import { api } from "./trpc";
import usePluginSettings from "./settings";
import superjson from "superjson";
export function Providers({ children }: { children: React.ReactNode }) {
const [settings] = usePluginSettings();
const [queryClient] = useState(() => new QueryClient());
const getTrpcClient = useCallback(() => {
console.log(settings);
return api.createClient({
links: [
httpBatchLink({
url: `${settings.address}/api/trpc`,
async headers() {
return {
Authorization: `Bearer ${settings.apiKey}`,
};
},
transformer: superjson,
}),
],
});
}, [settings]);
const [trpcClient, setTrpcClient] = useState(getTrpcClient());
useEffect(() => {
setTrpcClient(getTrpcClient());
}, [getTrpcClient]);
return (
<api.Provider client={trpcClient} queryClient={queryClient}>
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
</api.Provider>
);
}
|