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

151 lines
4.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-16 17:59:53 +01:00
import { h, VNode } from "preact";
import { useState } from "preact/hooks";
2021-09-20 19:05:40 +02:00
import { ErrorMessage } from "../components/ErrorMessage";
2021-11-16 17:59:53 +01:00
import { SelectList } from "../components/SelectList";
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;
initialAmount?: string;
2021-11-16 17:59:53 +01:00
exchangeList: Record<string, string>;
2021-09-20 19:05:40 +02:00
onCreate: (exchangeBaseUrl: string, amount: AmountJson) => Promise<void>;
}
2021-11-15 15:18:58 +01:00
export function CreateManualWithdraw({
initialAmount,
2021-11-16 17:59:53 +01:00
exchangeList,
2021-11-15 15:18:58 +01:00
error,
onCreate,
}: Props): VNode {
2021-11-16 17:59:53 +01:00
const exchangeSelectList = Object.keys(exchangeList);
const currencySelectList = Object.values(exchangeList);
const exchangeMap = exchangeSelectList.reduce(
(p, c) => ({ ...p, [c]: `${c} (${exchangeList[c]})` }),
{} as Record<string, string>,
);
const currencyMap = currencySelectList.reduce(
(p, c) => ({ ...p, [c]: c }),
{} as Record<string, string>,
);
const initialExchange =
exchangeSelectList.length > 0 ? exchangeSelectList[0] : "";
2021-09-20 19:05:40 +02:00
const [exchange, setExchange] = useState(initialExchange || "");
2021-11-16 17:59:53 +01:00
const [currency, setCurrency] = useState(exchangeList[initialExchange] ?? "");
2021-09-20 19:05:40 +02:00
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
2021-11-16 17:59:53 +01:00
function changeExchange(exchange: string): void {
setExchange(exchange);
setCurrency(exchangeList[exchange]);
}
function changeCurrency(currency: string): void {
setCurrency(currency);
const found = Object.entries(exchangeList).find((e) => e[1] === currency);
if (found) {
setExchange(found[0]);
} else {
setExchange("");
}
}
if (!initialExchange) {
return <div>There is no known exchange where to withdraw, add one</div>;
}
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>
2021-11-16 17:59:53 +01:00
<Input>
<SelectList
label="Currency"
list={currencyMap}
name="currency"
value={currency}
onChange={changeCurrency}
/>
</Input>
<Input>
<SelectList
label="Exchange"
list={exchangeMap}
name="currency"
2021-11-15 15:18:58 +01:00
value={exchange}
2021-11-16 17:59:53 +01:00
onChange={changeExchange}
2021-11-15 15:18:58 +01:00
/>
2021-09-20 19:05:40 +02:00
</Input>
2021-11-16 17:59:53 +01:00
{/* <p style={{ display: "flex", justifyContent: "right" }}>
<a href="" style={{ marginLeft: "auto" }}>
Add new exchange
</a>
</p> */}
2021-11-15 15:18:58 +01:00
{currency && (
<InputWithLabel invalid={!!amount && !parsedAmount}>
<label>Amount</label>
<div>
2021-11-16 17:59:53 +01:00
<span>{currency}</span>
2021-11-15 15:18:58 +01:00
<input
type="number"
value={amount}
2021-11-16 17:59:53 +01:00
onInput={(e) => setAmount(e.currentTarget.value)}
2021-11-15 15:18:58 +01:00
/>
</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!)}
>
2021-11-16 17:59:53 +01:00
Start withdrawal
2021-11-15 15:18:58 +01:00
</ButtonPrimary>
2021-09-20 19:05:40 +02:00
</footer>
</WalletBox>
);
}