wallet-core/src/webex/renderHtml.tsx

94 lines
2.5 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
*/
2017-05-24 16:45:57 +02:00
/**
* Imports.
*/
2017-05-29 15:18:48 +02:00
import { amountToPretty } from "../helpers";
import * as i18n from "../i18n";
2017-05-24 16:45:57 +02:00
import {
2017-06-04 17:56:55 +02:00
AmountJson,
Amounts,
2017-06-01 18:46:07 +02:00
ContractTerms,
} from "../types";
import * as React from "react";
2016-09-29 16:31:55 +02:00
2017-05-29 15:18:48 +02:00
/**
* Render contract terms for the end user to view.
*/
2017-06-01 18:46:07 +02:00
export function renderContractTerms(contractTerms: ContractTerms): JSX.Element {
2017-02-13 00:44:44 +01:00
let merchantName;
2017-06-01 18:46:07 +02:00
if (contractTerms.merchant && contractTerms.merchant.name) {
merchantName = <strong>{contractTerms.merchant.name}</strong>;
2017-02-13 00:44:44 +01:00
} else {
2017-06-01 18:46:07 +02:00
merchantName = <strong>(pub: {contractTerms.merchant_pub})</strong>;
2017-02-13 00:44:44 +01:00
}
2017-06-01 18:46:07 +02:00
const amount = <strong>{amountToPretty(contractTerms.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>
2017-06-01 18:46:07 +02:00
{contractTerms.products.map(
2017-05-24 16:45:57 +02:00
(p: any, i: number) => (<li key={i}>{`${p.description}: ${amountToPretty(p.price)}`}</li>))
2016-10-05 17:38:02 +02:00
}
</ul>
</div>
);
2016-10-12 02:55:53 +02:00
}
2017-06-04 17:56:55 +02:00
/**
* Render amount as HTML, which non-breaking space between
* decimal value and currency.
*/
export function renderAmount(amount: AmountJson) {
const x = amount.value + amount.fraction / Amounts.fractionalBase;
return <span>{x}&nbsp;{amount.currency}</span>;
}
2017-08-27 03:56:19 +02:00
export const AmountDisplay = ({amount}: {amount: AmountJson}) => 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.
*/
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>
);
}