2021-06-16 22:01:06 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2020 Taler Systems S.A.
|
|
|
|
|
|
|
|
GNU 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.
|
|
|
|
|
|
|
|
GNU 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
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main entry point for extension pages.
|
|
|
|
*
|
|
|
|
* @author Florian Dold <dold@taler.net>
|
|
|
|
*/
|
|
|
|
|
2022-02-16 19:15:47 +01:00
|
|
|
import { i18n, setupI18n } from "@gnu-taler/taler-util";
|
2021-11-15 15:18:58 +01:00
|
|
|
import { createHashHistory } from "history";
|
2022-01-20 18:21:30 +01:00
|
|
|
import { Fragment, h, render, VNode } from "preact";
|
2021-08-24 18:29:37 +02:00
|
|
|
import Router, { route, Route } from "preact-router";
|
2022-01-19 04:20:51 +01:00
|
|
|
import Match from "preact-router/match";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { useEffect, useState } from "preact/hooks";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { LogoHeader } from "./components/LogoHeader";
|
2022-02-16 19:15:47 +01:00
|
|
|
import {
|
|
|
|
NavigationHeader,
|
|
|
|
NavigationHeaderHolder,
|
|
|
|
SuccessBox,
|
|
|
|
WalletBox,
|
|
|
|
} from "./components/styled";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { DevContextProvider } from "./context/devContext";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { IoCProviderForRuntime } from "./context/iocContext";
|
2021-08-19 05:34:47 +02:00
|
|
|
import { PayPage } from "./cta/Pay";
|
|
|
|
import { RefundPage } from "./cta/Refund";
|
2021-11-15 15:18:58 +01:00
|
|
|
import { TipPage } from "./cta/Tip";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { WithdrawPage } from "./cta/Withdraw";
|
|
|
|
import { strings } from "./i18n/strings";
|
2022-02-16 19:15:47 +01:00
|
|
|
import { Pages, WalletNavBar } from "./NavigationBar";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { DeveloperPage } from "./popup/DeveloperPage";
|
|
|
|
import { BackupPage } from "./wallet/BackupPage";
|
|
|
|
import { DepositPage } from "./wallet/DepositPage";
|
|
|
|
import { ExchangeAddPage } from "./wallet/ExchangeAddPage";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { HistoryPage } from "./wallet/History";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { ManualWithdrawPage } from "./wallet/ManualWithdrawPage";
|
2022-01-24 18:12:12 +01:00
|
|
|
import { Pending } from "./wallet/PendingPage";
|
2022-01-10 20:04:53 +01:00
|
|
|
import { ProviderAddPage } from "./wallet/ProviderAddPage";
|
|
|
|
import { ProviderDetailPage } from "./wallet/ProviderDetailPage";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { SettingsPage } from "./wallet/Settings";
|
2021-11-15 15:18:58 +01:00
|
|
|
import { TransactionPage } from "./wallet/Transaction";
|
2021-08-24 18:29:37 +02:00
|
|
|
import { WelcomePage } from "./wallet/Welcome";
|
|
|
|
|
2021-06-16 22:01:06 +02:00
|
|
|
function main(): void {
|
|
|
|
try {
|
|
|
|
const container = document.getElementById("container");
|
|
|
|
if (!container) {
|
|
|
|
throw Error("container not found, can't mount page contents");
|
|
|
|
}
|
|
|
|
render(<Application />, container);
|
|
|
|
} catch (e) {
|
|
|
|
console.error("got error", e);
|
2021-09-20 19:05:40 +02:00
|
|
|
if (e instanceof Error) {
|
|
|
|
document.body.innerText = `Fatal error: "${e.message}". Please report this bug at https://bugs.gnunet.org/.`;
|
|
|
|
}
|
2021-06-16 22:01:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setupI18n("en-US", strings);
|
|
|
|
|
|
|
|
if (document.readyState === "loading") {
|
|
|
|
document.addEventListener("DOMContentLoaded", main);
|
|
|
|
} else {
|
|
|
|
main();
|
|
|
|
}
|
|
|
|
|
2021-11-19 18:51:27 +01:00
|
|
|
function Application(): VNode {
|
2022-01-10 20:04:53 +01:00
|
|
|
const [globalNotification, setGlobalNotification] = useState<
|
|
|
|
string | undefined
|
|
|
|
>(undefined);
|
2022-01-19 04:20:51 +01:00
|
|
|
const hash_history = createHashHistory();
|
2022-01-20 17:13:53 +01:00
|
|
|
function clearNotification(): void {
|
|
|
|
setGlobalNotification(undefined);
|
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<DevContextProvider>
|
2022-01-10 20:04:53 +01:00
|
|
|
{({ devMode }: { devMode: boolean }) => (
|
|
|
|
<IoCProviderForRuntime>
|
2022-01-19 04:20:51 +01:00
|
|
|
{/* <Match/> won't work in the first render if <Router /> is not called first */}
|
|
|
|
{/* https://github.com/preactjs/preact-router/issues/415 */}
|
|
|
|
<Router history={hash_history} />
|
|
|
|
<Match>
|
2022-01-20 18:21:30 +01:00
|
|
|
{({ path }: { path: string }) => {
|
|
|
|
if (path && path.startsWith("/cta")) return;
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<LogoHeader />
|
2022-02-16 19:15:47 +01:00
|
|
|
<WalletNavBar path={path} />
|
2022-01-20 18:21:30 +01:00
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}}
|
2022-01-19 04:20:51 +01:00
|
|
|
</Match>
|
2022-01-10 20:04:53 +01:00
|
|
|
<WalletBox>
|
|
|
|
{globalNotification && (
|
2022-01-20 17:13:53 +01:00
|
|
|
<SuccessBox onClick={clearNotification}>
|
2022-01-10 20:04:53 +01:00
|
|
|
<div>{globalNotification}</div>
|
|
|
|
</SuccessBox>
|
|
|
|
)}
|
2022-01-20 17:13:53 +01:00
|
|
|
<Router
|
|
|
|
history={hash_history}
|
|
|
|
onChange={() => {
|
|
|
|
// const movingOutFromNotification =
|
|
|
|
// globalNotification && e.url !== globalNotification.to;
|
|
|
|
if (globalNotification) {
|
|
|
|
setGlobalNotification(undefined);
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
>
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route path={Pages.welcome} component={WelcomePage} />
|
|
|
|
|
2022-01-20 17:13:53 +01:00
|
|
|
{/**
|
|
|
|
* BALANCE
|
|
|
|
*/}
|
|
|
|
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route
|
|
|
|
path={Pages.balance_history}
|
|
|
|
component={HistoryPage}
|
|
|
|
goToWalletDeposit={(currency: string) =>
|
2022-01-20 17:13:53 +01:00
|
|
|
route(Pages.balance_deposit.replace(":currency", currency))
|
2022-01-10 20:04:53 +01:00
|
|
|
}
|
|
|
|
goToWalletManualWithdraw={(currency?: string) =>
|
|
|
|
route(
|
2022-01-20 17:13:53 +01:00
|
|
|
Pages.balance_manual_withdraw.replace(
|
2022-01-10 20:04:53 +01:00
|
|
|
":currency?",
|
|
|
|
currency || "",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
2022-01-20 17:13:53 +01:00
|
|
|
<Route
|
|
|
|
path={Pages.balance_transaction}
|
|
|
|
component={TransactionPage}
|
2022-01-25 14:29:29 +01:00
|
|
|
goToWalletHistory={(currency?: string) => {
|
|
|
|
route(
|
|
|
|
Pages.balance_history.replace(
|
|
|
|
":currency",
|
|
|
|
currency || "",
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}}
|
2022-01-20 17:13:53 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<Route
|
|
|
|
path={Pages.balance_manual_withdraw}
|
|
|
|
component={ManualWithdrawPage}
|
2022-01-25 14:29:29 +01:00
|
|
|
onCancel={() => {
|
|
|
|
route(Pages.balance);
|
|
|
|
}}
|
2022-01-20 17:13:53 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<Route
|
|
|
|
path={Pages.balance_deposit}
|
|
|
|
component={DepositPage}
|
|
|
|
onSuccess={(currency: string) => {
|
|
|
|
route(Pages.balance_history.replace(":currency", currency));
|
|
|
|
setGlobalNotification(
|
|
|
|
"All done, your transaction is in progress",
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
{/**
|
2022-01-24 18:12:12 +01:00
|
|
|
* PENDING
|
2022-01-20 17:13:53 +01:00
|
|
|
*/}
|
2022-01-24 18:12:12 +01:00
|
|
|
<Route path={Pages.pending} component={Pending} />
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route path={Pages.settings} component={SettingsPage} />
|
2022-01-20 17:13:53 +01:00
|
|
|
|
|
|
|
{/**
|
|
|
|
* BACKUP
|
|
|
|
*/}
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route
|
|
|
|
path={Pages.backup}
|
|
|
|
component={BackupPage}
|
|
|
|
onAddProvider={() => {
|
2022-01-20 17:13:53 +01:00
|
|
|
route(Pages.backup_provider_add);
|
2022-01-10 20:04:53 +01:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Route
|
2022-01-20 17:13:53 +01:00
|
|
|
path={Pages.backup_provider_detail}
|
2022-01-10 20:04:53 +01:00
|
|
|
component={ProviderDetailPage}
|
|
|
|
onBack={() => {
|
|
|
|
route(Pages.backup);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Route
|
2022-01-20 17:13:53 +01:00
|
|
|
path={Pages.backup_provider_add}
|
2022-01-10 20:04:53 +01:00
|
|
|
component={ProviderAddPage}
|
|
|
|
onBack={() => {
|
|
|
|
route(Pages.backup);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
|
2022-01-20 17:13:53 +01:00
|
|
|
{/**
|
|
|
|
* SETTINGS
|
|
|
|
*/}
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route
|
2022-01-20 17:13:53 +01:00
|
|
|
path={Pages.settings_exchange_add}
|
2022-01-10 20:04:53 +01:00
|
|
|
component={ExchangeAddPage}
|
|
|
|
onBack={() => {
|
|
|
|
route(Pages.balance);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
|
2022-01-20 17:13:53 +01:00
|
|
|
{/**
|
|
|
|
* DEV
|
|
|
|
*/}
|
2022-01-10 20:04:53 +01:00
|
|
|
|
|
|
|
<Route path={Pages.dev} component={DeveloperPage} />
|
|
|
|
|
2022-01-20 17:13:53 +01:00
|
|
|
{/**
|
|
|
|
* CALL TO ACTION
|
|
|
|
*/}
|
2022-01-10 20:04:53 +01:00
|
|
|
<Route
|
2022-01-20 17:13:53 +01:00
|
|
|
path={Pages.cta_pay}
|
2022-01-10 20:04:53 +01:00
|
|
|
component={PayPage}
|
|
|
|
goToWalletManualWithdraw={(currency?: string) =>
|
|
|
|
route(
|
2022-01-20 17:13:53 +01:00
|
|
|
Pages.balance_manual_withdraw.replace(
|
2022-01-10 20:04:53 +01:00
|
|
|
":currency?",
|
|
|
|
currency || "",
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
goBack={() => route(Pages.balance)}
|
|
|
|
/>
|
2022-01-20 17:13:53 +01:00
|
|
|
<Route path={Pages.cta_refund} component={RefundPage} />
|
|
|
|
<Route path={Pages.cta_tips} component={TipPage} />
|
|
|
|
<Route path={Pages.cta_withdraw} component={WithdrawPage} />
|
2022-01-10 20:04:53 +01:00
|
|
|
|
2022-01-20 17:13:53 +01:00
|
|
|
{/**
|
|
|
|
* NOT FOUND
|
2022-01-25 14:29:29 +01:00
|
|
|
* all redirects should be at the end
|
2022-01-20 17:13:53 +01:00
|
|
|
*/}
|
2022-01-25 14:29:29 +01:00
|
|
|
<Route
|
|
|
|
path={Pages.balance}
|
|
|
|
component={Redirect}
|
|
|
|
to={Pages.balance_history.replace(":currency", "")}
|
|
|
|
/>
|
|
|
|
|
2022-01-24 18:12:12 +01:00
|
|
|
<Route
|
|
|
|
default
|
|
|
|
component={Redirect}
|
|
|
|
to={Pages.balance_history.replace(":currency", "")}
|
|
|
|
/>
|
2022-01-10 20:04:53 +01:00
|
|
|
</Router>
|
|
|
|
</WalletBox>
|
|
|
|
</IoCProviderForRuntime>
|
|
|
|
)}
|
2021-11-15 15:18:58 +01:00
|
|
|
</DevContextProvider>
|
|
|
|
</div>
|
|
|
|
);
|
2021-08-19 05:34:47 +02:00
|
|
|
}
|
2021-05-07 23:10:27 +02:00
|
|
|
|
2021-08-19 05:34:47 +02:00
|
|
|
function Redirect({ to }: { to: string }): null {
|
|
|
|
useEffect(() => {
|
2022-01-20 17:13:53 +01:00
|
|
|
console.log("got some wrong route", to);
|
2021-11-15 15:18:58 +01:00
|
|
|
route(to, true);
|
|
|
|
});
|
|
|
|
return null;
|
2021-05-07 23:10:27 +02:00
|
|
|
}
|