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

283 lines
8.4 KiB
TypeScript
Raw Normal View History

2021-11-15 15:18:58 +01:00
/*
This file is part of GNU Taler
2022-06-06 17:05:26 +02:00
(C) 2022 Taler Systems S.A.
2021-11-15 15:18:58 +01:00
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";
2022-03-29 04:41:07 +02:00
import { ErrorMessage } from "../components/ErrorMessage.js";
import { SelectList } from "../components/SelectList.js";
2021-11-15 15:18:58 +01:00
import {
BoldLight,
Centered,
2021-11-15 15:18:58 +01:00
Input,
InputWithLabel,
LightText,
2021-11-22 21:34:27 +01:00
LinkPrimary,
SubTitle,
2022-03-29 04:41:07 +02:00
} from "../components/styled/index.js";
import { useTranslationContext } from "../context/translation.js";
2022-06-01 20:47:47 +02:00
import { Button } from "../mui/Button.js";
2022-04-22 21:10:21 +02:00
import { SelectFieldHandler, TextFieldHandler } from "../mui/handlers.js";
2022-03-29 04:41:07 +02:00
import { Pages } from "../NavigationBar.js";
2021-09-20 19:05:40 +02:00
export interface Props {
error: string | undefined;
initialAmount?: string;
exchangeUrlWithCurrency: 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
}
export interface State {
noExchangeFound: boolean;
parsedAmount: AmountJson | undefined;
amount: TextFieldHandler;
currency: SelectFieldHandler;
exchange: SelectFieldHandler;
}
2022-03-17 19:00:34 +01:00
export function useComponentState(
exchangeUrlWithCurrency: Record<string, string>,
2022-03-17 19:00:34 +01:00
initialAmount: string | undefined,
initialCurrency: string | undefined,
): State {
const exchangeSelectList = Object.keys(exchangeUrlWithCurrency);
const currencySelectList = Object.values(exchangeUrlWithCurrency);
2021-11-16 17:59:53 +01:00
const exchangeMap = exchangeSelectList.reduce(
(p, c) => ({ ...p, [c]: `${c} (${exchangeUrlWithCurrency[c]})` }),
2021-11-16 17:59:53 +01:00
{} as Record<string, string>,
);
const currencyMap = currencySelectList.reduce(
(p, c) => ({ ...p, [c]: c }),
{} as Record<string, string>,
);
const foundExchangeForCurrency = exchangeSelectList.findIndex(
(e) => exchangeUrlWithCurrency[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 ? exchangeUrlWithCurrency[initialExchange] : "",
2022-03-17 19:00:34 +01:00
);
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
2022-04-22 21:10:21 +02:00
async function changeExchange(exchange: string): Promise<void> {
2021-11-16 17:59:53 +01:00
setExchange(exchange);
setCurrency(exchangeUrlWithCurrency[exchange]);
2021-11-16 17:59:53 +01:00
}
2022-04-22 21:10:21 +02:00
async function changeCurrency(currency: string): Promise<void> {
2021-11-16 17:59:53 +01:00
setCurrency(currency);
const found = Object.entries(exchangeUrlWithCurrency).find(
(e) => e[1] === currency,
);
2021-11-16 17:59:53 +01:00
if (found) {
setExchange(found[0]);
} else {
setExchange("");
}
}
2022-03-17 19:00:34 +01:00
return {
noExchangeFound: initialExchange === undefined,
2022-03-17 19:00:34 +01:00
currency: {
list: currencyMap,
value: currency,
onChange: changeCurrency,
},
exchange: {
list: exchangeMap,
value: exchange,
onChange: changeExchange,
},
amount: {
value: amount,
2022-04-22 21:10:21 +02:00
onInput: async (e: string) => setAmount(e),
2022-03-17 19:00:34 +01:00
},
parsedAmount,
};
}
2021-11-16 17:59:53 +01:00
2022-03-17 19:00:34 +01:00
export function CreateManualWithdraw({
initialAmount,
exchangeUrlWithCurrency,
2022-03-17 19:00:34 +01:00
error,
initialCurrency,
onCreate,
}: Props): VNode {
const { i18n } = useTranslationContext();
const state = useComponentState(
exchangeUrlWithCurrency,
initialAmount,
initialCurrency,
);
2022-03-17 19:00:34 +01:00
if (state.noExchangeFound) {
if (initialCurrency) {
return (
<section>
<SubTitle>
<i18n.Translate>
Manual Withdrawal for {initialCurrency}
</i18n.Translate>
</SubTitle>
<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
2022-06-02 17:20:36 +02:00
href={Pages.settingsExchangeAdd({ currency: initialCurrency })}
style={{ marginLeft: "auto" }}
>
<i18n.Translate>Add Exchange</i18n.Translate>
</LinkPrimary>
</Centered>
</section>
);
}
return (
<section>
<SubTitle>
2022-08-29 16:32:07 +02:00
<i18n.Translate>
Manual Withdrawal for {state.currency.value}
</i18n.Translate>
</SubTitle>
<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
2022-06-02 17:20:36 +02:00
href={Pages.settingsExchangeAdd({})}
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&apos;t create the reserve</i18n.Translate>
}
2022-02-23 19:18:37 +01:00
description={error}
/>
)}
<SubTitle>
2022-08-29 16:32:07 +02:00
<i18n.Translate>
Manual Withdrawal for {state.currency.value}
</i18n.Translate>
</SubTitle>
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
2022-06-02 17:20:36 +02:00
href={Pages.settingsExchangeAdd({})}
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 />
2022-06-01 20:47:47 +02:00
<Button
variant="contained"
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>
2022-06-01 20:47:47 +02:00
</Button>
2021-09-20 19:05:40 +02:00
</footer>
</Fragment>
2021-09-20 19:05:40 +02:00
);
}