2016-01-24 02:29:13 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
|
|
|
(C) 2016 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-02-10 02:03:31 +01:00
|
|
|
/// <reference path="../lib/decl/mithril.d.ts" />
|
2016-01-24 02:29:13 +01:00
|
|
|
/// <reference path="../lib/decl/lodash.d.ts" />
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2016-02-11 11:29:57 +01:00
|
|
|
import {substituteFulfillmentUrl} from "../lib/wallet/helpers";
|
2016-02-01 15:10:20 +01:00
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
declare var m: any;
|
|
|
|
declare var i18n: any;
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
console.log("popup main");
|
2016-01-24 02:29:13 +01:00
|
|
|
m.route.mode = "hash";
|
|
|
|
m.route(document.getElementById("content"), "/balance", {
|
|
|
|
"/balance": WalletBalance,
|
|
|
|
"/history": WalletHistory,
|
|
|
|
"/debug": WalletDebug,
|
|
|
|
});
|
|
|
|
m.mount(document.getElementById("nav"), WalletNavBar);
|
2016-01-26 17:21:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log("this is popup");
|
2016-01-24 02:29:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
function makeTab(target, name) {
|
|
|
|
let cssClass = "";
|
|
|
|
if (target == m.route()) {
|
|
|
|
cssClass = "active";
|
|
|
|
}
|
|
|
|
return m("a", {config: m.route, href: target, "class": cssClass}, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
var WalletNavBar = {
|
|
|
|
view() {
|
|
|
|
return m("div#header.nav", [
|
|
|
|
makeTab("/balance", i18n`Balance`),
|
|
|
|
makeTab("/history", i18n`History`),
|
|
|
|
makeTab("/debug", i18n`Debug`),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function openInExtension(element, isInitialized) {
|
|
|
|
element.addEventListener("click", (e) => {
|
|
|
|
chrome.tabs.create({
|
|
|
|
"url": element.href
|
|
|
|
});
|
|
|
|
e.preventDefault();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var WalletBalance = {
|
|
|
|
controller() {
|
|
|
|
var myWallet;
|
|
|
|
m.startComputation();
|
|
|
|
chrome.runtime.sendMessage({type: "balances"}, (wallet) => {
|
|
|
|
console.log("got wallet", wallet);
|
|
|
|
myWallet = wallet;
|
|
|
|
m.endComputation();
|
|
|
|
});
|
|
|
|
return () => myWallet;
|
|
|
|
},
|
|
|
|
|
|
|
|
view(getWallet) {
|
|
|
|
let wallet = getWallet();
|
|
|
|
if (!wallet) {
|
|
|
|
throw Error("Could not retrieve wallet");
|
|
|
|
}
|
|
|
|
let listing = _.map(wallet, x => m("p", formatAmount(x)));
|
|
|
|
if (listing.length > 0) {
|
|
|
|
return listing;
|
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
let link = m("a[href=https://demo.taler.net]",
|
|
|
|
{config: openInExtension},
|
|
|
|
i18n`free KUDOS`);
|
2016-01-24 02:29:13 +01:00
|
|
|
return i18n.parts`You have no balance to show. Want to get some ${link}?`;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function formatTimestamp(t) {
|
|
|
|
let x = new Date(t);
|
|
|
|
return x.toLocaleString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function formatAmount(amount) {
|
|
|
|
let v = amount.value + amount.fraction / 1e6;
|
|
|
|
return `${v.toFixed(2)} ${amount.currency}`;
|
|
|
|
}
|
|
|
|
|
2016-02-01 15:10:20 +01:00
|
|
|
|
2016-01-24 19:57:09 +01:00
|
|
|
function abbrevKey(s: string) {
|
2016-01-26 17:21:17 +01:00
|
|
|
return m("span.abbrev", {title: s}, (s.slice(0, 5) + ".."))
|
2016-01-24 19:57:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-01 15:10:20 +01:00
|
|
|
function retryPayment(url, contractHash) {
|
|
|
|
return function() {
|
|
|
|
chrome.tabs.create({
|
|
|
|
"url": substituteFulfillmentUrl(url,
|
|
|
|
{H_contract: contractHash})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
function formatHistoryItem(historyItem) {
|
|
|
|
const d = historyItem.detail;
|
|
|
|
const t = historyItem.timestamp;
|
|
|
|
switch (historyItem.type) {
|
|
|
|
case "create-reserve":
|
|
|
|
return m("p",
|
2016-01-26 17:21:17 +01:00
|
|
|
i18n.parts`Created reserve (${abbrevKey(d.reservePub)}) of ${formatAmount(
|
|
|
|
d.requestedAmount)} at ${formatTimestamp(
|
2016-01-24 02:29:13 +01:00
|
|
|
t)}`);
|
|
|
|
case "withdraw":
|
|
|
|
return m("p",
|
|
|
|
i18n`Withdraw at ${formatTimestamp(t)}`);
|
|
|
|
case "pay":
|
2016-02-01 15:10:20 +01:00
|
|
|
let url = substituteFulfillmentUrl(d.fulfillmentUrl,
|
|
|
|
{H_contract: d.contractHash});
|
2016-01-24 02:29:13 +01:00
|
|
|
return m("p",
|
|
|
|
[
|
|
|
|
i18n`Payment for ${formatAmount(d.amount)} to merchant ${d.merchantName}. `,
|
2016-02-01 15:10:20 +01:00
|
|
|
m(`a`,
|
|
|
|
{href: url, onclick: openTab(url)},
|
|
|
|
"Retry")
|
2016-01-24 02:29:13 +01:00
|
|
|
]);
|
|
|
|
default:
|
|
|
|
return m("p", i18n`Unknown event (${historyItem.type})`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var WalletHistory = {
|
|
|
|
controller() {
|
|
|
|
var myHistory;
|
|
|
|
m.startComputation();
|
|
|
|
chrome.runtime.sendMessage({type: "get-history"}, (wallet) => {
|
|
|
|
console.log("got history", history);
|
|
|
|
myHistory = wallet;
|
|
|
|
m.endComputation();
|
|
|
|
});
|
|
|
|
return () => myHistory;
|
|
|
|
},
|
|
|
|
|
|
|
|
view(getHistory) {
|
|
|
|
let history = getHistory();
|
|
|
|
if (!history) {
|
|
|
|
throw Error("Could not retrieve history");
|
|
|
|
}
|
|
|
|
let listing = _.map(history, formatHistoryItem);
|
|
|
|
if (listing.length > 0) {
|
2016-01-24 19:57:09 +01:00
|
|
|
return m("div.container", listing);
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
|
|
|
return i18n`Your wallet has no events recorded.`;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
function reload() {
|
|
|
|
try {
|
|
|
|
chrome.runtime.reload();
|
|
|
|
window.close();
|
|
|
|
} catch (e) {
|
|
|
|
// Functionality missing in firefox, ignore!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-24 02:29:13 +01:00
|
|
|
function confirmReset() {
|
|
|
|
if (confirm("Do you want to IRREVOCABLY DESTROY everything inside your" +
|
|
|
|
" wallet and LOSE ALL YOUR COINS?")) {
|
|
|
|
chrome.runtime.sendMessage({type: "reset"});
|
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var WalletDebug = {
|
|
|
|
view() {
|
|
|
|
return [
|
2016-01-26 17:21:17 +01:00
|
|
|
m("button",
|
|
|
|
{onclick: openExtensionPage("popup/popup.html")},
|
|
|
|
"wallet tab"),
|
|
|
|
m("button",
|
|
|
|
{onclick: openExtensionPage("pages/show-db.html")},
|
|
|
|
"show db"),
|
|
|
|
m("br"),
|
|
|
|
m("button", {onclick: confirmReset}, "reset"),
|
|
|
|
m("button", {onclick: reload}, "reload chrome extension"),
|
2016-01-24 02:29:13 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-01-26 17:21:17 +01:00
|
|
|
function openExtensionPage(page) {
|
|
|
|
return function() {
|
|
|
|
chrome.tabs.create({
|
|
|
|
"url": chrome.extension.getURL(page)
|
|
|
|
});
|
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-02-01 15:10:20 +01:00
|
|
|
|
|
|
|
function openTab(page) {
|
|
|
|
return function() {
|
|
|
|
chrome.tabs.create({
|
|
|
|
"url": page
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|