diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-05 17:38:02 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-05 17:38:02 +0200 |
commit | 0c8a6e21f0324e25d1ec59bcdddf8c5c49b01421 (patch) | |
tree | ccfa63b417a9570c5af2bdbeaa416be5ffa2d312 /lib/wallet | |
parent | 7fb527b0009a29605c32e663ab9e6a812a8cc5a8 (diff) |
prettier syntax (JSX) for rendering
Diffstat (limited to 'lib/wallet')
-rw-r--r-- | lib/wallet/renderHtml.tsx (renamed from lib/wallet/renderHtml.ts) | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/lib/wallet/renderHtml.ts b/lib/wallet/renderHtml.tsx index 022bce113..f3059f940 100644 --- a/lib/wallet/renderHtml.ts +++ b/lib/wallet/renderHtml.tsx @@ -23,9 +23,6 @@ import {AmountJson, Contract} from "./types"; - -let h = preact.h; - export function prettyAmount(amount: AmountJson) { let v = amount.value + amount.fraction / 1e6; return `${v.toFixed(2)} ${amount.currency}`; @@ -35,15 +32,19 @@ export function renderContract(contract: Contract): JSX.Element { let merchantName = m("strong", contract.merchant.name); let amount = m("strong", prettyAmount(contract.amount)); - return h("div", {}, - h("p", {}, - i18n.parts`${merchantName} + return ( + <div> + <p>{ + i18n.parts`${merchantName} wants to enter a contract over ${amount} - with you.`), - h("p", {}, - i18n`You are about to purchase:`), - h('ul', {}, - ...contract.products.map( - (p: any) => h("li", {}, - `${p.description}: ${prettyAmount(p.price)}`)))); + with you.`} + </p> + <p>{i18n`You are about to purchase:`}</p> + <ul> + {contract.products.map( + (p: any) => (<li>{`${p.description}: ${prettyAmount(p.price)}`}</li>)) + } + </ul> + </div> + ); }
\ No newline at end of file |