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

69 lines
1.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.
*/
import {
classifyTalerUri, i18n, TalerUriType
2021-03-27 14:35:58 +01:00
} from "@gnu-taler/taler-util";
import { ComponentChildren, JSX } from "preact";
2016-10-10 00:37:08 +02:00
2021-06-16 22:01:06 +02:00
export enum Pages {
balance = '/balance',
settings = '/settings',
debug = '/debug',
history = '/history',
transaction = '/transaction/:tid',
}
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-05-07 23:10:27 +02:00
if (props.current === props.target) {
cssClass = "active";
}
2016-10-10 00:37:08 +02:00
return (
2021-05-07 23:10:27 +02:00
<a href={props.target} className={cssClass}>
2016-10-10 00:37:08 +02:00
{props.children}
</a>
);
}
2021-06-16 22:01:06 +02:00
export function WalletNavBar({ current }: { current?: string }) {
2021-05-07 23:10:27 +02:00
return (
<div className="nav" id="header">
2021-06-16 22:01:06 +02:00
<Tab target="/balance" current={current}>{i18n.str`Balance`}</Tab>
<Tab target="/history" current={current}>{i18n.str`History`}</Tab>
<Tab target="/settings" current={current}>{i18n.str`Settings`}</Tab>
<Tab target="/debug" current={current}>{i18n.str`Debug`}</Tab>
2021-05-07 23:10:27 +02:00
</div>
);
2016-02-18 23:41:29 +01:00
}