* refactor: apply biome formatting to packages/features (batch 1 - small subdirs) Format small subdirectories in packages/features: di, flags, holidays, oauth, settings, users, assignment-reason, selectedCalendar, hashedLink, host, form, form-builder, availability, data-table, pbac, schedules, troubleshooter, eventtypes, calendar-subscription, and root-level files. Also includes straggler apps/web BookEventForm.tsx. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 2 - medium subdirs) Format medium subdirectories in packages/features: auth, credentials, calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone, tasker, and webhooks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 3 - bookings + insights) Format bookings and insights subdirectories in packages/features. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 4 - ee) Format packages/features/ee subdirectory covering billing, workflows, organizations, teams, managed-event-types, round-robin, dsync, integration-attribute-sync, and payments. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1) Format booking-audit di, actions, common, dto, repository, and types subdirectories in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2) Format booking-audit service subdirectory in packages/features/booking-audit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import type z from "zod";
|
|
|
|
import { slugify } from "@calcom/lib/slugify";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
import type { bookingCreateSchemaLegacyPropsForApi } from "../bookingCreateBodySchema";
|
|
import type { getEventTypeResponse } from "./getEventTypesFromDB";
|
|
|
|
type CustomInputs = z.infer<typeof bookingCreateSchemaLegacyPropsForApi>["customInputs"];
|
|
|
|
type RequestBody = {
|
|
responses?: Record<string, object>;
|
|
customInputs?: CustomInputs;
|
|
};
|
|
|
|
function mapCustomInputs(
|
|
customInputs: { label: string; value: CustomInputs[number]["value"] }[]
|
|
): Record<string, CustomInputs[number]["value"]> {
|
|
return customInputs.reduce(
|
|
(acc, { label, value }) => {
|
|
acc[label] = value;
|
|
return acc;
|
|
},
|
|
{} as Record<string, CustomInputs[number]["value"]>
|
|
);
|
|
}
|
|
|
|
function mapResponsesToCustomInputs(
|
|
responses: Record<string, object>,
|
|
eventTypeCustomInputs: getEventTypeResponse["customInputs"]
|
|
): NonNullable<CalendarEvent["customInputs"]> {
|
|
// Backward Compatibility: Map new `responses` to old `customInputs` format so that webhooks can still receive same values.
|
|
return Object.entries(responses).reduce(
|
|
(acc, [fieldName, fieldValue]) => {
|
|
const foundInput = eventTypeCustomInputs.find((input) => slugify(input.label) === fieldName);
|
|
if (foundInput) {
|
|
acc[foundInput.label] = fieldValue;
|
|
}
|
|
return acc;
|
|
},
|
|
{} as NonNullable<CalendarEvent["customInputs"]>
|
|
);
|
|
}
|
|
|
|
export function getCustomInputsResponses(
|
|
reqBody: RequestBody,
|
|
eventTypeCustomInputs: getEventTypeResponse["customInputs"]
|
|
): NonNullable<CalendarEvent["customInputs"]> {
|
|
if (reqBody.customInputs && reqBody.customInputs.length > 0) {
|
|
return mapCustomInputs(reqBody.customInputs);
|
|
}
|
|
|
|
const responses = reqBody.responses || {};
|
|
return mapResponsesToCustomInputs(responses, eventTypeCustomInputs);
|
|
}
|