wallet-core/extension/pages/confirm-contract.tsx

77 lines
2.3 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/>
*/
/// <reference path="../lib/decl/handlebars/handlebars.d.ts" />
2015-12-16 10:45:16 +01:00
"use strict";
import {substituteFulfillmentUrl} from "../lib/wallet/helpers";
2015-12-16 10:45:16 +01:00
2016-01-26 17:21:17 +01:00
declare var m: any;
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-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",
i18n`Hello, this is the wallet. The merchant "${contract.merchant.name}"
wants to enter a contract over ${prettyAmount(contract.amount)}
with you.`),
m("p",
i18n`The contract contains the following products:`),
m('ul',
_.map(contract.products,
(p: any) => m("li",
`${p.description}: ${prettyAmount(p.price)}`))),
2016-02-01 15:10:20 +01:00
m("button", {onclick: doPayment}, i18n`Confirm Payment`),
m("p", error ? error : []),
2016-01-26 17:21:17 +01:00
];
}
};
m.mount(document.getElementById("contract"), Contract);
function doPayment() {
2015-12-17 22:56:24 +01:00
let d = {
2016-01-26 17:21:17 +01:00
offer
2015-12-17 22:56:24 +01:00
};
2016-01-26 17:21:17 +01:00
chrome.runtime.sendMessage({type: 'confirm-pay', detail: d}, (resp) => {
2015-12-20 20:05:06 +01:00
if (!resp.success) {
2016-01-26 17:21:17 +01:00
console.log("confirm-pay error", JSON.stringify(resp));
2016-02-01 15:10:20 +01:00
error = resp.message;
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);
document.location.href = substituteFulfillmentUrl(c.fulfillment_url, offer);
2015-12-16 10:45:16 +01:00
});
2016-01-26 17:21:17 +01:00
}
}