summaryrefslogtreecommitdiff
path: root/packages/web-util/src/forms/InputAmount.tsx
blob: 647d2c8238464991994a95cc5d2064c7672a8e98 (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
import { AmountJson, Amounts, TranslatedString } from "@gnu-taler/taler-util";
import { VNode, h } from "preact";
import { UIFormProps } from "./FormProvider.js";
import { InputLine } from "./InputLine.js";
import { useField } from "./useField.js";
import { noHandlerPropsAndNoContextForField } from "./InputArray.js";

export function InputAmount<T extends object, K extends keyof T>(
  props: { currency?: string } & UIFormProps<T, K>,
): VNode {
  //FIXME: remove deprecated
  const fieldCtx = useField<T, K>(props.name);
  const { value } =
    props.handler ?? fieldCtx ?? noHandlerPropsAndNoContextForField(props.name);
  const currency =
    !value || !(value as any).currency
      ? props.currency
      : (value as any).currency;
  return (
    <InputLine<T, K>
      {...props}
      type="text"
      before={{
        type: "text",
        text: currency as TranslatedString,
      }}
      //@ts-ignore
      converter={
        props.converter ?? {
          fromStringUI: (v): AmountJson => {
            return (
              Amounts.parse(`${currency}:${v}`) ??
              Amounts.zeroOfCurrency(currency)
            );
          },
          toStringUI: (v: AmountJson) => {
            return v === undefined ? "" : Amounts.stringifyValue(v);
          },
        }
      }
    />
  );
}