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

114 lines
3.3 KiB
TypeScript
Raw Normal View History

2021-11-15 15:18:58 +01:00
/*
This file is part of GNU Taler
(C) 2021 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 <http://www.gnu.org/licenses/>
*/
/**
*
* @author Sebastian Javier Marchano (sebasjm)
*/
2021-09-20 19:05:40 +02:00
import { AmountJson, Amounts } from "@gnu-taler/taler-util";
2021-11-15 15:18:58 +01:00
import { VNode, h } from "preact";
2021-09-20 19:05:40 +02:00
import { useEffect, useRef, useState } from "preact/hooks";
import { ErrorMessage } from "../components/ErrorMessage";
2021-11-15 15:18:58 +01:00
import {
ButtonPrimary,
Input,
InputWithLabel,
LightText,
WalletBox,
} from "../components/styled";
2021-09-20 19:05:40 +02:00
export interface Props {
error: string | undefined;
currency: string | undefined;
initialExchange?: string;
initialAmount?: string;
onExchangeChange: (exchange: string) => void;
onCreate: (exchangeBaseUrl: string, amount: AmountJson) => Promise<void>;
}
2021-11-15 15:18:58 +01:00
export function CreateManualWithdraw({
onExchangeChange,
initialExchange,
initialAmount,
error,
currency,
onCreate,
}: Props): VNode {
2021-09-20 19:05:40 +02:00
const [exchange, setExchange] = useState(initialExchange || "");
const [amount, setAmount] = useState(initialAmount || "");
2021-11-15 15:18:58 +01:00
const parsedAmount = Amounts.parse(`${currency}:${amount}`);
2021-09-20 19:05:40 +02:00
let timeout = useRef<number | undefined>(undefined);
useEffect(() => {
2021-11-15 15:18:58 +01:00
if (timeout) window.clearTimeout(timeout.current);
2021-09-20 19:05:40 +02:00
timeout.current = window.setTimeout(async () => {
2021-11-15 15:18:58 +01:00
onExchangeChange(exchange);
2021-09-20 19:05:40 +02:00
}, 1000);
2021-11-15 15:18:58 +01:00
}, [exchange]);
2021-09-20 19:05:40 +02:00
return (
<WalletBox>
<section>
2021-11-15 15:18:58 +01:00
<ErrorMessage
title={error && "Can't create the reserve"}
description={error}
/>
2021-09-20 19:05:40 +02:00
<h2>Manual Withdrawal</h2>
2021-11-15 15:18:58 +01:00
<LightText>
Choose a exchange to create a reserve and then fill the reserve to
withdraw the coins
</LightText>
2021-09-20 19:05:40 +02:00
<p>
<Input invalid={!!exchange && !currency}>
<label>Exchange</label>
2021-11-15 15:18:58 +01:00
<input
type="text"
placeholder="https://"
value={exchange}
onChange={(e) => setExchange(e.currentTarget.value)}
/>
2021-09-20 19:05:40 +02:00
<small>http://exchange.taler:8081</small>
</Input>
2021-11-15 15:18:58 +01:00
{currency && (
<InputWithLabel invalid={!!amount && !parsedAmount}>
<label>Amount</label>
<div>
<div>{currency}</div>
<input
type="number"
style={{ paddingLeft: `${currency.length}em` }}
value={amount}
onChange={(e) => setAmount(e.currentTarget.value)}
/>
</div>
</InputWithLabel>
)}
2021-09-20 19:05:40 +02:00
</p>
</section>
<footer>
<div />
2021-11-15 15:18:58 +01:00
<ButtonPrimary
disabled={!parsedAmount || !exchange}
onClick={() => onCreate(exchange, parsedAmount!)}
>
Create
</ButtonPrimary>
2021-09-20 19:05:40 +02:00
</footer>
</WalletBox>
);
}