2021-06-16 23:21:03 +02:00
|
|
|
/*
|
|
|
|
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/>
|
|
|
|
*/
|
|
|
|
|
2021-11-22 21:34:27 +01:00
|
|
|
import { i18n } from "@gnu-taler/taler-util";
|
2021-11-19 18:51:27 +01:00
|
|
|
import { Fragment, h, VNode } from "preact";
|
2021-06-30 05:24:43 +02:00
|
|
|
import { Checkbox } from "../components/Checkbox";
|
2021-06-16 23:21:03 +02:00
|
|
|
import { useExtendedPermissions } from "../hooks/useExtendedPermissions";
|
|
|
|
|
2021-06-30 05:24:43 +02:00
|
|
|
export function SettingsPage(): VNode {
|
2021-06-16 23:21:03 +02:00
|
|
|
const [permissionsEnabled, togglePermissions] = useExtendedPermissions();
|
2021-11-19 18:51:27 +01:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<SettingsView
|
|
|
|
permissionsEnabled={permissionsEnabled}
|
|
|
|
togglePermissions={togglePermissions}
|
|
|
|
/>
|
|
|
|
);
|
2021-06-30 05:24:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ViewProps {
|
|
|
|
permissionsEnabled: boolean;
|
|
|
|
togglePermissions: () => void;
|
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function SettingsView({
|
|
|
|
permissionsEnabled,
|
|
|
|
togglePermissions,
|
|
|
|
}: ViewProps): VNode {
|
2021-06-16 23:21:03 +02:00
|
|
|
return (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
2021-10-11 20:59:55 +02:00
|
|
|
<section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<h2>
|
|
|
|
<i18n.Translate>Permissions</i18n.Translate>
|
|
|
|
</h2>
|
|
|
|
<Checkbox
|
|
|
|
label="Automatically open wallet based on page content"
|
2021-07-06 17:44:25 +02:00
|
|
|
name="perm"
|
|
|
|
description="(Enabling this option below will make using the wallet faster, but requires more permissions from your browser.)"
|
2021-11-15 15:18:58 +01:00
|
|
|
enabled={permissionsEnabled}
|
|
|
|
onToggle={togglePermissions}
|
2021-07-06 17:44:25 +02:00
|
|
|
/>
|
|
|
|
</section>
|
2021-11-15 15:18:58 +01:00
|
|
|
<footer style={{ justifyContent: "space-around" }}>
|
|
|
|
<a
|
|
|
|
target="_blank"
|
2021-10-11 20:59:55 +02:00
|
|
|
rel="noopener noreferrer"
|
2021-11-15 15:18:58 +01:00
|
|
|
style={{ color: "darkgreen", textDecoration: "none" }}
|
|
|
|
href={
|
2021-11-19 18:51:27 +01:00
|
|
|
// eslint-disable-next-line no-undef
|
2021-11-15 15:18:58 +01:00
|
|
|
chrome.extension
|
2021-11-19 18:51:27 +01:00
|
|
|
? // eslint-disable-next-line no-undef
|
|
|
|
chrome.extension.getURL(`/static/wallet.html#/settings`)
|
2021-11-15 15:18:58 +01:00
|
|
|
: "#"
|
|
|
|
}
|
|
|
|
>
|
|
|
|
VIEW MORE SETTINGS
|
|
|
|
</a>
|
2021-10-11 20:59:55 +02:00
|
|
|
</footer>
|
2021-11-19 18:51:27 +01:00
|
|
|
</Fragment>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
|
|
|
}
|