summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/NavigationBar.tsx
blob: df779cae3cb4f95c40e1675c8105671ccf0abbcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 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
 TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */

/**
 * Popup shown to the user when they click
 * the Taler browser action button.
 *
 * @author sebasjm
 */

/**
 * Imports.
 */
import { h, VNode } from "preact";
import { JustInDevMode } from "./components/JustInDevMode.js";
import {
  NavigationHeader,
  NavigationHeaderHolder,
  SvgIcon,
} from "./components/styled/index.js";
import { useTranslationContext } from "./context/translation.js";
import settingsIcon from "./svg/settings_black_24dp.svg";

/**
 * List of pages used by the wallet
 *
 * @author sebasjm
 */

export enum Pages {
  welcome = "/welcome",

  balance = "/balance",
  balance_history = "/balance/history/:currency?",
  balance_manual_withdraw = "/balance/manual-withdraw/:currency?",
  balance_deposit = "/balance/deposit/:currency",
  balance_transaction = "/balance/transaction/:tid",

  dev = "/dev",

  backup = "/backup",
  backup_provider_detail = "/backup/provider/:pid",
  backup_provider_add = "/backup/provider/add",

  settings = "/settings",
  settings_exchange_add = "/settings/exchange/add/:currency?",

  cta = "/cta/:action",
  cta_pay = "/cta/pay",
  cta_refund = "/cta/refund",
  cta_tips = "/cta/tip",
  cta_withdraw = "/cta/withdraw",
}

export function PopupNavBar({ path = "" }: { path?: string }): VNode {
  const { i18n } = useTranslationContext();
  return (
    <NavigationHeader>
      <a href="/balance" class={path.startsWith("/balance") ? "active" : ""}>
        <i18n.Translate>Balance</i18n.Translate>
      </a>
      <a href="/backup" class={path.startsWith("/backup") ? "active" : ""}>
        <i18n.Translate>Backup</i18n.Translate>
      </a>
      <a href="/settings">
        <SvgIcon
          title={i18n.str`Settings`}
          dangerouslySetInnerHTML={{ __html: settingsIcon }}
          color="white"
        />
      </a>
    </NavigationHeader>
  );
}

export function WalletNavBar({ path = "" }: { path?: string }): VNode {
  const { i18n } = useTranslationContext();
  return (
    <NavigationHeaderHolder>
      <NavigationHeader>
        <a href="/balance" class={path.startsWith("/balance") ? "active" : ""}>
          <i18n.Translate>Balance</i18n.Translate>
        </a>
        <a href="/backup" class={path.startsWith("/backup") ? "active" : ""}>
          <i18n.Translate>Backup</i18n.Translate>
        </a>

        <JustInDevMode>
          <a href="/dev" class={path.startsWith("/dev") ? "active" : ""}>
            <i18n.Translate>Dev</i18n.Translate>
          </a>
        </JustInDevMode>

        <a
          href="/settings"
          class={path.startsWith("/settings") ? "active" : ""}
        >
          <i18n.Translate>Settings</i18n.Translate>
        </a>
      </NavigationHeader>
    </NavigationHeaderHolder>
  );
}