2023-07-20 05:03:50 +00:00
|
|
|
import type z from "zod";
|
|
|
|
|
|
|
|
import { fieldTypesConfigMap } from "./fieldTypes";
|
|
|
|
import type { fieldSchema } from "./schema";
|
|
|
|
|
|
|
|
export const preprocessNameFieldDataWithVariant = (
|
|
|
|
variantName: "fullName" | "firstAndLastName",
|
2023-08-17 17:57:30 +00:00
|
|
|
value: string | Record<"firstName" | "lastName", string> | undefined
|
2023-07-20 05:03:50 +00:00
|
|
|
) => {
|
|
|
|
// We expect an object here, but if we get a string, then we will try to transform it into the appropriate object
|
|
|
|
if (variantName === "firstAndLastName") {
|
|
|
|
return getFirstAndLastName(value);
|
|
|
|
// We expect a string here, but if we get an object, then we will try to transform it into the appropriate string
|
|
|
|
} else {
|
|
|
|
return getFullName(value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-08-17 17:57:30 +00:00
|
|
|
export const getFullName = (name: string | { firstName: string; lastName?: string } | undefined) => {
|
2023-07-20 05:03:50 +00:00
|
|
|
if (!name) {
|
2023-07-21 15:14:39 +00:00
|
|
|
return "";
|
2023-07-20 05:03:50 +00:00
|
|
|
}
|
|
|
|
let nameString = "";
|
|
|
|
if (typeof name === "string") {
|
|
|
|
nameString = name;
|
|
|
|
} else {
|
2023-08-29 11:56:26 +00:00
|
|
|
nameString = name.firstName;
|
|
|
|
if (name.lastName) {
|
|
|
|
nameString = nameString + " " + name.lastName;
|
|
|
|
}
|
2023-07-20 05:03:50 +00:00
|
|
|
}
|
|
|
|
return nameString;
|
|
|
|
};
|
|
|
|
|
2023-08-17 17:57:30 +00:00
|
|
|
function getFirstAndLastName(value: string | Record<"firstName" | "lastName", string> | undefined) {
|
2023-07-20 05:03:50 +00:00
|
|
|
let newValue: Record<"firstName" | "lastName", string>;
|
2023-08-17 17:57:30 +00:00
|
|
|
value = value || "";
|
2023-07-20 05:03:50 +00:00
|
|
|
if (typeof value === "string") {
|
|
|
|
try {
|
|
|
|
// Support name={"firstName": "John", "lastName": "Johny Janardan"} for prefilling
|
|
|
|
newValue = JSON.parse(value);
|
|
|
|
} catch (e) {
|
|
|
|
// Support name="John Johny Janardan" to be filled as firstName="John" and lastName="Johny Janardan"
|
|
|
|
const parts = value.split(" ").map((part) => part.trim());
|
|
|
|
const firstName = parts[0];
|
|
|
|
const lastName = parts.slice(1).join(" ");
|
|
|
|
|
|
|
|
// If the value is not a valid JSON, then we will just use the value as is as it can be the full name directly
|
|
|
|
newValue = { firstName, lastName };
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newValue = value;
|
|
|
|
}
|
|
|
|
return newValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get's the field's variantsConfig and if not available, then it will get the default variantsConfig from the fieldTypesConfigMap
|
|
|
|
*/
|
|
|
|
export const getVariantsConfig = (field: Pick<z.infer<typeof fieldSchema>, "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;
|
|
|
|
};
|