/*
This file is part of TALER
(C) 2015-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, see
*/
/**
* Page shown to the user to confirm creation
* of a reserve, usually requested by the bank.
*
* @author Florian Dold
*/
import {amountToPretty, canonicalizeBaseUrl} from "src/helpers";
import {
AmountJson, CreateReserveResponse,
ReserveCreationInfo, Amounts,
Denomination, DenominationRecord,
} from "src/types";
import {getReserveCreationInfo} from "src/wxApi";
import {ImplicitStateComponent, StateHolder} from "src/components";
"use strict";
function delay(delayMs: number, value: T): Promise {
return new Promise((resolve, reject) => {
setTimeout(() => resolve(value), delayMs);
});
}
class EventTrigger {
triggerResolve: any;
triggerPromise: Promise;
constructor() {
this.reset();
}
private reset() {
this.triggerPromise = new Promise((resolve, reject) => {
this.triggerResolve = resolve;
});
}
trigger() {
this.triggerResolve(false);
this.reset();
}
async wait(delayMs: number): Promise {
return await Promise.race([this.triggerPromise, delay(delayMs, true)]);
}
}
function renderReserveCreationDetails(rci: ReserveCreationInfo|null) {
if (!rci) {
return
Details will be displayed when a valid exchange provider URL is entered.
}
let denoms = rci.selectedDenoms;
let countByPub: {[s: string]: number} = {};
let uniq: DenominationRecord[] = [];
denoms.forEach((x: DenominationRecord) => {
let c = countByPub[x.denomPub] || 0;
if (c == 0) {
uniq.push(x);
}
c += 1;
countByPub[x.denomPub] = c;
});
function row(denom: DenominationRecord) {
return (
{countByPub[denom.denomPub] + "x"}
{amountToPretty(denom.value)}
{amountToPretty(denom.feeWithdraw)}
{amountToPretty(denom.feeRefresh)}
{amountToPretty(denom.feeDeposit)}
);
}
let withdrawFeeStr = amountToPretty(rci.withdrawFee);
let overheadStr = amountToPretty(rci.overhead);
return (
{i18n`Withdrawal fees: ${withdrawFeeStr}`}
{i18n`Rounding loss: ${overheadStr}`}
{i18n`# Coins`}
{i18n`Value`}
{i18n`Withdraw Fee`}
{i18n`Refresh Fee`}
{i18n`Deposit Fee`}
{uniq.map(row)}
);
}
function getSuggestedExchange(currency: string): Promise {
// TODO: make this request go to the wallet backend
// Right now, this is a stub.
const defaultExchange: {[s: string]: string} = {
"KUDOS": "https://exchange.demo.taler.net",
"PUDOS": "https://exchange.test.taler.net",
};
let exchange = defaultExchange[currency];
if (!exchange) {
exchange = ""
}
return Promise.resolve(exchange);
}
function WithdrawFee(props: {reserveCreationInfo: ReserveCreationInfo|null}): JSX.Element {
if (props.reserveCreationInfo) {
let {overhead, withdrawFee} = props.reserveCreationInfo;
let totalCost = Amounts.add(overhead, withdrawFee).amount;
return