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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
/*
This file is part of GNU Taler
(C) 2022-2024 Taler Systems S.A.
GNU Taler is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
import {
AbsoluteTime,
AmountJson,
TalerExchangeApi,
TranslatedString,
} from "@gnu-taler/taler-util";
import {
FormConfiguration,
RenderAllFieldsByUiConfig,
UIFormElementConfig,
UIHandlerId,
convertUiField,
getConverterById,
useTranslationContext,
} from "@gnu-taler/web-util/browser";
import { format } from "date-fns";
import { Fragment, VNode, h } from "preact";
import { getShapeFromFields, useFormState } from "../hooks/form.js";
import { AmlEvent } from "./CaseDetails.js";
/**
* the exchange doesn't have a consistent api
* https://bugs.gnunet.org/view.php?id=9142
*
* @param data
* @returns
*/
function fixProvidedInfo(data: object): object {
return Object.entries(data).reduce((prev, [key, value]) => {
prev[key] = value;
if (typeof value === "object" && value["value"]) {
const v = value["value"];
if (typeof v === "object" && v["text"]) {
prev[key].value = v["text"];
}
}
return prev;
}, {} as any);
}
export function ShowConsolidated({
history,
until,
}: {
history: AmlEvent[];
until: AbsoluteTime;
}): VNode {
const { i18n } = useTranslationContext();
const cons = getConsolidated(history, until);
const fixed = fixProvidedInfo(cons.kyc);
const formConfig: FormConfiguration = {
type: "double-column",
design: Object.entries(fixed).length > 0 ? [
{
title: i18n.str`KYC collected info`,
fields: Object.entries(fixed).map(([key, field]) => {
const result: UIFormElementConfig = {
type: "text",
label: key as TranslatedString,
id: `${key}.value` as UIHandlerId,
disabled: true,
help: `At ${field.since.t_ms === "never"
? "never"
: format(field.since.t_ms, "dd/MM/yyyy HH:mm:ss")
}` as TranslatedString,
};
return result;
}),
}
] : [],
};
const shape: Array<UIHandlerId> = formConfig.design.flatMap((field) =>
getShapeFromFields(field.fields),
);
const { handler } = useFormState<{}>(shape, fixed, (result) => {
return { status: "ok", errors: undefined, result };
});
return (
<Fragment>
<div class="space-y-10 divide-y divide-gray-900/10">
{formConfig.design.map((section, i) => {
if (!section) return <Fragment />;
return (
<div
key={i}
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={convertUiField(
i18n,
section.fields,
handler,
getConverterById,
)}
/>
</div>
</div>
</div>
</div>
);
})}
</div>
</Fragment>
);
}
interface Consolidated {
aml: {
state: TalerExchangeApi.AmlState;
threshold: AmountJson;
since: AbsoluteTime;
};
kyc: {
[field: string]: {
value: unknown;
provider?: string;
since: AbsoluteTime;
};
};
}
function getConsolidated(
history: AmlEvent[],
when: AbsoluteTime,
): Consolidated {
const initial: Consolidated = {
aml: {
state: TalerExchangeApi.AmlState.normal,
threshold: {
currency: "ARS",
value: 1000,
fraction: 0,
},
since: AbsoluteTime.never(),
},
kyc: {},
};
return history.reduce((prev, cur) => {
if (AbsoluteTime.cmp(when, cur.when) < 0) {
return prev;
}
switch (cur.type) {
case "kyc-expiration": {
cur.fields.forEach((field) => {
delete prev.kyc[field];
});
break;
}
case "aml-form": {
prev.aml = {
since: cur.when,
state: cur.state,
threshold: cur.threshold,
};
break;
}
case "kyc-collection": {
Object.keys(cur.values).forEach((field) => {
const value = (cur.values as Record<string, unknown>)[field];
prev.kyc[field] = {
value,
provider: cur.provider,
since: cur.when,
};
});
break;
}
}
return prev;
}, initial);
}
|