diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-30 17:08:54 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-30 17:08:54 +0200 |
commit | 008926b18470e7f394cd640302957b29728a9803 (patch) | |
tree | 45f914f5117116bb3af5010f9e7570e99b015952 /src/webex/renderHtml.tsx | |
parent | 24e021fef360448caf11ab5a489b570102e66f6f (diff) |
compute full fees for refresh and spending
Diffstat (limited to 'src/webex/renderHtml.tsx')
-rw-r--r-- | src/webex/renderHtml.tsx | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/webex/renderHtml.tsx b/src/webex/renderHtml.tsx index 2a5b50533..d26f726af 100644 --- a/src/webex/renderHtml.tsx +++ b/src/webex/renderHtml.tsx @@ -24,45 +24,13 @@ /** * Imports. */ -import { amountToPretty } from "../helpers"; -import * as i18n from "../i18n"; import { AmountJson, Amounts, - ContractTerms, } from "../types"; import * as React from "react"; -/** - * Render contract terms for the end user to view. - */ -export function renderContractTerms(contractTerms: ContractTerms): JSX.Element { - let merchantName; - if (contractTerms.merchant && contractTerms.merchant.name) { - merchantName = <strong>{contractTerms.merchant.name}</strong>; - } else { - merchantName = <strong>(pub: {contractTerms.merchant_pub})</strong>; - } - const amount = <strong>{amountToPretty(contractTerms.amount)}</strong>; - - return ( - <div> - <i18n.Translate wrap="p"> - The merchant <span>{merchantName}</span> - wants to enter a contract over <span>{amount}</span>{" "} - with you. - </i18n.Translate> - <p>{i18n.str`You are about to purchase:`}</p> - <ul> - {contractTerms.products.map( - (p: any, i: number) => (<li key={i}>{`${p.description}: ${amountToPretty(p.price)}`}</li>)) - } - </ul> - </div> - ); -} - /** * Render amount as HTML, which non-breaking space between |