* Add queued booking response table * Create `RoutingFormResponseRepository` * Pass `queueFormResponse` param * Queue up form response if param is passed * Forward queued form response parma to booker * Pass `queuedFormResponse` from booker to `handleNewBooking` * Write queued routing form response * Type fixes * Clean up * Allow dry run to work which wont have any QueuedFormResponse or FormResponse * Support passing the time when the modal was actually shown to the user and consider that time as the time of form submission * fix ts error * Queue -> Response through separate endpoint that would be triggered by embed * Make queueResponseId a non-guessable uid * Change queueFormResponse query param * fix ts error * Support useQueuedResponse to record new response data * revert handleNewBooking * Remove dead code formResponse * Refactor use repository * Unify migration files * refactor: moved api endpoint to app dir Signed-off-by: Omar López <zomars@me.com> * Update formResponse.ts * Refactor use-queued-response for test * Add tests * Fix ts error and unit test. recordFormResponse cant return nullish response * fix schema * feat: Support full reuse of preloaded iframe (#21803) * feat: support updating cal video settings in API v2 (#21784) * feat: support updating cal video settings in API v2 * chore: update descriptio * feat: support create event type * test: add test for updating event type * test: add test for create event type * chore: undo openapi * chore: bump libraries * Revert "chore: bump libraries" This reverts commit bdf36d09b021fc531497a7b7ea66ab9c52b7d136. * chore: bump libraries --------- Co-authored-by: Lauris Skraucis <lauris.skraucis@gmail.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> * fix tests and ts * Fix tests * wip-useQueuedResponseEndpoint * Add one more test * Change queueFormResponse query param * wip * Support useQueuedResponse to record new response data * Use the update useQueuedResponse endpoint * self-review addressed * Use queuedResponse if available in slots/utils * Add documentation * Remove use-queued-response from critical-path --------- Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Lauris Skraucis <lauris.skraucis@gmail.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> * Update schema.prisma * refactor: renamed to avoid react hooks confusion Signed-off-by: Omar López <zomars@me.com> --------- Signed-off-by: Omar López <zomars@me.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Lauris Skraucis <lauris.skraucis@gmail.com> Co-authored-by: supalarry <laurisskraucis@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
73 lines
2.0 KiB
TypeScript
73 lines
2.0 KiB
TypeScript
import type { Prisma } from "@prisma/client";
|
|
|
|
import { prisma } from "@calcom/prisma";
|
|
import type { App_RoutingForms_Form } from "@calcom/prisma/client";
|
|
import { RoutingFormSettings } from "@calcom/prisma/zod-utils";
|
|
|
|
import { TRPCError } from "@trpc/server";
|
|
|
|
import { onFormSubmission } from "../trpc/utils";
|
|
import type { FormResponse, SerializableForm } from "../types/types";
|
|
|
|
export type TargetRoutingFormForResponse = SerializableForm<
|
|
App_RoutingForms_Form & {
|
|
user: {
|
|
id: number;
|
|
email: string;
|
|
};
|
|
team: {
|
|
parentId: number | null;
|
|
} | null;
|
|
}
|
|
>;
|
|
|
|
/**
|
|
* A wrapper over onFormSubmission that handles building the data needed for onFormSubmission
|
|
*/
|
|
export const onSubmissionOfFormResponse = async ({
|
|
form,
|
|
formResponseInDb,
|
|
chosenRouteAction,
|
|
}: {
|
|
form: TargetRoutingFormForResponse;
|
|
formResponseInDb: { id: number; response: Prisma.JsonValue };
|
|
chosenRouteAction: {
|
|
type: "customPageMessage" | "externalRedirectUrl" | "eventTypeRedirectUrl";
|
|
value: string;
|
|
} | null;
|
|
}) => {
|
|
if (!form.fields) {
|
|
// There is no point in submitting a form that doesn't have fields defined
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
});
|
|
}
|
|
const settings = RoutingFormSettings.parse(form.settings);
|
|
let userWithEmails: string[] = [];
|
|
|
|
if (form.teamId && (settings?.sendToAll || settings?.sendUpdatesTo?.length)) {
|
|
const whereClause: Prisma.MembershipWhereInput = { teamId: form.teamId };
|
|
if (!settings?.sendToAll) {
|
|
whereClause.userId = { in: settings.sendUpdatesTo };
|
|
}
|
|
const userEmails = await prisma.membership.findMany({
|
|
where: whereClause,
|
|
select: {
|
|
user: {
|
|
select: {
|
|
email: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
userWithEmails = userEmails.map((userEmail) => userEmail.user.email);
|
|
}
|
|
|
|
await onFormSubmission(
|
|
{ ...form, fields: form.fields, userWithEmails },
|
|
formResponseInDb.response as FormResponse,
|
|
formResponseInDb.id,
|
|
chosenRouteAction ?? undefined
|
|
);
|
|
};
|