2021-08-24 18:29:37 +02:00
|
|
|
/*
|
2022-06-06 17:05:26 +02:00
|
|
|
This file is part of GNU Taler
|
|
|
|
(C) 2022 Taler Systems S.A.
|
2021-08-24 18:29:37 +02:00
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
2021-08-24 18:29:37 +02:00
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
|
2021-08-24 18:29:37 +02:00
|
|
|
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
|
2022-06-06 17:05:26 +02:00
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2021-08-24 18:29:37 +02:00
|
|
|
|
2022-10-15 12:59:26 +02:00
|
|
|
import {
|
|
|
|
ExchangeListItem,
|
|
|
|
ExchangeTosStatus,
|
|
|
|
WalletCoreVersion,
|
|
|
|
} from "@gnu-taler/taler-util";
|
2022-10-24 16:12:28 +02:00
|
|
|
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
|
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 { JustInDevMode } from "../components/JustInDevMode.js";
|
2022-09-05 04:08:45 +02:00
|
|
|
import { Part } from "../components/Part.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
import { SelectList } from "../components/SelectList.js";
|
2021-11-24 12:57:26 +01:00
|
|
|
import {
|
|
|
|
DestructiveText,
|
2022-02-24 16:41:47 +01:00
|
|
|
Input,
|
2021-11-24 12:57:26 +01:00
|
|
|
LinkPrimary,
|
2022-03-28 19:03:59 +02:00
|
|
|
SubTitle,
|
2021-11-24 12:57:26 +01:00
|
|
|
SuccessText,
|
|
|
|
WarningText,
|
2022-03-29 04:41:07 +02:00
|
|
|
} from "../components/styled/index.js";
|
2023-01-10 00:20:09 +01:00
|
|
|
import { useAlertContext } from "../context/alert.js";
|
2022-12-15 21:11:24 +01:00
|
|
|
import { useBackendContext } from "../context/backend.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
import { useDevContext } from "../context/devContext.js";
|
|
|
|
import { useTranslationContext } from "../context/translation.js";
|
2022-04-26 04:07:31 +02:00
|
|
|
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
|
2022-09-12 19:28:53 +02:00
|
|
|
import { useAutoOpenPermissions } from "../hooks/useAutoOpenPermissions.js";
|
2022-10-24 16:12:28 +02:00
|
|
|
import { useBackupDeviceName } from "../hooks/useBackupDeviceName.js";
|
|
|
|
import { useClipboardPermissions } from "../hooks/useClipboardPermissions.js";
|
2022-04-27 19:33:52 +02:00
|
|
|
import { ToggleHandler } from "../mui/handlers.js";
|
2022-03-29 04:41:07 +02:00
|
|
|
import { Pages } from "../NavigationBar.js";
|
2023-01-04 19:44:28 +01:00
|
|
|
import { platform } from "../platform/foreground.js";
|
2022-09-05 15:04:56 +02:00
|
|
|
|
|
|
|
const GIT_HASH = typeof __GIT_HASH__ !== "undefined" ? __GIT_HASH__ : undefined;
|
2021-08-24 18:29:37 +02:00
|
|
|
|
|
|
|
export function SettingsPage(): VNode {
|
2022-09-12 19:28:53 +02:00
|
|
|
const autoOpenToggle = useAutoOpenPermissions();
|
|
|
|
const clipboardToggle = useClipboardPermissions();
|
2023-01-10 00:20:09 +01:00
|
|
|
const { devMode, toggle } = useDevContext();
|
2021-11-15 15:18:58 +01:00
|
|
|
const { name, update } = useBackupDeviceName();
|
2023-01-10 00:20:09 +01:00
|
|
|
const { pushAlertOnError } = useAlertContext();
|
2022-09-05 15:04:56 +02:00
|
|
|
const webex = platform.getWalletWebExVersion();
|
2022-12-15 21:11:24 +01:00
|
|
|
const api = useBackendContext();
|
2022-04-26 03:37:41 +02:00
|
|
|
|
2022-09-05 15:04:56 +02:00
|
|
|
const exchangesHook = useAsyncAsHook(async () => {
|
2022-12-15 21:11:24 +01:00
|
|
|
const list = await api.wallet.call(WalletApiOperation.ListExchanges, {});
|
|
|
|
const version = await api.wallet.call(WalletApiOperation.GetVersion, {});
|
2022-09-05 15:04:56 +02:00
|
|
|
return { exchanges: list.exchanges, version };
|
|
|
|
});
|
|
|
|
const { exchanges, version } =
|
|
|
|
!exchangesHook || exchangesHook.hasError
|
|
|
|
? { exchanges: [], version: undefined }
|
|
|
|
: exchangesHook.response;
|
2021-10-11 20:59:55 +02:00
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
return (
|
|
|
|
<SettingsView
|
2022-09-05 15:04:56 +02:00
|
|
|
knownExchanges={exchanges}
|
2021-11-15 15:18:58 +01:00
|
|
|
deviceName={name}
|
|
|
|
setDeviceName={update}
|
2022-09-12 19:28:53 +02:00
|
|
|
autoOpenToggle={autoOpenToggle}
|
|
|
|
clipboardToggle={clipboardToggle}
|
2023-01-10 00:20:09 +01:00
|
|
|
devModeToggle={{
|
|
|
|
value: devMode,
|
|
|
|
button: {
|
|
|
|
onClick: pushAlertOnError(toggle),
|
|
|
|
},
|
|
|
|
}}
|
2022-09-05 15:04:56 +02:00
|
|
|
webexVersion={{
|
|
|
|
version: webex.version,
|
|
|
|
hash: GIT_HASH,
|
|
|
|
}}
|
|
|
|
coreVersion={version}
|
2021-11-15 15:18:58 +01:00
|
|
|
/>
|
|
|
|
);
|
2021-08-24 18:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ViewProps {
|
|
|
|
deviceName: string;
|
|
|
|
setDeviceName: (s: string) => Promise<void>;
|
2022-09-12 19:28:53 +02:00
|
|
|
autoOpenToggle: ToggleHandler;
|
|
|
|
clipboardToggle: ToggleHandler;
|
2022-10-24 16:12:28 +02:00
|
|
|
devModeToggle: ToggleHandler;
|
2021-10-11 20:59:55 +02:00
|
|
|
knownExchanges: Array<ExchangeListItem>;
|
2022-09-05 15:04:56 +02:00
|
|
|
coreVersion: WalletCoreVersion | undefined;
|
|
|
|
webexVersion: {
|
|
|
|
version: string;
|
|
|
|
hash: string | undefined;
|
|
|
|
};
|
2021-08-24 18:29:37 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 15:18:58 +01:00
|
|
|
export function SettingsView({
|
|
|
|
knownExchanges,
|
2022-09-12 19:28:53 +02:00
|
|
|
autoOpenToggle,
|
|
|
|
clipboardToggle,
|
2022-10-24 16:12:28 +02:00
|
|
|
devModeToggle,
|
2022-09-05 15:04:56 +02:00
|
|
|
coreVersion,
|
|
|
|
webexVersion,
|
2021-11-15 15:18:58 +01:00
|
|
|
}: ViewProps): VNode {
|
2022-03-14 19:20:32 +01:00
|
|
|
const { i18n, lang, supportedLang, changeLanguage } = useTranslationContext();
|
2022-02-24 16:41:47 +01:00
|
|
|
|
2021-08-24 18:29:37 +02:00
|
|
|
return (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
2021-10-11 20:59:55 +02:00
|
|
|
<section>
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-02-24 16:41:47 +01:00
|
|
|
<i18n.Translate>Navigator</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2021-11-24 12:57:26 +01:00
|
|
|
<Checkbox
|
2023-01-09 12:38:48 +01:00
|
|
|
label={i18n.str`Automatically open wallet based on page content`}
|
2022-09-12 19:28:53 +02:00
|
|
|
name="autoOpen"
|
|
|
|
description={
|
|
|
|
<i18n.Translate>
|
|
|
|
Enabling this option below will make using the wallet faster, but
|
|
|
|
requires more permissions from your browser.
|
|
|
|
</i18n.Translate>
|
|
|
|
}
|
|
|
|
enabled={autoOpenToggle.value!}
|
|
|
|
onToggle={autoOpenToggle.button.onClick!}
|
|
|
|
/>
|
2022-12-22 16:13:59 +01:00
|
|
|
{/* <Checkbox
|
2022-09-12 19:28:53 +02:00
|
|
|
label={
|
2023-01-09 12:38:48 +01:00
|
|
|
i18n.str`Automatically check clipboard for Taler URI`
|
2022-09-12 19:28:53 +02:00
|
|
|
}
|
|
|
|
name="clipboard"
|
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
|
|
|
}
|
2022-09-12 19:28:53 +02:00
|
|
|
enabled={clipboardToggle.value!}
|
|
|
|
onToggle={clipboardToggle.button.onClick!}
|
2022-12-22 16:13:59 +01:00
|
|
|
/> */}
|
2021-11-24 12:57:26 +01:00
|
|
|
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-02-24 16:41:47 +01:00
|
|
|
<i18n.Translate>Trust</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2021-11-15 15:18:58 +01:00
|
|
|
{!knownExchanges || !knownExchanges.length ? (
|
2022-02-23 19:18:37 +01:00
|
|
|
<div>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>No exchange yet</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</div>
|
2021-11-15 15:18:58 +01:00
|
|
|
) : (
|
2021-11-19 18:51:27 +01:00
|
|
|
<Fragment>
|
|
|
|
<table>
|
2021-11-24 12:57:26 +01:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-02-23 19:18:37 +01:00
|
|
|
<th>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Currency</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</th>
|
|
|
|
<th>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>URL</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</th>
|
|
|
|
<th>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Term of Service</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</th>
|
2021-11-19 18:51:27 +01:00
|
|
|
</tr>
|
2021-11-24 12:57:26 +01:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{knownExchanges.map((e, idx) => {
|
|
|
|
function Status(): VNode {
|
2022-10-15 12:59:26 +02:00
|
|
|
switch (e.tosStatus) {
|
|
|
|
case ExchangeTosStatus.Accepted:
|
2022-02-23 19:18:37 +01:00
|
|
|
return (
|
|
|
|
<SuccessText>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>ok</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</SuccessText>
|
|
|
|
);
|
2022-10-15 12:59:26 +02:00
|
|
|
case ExchangeTosStatus.Changed:
|
2022-02-23 19:18:37 +01:00
|
|
|
return (
|
|
|
|
<WarningText>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>changed</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</WarningText>
|
|
|
|
);
|
2022-10-15 12:59:26 +02:00
|
|
|
case ExchangeTosStatus.New:
|
|
|
|
case ExchangeTosStatus.NotFound:
|
2022-02-23 19:18:37 +01:00
|
|
|
return (
|
|
|
|
<DestructiveText>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>not accepted</i18n.Translate>
|
2022-02-23 19:18:37 +01:00
|
|
|
</DestructiveText>
|
|
|
|
);
|
2022-10-15 21:26:36 +02:00
|
|
|
case ExchangeTosStatus.Unknown:
|
2022-11-28 19:33:45 +01:00
|
|
|
default:
|
2022-10-15 21:26:36 +02:00
|
|
|
return (
|
|
|
|
<DestructiveText>
|
|
|
|
<i18n.Translate>
|
|
|
|
unknown (exchange status should be updated)
|
|
|
|
</i18n.Translate>
|
|
|
|
</DestructiveText>
|
|
|
|
);
|
2021-11-24 12:57:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<tr key={idx}>
|
|
|
|
<td>{e.currency}</td>
|
|
|
|
<td>
|
|
|
|
<a href={e.exchangeBaseUrl}>{e.exchangeBaseUrl}</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Status />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</tbody>
|
2021-11-19 18:51:27 +01:00
|
|
|
</table>
|
|
|
|
</Fragment>
|
2021-11-15 15:18:58 +01:00
|
|
|
)}
|
2021-11-19 18:51:27 +01:00
|
|
|
<div style={{ display: "flex", justifyContent: "space-between" }}>
|
|
|
|
<div />
|
2022-06-02 17:20:36 +02:00
|
|
|
<LinkPrimary href={Pages.settingsExchangeAdd({})}>
|
2022-02-23 19:44:14 +01:00
|
|
|
<i18n.Translate>Add an exchange</i18n.Translate>
|
2022-01-20 17:13:53 +01:00
|
|
|
</LinkPrimary>
|
2021-11-19 18:51:27 +01:00
|
|
|
</div>
|
2021-11-15 15:18:58 +01:00
|
|
|
|
2022-09-13 16:07:39 +02:00
|
|
|
<SubTitle>
|
|
|
|
<i18n.Translate>Troubleshooting</i18n.Translate>
|
|
|
|
</SubTitle>
|
2021-11-15 15:18:58 +01:00
|
|
|
<Checkbox
|
2023-01-09 12:38:48 +01:00
|
|
|
label={i18n.str`Developer mode`}
|
2021-08-24 18:29:37 +02:00
|
|
|
name="devMode"
|
2023-01-09 12:38:48 +01:00
|
|
|
description={i18n.str`More options and information useful for debugging`}
|
2022-10-24 16:12:28 +02:00
|
|
|
enabled={devModeToggle.value!}
|
|
|
|
onToggle={devModeToggle.button.onClick!}
|
2021-08-24 18:29:37 +02:00
|
|
|
/>
|
2022-03-14 19:20:32 +01:00
|
|
|
|
|
|
|
<JustInDevMode>
|
2022-03-28 19:03:59 +02:00
|
|
|
<SubTitle>
|
2022-03-14 19:20:32 +01:00
|
|
|
<i18n.Translate>Display</i18n.Translate>
|
2022-03-28 19:03:59 +02:00
|
|
|
</SubTitle>
|
2022-03-14 19:20:32 +01:00
|
|
|
<Input>
|
|
|
|
<SelectList
|
|
|
|
label={<i18n.Translate>Current Language</i18n.Translate>}
|
|
|
|
list={supportedLang}
|
|
|
|
name="lang"
|
|
|
|
value={lang}
|
|
|
|
onChange={(v) => changeLanguage(v)}
|
|
|
|
/>
|
|
|
|
</Input>
|
|
|
|
</JustInDevMode>
|
2022-09-05 04:08:45 +02:00
|
|
|
<SubTitle>
|
|
|
|
<i18n.Translate>Version</i18n.Translate>
|
|
|
|
</SubTitle>
|
2022-09-05 15:04:56 +02:00
|
|
|
{coreVersion && (
|
2022-09-05 04:08:45 +02:00
|
|
|
<Part
|
2023-01-09 12:38:48 +01:00
|
|
|
title={i18n.str`Wallet Core`}
|
2022-09-05 15:04:56 +02:00
|
|
|
text={
|
|
|
|
<span>
|
|
|
|
{coreVersion.version}{" "}
|
|
|
|
<JustInDevMode>{coreVersion.hash}</JustInDevMode>
|
|
|
|
</span>
|
|
|
|
}
|
2022-09-05 04:08:45 +02:00
|
|
|
/>
|
|
|
|
)}
|
2022-09-05 15:04:56 +02:00
|
|
|
<Part
|
2023-01-09 12:38:48 +01:00
|
|
|
title={i18n.str`Web Extension`}
|
2022-09-05 15:04:56 +02:00
|
|
|
text={
|
|
|
|
<span>
|
|
|
|
{webexVersion.version}{" "}
|
|
|
|
<JustInDevMode>{webexVersion.hash}</JustInDevMode>
|
|
|
|
</span>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
{coreVersion && (
|
|
|
|
<JustInDevMode>
|
|
|
|
<Part
|
2023-01-09 12:38:48 +01:00
|
|
|
title={i18n.str`Exchange compatibility`}
|
2022-09-05 15:04:56 +02:00
|
|
|
text={<span>{coreVersion.exchange}</span>}
|
|
|
|
/>
|
|
|
|
<Part
|
2023-01-09 12:38:48 +01:00
|
|
|
title={i18n.str`Merchant compatibility`}
|
2022-09-05 15:04:56 +02:00
|
|
|
text={<span>{coreVersion.merchant}</span>}
|
|
|
|
/>
|
|
|
|
<Part
|
2023-01-09 12:38:48 +01:00
|
|
|
title={i18n.str`Bank compatibility`}
|
2022-09-05 15:04:56 +02:00
|
|
|
text={<span>{coreVersion.bank}</span>}
|
|
|
|
/>
|
|
|
|
</JustInDevMode>
|
|
|
|
)}
|
2021-08-24 18:29:37 +02:00
|
|
|
</section>
|
2021-11-19 18:51:27 +01:00
|
|
|
</Fragment>
|
2021-11-15 15:18:58 +01:00
|
|
|
);
|
2021-10-12 20:18:29 +02:00
|
|
|
}
|