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

125 lines
4.0 KiB
TypeScript
Raw Normal View History

/*
This file is part of GNU Taler
(C) 2019 Taler Systems SA
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/>
*/
/**
* Welcome page, shown on first installs.
*
2022-02-23 19:18:37 +01:00
* @author sebasjm
*/
import { WalletDiagnostics } from "@gnu-taler/taler-util";
import { Fragment, h, VNode } from "preact";
2022-03-29 04:41:07 +02:00
import { Checkbox } from "../components/Checkbox.js";
import { SubTitle, Title } from "../components/styled/index.js";
import { useTranslationContext } from "../context/translation.js";
import { useDiagnostics } from "../hooks/useDiagnostics.js";
import { useExtendedPermissions } from "../hooks/useExtendedPermissions.js";
2022-04-27 19:33:52 +02:00
import { ToggleHandler } from "../mui/handlers.js";
2022-04-26 16:48:23 +02:00
import { platform } from "../platform/api.js";
2021-11-16 17:59:53 +01:00
export function WelcomePage(): VNode {
2022-04-27 19:33:52 +02:00
const permissionToggle = useExtendedPermissions();
2021-11-15 15:18:58 +01:00
const [diagnostics, timedOut] = useDiagnostics();
return (
<View
2022-04-27 19:33:52 +02:00
permissionToggle={permissionToggle}
2021-11-15 15:18:58 +01:00
diagnostics={diagnostics}
timedOut={timedOut}
/>
);
2021-08-13 23:04:05 +02:00
}
export interface ViewProps {
2022-04-27 19:33:52 +02:00
permissionToggle: ToggleHandler;
2021-11-15 15:18:58 +01:00
diagnostics: WalletDiagnostics | undefined;
timedOut: boolean;
2021-08-13 23:04:05 +02:00
}
2021-11-15 15:18:58 +01:00
export function View({
2022-04-27 19:33:52 +02:00
permissionToggle,
2021-11-15 15:18:58 +01:00
diagnostics,
timedOut,
2021-11-16 17:59:53 +01:00
}: ViewProps): VNode {
const { i18n } = useTranslationContext();
2021-11-15 15:18:58 +01:00
return (
<Fragment>
<Title>
<i18n.Translate>Browser Extension Installed!</i18n.Translate>
</Title>
2021-11-15 15:18:58 +01:00
<div>
2022-02-23 19:18:37 +01:00
<p>
2022-04-26 16:48:23 +02:00
<i18n.Translate>
You can open the GNU Taler Wallet using the combination{" "}
<pre style="font-weight: bold; display: inline;">&lt;ALT+W&gt;</pre>
.
</i18n.Translate>
2022-02-23 19:18:37 +01:00
</p>
2022-04-26 16:48:23 +02:00
{!platform.isFirefox() && (
<Fragment>
<p>
<i18n.Translate>
Also pinning the GNU Taler Wallet to your Chrome browser allows
you to quick access without keyboard:
</i18n.Translate>
</p>
<ol style={{ paddingLeft: 40 }}>
<li>
<i18n.Translate>Click the puzzle icon</i18n.Translate>
</li>
<li>
<i18n.Translate>Search for GNU Taler Wallet</i18n.Translate>
</li>
<li>
<i18n.Translate>Click the pin icon</i18n.Translate>
</li>
</ol>
</Fragment>
)}
<SubTitle>
<i18n.Translate>Permissions</i18n.Translate>
</SubTitle>
2021-11-15 15:18:58 +01:00
<Checkbox
2022-02-23 19:18:37 +01:00
label={
<i18n.Translate>
2022-02-23 19:18:37 +01:00
Automatically open wallet based on page content
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
2021-11-15 15:18:58 +01:00
name="perm"
2022-02-23 19:18:37 +01:00
description={
<i18n.Translate>
2022-02-23 19:18:37 +01:00
(Enabling this option below will make using the wallet faster, but
requires more permissions from your browser.)
</i18n.Translate>
2022-02-23 19:18:37 +01:00
}
2022-04-27 19:33:52 +02:00
enabled={permissionToggle.value!}
onToggle={permissionToggle.button.onClick!}
2021-11-15 15:18:58 +01:00
/>
<SubTitle>
<i18n.Translate>Next Steps</i18n.Translate>
</SubTitle>
2021-11-15 15:18:58 +01:00
<a href="https://demo.taler.net/" style={{ display: "block" }}>
<i18n.Translate>Try the demo</i18n.Translate> »
2021-11-15 15:18:58 +01:00
</a>
<a href="https://demo.taler.net/" style={{ display: "block" }}>
<i18n.Translate>
Learn how to top up your wallet balance
</i18n.Translate>{" "}
»
2021-11-15 15:18:58 +01:00
</a>
</div>
</Fragment>
);
}