wallet-core/pages/confirm-contract.tsx

122 lines
3.4 KiB
TypeScript
Raw Normal View History

2015-12-25 22:42:14 +01:00
/*
This file is part of TALER
(C) 2015 GNUnet e.V.
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, If not, see <http://www.gnu.org/licenses/>
*/
2016-03-01 19:46:20 +01:00
/**
* Page shown to the user to confirm entering
* a contract.
*
* @author Florian Dold
*/
2015-12-16 10:45:16 +01:00
2016-03-02 02:16:18 +01:00
/// <reference path="../lib/decl/handlebars/handlebars.d.ts" />
import MithrilComponent = _mithril.MithrilComponent;
import {substituteFulfillmentUrl} from "../lib/wallet/helpers";
2016-03-02 02:16:18 +01:00
import m from "mithril";
import {Contract} from "../lib/wallet/types";
"use strict";
2015-12-16 10:45:16 +01:00
2016-01-26 17:21:17 +01:00
function prettyAmount(amount) {
let v = amount.value + amount.fraction / 1e6;
return `${v.toFixed(2)} ${amount.currency}`;
2015-12-16 10:45:16 +01:00
}
2016-03-02 02:16:18 +01:00
const Details = {
controller() {
return {collapsed: m.prop(true)};
},
view(ctrl, contract: Contract) {
if (ctrl.collapsed()) {
return m("div", [
m("button.linky", {
onclick: () => {
ctrl.collapsed(false);
}
}, "show more details")
]);
} else {
return m("div", [
m("button.linky", {
onclick: () => {
ctrl.collapsed(true);
}
}, "show less details"),
m("div", [
"Accepted exchanges:",
m("ul", contract.exchanges.map(e => m("li", `${e.url}: ${e.master_pub}`)))
])
]);
}
}
};
2016-01-26 17:21:17 +01:00
export function main() {
let url = URI(document.location.href);
let query: any = URI.parseQuery(url.query());
2015-12-17 13:30:34 +01:00
let offer = JSON.parse(query.offer);
console.dir(offer);
2016-01-26 17:21:17 +01:00
let contract = offer.contract;
2016-02-01 15:10:20 +01:00
let error = null;
2016-01-26 17:21:17 +01:00
var Contract = {
view(ctrl) {
return [
m("p",
2016-02-15 15:53:59 +01:00
i18n.parts`${m("strong", contract.merchant.name)}
wants to enter a contract over ${m("strong",
prettyAmount(contract.amount))}
2016-01-26 17:21:17 +01:00
with you.`),
m("p",
2016-02-15 15:53:59 +01:00
i18n`You are about to purchase:`),
2016-01-26 17:21:17 +01:00
m('ul',
_.map(contract.products,
(p: any) => m("li",
`${p.description}: ${prettyAmount(p.price)}`))),
2016-02-15 15:53:59 +01:00
m("button.confirm-pay", {onclick: doPayment}, i18n`Confirm Payment`),
2016-02-01 15:10:20 +01:00
m("p", error ? error : []),
2016-03-02 02:16:18 +01:00
m(Details, contract)
2016-01-26 17:21:17 +01:00
];
}
};
m.mount(document.getElementById("contract"), Contract);
function doPayment() {
2016-02-15 15:53:59 +01:00
let d = {offer};
2016-01-26 17:21:17 +01:00
chrome.runtime.sendMessage({type: 'confirm-pay', detail: d}, (resp) => {
2016-02-15 15:53:59 +01:00
if (resp.error) {
2016-01-26 17:21:17 +01:00
console.log("confirm-pay error", JSON.stringify(resp));
2016-02-15 15:53:59 +01:00
switch (resp.error) {
case "coins-insufficient":
error = "You do not have enough coins of the requested currency.";
break;
default:
error = `Error: ${resp.error}`;
break;
}
2016-02-01 15:10:20 +01:00
m.redraw();
2015-12-17 22:56:24 +01:00
return;
2015-12-16 10:45:16 +01:00
}
2016-01-26 17:21:17 +01:00
let c = d.offer.contract;
console.log("contract", c);
2016-02-15 15:53:59 +01:00
document.location.href = substituteFulfillmentUrl(c.fulfillment_url,
offer);
2015-12-16 10:45:16 +01:00
});
2016-01-26 17:21:17 +01:00
}
2016-03-01 19:46:20 +01:00
}