aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/NiceForm.tsx
blob: 64f8aceea44c6f45f5b9e062cbc42e7691fefa2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { useTranslationContext } from "@gnu-taler/web-util/browser";
import { Fragment, h } from "preact";
import { FlexibleForm } from "./forms/index.js";
import { FormProvider } from "./handlers/FormProvider.js";
import { RenderAllFieldsByUiConfig } from "./handlers/forms.js";

export function NiceForm<T extends object>({
  initial,
  onUpdate,
  form,
}: {
  initial: Partial<T>;
  form: FlexibleForm<T>;
  onUpdate: (d: Partial<T>) => void;
}) {
  const { i18n } = useTranslationContext();
  console.log("render");
  return (
    <Fragment>
      <FormProvider
        initialValue={initial}
        onUpdate={onUpdate}
        computeFormState={form.behavior}
      >
        <div class="space-y-10 divide-y -mt-5 divide-gray-900/10">
          {form.design.map((section, i) => {
            return (
              <div class="grid grid-cols-1 gap-x-8 gap-y-8 pt-5 md:grid-cols-3">
                <div class="px-4 sm:px-0">
                  <h2 class="text-base font-semibold leading-7 text-gray-900">
                    {section.title}
                  </h2>
                  {section.description && (
                    <p class="mt-1 text-sm leading-6 text-gray-600">
                      {section.description}
                    </p>
                  )}
                </div>
                <div class="bg-white shadow-sm ring-1 ring-gray-900/5 rounded-md md:col-span-2">
                  <div class="p-3">
                    <div class="grid max-w-2xl grid-cols-1 gap-x-6 gap-y-8 sm:grid-cols-6">
                      <RenderAllFieldsByUiConfig
                        key={i}
                        fields={section.fields}
                      />
                    </div>
                  </div>
                </div>
              </div>
            );
          })}
        </div>
      </FormProvider>
    </Fragment>
  );
}