Merge branch 'master' of ssh://taler.net/var/git/wallet
This commit is contained in:
commit
8e80bbbbb8
1
extension/img/icon.png
Symbolic link
1
extension/img/icon.png
Symbolic link
@ -0,0 +1 @@
|
||||
taler-logo-24.png
|
BIN
extension/img/logo-2015-medium.png
Normal file
BIN
extension/img/logo-2015-medium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 73 KiB |
1
extension/img/logo.png
Symbolic link
1
extension/img/logo.png
Symbolic link
@ -0,0 +1 @@
|
||||
logo-2015-medium.png
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@ -1,8 +1,8 @@
|
||||
{
|
||||
"description": "Privacy preserving and transparent payments",
|
||||
"manifest_version": 2,
|
||||
"name": "GNU Taler Wallet",
|
||||
"version": "0.2",
|
||||
"name": "Taler Wallet",
|
||||
"version": "0.1",
|
||||
|
||||
"applications": {
|
||||
"gecko": {
|
||||
|
@ -7,7 +7,8 @@
|
||||
<script src="../lib/handlebars-v4.0.5.js"></script>
|
||||
<script src="../lib/commonHelpers.js"></script>
|
||||
<script src="confirm-contract.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
<link rel="stylesheet" type="text/css" href="../style/page.css">
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
|
||||
<script id="contract-template" type="text/x-handlebars-template">
|
||||
Hello, this is the wallet. The merchant "{{merchant.name}}"
|
||||
@ -29,17 +30,28 @@
|
||||
<script id="error-template" type="text/x-handlebars-template">
|
||||
Payment was not successful: {{error}}
|
||||
</script>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Confirm Payment</h1>
|
||||
<header>
|
||||
<div id="logo"></div>
|
||||
<h1>Payment Confirmation</h1>
|
||||
</header>
|
||||
|
||||
<div id="render-contract"></div>
|
||||
<aside class="sidebar" id="left">
|
||||
</aside>
|
||||
|
||||
<button id="confirm-pay">Confirm Pay!</button>
|
||||
<section id="main">
|
||||
|
||||
<article id="contract">
|
||||
<div id="render-contract"></div>
|
||||
|
||||
<button id="confirm-pay">Confirm Payment</button>
|
||||
</article>
|
||||
|
||||
<article id="status"></article>
|
||||
|
||||
</section>
|
||||
|
||||
<div id="status"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -6,19 +6,38 @@
|
||||
<script src="../lib/URI.js"></script>
|
||||
<script src="../lib/polyfill-react.js"></script>
|
||||
<script src="confirm-create-reserve.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Confirm Reserve Creation</h1>
|
||||
Hello, this is the wallet. A bank wants to create a reserve for <span id=show-amount>(loading...)</span>.
|
||||
Please specify the base URL of the mint you want to use.
|
||||
<p />
|
||||
<div class='formish'>
|
||||
<div class='form-row'>
|
||||
<label for='mint-url'>Mint URL</label>
|
||||
<input class='url' id='mint-url' type="text" value="http://mint.demo.taler.net/"></input>
|
||||
</div>
|
||||
<button id='confirm'>Confirm Reserve</button>
|
||||
</div>
|
||||
|
||||
<header>
|
||||
<div id="logo"></div>
|
||||
<h1>Confirm Reserve Creation</h1>
|
||||
</header>
|
||||
|
||||
<aside class="sidebar" id="left">
|
||||
</aside>
|
||||
|
||||
<section id="main">
|
||||
|
||||
<article>
|
||||
<p>
|
||||
A bank wants to create a reserve for <span id="show-amount">(loading...)</span>.
|
||||
</p>
|
||||
<p>
|
||||
Please specify the base URL of the mint you want to use.
|
||||
</p>
|
||||
|
||||
<div class="formish">
|
||||
<div class="form-row">
|
||||
<label for="mint-url">Mint URL</label>
|
||||
<input class="url" id="mint-url" type="text" value="http://mint.demo.taler.net/"></input>
|
||||
</div>
|
||||
<button id="confirm">Confirm Reserve</button>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,36 +1,43 @@
|
||||
"use strict";
|
||||
var ConfirmCreateReserve;
|
||||
(function (ConfirmCreateReserve) {
|
||||
let url = URI(document.location.href);
|
||||
let query = URI.parseQuery(url.query());
|
||||
function updateAmount() {
|
||||
let showAmount = document.getElementById("show-amount");
|
||||
console.log("Query is " + JSON.stringify(query));
|
||||
let s = query.amount_str;
|
||||
if (!s) {
|
||||
document.body.innerHTML = "Oops, something went wrong.";
|
||||
return;
|
||||
}
|
||||
showAmount.textContent = s;
|
||||
}
|
||||
function clone(obj) {
|
||||
// This is faster than it looks ...
|
||||
return JSON.parse(JSON.stringify(obj));
|
||||
}
|
||||
document.addEventListener("DOMContentLoaded", (e) => {
|
||||
updateAmount();
|
||||
document.getElementById("confirm").addEventListener("click", (e) => {
|
||||
let d = clone(query);
|
||||
d.mint = document.getElementById('mint-url').value;
|
||||
chrome.runtime.sendMessage({ type: 'confirm-reserve', detail: d }, (resp) => {
|
||||
if (resp.success === true) {
|
||||
document.location.href = resp.backlink;
|
||||
}
|
||||
else {
|
||||
document.body.innerHTML =
|
||||
React.createElement("div", null, "Oops, something went wrong." + ' ' + "The bank responded with HTTP status code $", resp.status, "." + ' ' + "Here is some more info:", React.createElement("pre", null, resp.text), "`");
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
let url = URI(document.location.href);
|
||||
let query = URI.parseQuery(url.query());
|
||||
|
||||
function updateAmount() {
|
||||
let showAmount = document.getElementById("show-amount");
|
||||
console.log("Query is " + JSON.stringify(query));
|
||||
let s = query.amount_str;
|
||||
if (!s) {
|
||||
document.body.innerHTML = "Oops, something went wrong.";
|
||||
return;
|
||||
}
|
||||
showAmount.textContent = s;
|
||||
}
|
||||
|
||||
function clone(obj) {
|
||||
// This is faster than it looks ...
|
||||
return JSON.parse(JSON.stringify(obj));
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", (e) => {
|
||||
updateAmount();
|
||||
|
||||
document.getElementById("confirm").addEventListener("click", (e) => {
|
||||
let d = clone(query);
|
||||
d.mint = document.getElementById('mint-url').value;
|
||||
chrome.runtime.sendMessage({type:'confirm-reserve', detail: d}, (resp) => {
|
||||
if (resp.success === true) {
|
||||
document.location.href = resp.backlink;
|
||||
} else {
|
||||
document.body.innerHTML =
|
||||
`Oops, something went wrong.
|
||||
The bank responded with HTTP status code ${resp.status}.
|
||||
Here is some more info:
|
||||
<pre>${resp.text}</pre>`;
|
||||
}
|
||||
});
|
||||
})(ConfirmCreateReserve || (ConfirmCreateReserve = {}));
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
@ -3,10 +3,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Taler Wallet: Reserve Created</title>
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
<link rel="stylesheet" type="text/css" href="../style/wallet.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Success!</h1>
|
||||
The reserve was created successfully.
|
||||
|
||||
<header>
|
||||
<div id="logo"></div>
|
||||
<h1>Reserve Creation</h1>
|
||||
</header>
|
||||
|
||||
<aside class="sidebar" id="left">
|
||||
</aside>
|
||||
|
||||
<section id="main">
|
||||
|
||||
<article>
|
||||
<h1>Success!</h1>
|
||||
|
||||
<p>The reserve was created successfully.</p>
|
||||
</article>
|
||||
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -21,7 +21,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div id="header" class="nav">
|
||||
<a href="wallet.html" class="active">Wallet</a>
|
||||
<a href="balance-overview.html" class="active">Wallet</a>
|
||||
<a href="transactions.html">Transactions</a>
|
||||
<a href="reserves.html">Reserves</a>
|
||||
<button id="debug">Debug!</button>
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<body>
|
||||
<div id="header" class="nav">
|
||||
<a href="wallet.html">Wallet</a>
|
||||
<a href="balance-overview.html">Wallet</a>
|
||||
<a href="transactions.html">Transactions</a>
|
||||
<a href="reserves.html" class="active">Reserves</a>
|
||||
</div>
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
<body>
|
||||
<div id="header" class="nav">
|
||||
<a href="wallet.html">Wallet</a>
|
||||
<a href="balance-overview.html">Wallet</a>
|
||||
<a href="transactions.html">Transactions</a>
|
||||
<a href="reserves.html" class="active">Reserves</a>
|
||||
</div>
|
||||
|
@ -1,3 +1,72 @@
|
||||
body {
|
||||
background-color: white;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: Verdana, sans;
|
||||
}
|
||||
|
||||
header {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-bottom: 1px solid black;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
font-size: 200%;
|
||||
margin: 0;
|
||||
padding: 0 0 0 120px;
|
||||
position: relative;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
header #logo {
|
||||
float: left;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
border-right: 1px solid black;
|
||||
background-image: url(../img/logo.png);
|
||||
background-size: 100px;
|
||||
}
|
||||
|
||||
aside {
|
||||
width: 100px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
section#main {
|
||||
margin: 0 0 0 100px;
|
||||
padding: 20px;
|
||||
border-left: 1px solid black;
|
||||
height: 100%;
|
||||
max-width: 40em;
|
||||
}
|
||||
|
||||
section#main h1:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 160%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 140%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 120%;
|
||||
}
|
||||
|
||||
h4, h5, h6 {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
.form-row {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
@ -27,3 +96,8 @@ input.url {
|
||||
.json-string {
|
||||
color: olive;
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 120%;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user