* 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>
78 lines
2.6 KiB
TypeScript
78 lines
2.6 KiB
TypeScript
import type z from "zod";
|
|
|
|
import type { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import type { fieldSchema } from "@calcom/prisma/zod-utils";
|
|
|
|
import { fieldTypesConfigMap } from "../fieldTypes";
|
|
|
|
type ConfigVariants = NonNullable<ReturnType<typeof getConfig>>["variants"];
|
|
type Field = z.infer<typeof fieldSchema>;
|
|
type Translate = ReturnType<typeof useLocale>["t"];
|
|
|
|
function getTranslatedConfigVariants(
|
|
configVariants: ConfigVariants,
|
|
translate: Translate,
|
|
fieldType: Field["type"]
|
|
) {
|
|
const fieldTypeVariantsConfig = fieldTypesConfigMap[fieldType]?.variantsConfig?.variants;
|
|
|
|
return Object.entries(configVariants).reduce(
|
|
(variantsConfigVariants, [variantName, variant]) => {
|
|
const variantFieldsMap =
|
|
fieldTypeVariantsConfig?.[variantName as keyof typeof fieldTypeVariantsConfig]?.fieldsMap;
|
|
|
|
const translatedFields = variant.fields.map((field) => {
|
|
const defaultLabel =
|
|
variantFieldsMap?.[field.name as keyof typeof variantFieldsMap]?.defaultLabel ?? "";
|
|
const label = (field.label?.trim() ? field.label : defaultLabel) ?? "";
|
|
const placeholder = field.placeholder ?? "";
|
|
return {
|
|
...field,
|
|
label: translate(label),
|
|
placeholder: translate(placeholder),
|
|
};
|
|
});
|
|
variantsConfigVariants[variantName] = {
|
|
...variant,
|
|
fields: translatedFields,
|
|
};
|
|
|
|
return variantsConfigVariants;
|
|
},
|
|
{} as typeof configVariants
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Gets the field's variantsConfig and if not available, then it will get the default variantsConfig from the fieldTypesConfigMap
|
|
*/
|
|
export const getConfig = (field: Pick<Field, "variantsConfig" | "type">) => {
|
|
const fieldVariantsConfig = field.variantsConfig;
|
|
const fieldTypeConfig = fieldTypesConfigMap[field.type as keyof typeof fieldTypesConfigMap];
|
|
|
|
if (!fieldTypeConfig) throw new Error(`Invalid field.type ${field.type}}`);
|
|
|
|
const defaultVariantsConfig = fieldTypeConfig?.variantsConfig?.defaultValue;
|
|
const variantsConfig = fieldVariantsConfig || defaultVariantsConfig;
|
|
|
|
if (fieldTypeConfig.propsType === "variants" && !variantsConfig) {
|
|
throw new Error(`propsType variants must have variantsConfig`);
|
|
}
|
|
return variantsConfig;
|
|
};
|
|
|
|
export const getTranslatedConfig = (field: Pick<Field, "variantsConfig" | "type">, translate: Translate) => {
|
|
const variantsConfig = getConfig(field);
|
|
if (!variantsConfig) return variantsConfig;
|
|
const newVariantsConfigVariants = getTranslatedConfigVariants(
|
|
variantsConfig.variants,
|
|
translate,
|
|
field.type
|
|
);
|
|
|
|
return {
|
|
...variantsConfig,
|
|
variants: newVariantsConfigVariants,
|
|
};
|
|
};
|