2016-09-29 16:31:55 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 INRIA
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helpers functions to render Taler-related data structures to HTML.
|
|
|
|
*
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2017-05-24 16:45:57 +02:00
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2021-03-27 14:35:58 +01:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
Amounts,
|
|
|
|
amountFractionalBase,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2021-11-16 17:59:53 +01:00
|
|
|
import { Component, ComponentChildren, h, VNode } from "preact";
|
2016-09-29 16:31:55 +02:00
|
|
|
|
2017-06-04 17:56:55 +02:00
|
|
|
/**
|
|
|
|
* Render amount as HTML, which non-breaking space between
|
|
|
|
* decimal value and currency.
|
|
|
|
*/
|
2021-11-16 17:59:53 +01:00
|
|
|
export function renderAmount(amount: AmountJson | string): VNode {
|
2018-02-20 09:33:17 +01:00
|
|
|
let a;
|
|
|
|
if (typeof amount === "string") {
|
|
|
|
a = Amounts.parse(amount);
|
|
|
|
} else {
|
|
|
|
a = amount;
|
|
|
|
}
|
|
|
|
if (!a) {
|
|
|
|
return <span>(invalid amount)</span>;
|
|
|
|
}
|
2021-03-27 14:35:58 +01:00
|
|
|
const x = a.value + a.fraction / amountFractionalBase;
|
2019-09-05 16:23:54 +02:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
{x} {a.currency}
|
|
|
|
</span>
|
|
|
|
);
|
2017-06-04 17:56:55 +02:00
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
export const AmountView = ({
|
|
|
|
amount,
|
|
|
|
}: {
|
|
|
|
amount: AmountJson | string;
|
2021-11-16 17:59:53 +01:00
|
|
|
}): VNode => renderAmount(amount);
|
2017-06-04 17:56:55 +02:00
|
|
|
|
2017-05-24 16:45:57 +02:00
|
|
|
/**
|
|
|
|
* Abbreviate a string to a given length, and show the full
|
|
|
|
* string on hover as a tooltip.
|
|
|
|
*/
|
2021-11-16 17:59:53 +01:00
|
|
|
export function abbrev(s: string, n = 5): VNode {
|
2016-10-12 02:55:53 +02:00
|
|
|
let sAbbrev = s;
|
|
|
|
if (s.length > n) {
|
|
|
|
sAbbrev = s.slice(0, n) + "..";
|
|
|
|
}
|
|
|
|
return (
|
2021-06-21 15:07:56 +02:00
|
|
|
<span class="abbrev" title={s}>
|
2016-10-12 02:55:53 +02:00
|
|
|
{sAbbrev}
|
|
|
|
</span>
|
|
|
|
);
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|
2017-08-27 04:19:11 +02:00
|
|
|
|
|
|
|
interface CollapsibleState {
|
|
|
|
collapsed: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CollapsibleProps {
|
|
|
|
initiallyCollapsed: boolean;
|
|
|
|
title: string;
|
|
|
|
}
|
|
|
|
|
2017-10-15 19:28:35 +02:00
|
|
|
/**
|
|
|
|
* Component that shows/hides its children when clicking
|
|
|
|
* a heading.
|
|
|
|
*/
|
2021-11-15 15:18:58 +01:00
|
|
|
export class Collapsible extends Component<CollapsibleProps, CollapsibleState> {
|
2017-08-27 04:19:11 +02:00
|
|
|
constructor(props: CollapsibleProps) {
|
|
|
|
super(props);
|
|
|
|
this.state = { collapsed: props.initiallyCollapsed };
|
|
|
|
}
|
2021-11-16 17:59:53 +01:00
|
|
|
render(): VNode {
|
2020-04-06 20:02:01 +02:00
|
|
|
const doOpen = (e: any): void => {
|
2019-09-05 16:23:54 +02:00
|
|
|
this.setState({ collapsed: false });
|
2017-08-27 04:19:11 +02:00
|
|
|
e.preventDefault();
|
|
|
|
};
|
2020-04-06 20:02:01 +02:00
|
|
|
const doClose = (e: any): void => {
|
2019-09-05 16:23:54 +02:00
|
|
|
this.setState({ collapsed: true });
|
2017-08-27 04:19:11 +02:00
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
if (this.state.collapsed) {
|
2019-09-05 16:23:54 +02:00
|
|
|
return (
|
|
|
|
<h2>
|
2021-06-21 15:07:56 +02:00
|
|
|
<a class="opener opener-collapsed" href="#" onClick={doOpen}>
|
2020-05-01 10:46:56 +02:00
|
|
|
{" "}
|
2019-09-05 16:23:54 +02:00
|
|
|
{this.props.title}
|
|
|
|
</a>
|
|
|
|
</h2>
|
|
|
|
);
|
2017-08-27 04:19:11 +02:00
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div>
|
2019-09-05 16:23:54 +02:00
|
|
|
<h2>
|
2021-06-21 15:07:56 +02:00
|
|
|
<a class="opener opener-open" href="#" onClick={doClose}>
|
2020-05-01 10:46:56 +02:00
|
|
|
{" "}
|
2019-09-05 16:23:54 +02:00
|
|
|
{this.props.title}
|
|
|
|
</a>
|
|
|
|
</h2>
|
2017-08-27 04:19:11 +02:00
|
|
|
{this.props.children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-11-30 04:07:36 +01:00
|
|
|
|
2017-12-10 18:25:44 +01:00
|
|
|
interface ExpanderTextProps {
|
|
|
|
text: string;
|
|
|
|
}
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
/**
|
|
|
|
* Show a heading with a toggle to show/hide the expandable content.
|
|
|
|
*/
|
2021-11-16 17:59:53 +01:00
|
|
|
export function ExpanderText({ text }: ExpanderTextProps): VNode {
|
2019-09-05 16:10:53 +02:00
|
|
|
return <span>{text}</span>;
|
2017-12-10 18:25:44 +01:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export interface LoadingButtonProps
|
2021-11-16 17:59:53 +01:00
|
|
|
extends h.JSX.HTMLAttributes<HTMLButtonElement> {
|
2021-05-07 15:38:28 +02:00
|
|
|
isLoading: boolean;
|
2019-08-31 11:49:36 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function ProgressButton({
|
|
|
|
isLoading,
|
|
|
|
...rest
|
2021-11-16 17:59:53 +01:00
|
|
|
}: LoadingButtonProps): VNode {
|
2019-08-31 11:49:36 +02:00
|
|
|
return (
|
2021-11-15 15:18:58 +01:00
|
|
|
<button class="pure-button pure-button-primary" type="button" {...rest}>
|
2021-05-07 15:38:28 +02:00
|
|
|
{isLoading ? (
|
2019-09-05 16:23:54 +02:00
|
|
|
<span>
|
2021-11-15 15:18:58 +01:00
|
|
|
<object class="svg-icon svg-baseline" data="/img/spinner-bars.svg" />
|
2019-09-05 16:23:54 +02:00
|
|
|
</span>
|
|
|
|
) : null}{" "}
|
2021-05-07 15:38:28 +02:00
|
|
|
{rest.children}
|
2019-08-31 11:49:36 +02:00
|
|
|
</button>
|
|
|
|
);
|
2019-09-05 16:10:53 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function PageLink(props: {
|
|
|
|
pageName: string;
|
|
|
|
children?: ComponentChildren;
|
2021-11-16 17:59:53 +01:00
|
|
|
}): VNode {
|
|
|
|
// eslint-disable-next-line no-undef
|
2021-06-16 22:01:06 +02:00
|
|
|
const url = chrome.extension.getURL(`/static/wallet.html#/${props.pageName}`);
|
2019-09-05 16:23:54 +02:00
|
|
|
return (
|
2021-11-15 15:18:58 +01:00
|
|
|
<a class="actionLink" href={url} target="_blank" rel="noopener noreferrer">
|
2019-09-05 16:23:54 +02:00
|
|
|
{props.children}
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|