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
|
2016-07-07 17:59:29 +02:00
|
|
|
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
2016-01-24 02:29:13 +01:00
|
|
|
*/
|
|
|
|
|
2016-03-01 19:46:20 +01:00
|
|
|
/**
|
|
|
|
* Popup shown to the user when they click
|
|
|
|
* the Taler browser action button.
|
|
|
|
*
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
/**
|
|
|
|
* Imports.
|
|
|
|
*/
|
2019-12-12 20:53:15 +01:00
|
|
|
import * as i18n from "../i18n";
|
2018-01-03 14:42:06 +01:00
|
|
|
|
2020-08-03 09:30:48 +02:00
|
|
|
import {
|
|
|
|
AmountJson,
|
|
|
|
Amounts,
|
|
|
|
time,
|
|
|
|
taleruri,
|
|
|
|
walletTypes,
|
|
|
|
} from "taler-wallet-core";
|
|
|
|
|
2018-01-03 14:42:06 +01:00
|
|
|
|
2020-04-07 10:07:32 +02:00
|
|
|
import { abbrev, renderAmount, PageLink } from "../renderHtml";
|
2017-06-05 03:20:28 +02:00
|
|
|
import * as wxApi from "../wxApi";
|
2017-05-28 23:15:41 +02:00
|
|
|
|
2020-05-01 10:46:56 +02:00
|
|
|
import React, { Fragment, useState, useEffect } from "react";
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2020-01-27 14:11:39 +01:00
|
|
|
import moment from "moment";
|
2020-05-04 13:46:06 +02:00
|
|
|
import { PermissionsCheckbox } from "./welcome";
|
2020-01-27 14:11:39 +01:00
|
|
|
|
2020-04-07 10:28:55 +02:00
|
|
|
// FIXME: move to newer react functions
|
|
|
|
/* eslint-disable react/no-deprecated */
|
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
class Router extends React.Component<any, any> {
|
2016-10-10 00:37:08 +02:00
|
|
|
static setRoute(s: string): void {
|
|
|
|
window.location.hash = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
static getRoute(): string {
|
|
|
|
// Omit the '#' at the beginning
|
|
|
|
return window.location.hash.substring(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static onRoute(f: any): () => void {
|
2016-10-13 02:36:33 +02:00
|
|
|
Router.routeHandlers.push(f);
|
2016-10-10 00:37:08 +02:00
|
|
|
return () => {
|
2017-05-29 15:18:48 +02:00
|
|
|
const i = Router.routeHandlers.indexOf(f);
|
2016-10-10 00:37:08 +02:00
|
|
|
this.routeHandlers = this.routeHandlers.splice(i, 1);
|
2017-05-29 15:18:48 +02:00
|
|
|
};
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
private static routeHandlers: any[] = [];
|
2016-10-10 00:37:08 +02:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
componentWillMount(): void {
|
2016-10-10 00:37:08 +02:00
|
|
|
console.log("router mounted");
|
|
|
|
window.onhashchange = () => {
|
2016-10-10 02:36:12 +02:00
|
|
|
this.setState({});
|
2017-05-29 15:18:48 +02:00
|
|
|
for (const f of Router.routeHandlers) {
|
2016-10-10 00:37:08 +02:00
|
|
|
f();
|
|
|
|
}
|
2017-05-29 15:18:48 +02:00
|
|
|
};
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
|
|
|
|
2016-11-13 08:16:12 +01:00
|
|
|
render(): JSX.Element {
|
2017-05-29 15:18:48 +02:00
|
|
|
const route = window.location.hash.substring(1);
|
2016-10-10 00:37:08 +02:00
|
|
|
console.log("rendering route", route);
|
2019-09-05 16:10:53 +02:00
|
|
|
let defaultChild: React.ReactChild | null = null;
|
|
|
|
let foundChild: React.ReactChild | null = null;
|
2020-03-30 12:39:32 +02:00
|
|
|
React.Children.forEach(this.props.children, (child) => {
|
2017-05-29 15:18:48 +02:00
|
|
|
const childProps: any = (child as any).props;
|
2016-11-13 08:16:12 +01:00
|
|
|
if (!childProps) {
|
|
|
|
return;
|
|
|
|
}
|
2017-05-29 15:18:48 +02:00
|
|
|
if (childProps.default) {
|
2019-05-07 23:46:50 +02:00
|
|
|
defaultChild = child as React.ReactChild;
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
2017-05-29 15:18:48 +02:00
|
|
|
if (childProps.route === route) {
|
2019-05-07 23:46:50 +02:00
|
|
|
foundChild = child as React.ReactChild;
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
2017-05-29 15:18:48 +02:00
|
|
|
});
|
2017-10-15 19:28:35 +02:00
|
|
|
const c: React.ReactChild | null = foundChild || defaultChild;
|
|
|
|
if (!c) {
|
2016-10-10 00:37:08 +02:00
|
|
|
throw Error("unknown route");
|
|
|
|
}
|
2017-10-15 19:28:35 +02:00
|
|
|
Router.setRoute((c as any).props.route);
|
|
|
|
return <div>{c}</div>;
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-13 08:16:12 +01:00
|
|
|
interface TabProps {
|
2016-10-10 00:37:08 +02:00
|
|
|
target: string;
|
2016-11-13 08:16:12 +01:00
|
|
|
children?: React.ReactNode;
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function Tab(props: TabProps): JSX.Element {
|
2016-01-24 02:29:13 +01:00
|
|
|
let cssClass = "";
|
2017-05-29 15:18:48 +02:00
|
|
|
if (props.target === Router.getRoute()) {
|
2016-01-24 02:29:13 +01:00
|
|
|
cssClass = "active";
|
|
|
|
}
|
2020-04-06 20:02:01 +02:00
|
|
|
const onClick = (e: React.MouseEvent<HTMLAnchorElement>): void => {
|
2016-10-10 00:37:08 +02:00
|
|
|
Router.setRoute(props.target);
|
|
|
|
e.preventDefault();
|
|
|
|
};
|
|
|
|
return (
|
|
|
|
<a onClick={onClick} href={props.target} className={cssClass}>
|
|
|
|
{props.children}
|
|
|
|
</a>
|
|
|
|
);
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
class WalletNavBar extends React.Component<any, any> {
|
|
|
|
private cancelSubscription: any;
|
2016-10-10 00:37:08 +02:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
componentWillMount(): void {
|
2016-10-10 00:37:08 +02:00
|
|
|
this.cancelSubscription = Router.onRoute(() => {
|
|
|
|
this.setState({});
|
|
|
|
});
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-02-18 23:41:29 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
componentWillUnmount(): void {
|
2016-10-10 00:37:08 +02:00
|
|
|
if (this.cancelSubscription) {
|
|
|
|
this.cancelSubscription();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
render(): JSX.Element {
|
2016-10-10 00:37:08 +02:00
|
|
|
console.log("rendering nav bar");
|
|
|
|
return (
|
2016-11-13 08:16:12 +01:00
|
|
|
<div className="nav" id="header">
|
2019-09-05 16:10:53 +02:00
|
|
|
<Tab target="/balance">{i18n.str`Balance`}</Tab>
|
|
|
|
<Tab target="/history">{i18n.str`History`}</Tab>
|
2020-05-04 13:46:06 +02:00
|
|
|
<Tab target="/settings">{i18n.str`Settings`}</Tab>
|
2019-09-05 16:10:53 +02:00
|
|
|
<Tab target="/debug">{i18n.str`Debug`}</Tab>
|
|
|
|
</div>
|
|
|
|
);
|
2016-02-18 23:41:29 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
/**
|
|
|
|
* Render an amount as a large number with a small currency symbol.
|
|
|
|
*/
|
|
|
|
function bigAmount(amount: AmountJson): JSX.Element {
|
|
|
|
const v = amount.value + amount.fraction / Amounts.fractionalBase;
|
2016-11-28 08:19:06 +01:00
|
|
|
return (
|
|
|
|
<span>
|
2020-03-30 12:39:32 +02:00
|
|
|
<span style={{ fontSize: "5em", display: "block" }}>{v}</span>{" "}
|
2016-11-28 08:19:06 +01:00
|
|
|
<span>{amount.currency}</span>
|
2019-09-05 16:10:53 +02:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function EmptyBalanceView(): JSX.Element {
|
2019-09-05 16:10:53 +02:00
|
|
|
return (
|
2020-01-27 14:11:39 +01:00
|
|
|
<i18n.Translate wrap="p">
|
|
|
|
You have no balance to show. Need some{" "}
|
|
|
|
<PageLink pageName="welcome.html">help</PageLink> getting started?
|
|
|
|
</i18n.Translate>
|
2016-11-28 08:19:06 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-13 08:16:12 +01:00
|
|
|
class WalletBalanceView extends React.Component<any, any> {
|
2020-08-03 09:30:48 +02:00
|
|
|
private balance?: walletTypes.BalancesResponse;
|
2017-05-29 15:18:48 +02:00
|
|
|
private gotError = false;
|
|
|
|
private canceler: (() => void) | undefined = undefined;
|
|
|
|
private unmount = false;
|
2020-05-11 18:17:35 +02:00
|
|
|
private updateBalanceRunning = false;
|
2016-09-14 15:20:18 +02:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
componentWillMount(): void {
|
2020-05-04 15:22:54 +02:00
|
|
|
this.canceler = wxApi.onUpdateNotification(() => this.updateBalance());
|
2016-10-10 00:37:08 +02:00
|
|
|
this.updateBalance();
|
2016-11-13 08:16:12 +01:00
|
|
|
}
|
2016-02-18 23:41:29 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
componentWillUnmount(): void {
|
2016-11-13 08:16:12 +01:00
|
|
|
console.log("component WalletBalanceView will unmount");
|
|
|
|
if (this.canceler) {
|
|
|
|
this.canceler();
|
|
|
|
}
|
|
|
|
this.unmount = true;
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
2016-02-18 23:41:29 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
async updateBalance(): Promise<void> {
|
2020-05-11 18:17:35 +02:00
|
|
|
if (this.updateBalanceRunning) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.updateBalanceRunning = true;
|
2020-08-03 09:30:48 +02:00
|
|
|
let balance: walletTypes.BalancesResponse;
|
2017-08-14 04:16:12 +02:00
|
|
|
try {
|
|
|
|
balance = await wxApi.getBalance();
|
|
|
|
} catch (e) {
|
2016-11-13 08:16:12 +01:00
|
|
|
if (this.unmount) {
|
|
|
|
return;
|
|
|
|
}
|
2017-08-14 04:16:12 +02:00
|
|
|
this.gotError = true;
|
|
|
|
console.error("could not retrieve balances", e);
|
2016-10-18 02:40:46 +02:00
|
|
|
this.setState({});
|
2017-08-14 04:16:12 +02:00
|
|
|
return;
|
2020-05-11 18:17:35 +02:00
|
|
|
} finally {
|
|
|
|
this.updateBalanceRunning = false;
|
2017-08-14 04:16:12 +02:00
|
|
|
}
|
|
|
|
if (this.unmount) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.gotError = false;
|
|
|
|
console.log("got balance", balance);
|
|
|
|
this.balance = balance;
|
|
|
|
this.setState({});
|
2016-02-18 23:41:29 +01:00
|
|
|
}
|
|
|
|
|
2020-08-03 09:30:48 +02:00
|
|
|
formatPending(entry: walletTypes.Balance): JSX.Element {
|
2016-10-19 22:49:03 +02:00
|
|
|
let incoming: JSX.Element | undefined;
|
|
|
|
let payment: JSX.Element | undefined;
|
|
|
|
|
2020-07-28 19:47:12 +02:00
|
|
|
const available = Amounts.parseOrThrow(entry.available);
|
|
|
|
const pendingIncoming = Amounts.parseOrThrow(entry.pendingIncoming);
|
|
|
|
const pendingOutgoing = Amounts.parseOrThrow(entry.pendingOutgoing);
|
|
|
|
|
2019-09-05 16:10:53 +02:00
|
|
|
console.log(
|
|
|
|
"available: ",
|
|
|
|
entry.pendingIncoming ? renderAmount(entry.available) : null,
|
|
|
|
);
|
|
|
|
console.log(
|
|
|
|
"incoming: ",
|
|
|
|
entry.pendingIncoming ? renderAmount(entry.pendingIncoming) : null,
|
|
|
|
);
|
2016-10-19 22:49:03 +02:00
|
|
|
|
2020-08-03 09:30:48 +02:00
|
|
|
if (!Amounts.isZero(pendingIncoming)) {
|
2016-10-19 22:49:03 +02:00
|
|
|
incoming = (
|
2016-11-23 01:14:45 +01:00
|
|
|
<i18n.Translate wrap="span">
|
2019-09-05 16:10:53 +02:00
|
|
|
<span style={{ color: "darkgreen" }}>
|
2016-10-19 22:49:03 +02:00
|
|
|
{"+"}
|
2017-06-04 17:56:55 +02:00
|
|
|
{renderAmount(entry.pendingIncoming)}
|
2019-09-05 16:10:53 +02:00
|
|
|
</span>{" "}
|
2016-10-19 22:49:03 +02:00
|
|
|
incoming
|
2019-09-05 16:10:53 +02:00
|
|
|
</i18n.Translate>
|
2016-11-23 01:14:45 +01:00
|
|
|
);
|
2016-10-19 22:49:03 +02:00
|
|
|
}
|
|
|
|
|
2020-03-30 12:39:32 +02:00
|
|
|
const l = [incoming, payment].filter((x) => x !== undefined);
|
2017-05-29 15:18:48 +02:00
|
|
|
if (l.length === 0) {
|
2016-10-19 22:49:03 +02:00
|
|
|
return <span />;
|
|
|
|
}
|
|
|
|
|
2017-05-29 15:18:48 +02:00
|
|
|
if (l.length === 1) {
|
|
|
|
return <span>({l})</span>;
|
2016-10-19 22:49:03 +02:00
|
|
|
}
|
2019-09-05 16:10:53 +02:00
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
({l[0]}, {l[1]})
|
|
|
|
</span>
|
|
|
|
);
|
2016-10-10 03:16:12 +02:00
|
|
|
}
|
|
|
|
|
2016-10-10 00:37:08 +02:00
|
|
|
render(): JSX.Element {
|
2017-05-29 15:18:48 +02:00
|
|
|
const wallet = this.balance;
|
2016-10-10 00:37:08 +02:00
|
|
|
if (this.gotError) {
|
2019-09-05 16:10:53 +02:00
|
|
|
return (
|
2020-03-30 12:39:32 +02:00
|
|
|
<div className="balance">
|
2019-09-05 16:10:53 +02:00
|
|
|
<p>{i18n.str`Error: could not retrieve balance information.`}</p>
|
|
|
|
<p>
|
2019-09-05 16:23:54 +02:00
|
|
|
Click <PageLink pageName="welcome.html">here</PageLink> for help and
|
|
|
|
diagnostics.
|
2019-09-05 16:10:53 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
2016-03-02 00:47:00 +01:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
if (!wallet) {
|
2016-10-20 01:37:00 +02:00
|
|
|
return <span></span>;
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-10-10 00:37:08 +02:00
|
|
|
console.log(wallet);
|
2020-07-28 19:47:12 +02:00
|
|
|
const listing = wallet.balances.map((entry) => {
|
|
|
|
const av = Amounts.parseOrThrow(entry.available);
|
2016-10-19 18:40:29 +02:00
|
|
|
return (
|
2020-07-28 19:47:12 +02:00
|
|
|
<p key={av.currency}>
|
|
|
|
{bigAmount(av)} {this.formatPending(entry)}
|
2016-10-19 18:40:29 +02:00
|
|
|
</p>
|
|
|
|
);
|
2016-10-10 00:37:08 +02:00
|
|
|
});
|
2020-03-30 12:39:32 +02:00
|
|
|
return listing.length > 0 ? (
|
|
|
|
<div className="balance">{listing}</div>
|
|
|
|
) : (
|
|
|
|
<EmptyBalanceView />
|
|
|
|
);
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-02-18 23:41:29 +01:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function Icon({ l }: { l: string }): JSX.Element {
|
2020-01-27 14:11:39 +01:00
|
|
|
return <div className={"icon"}>{l}</div>;
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function formatAndCapitalize(text: string): string {
|
2020-01-27 14:11:39 +01:00
|
|
|
text = text.replace("-", " ");
|
|
|
|
text = text.replace(/^./, text[0].toUpperCase());
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
const HistoryComponent = (props: any): JSX.Element => {
|
2020-07-23 15:00:08 +02:00
|
|
|
return <span>TBD</span>;
|
2020-01-27 14:11:39 +01:00
|
|
|
};
|
|
|
|
|
2020-05-04 13:46:06 +02:00
|
|
|
class WalletSettings extends React.Component<any, any> {
|
|
|
|
render(): JSX.Element {
|
2020-06-03 13:16:25 +02:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h2>Permissions</h2>
|
|
|
|
<PermissionsCheckbox />
|
|
|
|
</div>
|
|
|
|
);
|
2020-05-04 13:46:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function reload(): void {
|
2016-01-26 17:21:17 +01:00
|
|
|
try {
|
|
|
|
chrome.runtime.reload();
|
|
|
|
window.close();
|
|
|
|
} catch (e) {
|
|
|
|
// Functionality missing in firefox, ignore!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function confirmReset(): void {
|
2019-09-05 16:10:53 +02:00
|
|
|
if (
|
|
|
|
confirm(
|
|
|
|
"Do you want to IRREVOCABLY DESTROY everything inside your" +
|
|
|
|
" wallet and LOSE ALL YOUR COINS?",
|
|
|
|
)
|
|
|
|
) {
|
2017-06-05 03:20:28 +02:00
|
|
|
wxApi.resetDb();
|
2016-01-24 02:29:13 +01:00
|
|
|
window.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function WalletDebug(props: any): JSX.Element {
|
2019-09-05 16:10:53 +02:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<p>Debug tools:</p>
|
2020-04-07 10:07:32 +02:00
|
|
|
<button onClick={openExtensionPage("/popup.html")}>wallet tab</button>
|
|
|
|
<button onClick={openExtensionPage("/benchmark.html")}>benchmark</button>
|
|
|
|
<button onClick={openExtensionPage("/show-db.html")}>show db</button>
|
|
|
|
<button onClick={openExtensionPage("/tree.html")}>show tree</button>
|
2019-09-05 16:10:53 +02:00
|
|
|
<br />
|
|
|
|
<button onClick={confirmReset}>reset</button>
|
|
|
|
<button onClick={reload}>reload chrome extension</button>
|
|
|
|
</div>
|
|
|
|
);
|
2016-10-10 00:37:08 +02:00
|
|
|
}
|
2016-01-24 02:29:13 +01:00
|
|
|
|
2016-09-12 20:25:56 +02:00
|
|
|
function openExtensionPage(page: string) {
|
2017-05-29 15:18:48 +02:00
|
|
|
return () => {
|
2016-01-26 17:21:17 +01:00
|
|
|
chrome.tabs.create({
|
2017-05-29 15:18:48 +02:00
|
|
|
url: chrome.extension.getURL(page),
|
2016-11-26 17:27:33 +01:00
|
|
|
});
|
2017-05-29 15:18:48 +02:00
|
|
|
};
|
2016-01-24 02:29:13 +01:00
|
|
|
}
|
2016-01-26 17:21:17 +01:00
|
|
|
|
2016-09-12 20:25:56 +02:00
|
|
|
function openTab(page: string) {
|
2017-06-05 02:00:03 +02:00
|
|
|
return (evt: React.SyntheticEvent<any>) => {
|
2017-06-05 00:52:22 +02:00
|
|
|
evt.preventDefault();
|
2016-02-01 15:10:20 +01:00
|
|
|
chrome.tabs.create({
|
2017-05-29 15:18:48 +02:00
|
|
|
url: page,
|
2016-11-26 17:27:33 +01:00
|
|
|
});
|
2017-05-29 15:18:48 +02:00
|
|
|
};
|
2016-02-01 15:10:20 +01:00
|
|
|
}
|
2017-04-20 03:09:25 +02:00
|
|
|
|
2020-05-01 10:46:56 +02:00
|
|
|
function makeExtensionUrlWithParams(
|
|
|
|
url: string,
|
|
|
|
params?: { [name: string]: string | undefined },
|
|
|
|
): string {
|
|
|
|
const innerUrl = new URL(chrome.extension.getURL("/" + url));
|
|
|
|
if (params) {
|
|
|
|
for (const key in params) {
|
|
|
|
const p = params[key];
|
|
|
|
if (p) {
|
|
|
|
innerUrl.searchParams.set(key, p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return innerUrl.href;
|
|
|
|
}
|
|
|
|
|
|
|
|
function actionForTalerUri(talerUri: string): string | undefined {
|
2020-08-03 09:30:48 +02:00
|
|
|
const uriType = taleruri.classifyTalerUri(talerUri);
|
2020-05-01 10:46:56 +02:00
|
|
|
switch (uriType) {
|
2020-08-03 09:30:48 +02:00
|
|
|
case taleruri.TalerUriType.TalerWithdraw:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeExtensionUrlWithParams("withdraw.html", {
|
|
|
|
talerWithdrawUri: talerUri,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
case taleruri.TalerUriType.TalerPay:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeExtensionUrlWithParams("pay.html", {
|
|
|
|
talerPayUri: talerUri,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
case taleruri.TalerUriType.TalerTip:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeExtensionUrlWithParams("tip.html", {
|
|
|
|
talerTipUri: talerUri,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
case taleruri.TalerUriType.TalerRefund:
|
2020-05-01 10:46:56 +02:00
|
|
|
return makeExtensionUrlWithParams("refund.html", {
|
|
|
|
talerRefundUri: talerUri,
|
|
|
|
});
|
2020-08-03 09:30:48 +02:00
|
|
|
case taleruri.TalerUriType.TalerNotifyReserve:
|
2020-05-01 10:46:56 +02:00
|
|
|
// FIXME: implement
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.warn(
|
|
|
|
"Response with HTTP 402 has Taler header, but header value is not a taler:// URI.",
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function findTalerUriInActiveTab(): Promise<string | undefined> {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
chrome.tabs.executeScript(
|
|
|
|
{
|
|
|
|
code: `
|
|
|
|
(() => {
|
|
|
|
let x = document.querySelector("a[href^='taler://'");
|
|
|
|
return x ? x.href.toString() : null;
|
|
|
|
})();
|
|
|
|
`,
|
|
|
|
allFrames: false,
|
|
|
|
},
|
|
|
|
(result) => {
|
|
|
|
if (chrome.runtime.lastError) {
|
|
|
|
console.error(chrome.runtime.lastError);
|
|
|
|
resolve(undefined);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
console.log("got result", result);
|
|
|
|
resolve(result[0]);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
function WalletPopup(): JSX.Element {
|
2020-05-01 10:46:56 +02:00
|
|
|
const [talerActionUrl, setTalerActionUrl] = useState<string | undefined>(
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
const [dismissed, setDismissed] = useState(false);
|
|
|
|
useEffect(() => {
|
|
|
|
async function check(): Promise<void> {
|
|
|
|
const talerUri = await findTalerUriInActiveTab();
|
|
|
|
if (talerUri) {
|
|
|
|
const actionUrl = actionForTalerUri(talerUri);
|
|
|
|
setTalerActionUrl(actionUrl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
check();
|
|
|
|
});
|
|
|
|
if (talerActionUrl && !dismissed) {
|
|
|
|
return (
|
|
|
|
<div style={{ padding: "1em" }}>
|
|
|
|
<h1>Taler Action</h1>
|
|
|
|
<p>This page has a Taler action. </p>
|
|
|
|
<p>
|
|
|
|
<button
|
|
|
|
onClick={() => {
|
|
|
|
window.open(talerActionUrl, "_blank");
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Open
|
|
|
|
</button>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<button onClick={() => setDismissed(true)}>Dismiss</button>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2019-09-05 16:23:54 +02:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<WalletNavBar />
|
|
|
|
<div style={{ margin: "1em" }}>
|
|
|
|
<Router>
|
|
|
|
<WalletBalanceView route="/balance" default />
|
2020-05-04 13:46:06 +02:00
|
|
|
<WalletSettings route="/settings" />
|
2019-09-05 16:23:54 +02:00
|
|
|
<WalletDebug route="/debug" />
|
|
|
|
</Router>
|
|
|
|
</div>
|
2017-04-20 03:09:25 +02:00
|
|
|
</div>
|
2019-09-05 16:23:54 +02:00
|
|
|
);
|
|
|
|
}
|
2017-04-20 03:09:25 +02:00
|
|
|
|
2020-04-06 20:02:01 +02:00
|
|
|
export function createPopup(): JSX.Element {
|
2020-03-30 12:39:32 +02:00
|
|
|
return <WalletPopup />;
|
2020-04-07 10:07:32 +02:00
|
|
|
}
|