/* 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 { HttpStatusCode, TalerError, TalerExchangeApi, assertUnreachable, } from "@gnu-taler/taler-util"; import { ErrorLoading, Loading, createNewForm, useTranslationContext, } from "@gnu-taler/web-util/browser"; import { VNode, h } from "preact"; import { useState } from "preact/hooks"; import { useCases } from "../hooks/useCases.js"; import { Pages } from "../pages.js"; import { amlStateConverter } from "../utils/converter.js"; import { AmlExchangeBackend } from "../utils/types.js"; import { Officer } from "./Officer.js"; export function CasesUI({ records, filter, onChangeFilter, onFirstPage, onNext, }: { onFirstPage?: () => void; onNext?: () => void; filter: AmlExchangeBackend.AmlState; onChangeFilter: (f: AmlExchangeBackend.AmlState) => void; records: TalerExchangeApi.AmlRecord[]; }): VNode { const { i18n } = useTranslationContext(); const form = createNewForm<{ state: AmlExchangeBackend.AmlState }>(); return (

Cases

A list of all the account with the status

{ onChangeFilter(v.state ?? filter); }} onSubmit={(_v) => {}} >
{!records.length ? (
empty result
) : (
{records.map((r) => { return ( ); })}
Account Id Status Threshold
{((state: AmlExchangeBackend.AmlState): VNode => { switch (state) { case AmlExchangeBackend.AmlState.normal: { return ( Normal ); } case AmlExchangeBackend.AmlState.pending: { return ( Pending ); } case AmlExchangeBackend.AmlState.frozen: { return ( Frozen ); } } })(r.current_state)} {r.threshold}
)}
); } export function Cases() { const [stateFilter, setStateFilter] = useState( AmlExchangeBackend.AmlState.pending, ); const list = useCases(stateFilter); if (!list) { return ; } if (list instanceof TalerError) { return ; } if (list.type === "fail") { switch (list.case) { case HttpStatusCode.Unauthorized: case HttpStatusCode.Forbidden: case HttpStatusCode.NotFound: case HttpStatusCode.Conflict: return ; default: assertUnreachable(list); } } return ( ); } export const PeopleIcon = () => ( ); export const HomeIcon = () => ( ); function Pagination({ onFirstPage, onNext, }: { onFirstPage?: () => void; onNext?: () => void; }) { const { i18n } = useTranslationContext(); return ( ); }