aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/forms/simplest.ts
blob: a395410c36ee9959bd11e15eeffc61032cfec97b (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import {
  AbsoluteTime,
  AmountJson,
  Amounts,
  TranslatedString,
} from "@gnu-taler/taler-util";
import { FormState } from "../handlers/FormProvider.js";
import { FlexibleForm } from "./index.js";
import { AmlState } from "../types.js";
import { amlStateConverter } from "../pages/AccountDetails.js";
import { State } from "../pages/AntiMoneyLaunderingForm.js";

export const v1 = (current: State): FlexibleForm<Simplest.Form> => ({
  versionId: "2023-05-25",
  design: [
    {
      title: "Simple form" as TranslatedString,
      fields: [
        {
          type: "textArea",
          props: {
            name: "comment",
            label: "Comments" as TranslatedString,
          },
        },
      ],
    },
    {
      title: "Resolution" as TranslatedString,
      description: `Current state is ${amlStateConverter.toStringUI(
        current.state,
      )} and threshold at ${Amounts.stringifyValue(
        current.threshold,
      )}` as TranslatedString,
      fields: [
        {
          type: "date",
          props: {
            name: "when",
            label: "Decision Time" as TranslatedString,
          },
        },
        {
          type: "choiceHorizontal",
          props: {
            name: "state",
            label: "New state" as TranslatedString,
            converter: amlStateConverter,
            choices: [
              {
                value: AmlState.frozen,
                label: "Frozen" as TranslatedString,
              },
              {
                value: AmlState.pending,
                label: "Pending" as TranslatedString,
              },
              {
                value: AmlState.normal,
                label: "Normal" as TranslatedString,
              },
            ],
          },
        },
        {
          type: "amount",
          props: {
            name: "threshold",
            label: "New threshold" as TranslatedString,
          },
        },
      ],
    },
  ],
  behavior: function formBehavior(
    v: Partial<Simplest.Form>,
  ): FormState<Simplest.Form> {
    return {
      when: {
        disabled: true,
      },
      threshold: {
        disabled: v.state === AmlState.frozen,
      },
    };
  },
});

namespace Simplest {
  export interface Form {
    when: AbsoluteTime;
    threshold: AmountJson;
    state: AmlState;
    comment: string;
  }
}