2021-11-22 21:34:27 +01:00
|
|
|
import {
|
|
|
|
canonicalizeBaseUrl,
|
|
|
|
i18n,
|
|
|
|
TalerConfigResponse,
|
|
|
|
} from "@gnu-taler/taler-util";
|
|
|
|
import { Fragment, h } from "preact";
|
|
|
|
import { useEffect, useState } from "preact/hooks";
|
|
|
|
import { ErrorMessage } from "../components/ErrorMessage";
|
2022-02-18 20:54:15 +01:00
|
|
|
import {
|
|
|
|
Button,
|
|
|
|
ButtonPrimary,
|
|
|
|
Input,
|
|
|
|
LightText,
|
|
|
|
WarningBox,
|
|
|
|
} from "../components/styled";
|
2021-11-22 21:34:27 +01:00
|
|
|
|
|
|
|
export interface Props {
|
|
|
|
initialValue?: string;
|
|
|
|
expectedCurrency?: string;
|
|
|
|
onCancel: () => void;
|
|
|
|
onVerify: (s: string) => Promise<TalerConfigResponse | undefined>;
|
|
|
|
onConfirm: (url: string) => Promise<string | undefined>;
|
|
|
|
withError?: string;
|
|
|
|
}
|
|
|
|
|
2021-12-06 19:27:20 +01:00
|
|
|
function useEndpointStatus<T>(
|
|
|
|
endpoint: string,
|
|
|
|
onVerify: (e: string) => Promise<T>,
|
|
|
|
): {
|
|
|
|
loading: boolean;
|
|
|
|
error?: string;
|
|
|
|
endpoint: string;
|
|
|
|
result: T | undefined;
|
|
|
|
updateEndpoint: (s: string) => void;
|
|
|
|
} {
|
|
|
|
const [value, setValue] = useState<string>(endpoint);
|
|
|
|
const [dirty, setDirty] = useState(false);
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const [result, setResult] = useState<T | undefined>(undefined);
|
|
|
|
const [error, setError] = useState<string | undefined>(undefined);
|
|
|
|
|
|
|
|
const [handler, setHandler] = useState<number | undefined>(undefined);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (!value) return;
|
|
|
|
window.clearTimeout(handler);
|
|
|
|
const h = window.setTimeout(async () => {
|
|
|
|
setDirty(true);
|
|
|
|
setLoading(true);
|
|
|
|
try {
|
|
|
|
const url = canonicalizeBaseUrl(value);
|
|
|
|
const result = await onVerify(url);
|
|
|
|
setResult(result);
|
|
|
|
setError(undefined);
|
|
|
|
setLoading(false);
|
|
|
|
} catch (e) {
|
|
|
|
const errorMessage =
|
|
|
|
e instanceof Error ? e.message : `unknown error: ${e}`;
|
|
|
|
setError(errorMessage);
|
|
|
|
setLoading(false);
|
|
|
|
setResult(undefined);
|
|
|
|
}
|
|
|
|
}, 500);
|
|
|
|
setHandler(h);
|
|
|
|
}, [value]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
error: dirty ? error : undefined,
|
|
|
|
loading: loading,
|
|
|
|
result: result,
|
|
|
|
endpoint: value,
|
|
|
|
updateEndpoint: setValue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-11-22 21:34:27 +01:00
|
|
|
export function ExchangeSetUrlPage({
|
|
|
|
initialValue,
|
|
|
|
expectedCurrency,
|
|
|
|
onCancel,
|
|
|
|
onVerify,
|
|
|
|
onConfirm,
|
|
|
|
}: Props) {
|
2021-12-06 19:27:20 +01:00
|
|
|
const { loading, result, endpoint, updateEndpoint, error } =
|
|
|
|
useEndpointStatus(initialValue ?? "", onVerify);
|
2021-11-22 21:34:27 +01:00
|
|
|
|
2021-12-06 19:27:20 +01:00
|
|
|
const [confirmationError, setConfirmationError] = useState<
|
|
|
|
string | undefined
|
|
|
|
>(undefined);
|
2021-11-22 21:34:27 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<section>
|
|
|
|
{!expectedCurrency ? (
|
|
|
|
<h1>Add new exchange</h1>
|
|
|
|
) : (
|
|
|
|
<h2>Add exchange for {expectedCurrency}</h2>
|
|
|
|
)}
|
2022-02-18 20:54:15 +01:00
|
|
|
{!result && (
|
|
|
|
<LightText>Enter the URL of an exchange you trust.</LightText>
|
|
|
|
)}
|
|
|
|
{result && (
|
|
|
|
<LightText>
|
|
|
|
An exchange has been found! Review the information and click next
|
|
|
|
</LightText>
|
|
|
|
)}
|
2021-12-06 19:27:20 +01:00
|
|
|
{result && expectedCurrency && expectedCurrency !== result.currency && (
|
|
|
|
<WarningBox>
|
|
|
|
This exchange doesn't match the expected currency{" "}
|
|
|
|
<b>{expectedCurrency}</b>
|
|
|
|
</WarningBox>
|
|
|
|
)}
|
2021-11-22 21:34:27 +01:00
|
|
|
<ErrorMessage
|
|
|
|
title={error && "Unable to add this exchange"}
|
|
|
|
description={error}
|
|
|
|
/>
|
2021-12-06 19:27:20 +01:00
|
|
|
<ErrorMessage
|
|
|
|
title={confirmationError && "Unable to add this exchange"}
|
|
|
|
description={confirmationError}
|
|
|
|
/>
|
2021-11-22 21:34:27 +01:00
|
|
|
<p>
|
2021-12-06 19:27:20 +01:00
|
|
|
<Input invalid={!!error}>
|
2021-11-22 21:34:27 +01:00
|
|
|
<label>URL</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
placeholder="https://"
|
2021-12-06 19:27:20 +01:00
|
|
|
value={endpoint}
|
|
|
|
onInput={(e) => updateEndpoint(e.currentTarget.value)}
|
2021-11-22 21:34:27 +01:00
|
|
|
/>
|
|
|
|
</Input>
|
2021-12-06 19:27:20 +01:00
|
|
|
{loading && <div>loading... </div>}
|
|
|
|
{result && !loading && (
|
2021-11-22 21:34:27 +01:00
|
|
|
<Fragment>
|
|
|
|
<Input>
|
|
|
|
<label>Version</label>
|
|
|
|
<input type="text" disabled value={result.version} />
|
|
|
|
</Input>
|
|
|
|
<Input>
|
|
|
|
<label>Currency</label>
|
|
|
|
<input type="text" disabled value={result.currency} />
|
|
|
|
</Input>
|
|
|
|
</Fragment>
|
|
|
|
)}
|
|
|
|
</p>
|
|
|
|
</section>
|
|
|
|
<footer>
|
|
|
|
<Button onClick={onCancel}>
|
|
|
|
<i18n.Translate>Cancel</i18n.Translate>
|
|
|
|
</Button>
|
|
|
|
<ButtonPrimary
|
|
|
|
disabled={
|
|
|
|
!result ||
|
|
|
|
!!error ||
|
|
|
|
(expectedCurrency !== undefined &&
|
|
|
|
expectedCurrency !== result.currency)
|
|
|
|
}
|
|
|
|
onClick={() => {
|
2021-12-06 19:27:20 +01:00
|
|
|
const url = canonicalizeBaseUrl(endpoint);
|
|
|
|
return onConfirm(url).then((r) =>
|
|
|
|
r ? setConfirmationError(r) : undefined,
|
|
|
|
);
|
2021-11-22 21:34:27 +01:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
<i18n.Translate>Next</i18n.Translate>
|
|
|
|
</ButtonPrimary>
|
|
|
|
</footer>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|