* Initial commit * routingForm to Booking a particular team member working * Happy path working * Fixes * Fix router query params forwarding * Add basicConfig within app * Tests * More tests * Update packages/app-store/routing-forms/components/SingleForm.tsx Co-authored-by: Omar López <zomars@me.com> --------- Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Benny Joo <sldisek783@gmail.com>
71 lines
2.5 KiB
TypeScript
71 lines
2.5 KiB
TypeScript
import type { App_RoutingForms_Form } from "@prisma/client";
|
|
import type { Dispatch, SetStateAction } from "react";
|
|
|
|
import getFieldIdentifier from "../lib/getFieldIdentifier";
|
|
import { getQueryBuilderConfigForFormFields } from "../lib/getQueryBuilderConfig";
|
|
import isRouterLinkedField from "../lib/isRouterLinkedField";
|
|
import { getUIOptionsForSelect } from "../lib/selectOptions";
|
|
import { getFieldResponseForJsonLogic } from "../lib/transformResponse";
|
|
import type { SerializableForm, FormResponse } from "../types/types";
|
|
|
|
type Props = {
|
|
form: SerializableForm<App_RoutingForms_Form>;
|
|
response: FormResponse;
|
|
setResponse: Dispatch<SetStateAction<FormResponse>>;
|
|
};
|
|
|
|
export default function FormInputFields(props: Props) {
|
|
const { form, response, setResponse } = props;
|
|
|
|
const formFieldsQueryBuilderConfig = getQueryBuilderConfigForFormFields(form);
|
|
|
|
return (
|
|
<>
|
|
{form.fields?.map((field) => {
|
|
if (isRouterLinkedField(field)) {
|
|
// @ts-expect-error FIXME @hariombalhara
|
|
field = field.routerField;
|
|
}
|
|
const widget = formFieldsQueryBuilderConfig.widgets[field.type];
|
|
if (!("factory" in widget)) {
|
|
return null;
|
|
}
|
|
const Component = widget.factory;
|
|
|
|
const options = getUIOptionsForSelect(field);
|
|
return (
|
|
<div key={field.id} className="mb-4 block flex-col sm:flex ">
|
|
<div className="min-w-48 mb-2 flex-grow">
|
|
<label id="slug-label" htmlFor="slug" className="text-default flex text-sm font-medium">
|
|
{field.label}
|
|
</label>
|
|
</div>
|
|
<Component
|
|
value={response[field.id]?.value ?? ""}
|
|
placeholder={field.placeholder ?? ""}
|
|
// required property isn't accepted by query-builder types
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
/* @ts-ignore */
|
|
required={!!field.required}
|
|
listValues={options}
|
|
data-testid={`form-field-${getFieldIdentifier(field)}`}
|
|
setValue={(value: number | string | string[]) => {
|
|
setResponse((response) => {
|
|
response = response || {};
|
|
return {
|
|
...response,
|
|
[field.id]: {
|
|
label: field.label,
|
|
value: getFieldResponseForJsonLogic({ field, value }),
|
|
},
|
|
};
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
}
|