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

274 lines
7.9 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)
*/
import { AmountJson, Amounts } 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,
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";
import { useTranslationContext } from "../context/translation";
2022-03-17 19:00:34 +01:00
import { Pages } from "../NavigationBar";
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>;
initialCurrency?: string;
2021-09-20 19:05:40 +02:00
}
2022-03-17 19:00:34 +01:00
export function useComponentState(
exchangeList: Record<string, string>,
initialAmount: string | undefined,
initialCurrency: string | undefined,
) {
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]
: !initialCurrency && exchangeSelectList.length > 0
? exchangeSelectList[0]
: undefined;
2021-11-16 17:59:53 +01:00
2021-09-20 19:05:40 +02:00
const [exchange, setExchange] = useState(initialExchange || "");
2022-03-17 19:00:34 +01:00
const [currency, setCurrency] = useState(
initialExchange ? exchangeList[initialExchange] : "",
);
2021-11-16 17:59:53 +01:00
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("");
}
}
2022-03-17 19:00:34 +01:00
return {
initialExchange,
currency: {
list: currencyMap,
value: currency,
onChange: changeCurrency,
},
exchange: {
list: exchangeMap,
value: exchange,
onChange: changeExchange,
},
amount: {
value: amount,
onInput: (e: string) => setAmount(e),
},
parsedAmount,
};
}
2021-11-16 17:59:53 +01:00
2022-03-17 19:00:34 +01:00
interface InputHandler {
value: string;
onInput: (s: string) => void;
}
interface SelectInputHandler {
list: Record<string, string>;
value: string;
onChange: (s: string) => void;
}
export function CreateManualWithdraw({
initialAmount,
exchangeList,
error,
initialCurrency,
onCreate,
}: Props): VNode {
const { i18n } = useTranslationContext();
const state = useComponentState(exchangeList, initialAmount, initialCurrency);
if (!state.initialExchange) {
if (initialCurrency !== undefined) {
return (
<section>
<h2>
<i18n.Translate>
Manual Withdrawal for {initialCurrency}
</i18n.Translate>
</h2>
<LightText>
<i18n.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.
</i18n.Translate>
</LightText>
<Centered style={{ marginTop: 100 }}>
<BoldLight>
<i18n.Translate>
No exchange found for {initialCurrency}
</i18n.Translate>
</BoldLight>
<LinkPrimary
href={Pages.settings_exchange_add.replace(
":currency?",
initialCurrency,
)}
style={{ marginLeft: "auto" }}
>
<i18n.Translate>Add Exchange</i18n.Translate>
</LinkPrimary>
</Centered>
</section>
);
}
return (
<section>
2022-02-23 19:18:37 +01:00
<h2>
<i18n.Translate>Manual Withdrawal</i18n.Translate>
2022-02-23 19:18:37 +01:00
</h2>
<LightText>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
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.
</i18n.Translate>
</LightText>
<Centered style={{ marginTop: 100 }}>
2022-02-23 19:18:37 +01:00
<BoldLight>
<i18n.Translate>No exchange configured</i18n.Translate>
2022-02-23 19:18:37 +01:00
</BoldLight>
2022-03-17 19:00:34 +01:00
<LinkPrimary
href={Pages.settings_exchange_add.replace(":currency?", "")}
2022-03-17 19:00:34 +01:00
style={{ marginLeft: "auto" }}
>
<i18n.Translate>Add Exchange</i18n.Translate>
</LinkPrimary>
</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={<i18n.Translate>Can't create the reserve</i18n.Translate>}
2022-02-23 19:18:37 +01:00
description={error}
/>
)}
<h2>
<i18n.Translate>Manual Withdrawal</i18n.Translate>
2022-02-23 19:18:37 +01:00
</h2>
2021-11-15 15:18:58 +01:00
<LightText>
<i18n.Translate>
2022-02-23 19:18:37 +01:00
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.
</i18n.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
label={<i18n.Translate>Currency</i18n.Translate>}
2021-11-16 17:59:53 +01:00
name="currency"
2022-03-17 19:00:34 +01:00
{...state.currency}
2021-11-16 17:59:53 +01:00
/>
</Input>
<Input>
<SelectList
label={<i18n.Translate>Exchange</i18n.Translate>}
2022-03-17 19:00:34 +01:00
name="exchange"
{...state.exchange}
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" }}>
2022-03-17 19:00:34 +01:00
<LinkPrimary
href={Pages.settings_exchange_add.replace(":currency?", "")}
2022-03-17 19:00:34 +01:00
style={{ marginLeft: "auto" }}
>
<i18n.Translate>Add Exchange</i18n.Translate>
2021-11-22 21:34:27 +01:00
</LinkPrimary>
</div>
2022-03-17 19:00:34 +01:00
{state.currency.value && (
<InputWithLabel
invalid={!!state.amount.value && !state.parsedAmount}
>
2022-02-23 19:18:37 +01:00
<label>
<i18n.Translate>Amount</i18n.Translate>
2022-02-23 19:18:37 +01:00
</label>
2021-11-15 15:18:58 +01:00
<div>
2022-03-17 19:00:34 +01:00
<span>{state.currency.value}</span>
2021-11-15 15:18:58 +01:00
<input
type="number"
2022-03-17 19:00:34 +01:00
value={state.amount.value}
onInput={(e) => state.amount.onInput(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
2022-03-17 19:00:34 +01:00
disabled={!state.parsedAmount || !state.exchange.value}
onClick={() => onCreate(state.exchange.value, state.parsedAmount!)}
2021-11-15 15:18:58 +01:00
>
<i18n.Translate>Start withdrawal</i18n.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
);
}