/* 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 { format } from "date-fns"; import { h, VNode, Fragment } from "preact"; import { useState } from "preact/hooks"; import { DatePicker } from "../../../../components/picker/DatePicker.js"; import { MerchantBackend, WithId } from "../../../../declaration.js"; import { CardTable } from "./Table.js"; import { dateFormatForSettings, useSettings } from "../../../../hooks/useSettings.js"; export interface ListPageProps { onShowAll: () => void; onShowNotPaid: () => void; onShowPaid: () => void; onShowRefunded: () => void; onShowNotWired: () => void; onShowWired: () => void; onCopyURL: (id: string) => void; isAllActive: string; isPaidActive: string; isNotPaidActive: string; isRefundedActive: string; isNotWiredActive: string; isWiredActive: string; jumpToDate?: Date; onSelectDate: (date?: Date) => void; orders: (MerchantBackend.Orders.OrderHistoryEntry & WithId)[]; onLoadMoreBefore?: () => void; hasMoreBefore?: boolean; hasMoreAfter?: boolean; onLoadMoreAfter?: () => void; onSelectOrder: (o: MerchantBackend.Orders.OrderHistoryEntry & WithId) => void; onRefundOrder: (o: MerchantBackend.Orders.OrderHistoryEntry & WithId) => void; onCreate: () => void; } export function ListPage({ hasMoreAfter, hasMoreBefore, onLoadMoreAfter, onLoadMoreBefore, orders, isAllActive, onSelectOrder, onRefundOrder, jumpToDate, onCopyURL, onShowAll, onShowPaid, onShowNotPaid, onShowRefunded, onShowNotWired, onShowWired, onSelectDate, isPaidActive, isRefundedActive, isNotWiredActive, onCreate, isNotPaidActive, isWiredActive, }: ListPageProps): VNode { const { i18n } = useTranslationContext(); const dateTooltip = i18n.str`select date to show nearby orders`; const [pickDate, setPickDate] = useState(false); const [settings] = useSettings(); return ( setPickDate(false)} dateReceiver={onSelectDate} /> ); }