d82f87aa2a
* wip * refactor(emails): remove circular dependencies from packages/emails - Extract renderEmail imports to use direct path (../src/renderEmail) instead of index - Create utility files for shared types and functions: - lib/utils/team-invite-utils.ts: TeamInvite type and utility functions - lib/utils/booking-redirect-types.ts: IBookingRedirect type - lib/utils/email-types.ts: OrganizationCreation and EmailVerifyCode types - lib/utils/date-formatting.ts: getFormattedDate utility function - Update all template files to import renderEmail directly from ../src/renderEmail - Update React template components to import from utility files instead of class templates - This eliminates all circular dependencies within packages/emails (reduced from 234 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * refactor(trpc): remove circular dependency in routing-forms - Extract ZFormByResponseIdInputSchema to separate schema file - Create getResponseWithFormFields.schema.ts to break circular dependency - Update imports in _router.ts and getResponseWithFormFields.handler.ts - Fix eslint warnings by updating deprecated rule names - This eliminates the circular dependency within packages/trpc (reduced from 1 to 0 internal circular deps) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix(emails): correct TeamInvite type definition - Make isExistingUserMovedToOrg required (not optional) - Make prevLink and newLink non-optional (string | null) - Add back JSDoc comment for isAutoJoin field - This fixes type check errors in CI Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * wip * Fixes types folder --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
107 lines
4.0 KiB
TypeScript
107 lines
4.0 KiB
TypeScript
import { z } from "zod";
|
|
|
|
import authedProcedure from "@calcom/trpc/server/procedures/authedProcedure";
|
|
import { router } from "@calcom/trpc/server/trpc";
|
|
|
|
import { ZDeleteFormInputSchema } from "./deleteForm.schema";
|
|
import { ZFormMutationInputSchema } from "./formMutation.schema";
|
|
import { ZFormQueryInputSchema } from "./formQuery.schema";
|
|
import { ZGetAttributesForTeamInputSchema } from "./getAttributesForTeam.schema";
|
|
import { ZGetIncompleteBookingSettingsInputSchema } from "./getIncompleteBookingSettings.schema";
|
|
import { ZFormByResponseIdInputSchema } from "./getResponseWithFormFields.schema";
|
|
import { forms } from "./procedures/forms";
|
|
import { ZSaveIncompleteBookingSettingsInputSchema } from "./saveIncompleteBookingSettings.schema";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
const UNSTABLE_HANDLER_CACHE: Record<string, Function> = {};
|
|
|
|
// TODO: Move getHandler and UNSTABLE_HANDLER_CACHE to a common utils file making sure that there is no name collision across routes
|
|
/**
|
|
* This function will import the module defined in importer just once and then cache the default export of that module.
|
|
*
|
|
* It gives you the default export of the module.
|
|
*
|
|
* **Note: It is your job to ensure that the name provided is unique across all routes.**
|
|
*/
|
|
const getHandler = async <
|
|
T extends {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
default: Function;
|
|
}
|
|
>(
|
|
/**
|
|
* The name of the handler in cache. It has to be unique across all routes
|
|
*/
|
|
name: string,
|
|
importer: () => Promise<T>
|
|
) => {
|
|
const nameInCache = name as keyof typeof UNSTABLE_HANDLER_CACHE;
|
|
|
|
if (!UNSTABLE_HANDLER_CACHE[nameInCache]) {
|
|
const importedModule = await importer();
|
|
UNSTABLE_HANDLER_CACHE[nameInCache] = importedModule.default;
|
|
return importedModule.default as T["default"];
|
|
}
|
|
|
|
return UNSTABLE_HANDLER_CACHE[nameInCache] as unknown as T["default"];
|
|
};
|
|
|
|
export type TFormQueryInputSchema = z.infer<typeof ZFormQueryInputSchema>;
|
|
|
|
const appRoutingForms = router({
|
|
forms,
|
|
formQuery: authedProcedure.input(ZFormQueryInputSchema).query(async ({ ctx, input }) => {
|
|
const handler = await getHandler("formQuery", () => import("./formQuery.handler"));
|
|
return handler({ ctx, input });
|
|
}),
|
|
getResponseWithFormFields: authedProcedure
|
|
.input(ZFormByResponseIdInputSchema)
|
|
.query(async ({ ctx, input }) => {
|
|
const handler = await getHandler(
|
|
"getResponseWithFormFields",
|
|
() => import("./getResponseWithFormFields.handler")
|
|
);
|
|
return handler({ ctx, input });
|
|
}),
|
|
formMutation: authedProcedure.input(ZFormMutationInputSchema).mutation(async ({ ctx, input }) => {
|
|
const handler = await getHandler("formMutation", () => import("./formMutation.handler"));
|
|
return handler({ ctx, input });
|
|
}),
|
|
deleteForm: authedProcedure.input(ZDeleteFormInputSchema).mutation(async ({ ctx, input }) => {
|
|
const handler = await getHandler("deleteForm", () => import("./deleteForm.handler"));
|
|
return handler({ ctx, input });
|
|
}),
|
|
|
|
getAttributesForTeam: authedProcedure
|
|
.input(ZGetAttributesForTeamInputSchema)
|
|
.query(async ({ ctx, input }) => {
|
|
const handler = await getHandler(
|
|
"getAttributesForTeam",
|
|
() => import("./getAttributesForTeam.handler")
|
|
);
|
|
return handler({ ctx, input });
|
|
}),
|
|
|
|
getIncompleteBookingSettings: authedProcedure
|
|
.input(ZGetIncompleteBookingSettingsInputSchema)
|
|
.query(async ({ ctx, input }) => {
|
|
const handler = await getHandler(
|
|
"getIncompleteBookingSettings",
|
|
() => import("./getIncompleteBookingSettings.handler")
|
|
);
|
|
return handler({ ctx, input });
|
|
}),
|
|
|
|
saveIncompleteBookingSettings: authedProcedure
|
|
.input(ZSaveIncompleteBookingSettingsInputSchema)
|
|
.mutation(async ({ ctx, input }) => {
|
|
const handler = await getHandler(
|
|
"saveIncompleteBookingSettings",
|
|
() => import("./saveIncompleteBookingSettings.handler")
|
|
);
|
|
return handler({ ctx, input });
|
|
}),
|
|
});
|
|
|
|
export default appRoutingForms;
|