aboutsummaryrefslogtreecommitdiffstats
path: root/packages/browser-extension/src/utils/providers.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser-extension/src/utils/providers.tsx')
-rw-r--r--packages/browser-extension/src/utils/providers.tsx40
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/browser-extension/src/utils/providers.tsx b/packages/browser-extension/src/utils/providers.tsx
new file mode 100644
index 00000000..c11331f0
--- /dev/null
+++ b/packages/browser-extension/src/utils/providers.tsx
@@ -0,0 +1,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>
+ );
+}