* refactor: apply biome formatting to apps/web (batch 1) Formats apps/web non-modules directories: - apps/web/app - apps/web/lib - apps/web/pages - apps/web/styles - apps/web/server - apps/web/test - Root-level .ts and .mjs files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules (batch 2) Formats smaller apps/web/modules directories: - onboarding, data-table, users, apps, auth - integration-attribute-sync, shell, availability - feature-flags, team, webhooks, getting-started - feature-opt-in, troubleshooter, schedules, notifications - signup-view.tsx Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules (batch 3) Formats medium apps/web/modules directories: - bookings - event-types - insights - embed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/modules/ee (batch 4) Formats apps/web/modules/ee directory. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web (batch 5) Formats remaining apps/web directories: - apps/web/modules/settings - apps/web/modules/booking-audit - apps/web/playwright Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to apps/web/components (batch 6) Formats remaining apps/web/components files. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to new apps/web files from main Formats newly added/modified files from main merge: - WorkflowStepContainer.tsx (resolved merge conflicts) - Newly moved files (blocklist, form-builder, schedules, etc.) - Other files modified in main Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * refactor: apply biome formatting to new apps/web files from main Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
81 lines
2.5 KiB
TypeScript
81 lines
2.5 KiB
TypeScript
"use client";
|
|
|
|
import superjson from "superjson";
|
|
|
|
import { ENDPOINTS } from "@calcom/trpc/react/shared";
|
|
|
|
import { httpBatchLink, httpLink, loggerLink, splitLink } from "@trpc/client";
|
|
|
|
import { trpc } from "./trpc";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const resolveEndpoint = (links: any) => {
|
|
// TODO: Update our trpc routes so they are more clear.
|
|
// This function parses paths like the following and maps them
|
|
// to the correct API endpoints.
|
|
// - viewer.me - 2 segment paths like this are for logged in requests
|
|
// - viewer.public.i18n - 3 segments paths can be public or authed
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
return (ctx: any) => {
|
|
const parts = ctx.op.path.split(".");
|
|
let endpoint;
|
|
let path = "";
|
|
if (parts.length == 2) {
|
|
endpoint = parts[0] as keyof typeof links;
|
|
path = parts[1];
|
|
} else {
|
|
endpoint = parts[1] as keyof typeof links;
|
|
path = parts.splice(2, parts.length - 2).join(".");
|
|
}
|
|
return links[endpoint]({ ...ctx, op: { ...ctx.op, path } });
|
|
};
|
|
};
|
|
|
|
const url =
|
|
typeof window !== "undefined"
|
|
? "/api/trpc"
|
|
: process.env.VERCEL_URL
|
|
? `https://${process.env.VERCEL_URL}/api/trpc`
|
|
: `${process.env.NEXT_PUBLIC_WEBAPP_URL}/api/trpc`;
|
|
|
|
export const trpcClient = trpc.createClient({
|
|
links: [
|
|
// adds pretty logs to your console in development and logs errors in production
|
|
loggerLink({
|
|
enabled: (opts) =>
|
|
(typeof process.env.NEXT_PUBLIC_LOGGER_LEVEL === "number" &&
|
|
process.env.NEXT_PUBLIC_LOGGER_LEVEL >= 0) ||
|
|
(opts.direction === "down" && opts.result instanceof Error),
|
|
}),
|
|
splitLink({
|
|
// check for context property `skipBatch`
|
|
condition: (op) => !!op.context.skipBatch,
|
|
// when condition is true, use normal request
|
|
true: (runtime) => {
|
|
const links = Object.fromEntries(
|
|
ENDPOINTS.map((endpoint) => [
|
|
endpoint,
|
|
httpLink({
|
|
url: `${url}/${endpoint}`,
|
|
})(runtime),
|
|
])
|
|
);
|
|
return resolveEndpoint(links);
|
|
},
|
|
// when condition is false, use batch request
|
|
false: (runtime) => {
|
|
const links = Object.fromEntries(
|
|
ENDPOINTS.map((endpoint) => [
|
|
endpoint,
|
|
httpBatchLink({
|
|
url: `${url}/${endpoint}`,
|
|
})(runtime),
|
|
])
|
|
);
|
|
return resolveEndpoint(links);
|
|
},
|
|
}),
|
|
],
|
|
transformer: superjson,
|
|
});
|