2021-06-16 22:17:12 +02:00
|
|
|
/*
|
|
|
|
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
|
2021-06-16 22:17:12 +02:00
|
|
|
*/
|
|
|
|
|
2022-03-14 19:20:32 +01:00
|
|
|
import { WalletDiagnostics } from "@gnu-taler/taler-util";
|
2021-11-19 18:51:27 +01:00
|
|
|
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-26 16:48:23 +02:00
|
|
|
import { platform } from "../platform/api.js";
|
2021-06-16 22:17:12 +02:00
|
|
|
|
2021-11-16 17:59:53 +01:00
|
|
|
export function WelcomePage(): VNode {
|
2021-11-15 15:18:58 +01:00
|
|
|
const [permissionsEnabled, togglePermissions] = useExtendedPermissions();
|
|
|
|
const [diagnostics, timedOut] = useDiagnostics();
|
|
|
|
return (
|
|
|
|
<View
|
|
|
|
permissionsEnabled={permissionsEnabled}
|
|
|
|
togglePermissions={togglePermissions}
|
|
|
|
diagnostics={diagnostics}
|
|
|
|
timedOut={timedOut}
|
|
|
|
/>
|
|
|
|
);
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ViewProps {
|
2021-11-15 15:18:58 +01:00
|
|
|
permissionsEnabled: boolean;
|
|
|
|
togglePermissions: () => void;
|
|
|
|
diagnostics: WalletDiagnostics | undefined;
|
|
|
|
timedOut: boolean;
|
2021-08-13 23:04:05 +02:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
export function View({
|
|
|
|
permissionsEnabled,
|
|
|
|
togglePermissions,
|
|
|
|
diagnostics,
|
|
|
|
timedOut,
|
2021-11-16 17:59:53 +01:00
|
|
|
}: ViewProps): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n } = useTranslationContext();
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
2022-03-28 19:03:59 +02:00
|
|
|
<Title>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Browser Extension Installed!</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</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;"><ALT+W></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>
|
|
|
|
)}
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Permissions</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2021-11-15 15:18:58 +01:00
|
|
|
<Checkbox
|
2022-02-23 19:18:37 +01:00
|
|
|
label={
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
Automatically open wallet based on page content
|
2022-02-23 19:44:14 +01:00
|
|
|
</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={
|
2022-02-23 19:44:14 +01:00
|
|
|
<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.)
|
2022-02-23 19:44:14 +01:00
|
|
|
</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
}
|
2021-11-15 15:18:58 +01:00
|
|
|
enabled={permissionsEnabled}
|
|
|
|
onToggle={togglePermissions}
|
|
|
|
/>
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Next Steps</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2021-11-15 15:18:58 +01:00
|
|
|
<a href="https://demo.taler.net/" style={{ display: "block" }}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<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" }}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>
|
|
|
|
Learn how to top up your wallet balance
|
|
|
|
</i18n.Translate>{" "}
|
|
|
|
»
|
2021-11-15 15:18:58 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-19 18:51:27 +01:00
|
|
|
</Fragment>
|
2021-06-16 22:17:12 +02:00
|
|
|
);
|
|
|
|
}
|