Files
Homarr/src/utils/api.ts

75 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-06-10 10:05:16 +02:00
/**
* This is the client-side entrypoint for your tRPC API. It is used to create the `api` object which
* contains the Next.js App-wrapper, as well as your type-safe React Query hooks.
*
* We also create a few inference helpers for input and output types.
*/
2023-06-10 12:24:16 +02:00
import { createTRPCProxyClient, httpBatchLink, loggerLink } from '@trpc/client';
2023-06-10 10:05:16 +02:00
import { createTRPCNext } from '@trpc/next';
import { type inferRouterInputs, type inferRouterOutputs } from '@trpc/server';
import superjson from 'superjson';
import { type RootRouter } from '~/server/api/root';
2023-06-10 12:24:16 +02:00
const getTrpcConfiguration = () => ({
/**
* Transformer used for data de-serialization from the server.
*
* @see https://trpc.io/docs/data-transformers
*/
transformer: superjson,
/**
* Links used to determine request flow from client to server.
*
* @see https://trpc.io/docs/links
*/
links: [
loggerLink({
enabled: (opts) =>
process.env.NODE_ENV === 'development' ||
(opts.direction === 'down' && opts.result instanceof Error),
}),
httpBatchLink({
url: `${getBaseUrl()}/api/trpc`,
}),
],
});
2023-06-10 10:05:16 +02:00
const getBaseUrl = () => {
if (typeof window !== 'undefined') return ''; // browser should use relative url
if (process.env.VERCEL_URL) return `https://${process.env.VERCEL_URL}`; // SSR should use vercel url
return `http://localhost:${process.env.PORT ?? 3000}`; // dev SSR should use localhost
};
/** A set of type-safe react-query hooks for your tRPC API. */
export const api = createTRPCNext<RootRouter>({
config() {
2023-06-10 12:24:16 +02:00
return getTrpcConfiguration();
2023-06-10 10:05:16 +02:00
},
/**
* Whether tRPC should await queries when server rendering pages.
*
* @see https://trpc.io/docs/nextjs#ssr-boolean-default-false
*/
ssr: false,
});
/**
* Inference helper for inputs.
*
* @example type HelloInput = RouterInputs['example']['hello']
*/
export type RouterInputs = inferRouterInputs<RootRouter>;
/**
* Inference helper for outputs.
*
* @example type HelloOutput = RouterOutputs['example']['hello']
*/
export type RouterOutputs = inferRouterOutputs<RootRouter>;
2023-06-10 12:24:16 +02:00
/**
* A tRPC client that can be used without hooks.
*/
export const trcpProxyClient = createTRPCProxyClient<RootRouter>(getTrpcConfiguration());