wallet-core/src/renderHtml.tsx

71 lines
2.0 KiB
TypeScript
Raw Normal View History

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
*/
2016-11-16 10:29:07 +01:00
import {AmountJson, Contract, Amounts} from "./types";
import * as i18n from "./i18n";
import * as React from "react";
2016-09-29 16:31:55 +02:00
export function prettyAmount(amount: AmountJson) {
2016-11-16 10:29:07 +01:00
let v = amount.value + amount.fraction / Amounts.fractionalBase;
2016-11-17 14:29:16 +01:00
return `${v} ${amount.currency}`;
2016-09-29 16:31:55 +02:00
}
2016-10-05 17:04:57 +02:00
export function renderContract(contract: Contract): JSX.Element {
2017-02-13 00:44:44 +01:00
let merchantName;
if (contract.merchant && contract.merchant.name) {
merchantName = <strong>{contract.merchant.name}</strong>;
} else {
merchantName = <strong>(pub: {contract.merchant_pub})</strong>;
}
2016-10-10 00:37:08 +02:00
let amount = <strong>{prettyAmount(contract.amount)}</strong>;
2016-09-29 16:31:55 +02:00
2016-10-05 17:38:02 +02:00
return (
<div>
2016-11-27 22:13:24 +01:00
<i18n.Translate wrap="p">
The merchant <span>{merchantName}</span>
wants to enter a contract over <span>{amount}</span>{" "}
2016-11-13 10:17:39 +01:00
with you.
2016-11-27 22:13:24 +01:00
</i18n.Translate>
<p>{i18n.str`You are about to purchase:`}</p>
2016-10-05 17:38:02 +02:00
<ul>
{contract.products.map(
2016-11-13 10:17:39 +01:00
(p: any, i: number) => (<li key={i}>{`${p.description}: ${prettyAmount(p.price)}`}</li>))
2016-10-05 17:38:02 +02:00
}
</ul>
</div>
);
2016-10-12 02:55:53 +02:00
}
export function abbrev(s: string, n: number = 5) {
let sAbbrev = s;
if (s.length > n) {
sAbbrev = s.slice(0, n) + "..";
}
return (
<span className="abbrev" title={s}>
{sAbbrev}
</span>
);
}