/*
This file is part of GNU Taler
(C) 2022 Taler Systems S.A.
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
*/
import {
Amounts,
canonicalizeBaseUrl,
} from "@gnu-taler/taler-util";
import { WalletApiOperation } from "@gnu-taler/taler-wallet-core";
import { Fragment, h, VNode } from "preact";
import { useEffect, useState } from "preact/hooks";
import { Checkbox } from "../components/Checkbox.js";
import { ErrorMessage } from "../components/ErrorMessage.js";
import {
Input,
LightText,
SmallLightText,
SubTitle,
Title,
} from "../components/styled/index.js";
import { useBackendContext } from "../context/backend.js";
import { useTranslationContext } from "@gnu-taler/web-util/browser";
import { Button } from "../mui/Button.js";
import { queryToSlashConfig } from "../utils/index.js";
interface Props {
currency: string;
onBack: () => Promise;
}
interface BackupBackupProviderTerms {
annual_fee: string;
storage_limit_in_megabytes: number;
supported_protocol_version: string;
}
export function ProviderAddPage({ onBack }: Props): VNode {
const [verifying, setVerifying] = useState<
| { url: string; name: string; provider: BackupBackupProviderTerms }
| undefined
>(undefined);
const api = useBackendContext();
if (!verifying) {
return (
queryToSlashConfig(url)}
onConfirm={(url, name) =>
queryToSlashConfig(url)
.then((provider) => {
setVerifying({ url, name, provider });
})
.catch((e) => e.message)
}
/>
);
}
return (
{
setVerifying(undefined);
}}
onConfirm={() => {
return api.wallet
.call(WalletApiOperation.AddBackupProvider, {
backupProviderBaseUrl: verifying.url,
name: verifying.name,
activate: true,
})
.then(onBack);
}}
/>
);
}
export interface SetUrlViewProps {
initialValue?: string;
onCancel: () => Promise;
onVerify: (s: string) => Promise;
onConfirm: (url: string, name: string) => Promise;
withError?: string;
}
export function SetUrlView({
initialValue,
onCancel,
onVerify,
onConfirm,
withError,
}: SetUrlViewProps): VNode {
const { i18n } = useTranslationContext();
const [value, setValue] = useState(initialValue || "");
const [urlError, setUrlError] = useState(false);
const [name, setName] = useState(undefined);
const [error, setError] = useState(withError);
useEffect(() => {
try {
const url = canonicalizeBaseUrl(value);
onVerify(url)
.then((r) => {
setUrlError(false);
setName(new URL(url).hostname);
})
.catch(() => {
setUrlError(true);
setName(undefined);
});
} catch {
setUrlError(true);
setName(undefined);
}
}, [onVerify, value]);
return (
Add backup provider
{error && (
)}
Backup providers may charge for their service