2021-11-16 17:59:53 +01:00
|
|
|
/*
|
2022-06-06 17:05:26 +02:00
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2022 Taler Systems S.A.
|
2021-11-16 17:59:53 +01:00
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
2021-11-16 17:59:53 +01:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
2021-11-16 17:59:53 +01:00
|
|
|
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
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2021-11-16 17:59:53 +01:00
|
|
|
*/
|
|
|
|
|
2022-03-18 15:32:41 +01:00
|
|
|
import { AbsoluteTime } from "@gnu-taler/taler-util";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { formatISO, format } from "date-fns";
|
|
|
|
import { h, VNode } from "preact";
|
|
|
|
|
|
|
|
export function Time({
|
|
|
|
timestamp,
|
|
|
|
format: formatString,
|
|
|
|
}: {
|
2022-03-18 15:32:41 +01:00
|
|
|
timestamp: AbsoluteTime | undefined;
|
2021-11-16 17:59:53 +01:00
|
|
|
format: string;
|
|
|
|
}): VNode {
|
|
|
|
return (
|
|
|
|
<time
|
|
|
|
dateTime={
|
|
|
|
!timestamp || timestamp.t_ms === "never"
|
|
|
|
? undefined
|
|
|
|
: formatISO(timestamp.t_ms)
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{!timestamp || timestamp.t_ms === "never"
|
|
|
|
? "never"
|
|
|
|
: format(timestamp.t_ms, formatString)}
|
|
|
|
</time>
|
|
|
|
);
|
|
|
|
}
|