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

365 lines
12 KiB
TypeScript
Raw Normal View History

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
import {
ExchangeListItem,
ExchangeTosStatus,
2023-04-19 17:42:47 +02:00
TranslatedString,
WalletCoreVersion,
} from "@gnu-taler/taler-util";
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
2023-05-05 13:47:00 +02:00
import { useTranslationContext } from "@gnu-taler/web-util/browser";
2023-04-19 17:42:47 +02:00
import { Fragment, VNode, h } from "preact";
import { Pages } from "../NavigationBar.js";
2022-03-29 04:41:07 +02:00
import { Checkbox } from "../components/Checkbox.js";
2023-04-19 17:42:47 +02:00
import { EnabledBySettings } from "../components/EnabledBySettings.js";
import { Part } from "../components/Part.js";
2022-03-29 04:41:07 +02:00
import { SelectList } from "../components/SelectList.js";
import {
DestructiveText,
Input,
LinkPrimary,
SubTitle,
SuccessText,
WarningText,
2022-03-29 04:41:07 +02:00
} from "../components/styled/index.js";
import { useAlertContext } from "../context/alert.js";
import { useBackendContext } from "../context/backend.js";
2022-04-26 04:07:31 +02:00
import { useAsyncAsHook } from "../hooks/useAsyncAsHook.js";
import { useBackupDeviceName } from "../hooks/useBackupDeviceName.js";
import { useClipboardPermissions } from "../hooks/useClipboardPermissions.js";
2023-04-19 17:42:47 +02:00
import { useSettings } from "../hooks/useSettings.js";
2022-04-27 19:33:52 +02:00
import { ToggleHandler } from "../mui/handlers.js";
2023-01-04 19:44:28 +01:00
import { platform } from "../platform/foreground.js";
2023-04-19 17:42:47 +02:00
import { Settings } from "../platform/api.js";
const GIT_HASH = typeof __GIT_HASH__ !== "undefined" ? __GIT_HASH__ : undefined;
2021-08-24 18:29:37 +02:00
export function SettingsPage(): VNode {
const [settings, updateSettings] = useSettings();
const { safely } = useAlertContext();
2021-11-15 15:18:58 +01:00
const { name, update } = useBackupDeviceName();
const webex = platform.getWalletWebExVersion();
const api = useBackendContext();
2022-04-26 03:37:41 +02:00
const exchangesHook = useAsyncAsHook(async () => {
const list = await api.wallet.call(WalletApiOperation.ListExchanges, {});
const version = await api.wallet.call(WalletApiOperation.GetVersion, {});
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
knownExchanges={exchanges}
2021-11-15 15:18:58 +01:00
deviceName={name}
setDeviceName={update}
autoOpenToggle={{
value: settings.injectTalerSupport,
button: {
onClick: safely("update support injection", async () => {
updateSettings("injectTalerSupport", !settings.injectTalerSupport);
}),
},
}}
2023-04-19 17:42:47 +02:00
advanceToggle={{
value: settings.advanceMode,
button: {
2023-04-19 17:42:47 +02:00
onClick: safely("update advance mode", async () => {
updateSettings("advanceMode", !settings.advanceMode);
}),
},
}}
langToggle={{
value: settings.langSelector,
button: {
onClick: safely("update lang selector", async () => {
updateSettings("langSelector", !settings.langSelector);
}),
},
}}
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;
2023-04-19 17:42:47 +02:00
advanceToggle: ToggleHandler;
langToggle: ToggleHandler;
2021-10-11 20:59:55 +02:00
knownExchanges: Array<ExchangeListItem>;
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,
2023-04-19 17:42:47 +02:00
advanceToggle,
langToggle,
coreVersion,
webexVersion,
2021-11-15 15:18:58 +01:00
}: ViewProps): VNode {
const { i18n, lang, supportedLang, changeLanguage } = useTranslationContext();
2021-08-24 18:29:37 +02:00
return (
<Fragment>
2021-10-11 20:59:55 +02:00
<section>
<SubTitle>
<i18n.Translate>Trust</i18n.Translate>
</SubTitle>
2021-11-15 15:18:58 +01:00
{!knownExchanges || !knownExchanges.length ? (
2022-02-23 19:18:37 +01:00
<div>
<i18n.Translate>No exchange yet</i18n.Translate>
2022-02-23 19:18:37 +01:00
</div>
2021-11-15 15:18:58 +01:00
) : (
<Fragment>
<table>
<thead>
<tr>
2022-02-23 19:18:37 +01:00
<th>
<i18n.Translate>Currency</i18n.Translate>
2022-02-23 19:18:37 +01:00
</th>
<th>
<i18n.Translate>URL</i18n.Translate>
2022-02-23 19:18:37 +01:00
</th>
<th>
<i18n.Translate>Term of Service</i18n.Translate>
2022-02-23 19:18:37 +01:00
</th>
</tr>
</thead>
<tbody>
{knownExchanges.map((e, idx) => {
function Status(): VNode {
switch (e.tosStatus) {
case ExchangeTosStatus.Accepted:
2022-02-23 19:18:37 +01:00
return (
<SuccessText>
<i18n.Translate>ok</i18n.Translate>
2022-02-23 19:18:37 +01:00
</SuccessText>
);
case ExchangeTosStatus.Changed:
2022-02-23 19:18:37 +01:00
return (
<WarningText>
<i18n.Translate>changed</i18n.Translate>
2022-02-23 19:18:37 +01:00
</WarningText>
);
case ExchangeTosStatus.New:
case ExchangeTosStatus.NotFound:
2022-02-23 19:18:37 +01:00
return (
<DestructiveText>
<i18n.Translate>not accepted</i18n.Translate>
2022-02-23 19:18:37 +01:00
</DestructiveText>
);
case ExchangeTosStatus.Unknown:
2022-11-28 19:33:45 +01:00
default:
return (
<DestructiveText>
<i18n.Translate>
unknown (exchange status should be updated)
</i18n.Translate>
</DestructiveText>
);
}
}
return (
<tr key={idx}>
<td>{e.currency}</td>
<td>
<a href={e.exchangeBaseUrl}>{e.exchangeBaseUrl}</a>
</td>
<td>
<Status />
</td>
</tr>
);
})}
</tbody>
</table>
</Fragment>
2021-11-15 15:18:58 +01:00
)}
<div style={{ display: "flex", justifyContent: "space-between" }}>
<div />
2022-06-02 17:20:36 +02:00
<LinkPrimary href={Pages.settingsExchangeAdd({})}>
<i18n.Translate>Add an exchange</i18n.Translate>
</LinkPrimary>
</div>
2021-11-15 15:18:58 +01:00
<Part
2023-01-09 12:38:48 +01:00
title={i18n.str`Web Extension`}
text={
<span>
{webexVersion.version}{" "}
2023-04-19 17:42:47 +02:00
<EnabledBySettings name="advanceMode">
{webexVersion.hash}
</EnabledBySettings>
</span>
}
/>
{coreVersion && (
2023-04-19 17:42:47 +02:00
<EnabledBySettings name="advanceMode">
<Part
2023-01-09 12:38:48 +01:00
title={i18n.str`Exchange compatibility`}
text={<span>{coreVersion.exchange}</span>}
/>
<Part
2023-01-09 12:38:48 +01:00
title={i18n.str`Merchant compatibility`}
text={<span>{coreVersion.merchant}</span>}
/>
<Part
2023-01-09 12:38:48 +01:00
title={i18n.str`Bank compatibility`}
text={<span>{coreVersion.bank}</span>}
/>
2023-04-19 17:42:47 +02:00
</EnabledBySettings>
)}
<SubTitle>
2023-04-19 17:42:47 +02:00
<i18n.Translate>Advance mode</i18n.Translate>
</SubTitle>
<Checkbox
2023-04-19 17:42:47 +02:00
label={i18n.str`Enable advance mode`}
name="devMode"
2023-04-19 17:42:47 +02:00
description={i18n.str`Show more information and options in the UI`}
enabled={advanceToggle.value!}
onToggle={advanceToggle.button.onClick!}
/>
<EnabledBySettings name="advanceMode">
<AdvanceSettings />
</EnabledBySettings>
<Checkbox
label={i18n.str`Lang selector`}
name="langSelector"
description={i18n.str`Allows to manually change the language of the UI. Otherwise it will be automatically selected by your browser configuration.`}
enabled={langToggle.value!}
onToggle={langToggle.button.onClick!}
/>
2023-04-19 17:42:47 +02:00
<EnabledBySettings name="langSelector">
<SubTitle>
<i18n.Translate>Display</i18n.Translate>
</SubTitle>
<Input>
<SelectList
label={<i18n.Translate>Current Language</i18n.Translate>}
list={supportedLang}
name="lang"
value={lang}
onChange={(v) => changeLanguage(v)}
/>
</Input>
</EnabledBySettings>
<SubTitle>
<i18n.Translate>Navigator</i18n.Translate>
</SubTitle>
<Checkbox
label={i18n.str`Inject Taler support in all pages`}
name="inject"
description={
<i18n.Translate>
Disabling this option will make some web application not able to
trigger the wallet when clicking links but you will be able to
open the wallet using the keyboard shortcut
</i18n.Translate>
}
enabled={autoOpenToggle.value!}
onToggle={autoOpenToggle.button.onClick!}
/>
2023-04-19 17:42:47 +02:00
<SubTitle>
<i18n.Translate>Version</i18n.Translate>
</SubTitle>
{coreVersion && (
<Part
title={i18n.str`Wallet Core`}
text={
<span>
{coreVersion.version}{" "}
<EnabledBySettings name="advanceMode">
{coreVersion.hash}
</EnabledBySettings>
</span>
}
/>
)}
</section>
</Fragment>
);
}
type Info = { label: TranslatedString; description: TranslatedString };
type Options = {
[k in keyof Settings]?: Info;
};
function AdvanceSettings(): VNode {
const [settings, updateSettings] = useSettings();
const { i18n } = useTranslationContext();
const o: Options = {
backup: {
label: i18n.str`Show backup feature`,
description: i18n.str`Backup integration still in beta.`,
},
deleteActiveTransactions: {
label: i18n.str`Show delete active transaction`,
description: i18n.str`Deleting active transaction is not safe and you may loose your coins.`,
},
extendedAccountTypes: {
label: i18n.str`Show more account types on deposit`,
description: i18n.str`Extends the UI to more payment target types.`,
},
showJsonOnError: {
label: i18n.str`Show JSON on error`,
description: i18n.str`Print more information about the error. Useful for debugging.`,
},
walletAllowHttp: {
label: i18n.str`Allow HTTP connections`,
description: i18n.str`Using HTTP connection may be faster but unsafe (wallet restart required)`,
},
walletBatchWithdrawal: {
label: i18n.str`Allow batch withdrawals`,
description: i18n.str`Using the batch withdrawal API allows faster withdrawals (wallet restart required)`,
},
};
return (
<Fragment>
<section>
{Object.entries(o).map(([name, { label, description }]) => {
const settingsName = name as keyof Settings;
return (
<Checkbox
label={label}
name={name}
description={description}
enabled={settings[settingsName]}
onToggle={async () => {
updateSettings(settingsName, !settings[settingsName]);
}}
/>
);
})}
2021-08-24 18:29:37 +02:00
</section>
</Fragment>
2021-11-15 15:18:58 +01:00
);
2021-10-12 20:18:29 +02:00
}