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

196 lines
5.7 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)
*/
2022-02-23 19:18:37 +01:00
import { AmountJson, Amounts, i18n, Translate } from "@gnu-taler/taler-util";
import { Fragment, h, VNode } from "preact";
2021-11-16 17:59:53 +01:00
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 {
BoldLight,
2021-11-15 15:18:58 +01:00
ButtonPrimary,
ButtonSuccess,
Centered,
2021-11-15 15:18:58 +01:00
Input,
InputWithLabel,
LightText,
2021-11-22 21:34:27 +01:00
LinkPrimary,
2021-11-15 15:18:58 +01:00
} 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>;
onAddExchange: () => void;
initialCurrency?: string;
2021-09-20 19:05:40 +02:00
}
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,
initialCurrency,
2021-11-15 15:18:58 +01:00
onCreate,
onAddExchange,
2021-11-15 15:18:58 +01:00
}: 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 foundExchangeForCurrency = exchangeSelectList.findIndex(
(e) => exchangeList[e] === initialCurrency,
);
2021-11-16 17:59:53 +01:00
const initialExchange =
foundExchangeForCurrency !== -1
? exchangeSelectList[foundExchangeForCurrency]
: exchangeSelectList.length > 0
? exchangeSelectList[0]
: "";
2021-11-16 17:59:53 +01:00
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 (
<section>
2022-02-23 19:18:37 +01:00
<h2>
<Translate>Manual Withdrawal</Translate>
</h2>
<LightText>
2022-02-23 19:18:37 +01:00
<Translate>
Choose a exchange from where the coins will be withdrawn. The
exchange will send the coins to this wallet after receiving a wire
transfer with the correct subject.
</Translate>
</LightText>
<Centered style={{ marginTop: 100 }}>
2022-02-23 19:18:37 +01:00
<BoldLight>
<Translate>No exchange configured</Translate>
</BoldLight>
<ButtonSuccess onClick={onAddExchange}>
2022-02-23 19:18:37 +01:00
<Translate>Add exchange</Translate>
</ButtonSuccess>
</Centered>
</section>
);
2021-11-16 17:59:53 +01:00
}
2021-09-20 19:05:40 +02:00
return (
<Fragment>
2021-09-20 19:05:40 +02:00
<section>
2022-02-23 19:18:37 +01:00
{error && (
<ErrorMessage
title={<Translate>Can't create the reserve</Translate>}
description={error}
/>
)}
<h2>
<Translate>Manual Withdrawal</Translate>
</h2>
2021-11-15 15:18:58 +01:00
<LightText>
2022-02-23 19:18:37 +01:00
<Translate>
Choose a exchange from where the coins will be withdrawn. The
exchange will send the coins to this wallet after receiving a wire
transfer with the correct subject.
</Translate>
2021-11-15 15:18:58 +01:00
</LightText>
2021-09-20 19:05:40 +02:00
<p>
2021-11-16 17:59:53 +01:00
<Input>
<SelectList
2022-02-23 19:18:37 +01:00
label={<Translate>Currency</Translate>}
2021-11-16 17:59:53 +01:00
list={currencyMap}
name="currency"
value={currency}
onChange={changeCurrency}
/>
</Input>
<Input>
<SelectList
2022-02-23 19:18:37 +01:00
label={<Translate>Exchange</Translate>}
2021-11-16 17:59:53 +01:00
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-22 21:34:27 +01:00
<div style={{ display: "flex", justifyContent: "space-between" }}>
<LinkPrimary onClick={onAddExchange} style={{ marginLeft: "auto" }}>
2022-02-23 19:18:37 +01:00
<Translate>Add Exchange</Translate>
2021-11-22 21:34:27 +01:00
</LinkPrimary>
</div>
2021-11-15 15:18:58 +01:00
{currency && (
<InputWithLabel invalid={!!amount && !parsedAmount}>
2022-02-23 19:18:37 +01:00
<label>
<Translate>Amount</Translate>
</label>
2021-11-15 15:18:58 +01:00
<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!)}
>
2022-02-23 19:18:37 +01:00
<Translate>Start withdrawal</Translate>
2021-11-15 15:18:58 +01:00
</ButtonPrimary>
2021-09-20 19:05:40 +02:00
</footer>
</Fragment>
2021-09-20 19:05:40 +02:00
);
}