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";
|
2023-01-04 15:24:58 +01:00
|
|
|
import { ComponentChildren, Fragment, h, VNode } from "preact";
|
2022-03-25 20:57:27 +01:00
|
|
|
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";
|
2023-01-04 15:24:58 +01:00
|
|
|
import { PopupNavBarOptions, Pages, PopupNavBar } from "../NavigationBar.js";
|
2023-01-04 19:44:28 +01:00
|
|
|
import { platform } from "../platform/foreground.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
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
|
|
|
|
2023-01-04 15:24:58 +01:00
|
|
|
export function Application(): VNode {
|
|
|
|
return (
|
|
|
|
<TranslationProvider>
|
|
|
|
<DevContextProvider>
|
|
|
|
<IoCProviderForRuntime>
|
|
|
|
<ApplicationView />
|
|
|
|
</IoCProviderForRuntime>
|
|
|
|
</DevContextProvider>
|
|
|
|
</TranslationProvider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
function ApplicationView(): VNode {
|
|
|
|
const hash_history = createHashHistory();
|
|
|
|
|
|
|
|
const [action, setDismissed] = useTalerActionURL();
|
2022-09-09 17:22:26 +02:00
|
|
|
|
|
|
|
const actionUri = action?.uri;
|
2022-03-25 20:57:27 +01:00
|
|
|
|
|
|
|
useEffect(() => {
|
2022-09-09 17:22:26 +02:00
|
|
|
if (actionUri) {
|
|
|
|
route(Pages.cta({ action: encodeURIComponent(actionUri) }));
|
2022-06-02 17:20:36 +02:00
|
|
|
}
|
2022-09-09 17:22:26 +02:00
|
|
|
}, [actionUri]);
|
2022-03-25 20:57:27 +01:00
|
|
|
|
2023-01-04 15:24:58 +01:00
|
|
|
async function redirectToTxInfo(tid: string): Promise<void> {
|
|
|
|
redirectTo(Pages.balanceTransaction({ tid }));
|
|
|
|
}
|
2022-03-25 20:57:27 +01:00
|
|
|
|
|
|
|
return (
|
2023-01-04 15:24:58 +01:00
|
|
|
<Router history={hash_history}>
|
|
|
|
<Route
|
|
|
|
path={Pages.balance}
|
|
|
|
component={() => (
|
|
|
|
<PopupTemplate path="balance" goToTransaction={redirectToTxInfo}>
|
|
|
|
<BalancePage
|
|
|
|
goToWalletManualWithdraw={() => redirectTo(Pages.receiveCash({}))}
|
|
|
|
goToWalletDeposit={(currency: string) =>
|
|
|
|
redirectTo(Pages.sendCash({ amount: `${currency}:0` }))
|
|
|
|
}
|
|
|
|
goToWalletHistory={(currency: string) =>
|
|
|
|
redirectTo(Pages.balanceHistory({ currency }))
|
2022-03-25 20:57:27 +01:00
|
|
|
}
|
|
|
|
/>
|
2023-01-04 15:24:58 +01:00
|
|
|
</PopupTemplate>
|
2022-03-25 20:57:27 +01:00
|
|
|
)}
|
2023-01-04 15:24:58 +01:00
|
|
|
/>
|
|
|
|
|
|
|
|
<Route
|
|
|
|
path={Pages.cta.pattern}
|
|
|
|
component={function Action({ action }: { action: string }) {
|
|
|
|
// const [, setDismissed] = useTalerActionURL();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<PopupTemplate>
|
|
|
|
<TalerActionFound
|
|
|
|
url={decodeURIComponent(action)}
|
|
|
|
onDismiss={() => {
|
|
|
|
setDismissed(true);
|
|
|
|
return redirectTo(Pages.balance);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</PopupTemplate>
|
|
|
|
);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Route
|
|
|
|
path={Pages.backup}
|
|
|
|
component={() => (
|
|
|
|
<PopupTemplate path="backup" goToTransaction={redirectToTxInfo}>
|
|
|
|
<BackupPage
|
|
|
|
onAddProvider={() => redirectTo(Pages.backupProviderAdd)}
|
|
|
|
/>
|
|
|
|
</PopupTemplate>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path={Pages.backupProviderDetail.pattern}
|
|
|
|
component={({ pid }: { pid: string }) => (
|
|
|
|
<PopupTemplate path="backup">
|
|
|
|
<ProviderDetailPage
|
|
|
|
onPayProvider={(uri: string) =>
|
|
|
|
redirectTo(`${Pages.ctaPay}?talerPayUri=${uri}`)
|
|
|
|
}
|
|
|
|
onWithdraw={(amount: string) =>
|
|
|
|
redirectTo(Pages.receiveCash({ amount }))
|
|
|
|
}
|
|
|
|
pid={pid}
|
|
|
|
onBack={() => redirectTo(Pages.backup)}
|
|
|
|
/>
|
|
|
|
</PopupTemplate>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Route
|
|
|
|
path={Pages.balanceTransaction.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path={Pages.ctaWithdrawManual.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path={Pages.balanceDeposit.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route
|
|
|
|
path={Pages.balanceHistory.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route path={Pages.backupProviderAdd} component={RedirectToWalletPage} />
|
|
|
|
<Route
|
|
|
|
path={Pages.receiveCash.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route path={Pages.sendCash.pattern} component={RedirectToWalletPage} />
|
|
|
|
<Route path={Pages.ctaPay} component={RedirectToWalletPage} />
|
|
|
|
<Route path={Pages.qr} component={RedirectToWalletPage} />
|
|
|
|
<Route path={Pages.settings} component={RedirectToWalletPage} />
|
|
|
|
<Route
|
|
|
|
path={Pages.settingsExchangeAdd.pattern}
|
|
|
|
component={RedirectToWalletPage}
|
|
|
|
/>
|
|
|
|
<Route path={Pages.dev} component={RedirectToWalletPage} />
|
|
|
|
<Route path={Pages.notifications} component={RedirectToWalletPage} />
|
|
|
|
|
|
|
|
<Route default component={Redirect} to={Pages.balance} />
|
|
|
|
</Router>
|
2022-03-25 20:57:27 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2023-01-04 15:24:58 +01:00
|
|
|
|
|
|
|
function PopupTemplate({
|
|
|
|
path,
|
|
|
|
children,
|
|
|
|
goToTransaction,
|
|
|
|
}: {
|
|
|
|
path?: PopupNavBarOptions;
|
|
|
|
children: ComponentChildren;
|
|
|
|
goToTransaction?: (id: string) => Promise<void>;
|
|
|
|
}): VNode {
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
{/* <CheckTalerActionComponent /> */}
|
|
|
|
{goToTransaction ? (
|
|
|
|
<PendingTransactions goToTransaction={goToTransaction} />
|
|
|
|
) : undefined}
|
|
|
|
<PopupNavBar path={path} />
|
|
|
|
<PopupBox>{children}</PopupBox>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|