/* This file is part of GNU Taler (C) 2021-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 */ /** * * @author Sebastian Javier Marchano (sebasjm) */ import { useTranslationContext } from "@gnu-taler/web-util/browser"; import { h, VNode } from "preact"; import { StateUpdater, useEffect, useState } from "preact/hooks"; import { MerchantBackend } from "../../../declaration.js"; interface Props { instances: MerchantBackend.Instances.Instance[]; onUpdate: (id: string) => void; onDelete: (id: MerchantBackend.Instances.Instance) => void; onPurge: (id: MerchantBackend.Instances.Instance) => void; onCreate: () => void; selected?: boolean; setInstanceName: (s: string) => void; } export function CardTable({ instances, onCreate, onUpdate, onPurge, setInstanceName, onDelete, selected, }: Props): VNode { const [actionQueue, actionQueueHandler] = useState([]); const [rowSelection, rowSelectionHandler] = useState([]); useEffect(() => { if ( actionQueue.length > 0 && !selected && actionQueue[0].type == "DELETE" ) { onDelete(actionQueue[0].element); actionQueueHandler(actionQueue.slice(1)); } }, [actionQueue, selected, onDelete]); useEffect(() => { if ( actionQueue.length > 0 && !selected && actionQueue[0].type == "UPDATE" ) { onUpdate(actionQueue[0].element.id); actionQueueHandler(actionQueue.slice(1)); } }, [actionQueue, selected, onUpdate]); const { i18n } = useTranslationContext(); return (

Instances

{instances.length > 0 ? ( ) : ( )} ); } interface TableProps { rowSelection: string[]; instances: MerchantBackend.Instances.Instance[]; onUpdate: (id: string) => void; onDelete: (id: MerchantBackend.Instances.Instance) => void; onPurge: (id: MerchantBackend.Instances.Instance) => void; rowSelectionHandler: StateUpdater; setInstanceName: (s: string) => void; } function toggleSelected(id: T): (prev: T[]) => T[] { return (prev: T[]): T[] => prev.indexOf(id) == -1 ? [...prev, id] : prev.filter((e) => e != id); } function Table({ rowSelection, rowSelectionHandler, setInstanceName, instances, onUpdate, onDelete, onPurge, }: TableProps): VNode { const { i18n } = useTranslationContext(); return (
{instances.map((i) => { return ( ); })}
ID Name
{ setInstanceName(i.id); }} > {i.id} {i.name}
{!i.deleted && ( )} {i.deleted && ( )}
); } function EmptyTable(): VNode { const { i18n } = useTranslationContext(); return (

There is no instances yet, add more pressing the + sign

); } interface Actions { element: MerchantBackend.Instances.Instance; type: "DELETE" | "UPDATE"; } function notEmpty(value: TValue | null | undefined): value is TValue { return value !== null && value !== undefined; } function buildActions( instances: MerchantBackend.Instances.Instance[], selected: string[], action: "DELETE", ): Actions[] { return selected .map((id) => instances.find((i) => i.id === id)) .filter(notEmpty) .map((id) => ({ element: id, type: action })); }