From 4ee903eb5e639fa0e122a689cc431e8f18ca1197 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Nov 2023 11:54:45 -0300 Subject: aml ui --- packages/aml-backoffice-ui/src/hooks/useCases.ts | 11 +++- .../aml-backoffice-ui/src/hooks/useSettings.ts | 70 ++++++++++++++++++++++ 2 files changed, 80 insertions(+), 1 deletion(-) create mode 100644 packages/aml-backoffice-ui/src/hooks/useSettings.ts (limited to 'packages/aml-backoffice-ui/src/hooks') diff --git a/packages/aml-backoffice-ui/src/hooks/useCases.ts b/packages/aml-backoffice-ui/src/hooks/useCases.ts index 2a133f46d..c4edd9207 100644 --- a/packages/aml-backoffice-ui/src/hooks/useCases.ts +++ b/packages/aml-backoffice-ui/src/hooks/useCases.ts @@ -5,7 +5,7 @@ import { } from "@gnu-taler/web-util/browser"; import { AmlExchangeBackend } from "../types.js"; // FIX default import https://github.com/microsoft/TypeScript/issues/49189 -import { AmountString, OfficerAccount, TalerExchangeApi, TalerExchangeResultByMethod, TalerHttpError } from "@gnu-taler/taler-util"; +import { AmountString, OfficerAccount, OperationFail, TalerExchangeApi, TalerExchangeResultByMethod, TalerHttpError } from "@gnu-taler/taler-util"; import _useSWR, { SWRHook } from "swr"; import { useExchangeApiContext } from "../context/config.js"; import { useOfficer } from "./useOfficer.js"; @@ -70,6 +70,15 @@ export function useCases(state: AmlExchangeBackend.AmlState) { }; // const public_accountslist = data?.type !== "ok" ? [] : data.body.public_accounts; + if (!session) { + return { + data: { + type: "fail", + case: "unauthorized", + detail: {} + } as OperationFail + } + } if (data) { if (data.type === "fail") { return { data } diff --git a/packages/aml-backoffice-ui/src/hooks/useSettings.ts b/packages/aml-backoffice-ui/src/hooks/useSettings.ts new file mode 100644 index 000000000..52f6f1614 --- /dev/null +++ b/packages/aml-backoffice-ui/src/hooks/useSettings.ts @@ -0,0 +1,70 @@ +/* + This file is part of GNU Taler + (C) 2022 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 { + Codec, + TranslatedString, + buildCodecForObject, + codecForBoolean, + codecForNumber, + codecForString, + codecOptional +} from "@gnu-taler/taler-util"; +import { buildStorageKey, useLocalStorage, useTranslationContext } from "@gnu-taler/web-util/browser"; + +interface Settings { + allowInsecurePassword: boolean; +} + +export function getAllBooleanSettings(): Array { + return ["allowInsecurePassword"] +} + +export function getLabelForSetting(k: keyof Settings, i18n: ReturnType["i18n"]): TranslatedString { + switch (k) { + case "allowInsecurePassword": return i18n.str`Allow Insecure password` + } +} + +export const codecForSettings = (): Codec => + buildCodecForObject() + .property("allowInsecurePassword", (codecForBoolean())) + .build("Settings"); + +const defaultSettings: Settings = { + allowInsecurePassword: false, +}; + +const EXCHANGE_SETTINGS_KEY = buildStorageKey( + "exchange-settings", + codecForSettings(), +); + +export function useSettings(): [ + Readonly, + (key: T, value: Settings[T]) => void, +] { + const { value, update } = useLocalStorage( + EXCHANGE_SETTINGS_KEY, + defaultSettings, + ); + + function updateField(k: T, v: Settings[T]) { + const newValue = { ...value, [k]: v }; + update(newValue); + } + return [value, updateField]; +} -- cgit v1.2.3