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

184 lines
6.2 KiB
TypeScript
Raw Normal View History

2022-03-25 20:57:27 +01:00
/*
This file is part of GNU Taler
2022-06-06 17:05:26 +02:00
(C) 2022 Taler Systems S.A.
2022-03-25 20:57:27 +01:00
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
*/
import { createHashHistory } from "history";
import { Fragment, h, VNode } from "preact";
import Router, { route, Route } from "preact-router";
import { Match } from "preact-router/match";
import { useEffect, useState } from "preact/hooks";
2022-03-29 04:41:07 +02:00
import PendingTransactions from "../components/PendingTransactions.js";
import { PopupBox } from "../components/styled/index.js";
import { DevContextProvider } from "../context/devContext.js";
import { IoCProviderForRuntime } from "../context/iocContext.js";
2022-03-25 20:57:27 +01:00
import {
TranslationProvider,
useTranslationContext,
2022-03-29 04:41:07 +02:00
} from "../context/translation.js";
import { useTalerActionURL } from "../hooks/useTalerActionURL.js";
import { Pages, PopupNavBar } from "../NavigationBar.js";
import { platform } from "../platform/api.js";
import { BackupPage } from "../wallet/BackupPage.js";
import { ProviderDetailPage } from "../wallet/ProviderDetailPage.js";
import { BalancePage } from "./BalancePage.js";
import { TalerActionFound } from "./TalerActionFound.js";
2022-03-25 20:57:27 +01:00
function CheckTalerActionComponent(): VNode {
const [talerActionUrl] = useTalerActionURL();
useEffect(() => {
2022-06-02 17:20:36 +02:00
if (talerActionUrl) {
route(Pages.cta({ action: encodeURIComponent(talerActionUrl) }));
}
2022-03-25 20:57:27 +01:00
}, [talerActionUrl]);
return <Fragment />;
}
export function Application(): VNode {
const hash_history = createHashHistory();
return (
<TranslationProvider>
<DevContextProvider>
{({ devMode }: { devMode: boolean }) => (
<IoCProviderForRuntime>
<PendingTransactions
2022-06-02 17:20:36 +02:00
goToTransaction={(tid: string) =>
redirectTo(Pages.balanceTransaction({ tid }))
2022-03-25 20:57:27 +01:00
}
/>
<Match>
{({ path }: { path: string }) => <PopupNavBar path={path} />}
</Match>
<CheckTalerActionComponent />
<PopupBox devMode={devMode}>
<Router history={hash_history}>
<Route
path={Pages.balance}
component={BalancePage}
goToWalletManualWithdraw={() =>
2022-06-02 17:20:36 +02:00
redirectTo(Pages.balanceManualWithdraw({}))
2022-03-25 20:57:27 +01:00
}
goToWalletDeposit={(currency: string) =>
2022-06-02 17:20:36 +02:00
redirectTo(Pages.balanceDeposit({ currency }))
2022-03-25 20:57:27 +01:00
}
goToWalletHistory={(currency: string) =>
2022-06-02 17:20:36 +02:00
redirectTo(Pages.balanceHistory({ currency }))
2022-03-25 20:57:27 +01:00
}
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.cta.pattern}
2022-03-25 20:57:27 +01:00
component={function Action({ action }: { action: string }) {
const [, setDismissed] = useTalerActionURL();
return (
<TalerActionFound
url={decodeURIComponent(action)}
onDismiss={() => {
setDismissed(true);
2022-06-01 20:47:47 +02:00
return redirectTo(Pages.balance);
2022-03-25 20:57:27 +01:00
}}
/>
);
}}
/>
<Route
path={Pages.backup}
component={BackupPage}
2022-06-02 17:20:36 +02:00
onAddProvider={() => redirectTo(Pages.backupProviderAdd)}
2022-03-25 20:57:27 +01:00
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.backupProviderDetail.pattern}
2022-03-25 20:57:27 +01:00
component={ProviderDetailPage}
2022-06-01 20:47:47 +02:00
onBack={() => redirectTo(Pages.backup)}
2022-03-25 20:57:27 +01:00
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.balanceTransaction.pattern}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.balanceManualWithdraw.pattern}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.balanceDeposit.pattern}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.balanceHistory.pattern}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
<Route
2022-06-02 17:20:36 +02:00
path={Pages.backupProviderAdd}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
2022-08-11 17:28:02 +02:00
<Route path={Pages.qr} component={RedirectToWalletPage} />
2022-03-25 20:57:27 +01:00
<Route path={Pages.settings} component={RedirectToWalletPage} />
<Route
2022-06-02 17:20:36 +02:00
path={Pages.settingsExchangeAdd.pattern}
2022-03-25 20:57:27 +01:00
component={RedirectToWalletPage}
/>
<Route path={Pages.dev} component={RedirectToWalletPage} />
<Route default component={Redirect} to={Pages.balance} />
</Router>
</PopupBox>
</IoCProviderForRuntime>
)}
</DevContextProvider>
</TranslationProvider>
);
}
function RedirectToWalletPage(): VNode {
const page = (document.location.hash || "#/").replace("#", "");
const [showText, setShowText] = useState(false);
useEffect(() => {
platform.openWalletPageFromPopup(page);
setTimeout(() => {
setShowText(true);
}, 250);
});
const { i18n } = useTranslationContext();
if (!showText) return <Fragment />;
return (
<span>
<i18n.Translate>
this popup is being closed and you are being redirected to {page}
</i18n.Translate>
</span>
);
}
2022-06-01 20:47:47 +02:00
async function redirectTo(location: string): Promise<void> {
route(location);
}
2022-03-25 20:57:27 +01:00
function Redirect({ to }: { to: string }): null {
useEffect(() => {
route(to, true);
});
return null;
}