From 7a201c3b885c5d23bf0fd0f3da32379a49b30c38 Mon Sep 17 00:00:00 2001 From: Nic Eigel Date: Sun, 14 Jan 2024 15:18:12 +0100 Subject: adding auditor-backoffice-ui --- .../src/paths/instance/details/DetailPage.tsx | 83 +++++++++++++++++++++ .../src/paths/instance/details/index.tsx | 87 ++++++++++++++++++++++ .../src/paths/instance/details/stories.tsx | 68 +++++++++++++++++ 3 files changed, 238 insertions(+) create mode 100644 packages/auditor-backoffice-ui/src/paths/instance/details/DetailPage.tsx create mode 100644 packages/auditor-backoffice-ui/src/paths/instance/details/index.tsx create mode 100644 packages/auditor-backoffice-ui/src/paths/instance/details/stories.tsx (limited to 'packages/auditor-backoffice-ui/src/paths/instance/details') diff --git a/packages/auditor-backoffice-ui/src/paths/instance/details/DetailPage.tsx b/packages/auditor-backoffice-ui/src/paths/instance/details/DetailPage.tsx new file mode 100644 index 000000000..21dadb1e3 --- /dev/null +++ b/packages/auditor-backoffice-ui/src/paths/instance/details/DetailPage.tsx @@ -0,0 +1,83 @@ +/* + This file is part of GNU Taler + (C) 2021-2023 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 + */ + +/** + * + * @author Sebastian Javier Marchano (sebasjm) + */ + +import { useTranslationContext } from "@gnu-taler/web-util/browser"; +import { h, VNode } from "preact"; +import { useState } from "preact/hooks"; +import { FormProvider } from "../../../components/form/FormProvider.js"; +import { Input } from "../../../components/form/Input.js"; +import { MerchantBackend } from "../../../declaration.js"; + +type Entity = MerchantBackend.Instances.InstanceReconfigurationMessage; +interface Props { + onUpdate: () => void; + onDelete: () => void; + selected: MerchantBackend.Instances.QueryInstancesResponse; +} + +function convert( + from: MerchantBackend.Instances.QueryInstancesResponse, +): Entity { + const defaults = { + default_wire_fee_amortization: 1, + use_stefan: true, + default_pay_delay: { d_us: 1000 * 60 * 60 * 1000 }, //one hour + default_wire_transfer_delay: { d_us: 1000 * 60 * 60 * 2 * 1000 }, //two hours + }; + return { ...defaults, ...from }; +} + +export function DetailPage({ selected }: Props): VNode { + const [value, valueHandler] = useState>(convert(selected)); + + const { i18n } = useTranslationContext(); + + return ( +
+
+
+
+
+
+

Here goes the instance description

+
+
+ +
+
+ +
+
+
+
+ object={value} valueHandler={valueHandler}> + name="name" readonly label={i18n.str`Name`} /> + +
+
+
+
+
+ ); +} diff --git a/packages/auditor-backoffice-ui/src/paths/instance/details/index.tsx b/packages/auditor-backoffice-ui/src/paths/instance/details/index.tsx new file mode 100644 index 000000000..9b393b818 --- /dev/null +++ b/packages/auditor-backoffice-ui/src/paths/instance/details/index.tsx @@ -0,0 +1,87 @@ +/* + This file is part of GNU Taler + (C) 2021-2023 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 + */ +import { ErrorType, HttpError } from "@gnu-taler/web-util/browser"; +import { Fragment, h, VNode } from "preact"; +import { useState } from "preact/hooks"; +import { Loading } from "../../../components/exception/loading.js"; +import { DeleteModal } from "../../../components/modal/index.js"; +import { useInstanceContext } from "../../../context/instance.js"; +import { MerchantBackend } from "../../../declaration.js"; +import { useInstanceAPI, useInstanceDetails } from "../../../hooks/instance.js"; +import { DetailPage } from "./DetailPage.js"; +import { HttpStatusCode } from "@gnu-taler/taler-util"; + +interface Props { + onUnauthorized: () => VNode; + onLoadError: (error: HttpError) => VNode; + onUpdate: () => void; + onNotFound: () => VNode; + onDelete: () => void; +} + +export default function Detail({ + onUpdate, + onLoadError, + onUnauthorized, + onDelete, + onNotFound, +}: Props): VNode { + const { id } = useInstanceContext(); + const result = useInstanceDetails(); + const [deleting, setDeleting] = useState(false); + + const { deleteInstance } = useInstanceAPI(); + + if (result.loading) return ; + if (!result.ok) { + if ( + result.type === ErrorType.CLIENT && + result.status === HttpStatusCode.Unauthorized + ) + return onUnauthorized(); + if ( + result.type === ErrorType.CLIENT && + result.status === HttpStatusCode.NotFound + ) + return onNotFound(); + return onLoadError(result); + } + + return ( + + setDeleting(true)} + /> + {deleting && ( + setDeleting(false)} + onConfirm={async (): Promise => { + try { + await deleteInstance(); + onDelete(); + } catch (error) { + //FIXME: show message error + } + setDeleting(false); + }} + /> + )} + + ); +} diff --git a/packages/auditor-backoffice-ui/src/paths/instance/details/stories.tsx b/packages/auditor-backoffice-ui/src/paths/instance/details/stories.tsx new file mode 100644 index 000000000..367fabce2 --- /dev/null +++ b/packages/auditor-backoffice-ui/src/paths/instance/details/stories.tsx @@ -0,0 +1,68 @@ +/* + This file is part of GNU Taler + (C) 2021-2023 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 + */ + +/** + * + * @author Sebastian Javier Marchano (sebasjm) + */ + +import { h, VNode, FunctionalComponent } from "preact"; +import { ConfigContextProvider } from "../../../context/config.js"; +import { DetailPage as TestedComponent } from "./DetailPage.js"; + +export default { + title: "Pages/Instance/Detail", + component: TestedComponent, + argTypes: { + onUpdate: { action: "onUpdate" }, + onBack: { action: "onBack" }, + }, +}; + +function createExample( + Internal: FunctionalComponent, + props: Partial, +) { + const component = (args: any) => ( + + + + ); + return { component, props }; +} + +export const Example = createExample(TestedComponent, { + selected: { + name: "name", + auth: { method: "external" }, + address: {}, + user_type: "business", + jurisdiction: {}, + use_stefan: true, + default_pay_delay: { + d_us: 1000 * 1000, //one second + }, + default_wire_transfer_delay: { + d_us: 1000 * 1000, //one second + }, + merchant_pub: "ASDWQEKASJDKSADJ", + }, +}); -- cgit v1.2.3