summaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/forms/FormProvider.tsx
blob: c9b6783e68bca4c0b1f80a2fc7667e2390cf5251 (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
import { AbsoluteTime, TranslatedString } from "@gnu-taler/taler-util";
import { ComponentChildren, VNode, createContext, h } from "preact";
import { StateUpdater, useMemo } from "preact/hooks";

export interface FormType<T> {
  initialValue: Partial<T>;
  value: Partial<T>;
  onUpdate: StateUpdater<T>;
  computeFormState?: (v: T) => FormState<T>;
}

//@ts-ignore
export const FormContext = createContext<FormType<any>>({});

type FormState<T> = {
  [field in keyof T]?: T[field] extends AbsoluteTime
    ? Partial<InputFieldState>
    : T[field] extends object
    ? FormState<T[field]>
    : Partial<InputFieldState>;
};

export interface InputFieldState {
  /* should show the error */
  error?: TranslatedString;
  /* should not allow to edit */
  readonly: boolean;
  /* should show as disable */
  disabled: boolean;
  /* should not show */
  hidden: boolean;
}

export function FormProvider<T>({
  children,
  state,
  computeFormState,
}: {
  state: [Partial<T>, StateUpdater<T>];
  computeFormState?: (v: T) => FormState<T>;
  children: ComponentChildren;
}): VNode {
  const [value, onUpdate] = state;
  const initialValue = useMemo(() => value, []);
  const contextValue = useMemo(
    () => ({ initialValue, value, onUpdate, computeFormState }),
    [value, onUpdate, computeFormState],
  );
  return (
    <FormContext.Provider value={contextValue}>
      <form>{children}</form>
    </FormContext.Provider>
  );
}