wallet-core/packages/taler-wallet-webextension/src/walletEntryPoint.tsx

303 lines
9.9 KiB
TypeScript
Raw Normal View History

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 sebasjm
2021-06-16 22:01:06 +02:00
*/
2022-03-14 16:15:41 +01:00
import { setupI18n } from "@gnu-taler/taler-util";
2021-11-15 15:18:58 +01:00
import { createHashHistory } from "history";
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";
import { useEffect, useState } from "preact/hooks";
2021-08-24 18:29:37 +02:00
import { LogoHeader } from "./components/LogoHeader";
2022-03-11 15:14:27 +01:00
import PendingTransactions from "./components/PendingTransactions";
import { SuccessBox, WalletBox } from "./components/styled";
2021-08-24 18:29:37 +02:00
import { DevContextProvider } from "./context/devContext";
import { IoCProviderForRuntime } from "./context/iocContext";
2022-03-14 16:15:41 +01:00
import {
TranslationProvider,
useTranslationContext,
} from "./context/translation";
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";
import { setupPlatform } from "./platform/api";
import chromeAPI from "./platform/chrome";
import firefoxAPI from "./platform/firefox";
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";
import { ManualWithdrawPage } from "./wallet/ManualWithdrawPage";
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
}
}
2022-03-18 21:52:46 +01:00
setupI18n("en", strings);
2021-06-16 22:01:06 +02:00
const isFirefox = typeof (window as any)["InstallTrigger"] !== "undefined";
//FIXME: create different entry point for any platform instead of
//switching in runtime
if (isFirefox) {
console.log("Wallet setup for Firefox API");
setupPlatform(firefoxAPI);
} else {
console.log("Wallet setup for Chrome API");
setupPlatform(chromeAPI);
}
2021-06-16 22:01:06 +02:00
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", main);
} else {
main();
}
function Application(): VNode {
const [globalNotification, setGlobalNotification] = useState<
2022-02-23 19:18:37 +01:00
VNode | undefined
>(undefined);
2022-01-19 04:20:51 +01:00
const hash_history = createHashHistory();
function clearNotification(): void {
setGlobalNotification(undefined);
}
function clearNotificationWhenMovingOut(): void {
// const movingOutFromNotification =
// globalNotification && e.url !== globalNotification.to;
if (globalNotification) {
//&& movingOutFromNotification) {
setGlobalNotification(undefined);
}
}
2022-03-14 16:15:41 +01:00
const { i18n } = useTranslationContext();
2021-11-15 15:18:58 +01:00
return (
<TranslationProvider>
2021-11-15 15:18:58 +01:00
<DevContextProvider>
2022-03-18 21:52:46 +01:00
<IoCProviderForRuntime>
{/* <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>
{({ path }: { path: string }) => {
if (path && path.startsWith("/cta")) return;
return (
<Fragment>
<LogoHeader />
<WalletNavBar path={path} />
<div
style={{
backgroundColor: "lightcyan",
display: "flex",
justifyContent: "center",
}}
>
<PendingTransactions
goToTransaction={(txId: string) =>
route(Pages.balance_transaction.replace(":tid", txId))
}
/>
</div>
2022-03-18 21:52:46 +01:00
</Fragment>
);
}}
</Match>
<WalletBox>
{globalNotification && (
<SuccessBox onClick={clearNotification}>
<div>{globalNotification}</div>
</SuccessBox>
)}
<Router
history={hash_history}
onChange={clearNotificationWhenMovingOut}
2022-03-11 15:14:27 +01:00
>
2022-03-18 21:52:46 +01:00
<Route path={Pages.welcome} component={WelcomePage} />
2022-03-18 21:52:46 +01:00
{/**
* BALANCE
*/}
2022-03-18 21:52:46 +01:00
<Route
path={Pages.balance_history}
component={HistoryPage}
goToWalletDeposit={(currency: string) =>
route(Pages.balance_deposit.replace(":currency", currency))
}
goToWalletManualWithdraw={(currency?: string) =>
route(
Pages.balance_manual_withdraw.replace(
":currency?",
currency || "",
),
)
}
/>
<Route
path={Pages.balance_transaction}
component={TransactionPage}
goToWalletHistory={(currency?: string) => {
route(
Pages.balance_history.replace(":currency?", currency || ""),
2022-03-18 21:52:46 +01:00
);
}}
/>
2022-03-18 21:52:46 +01:00
<Route
path={Pages.balance_manual_withdraw}
component={ManualWithdrawPage}
onCancel={() => {
route(Pages.balance);
}}
/>
2022-03-18 21:52:46 +01:00
<Route
path={Pages.balance_deposit}
component={DepositPage}
onCancel={(currency: string) => {
route(Pages.balance_history.replace(":currency?", currency));
2022-03-18 21:52:46 +01:00
}}
onSuccess={(currency: string) => {
route(Pages.balance_history.replace(":currency?", currency));
2022-03-18 21:52:46 +01:00
setGlobalNotification(
<i18n.Translate>
All done, your transaction is in progress
</i18n.Translate>,
);
}}
/>
{/**
* PENDING
*/}
<Route path={Pages.settings} component={SettingsPage} />
2022-03-18 21:52:46 +01:00
{/**
* BACKUP
*/}
<Route
path={Pages.backup}
component={BackupPage}
onAddProvider={() => {
route(Pages.backup_provider_add);
}}
/>
<Route
path={Pages.backup_provider_detail}
component={ProviderDetailPage}
onBack={() => {
route(Pages.backup);
}}
/>
<Route
path={Pages.backup_provider_add}
component={ProviderAddPage}
onBack={() => {
route(Pages.backup);
}}
/>
2022-03-18 21:52:46 +01:00
{/**
* SETTINGS
*/}
<Route
path={Pages.settings_exchange_add}
component={ExchangeAddPage}
onBack={() => {
route(Pages.balance);
}}
/>
2022-03-18 21:52:46 +01:00
{/**
* DEV
*/}
2022-03-18 21:52:46 +01:00
<Route path={Pages.dev} component={DeveloperPage} />
2022-03-18 21:52:46 +01:00
{/**
* CALL TO ACTION
*/}
<Route
path={Pages.cta_pay}
component={PayPage}
goToWalletManualWithdraw={(currency?: string) =>
route(
Pages.balance_manual_withdraw.replace(
":currency?",
currency || "",
),
)
}
goBack={() => route(Pages.balance)}
/>
<Route path={Pages.cta_refund} component={RefundPage} />
<Route path={Pages.cta_tips} component={TipPage} />
<Route path={Pages.cta_withdraw} component={WithdrawPage} />
2022-03-18 21:52:46 +01:00
{/**
* NOT FOUND
* all redirects should be at the end
*/}
<Route
path={Pages.balance}
component={Redirect}
to={Pages.balance_history.replace(":currency?", "")}
2022-03-18 21:52:46 +01:00
/>
2022-01-25 14:29:29 +01:00
2022-03-18 21:52:46 +01:00
<Route
default
component={Redirect}
to={Pages.balance_history.replace(":currency?", "")}
2022-03-18 21:52:46 +01:00
/>
</Router>
</WalletBox>
</IoCProviderForRuntime>
2021-11-15 15:18:58 +01:00
</DevContextProvider>
</TranslationProvider>
2021-11-15 15:18:58 +01:00
);
}
2021-05-07 23:10:27 +02:00
function Redirect({ to }: { to: string }): null {
useEffect(() => {
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
}