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

104 lines
2.8 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.
*/
2021-06-30 23:24:08 +02:00
import { i18n } from "@gnu-taler/taler-util";
2021-11-16 17:59:53 +01:00
import { ComponentChildren, h, VNode } from "preact";
2021-06-30 05:24:43 +02:00
import Match from "preact-router/match";
2021-11-15 15:18:58 +01:00
import { PopupNavigation } from "./components/styled";
2016-10-10 00:37:08 +02:00
2021-06-16 22:01:06 +02:00
export enum Pages {
2021-11-15 15:18:58 +01:00
welcome = "/welcome",
balance = "/balance",
balance_history = "/balance/history/:currency",
manual_withdraw = "/manual-withdraw/:currency?",
2021-12-23 19:17:36 +01:00
deposit = "/deposit/:currency",
2021-11-15 15:18:58 +01:00
settings = "/settings",
dev = "/dev",
2022-01-04 21:06:17 +01:00
cta = "/cta/:action",
2021-11-15 15:18:58 +01:00
backup = "/backup",
last_activity = "/last-activity",
2021-11-15 15:18:58 +01:00
transaction = "/transaction/:tid",
provider_detail = "/provider/:pid",
provider_add = "/provider/add",
2021-11-22 21:34:27 +01:00
exchange_add = "/exchange/add",
2021-11-15 15:18:58 +01:00
reset_required = "/reset-required",
payback = "/payback",
return_coins = "/return-coins",
2021-11-15 15:18:58 +01:00
pay = "/pay",
refund = "/refund",
tips = "/tip",
withdraw = "/withdraw",
2021-06-16 22:01:06 +02:00
}
interface TabProps {
2016-10-10 00:37:08 +02:00
target: string;
2021-05-07 23:10:27 +02:00
current?: string;
2021-05-07 15:38:28 +02:00
children?: ComponentChildren;
2016-10-10 00:37:08 +02:00
}
2021-11-16 17:59:53 +01:00
function Tab(props: TabProps): VNode {
let cssClass = "";
2021-07-01 20:42:32 +02:00
if (props.current?.startsWith(props.target)) {
cssClass = "active";
}
2016-10-10 00:37:08 +02:00
return (
<a href={props.target} class={cssClass}>
2016-10-10 00:37:08 +02:00
{props.children}
</a>
);
}
2021-11-15 15:18:58 +01:00
export function NavBar({ devMode, path }: { path: string; devMode: boolean }) {
return (
<PopupNavigation devMode={devMode}>
<div>
<Tab target="/balance" current={path}>{i18n.str`Balance`}</Tab>
<Tab
target="/last-activity"
current={path}
>{i18n.str`Last Activity`}</Tab>
2021-11-15 15:18:58 +01:00
<Tab target="/backup" current={path}>{i18n.str`Backup`}</Tab>
<Tab target="/settings" current={path}>{i18n.str`Settings`}</Tab>
{devMode && <Tab target="/dev" current={path}>{i18n.str`Dev`}</Tab>}
</div>
</PopupNavigation>
);
2021-07-16 17:00:39 +02:00
}
export function WalletNavBar({ devMode }: { devMode: boolean }) {
// const { devMode } = useDevContext();
2021-11-15 15:18:58 +01:00
return (
<Match>
{({ path }: any) => {
console.log("path", path);
return <NavBar devMode={devMode} path={path} />;
}}
</Match>
);
2016-02-18 23:41:29 +01:00
}