wallet-core/packages/taler-wallet-webextension/src/pages/popup.tsx

690 lines
17 KiB
TypeScript
Raw Normal View History

/*
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-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.
*/
import * as i18n from "../i18n";
import {
AmountJson,
Amounts,
2020-08-12 09:11:00 +02:00
BalancesResponse,
Balance,
classifyTalerUri,
TalerUriType,
TransactionsResponse,
Transaction,
TransactionType,
2020-11-18 17:33:02 +01:00
AmountString,
Timestamp,
} from "taler-wallet-core";
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";
import React, { Fragment, useState, useEffect } from "react";
import moment from "moment";
2020-05-04 13:46:06 +02:00
import { PermissionsCheckbox } from "./welcome";
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
}
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);
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;
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
}
}
interface TabProps {
2016-10-10 00:37:08 +02:00
target: string;
children?: React.ReactNode;
2016-10-10 00:37:08 +02:00
}
2020-04-06 20:02:01 +02:00
function Tab(props: TabProps): JSX.Element {
let cssClass = "";
2017-05-29 15:18:48 +02:00
if (props.target === Router.getRoute()) {
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>
);
}
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-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 (
<div className="nav" id="header">
<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>
<Tab target="/debug">{i18n.str`Debug`}</Tab>
</div>
);
2016-02-18 23:41:29 +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>
</span>
);
}
2020-04-06 20:02:01 +02:00
function EmptyBalanceView(): JSX.Element {
return (
<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
);
}
class WalletBalanceView extends React.Component<any, any> {
2020-08-12 09:11:00 +02:00
private balance?: BalancesResponse;
2017-05-29 15:18:48 +02:00
private gotError = false;
private canceler: (() => void) | undefined = undefined;
private unmount = false;
private updateBalanceRunning = false;
2016-09-14 15:20:18 +02:00
2020-04-06 20:02:01 +02:00
componentWillMount(): void {
this.canceler = wxApi.onUpdateNotification(() => this.updateBalance());
2016-10-10 00:37:08 +02:00
this.updateBalance();
}
2016-02-18 23:41:29 +01:00
2020-04-06 20:02:01 +02:00
componentWillUnmount(): void {
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> {
if (this.updateBalanceRunning) {
return;
}
this.updateBalanceRunning = true;
2020-08-12 09:11:00 +02:00
let balance: BalancesResponse;
try {
balance = await wxApi.getBalance();
} catch (e) {
if (this.unmount) {
return;
}
this.gotError = true;
console.error("could not retrieve balances", e);
2016-10-18 02:40:46 +02:00
this.setState({});
return;
} finally {
this.updateBalanceRunning = false;
}
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-12 09:11:00 +02:00
formatPending(entry: Balance): JSX.Element {
let incoming: JSX.Element | undefined;
let payment: JSX.Element | undefined;
const available = Amounts.parseOrThrow(entry.available);
const pendingIncoming = Amounts.parseOrThrow(entry.pendingIncoming);
const pendingOutgoing = Amounts.parseOrThrow(entry.pendingOutgoing);
console.log(
"available: ",
entry.pendingIncoming ? renderAmount(entry.available) : null,
);
console.log(
"incoming: ",
entry.pendingIncoming ? renderAmount(entry.pendingIncoming) : null,
);
if (!Amounts.isZero(pendingIncoming)) {
incoming = (
2016-11-23 01:14:45 +01:00
<i18n.Translate wrap="span">
<span style={{ color: "darkgreen" }}>
{"+"}
2017-06-04 17:56:55 +02:00
{renderAmount(entry.pendingIncoming)}
</span>{" "}
incoming
</i18n.Translate>
2016-11-23 01:14:45 +01: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) {
return <span />;
}
2017-05-29 15:18:48 +02:00
if (l.length === 1) {
return <span>({l})</span>;
}
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) {
return (
2020-03-30 12:39:32 +02:00
<div className="balance">
<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.
</p>
</div>
);
2016-03-02 00:47:00 +01:00
}
if (!wallet) {
2016-10-20 01:37:00 +02:00
return <span></span>;
}
2016-10-10 00:37:08 +02:00
console.log(wallet);
const listing = wallet.balances.map((entry) => {
const av = Amounts.parseOrThrow(entry.available);
2016-10-19 18:40:29 +02:00
return (
<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-02-18 23:41:29 +01:00
}
2020-11-18 17:33:02 +01:00
interface TransactionAmountProps {
debitCreditIndicator: "debit" | "credit" | "unknown";
amount: AmountString | "unknown";
pending: boolean;
}
2020-11-18 17:33:02 +01:00
function TransactionAmount(props: TransactionAmountProps): JSX.Element {
const [currency, amount] = props.amount.split(":");
let sign: string;
switch (props.debitCreditIndicator) {
case "credit":
sign = "+";
break;
case "debit":
sign = "-";
break;
case "unknown":
sign = "";
}
const style: React.CSSProperties = {
marginLeft: "auto",
display: "flex",
flexDirection: "column",
alignItems: "center",
alignSelf: "center"
};
if (props.pending) {
style.color = "gray";
}
return (
<div style={{ ...style }}>
<div style={{ fontSize: "x-large" }}>
{sign}
{amount}
</div>
<div>{currency}</div>
</div>
);
}
interface TransactionLayoutProps {
debitCreditIndicator: "debit" | "credit" | "unknown";
amount: AmountString | "unknown";
timestamp: Timestamp;
title: string;
subtitle: string;
iconPath: string;
pending: boolean;
}
function TransactionLayout(props: TransactionLayoutProps): JSX.Element {
const date = new Date(props.timestamp.t_ms);
const dateStr = date.toLocaleString([], {
dateStyle: "medium",
timeStyle: "short",
} as any);
return (
<div
style={{
display: "flex",
flexDirection: "row",
border: "1px solid gray",
borderRadius: "0.5em",
margin: "0.5em 0",
justifyContent: "space-between",
padding: "0.5em",
}}
>
<img src={props.iconPath} />
<div
style={{ display: "flex", flexDirection: "column", marginLeft: "1em" }}
>
<div style={{ fontSize: "small", color: "gray" }}>{dateStr}</div>
<div style={{ fontVariant: "small-caps", fontSize: "x-large" }}>
<span>{props.title}</span>
{props.pending ? (
<span style={{ color: "darkblue" }}> (Pending)</span>
) : null}
</div>
<div>{props.subtitle}</div>
</div>
<TransactionAmount
pending={props.pending}
amount={props.amount}
debitCreditIndicator={props.debitCreditIndicator}
/>
</div>
);
}
function TransactionItem(props: { tx: Transaction }): JSX.Element {
const tx = props.tx;
2020-11-18 17:33:02 +01:00
switch (tx.type) {
case TransactionType.Withdrawal:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title="Withdrawal"
subtitle={`via ${tx.exchangeBaseUrl}`}
timestamp={tx.timestamp}
iconPath="/static/img/ri-bank-line.svg"
pending={tx.pending}
></TransactionLayout>
);
case TransactionType.Payment:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
title="Payment"
subtitle={tx.info.summary}
timestamp={tx.timestamp}
iconPath="/static/img/ri-shopping-cart-line.svg"
pending={tx.pending}
></TransactionLayout>
);
case TransactionType.Refund:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title="Refund"
subtitle={tx.info.summary}
timestamp={tx.timestamp}
iconPath="/static/img/ri-refund-2-line.svg"
pending={tx.pending}
></TransactionLayout>
);
case TransactionType.Tip:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title="Tip"
subtitle={`from ${new URL(tx.merchantBaseUrl).hostname}`}
timestamp={tx.timestamp}
iconPath="/static/img/ri-hand-heart-line.svg"
pending={tx.pending}
></TransactionLayout>
);
case TransactionType.Refresh:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
title="Refresh"
subtitle={`via exchange ${tx.exchangeBaseUrl}`}
timestamp={tx.timestamp}
iconPath="/static/img/ri-refresh-line.svg"
pending={tx.pending}
></TransactionLayout>
2021-01-18 23:35:41 +01:00
);
case TransactionType.Deposit:
return (
<TransactionLayout
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
title="Refresh"
subtitle={`to ${tx.targetPaytoUri}`}
timestamp={tx.timestamp}
iconPath="/static/img/ri-refresh-line.svg"
pending={tx.pending}
></TransactionLayout>
2020-11-18 17:33:02 +01:00
);
}
}
function WalletHistory(props: any): JSX.Element {
const [transactions, setTransactions] = useState<
TransactionsResponse | undefined
>();
useEffect(() => {
const fetchData = async (): Promise<void> => {
const res = await wxApi.getTransactions();
setTransactions(res);
};
fetchData();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
if (!transactions) {
return <div>Loading ...</div>;
}
2020-11-18 17:33:02 +01:00
const txs = [...transactions.transactions].reverse();
return (
<div>
2020-11-18 17:33:02 +01:00
{txs.map((tx) => (
<TransactionItem tx={tx} />
))}
</div>
);
}
2020-05-04 13:46:06 +02:00
class WalletSettings extends React.Component<any, any> {
render(): JSX.Element {
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 {
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();
window.close();
}
}
2020-04-06 20:02:01 +02:00
function WalletDebug(props: any): JSX.Element {
return (
<div>
<p>Debug tools:</p>
2020-11-18 17:33:02 +01:00
<button onClick={openExtensionPage("/static/popup.html")}>wallet tab</button>
<br />
<button onClick={confirmReset}>reset</button>
<button onClick={reload}>reload chrome extension</button>
</div>
);
2016-10-10 00:37:08 +02: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),
});
2017-05-29 15:18:48 +02: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,
});
2017-05-29 15:18:48 +02:00
};
2016-02-01 15:10:20 +01: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-12 09:11:00 +02:00
const uriType = classifyTalerUri(talerUri);
switch (uriType) {
2020-08-12 09:11:00 +02:00
case TalerUriType.TalerWithdraw:
2020-08-13 20:43:51 +02:00
return makeExtensionUrlWithParams("static/withdraw.html", {
talerWithdrawUri: talerUri,
});
2020-08-12 09:11:00 +02:00
case TalerUriType.TalerPay:
2020-08-13 20:43:51 +02:00
return makeExtensionUrlWithParams("static/pay.html", {
talerPayUri: talerUri,
});
2020-08-12 09:11:00 +02:00
case TalerUriType.TalerTip:
2020-08-13 20:43:51 +02:00
return makeExtensionUrlWithParams("static/tip.html", {
talerTipUri: talerUri,
});
2020-08-12 09:11:00 +02:00
case TalerUriType.TalerRefund:
2020-08-13 20:43:51 +02:00
return makeExtensionUrlWithParams("static/refund.html", {
talerRefundUri: talerUri,
});
2020-08-12 09:11:00 +02:00
case TalerUriType.TalerNotifyReserve:
// 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 {
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" />
<WalletHistory route="/history" />
2019-09-05 16:23:54 +02:00
</Router>
</div>
</div>
2019-09-05 16:23:54 +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
}