* WIP paymentService * Changes for payment Service * Fix for stripe payment flow * Remove logs/comments * Refactored refund for stripe app * Move stripe handlePayment to own lib * Move stripe delete payments to paymentService * lint fix * Change handleRefundError as generic function * remove log * remove logs * remove logs * Return stripe default export to lib/server * Fixing types * Fix types * Upgrades typescript * Update yarn lock * Typings * Hotfix: ping,riverside,whereby and around not showing up in list (#6712) * Hotfix: ping,riverside,whereby and around not showing up in list (#6712) (#6713) * Adds deployment settings to DB (#6706) * WIP * Adds DeploymentTheme * Add missing migrations * Adds client extensions for deployment * Cleanup * Revert "lint fix" This reverts commit e1a2e4a357e58e6673c47399888ae2e00d1351a6. * Add validation * Revert changes removed in force push * Removing abstract class and just leaving interface implementation * Fix types for handlePayments * Fix payment test appStore import * Fix stripe metadata in event type * Move migration to separate PR * Revert "Move migration to separate PR" This reverts commit 48aa64e0724a522d3cc2fefaaaee5792ee9cd9e6. * Update packages/prisma/migrations/20230125175109_remove_type_from_payment_and_add_app_relationship/migration.sql Co-authored-by: Omar López <zomars@me.com> --------- Co-authored-by: zomars <zomars@me.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
79 lines
2.5 KiB
TypeScript
79 lines
2.5 KiB
TypeScript
import { App_RoutingForms_Form } from "@prisma/client";
|
|
import { Dispatch, SetStateAction } from "react";
|
|
|
|
import { getQueryBuilderConfig } from "../lib/getQueryBuilderConfig";
|
|
import isRouterLinkedField from "../lib/isRouterLinkedField";
|
|
import { SerializableForm, Response } from "../types/types";
|
|
|
|
type Props = {
|
|
form: SerializableForm<App_RoutingForms_Form>;
|
|
response: Response;
|
|
setResponse: Dispatch<SetStateAction<Response>>;
|
|
};
|
|
|
|
export default function FormInputFields(props: Props) {
|
|
const { form, response, setResponse } = props;
|
|
|
|
const queryBuilderConfig = getQueryBuilderConfig(form);
|
|
|
|
return (
|
|
<>
|
|
{form.fields?.map((field) => {
|
|
if (isRouterLinkedField(field)) {
|
|
// @ts-expect-error FIXME @hariombalhara
|
|
field = field.routerField;
|
|
}
|
|
const widget = queryBuilderConfig.widgets[field.type];
|
|
if (!("factory" in widget)) {
|
|
return null;
|
|
}
|
|
const Component = widget.factory;
|
|
|
|
const optionValues = field.selectText?.trim().split("\n");
|
|
const options = optionValues?.map((value) => {
|
|
const title = value;
|
|
return {
|
|
value,
|
|
title,
|
|
};
|
|
});
|
|
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="flex text-sm font-medium text-gray-700 dark:text-white">
|
|
{field.label}
|
|
</label>
|
|
</div>
|
|
<div className="flex rounded-sm">
|
|
<Component
|
|
value={response[field.id]?.value}
|
|
// 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"
|
|
setValue={(value) => {
|
|
setResponse((response) => {
|
|
response = response || {};
|
|
return {
|
|
...response,
|
|
[field.id]: {
|
|
label: field.label,
|
|
value,
|
|
},
|
|
};
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
}
|