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

93 lines
2.5 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-08-23 21:51:49 +02:00
import { ComponentChildren, JSX, h } from "preact";
2021-06-30 05:24:43 +02:00
import Match from "preact-router/match";
import { useDevContext } from "./context/devContext";
import { PopupNavigation } from './components/styled'
2016-10-10 00:37:08 +02:00
2021-06-16 22:01:06 +02:00
export enum Pages {
welcome = '/welcome',
2021-06-16 22:01:06 +02:00
balance = '/balance',
2021-09-20 19:05:40 +02:00
manual_withdraw = '/manual-withdraw',
2021-06-16 22:01:06 +02:00
settings = '/settings',
2021-06-30 05:24:43 +02:00
dev = '/dev',
backup = '/backup',
2021-06-16 22:01:06 +02:00
history = '/history',
transaction = '/transaction/:tid',
2021-07-06 17:44:25 +02:00
provider_detail = '/provider/:pid',
provider_add = '/provider/add',
reset_required = '/reset-required',
payback = '/payback',
return_coins = '/return-coins',
pay = '/pay',
refund = '/refund',
tips = '/tips',
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
}
2020-04-06 20:02:01 +02:00
function Tab(props: TabProps): JSX.Element {
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>
);
}
export function NavBar({ devMode, path }: { path: string, devMode: boolean }) {
2021-08-13 23:04:05 +02:00
return <PopupNavigation devMode={devMode}>
<div>
<Tab target="/balance" current={path}>{i18n.str`Balance`}</Tab>
<Tab target="/history" current={path}>{i18n.str`History`}</Tab>
<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>
2021-07-16 17:00:39 +02:00
</PopupNavigation>
}
2021-06-30 05:24:43 +02:00
export function WalletNavBar() {
const { devMode } = useDevContext()
return <Match>{({ path }: any) => {
console.log("path", path)
return <NavBar devMode={devMode} path={path} />
}}</Match>
2016-02-18 23:41:29 +01:00
}