/*
This file is part of GNU Taler
(C) 2021-2024 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
*/
/**
*
* @author Sebastian Javier Marchano (sebasjm)
*/
import { Amounts, TalerMerchantApi } from "@gnu-taler/taler-util";
import { useTranslationContext } from "@gnu-taler/web-util/browser";
import { h, VNode } from "preact";
import { useCallback, useState } from "preact/hooks";
import { undefinedIfEmpty } from "../../utils/table.js";
import { FormProvider } from "./FormProvider.js";
import { Input } from "./Input.js";
import { InputGroup } from "./InputGroup.js";
import { InputProps, useField } from "./useField.js";
export interface Props extends InputProps {
isValid?: (e: any) => boolean;
}
type Entity = TalerMerchantApi.Tax;
export function InputTaxes({ name, label }: Props): VNode {
const { value: taxes, onChange } = useField(name);
const { i18n } = useTranslationContext();
const [value, valueHandler] = useState>({});
const errors = undefinedIfEmpty({
name: !value.name ? i18n.str`Required` : undefined,
tax: !value.tax
? i18n.str`Required`
: Amounts.parse(value.tax) === undefined
? i18n.str`Invalid`
: undefined,
});
const hasErrors = errors !== undefined;
const submit = useCallback((): void => {
onChange([value as any, ...taxes] as any);
valueHandler({});
}, [value]);
//FIXME: translating plural singular
return (
0 && (
This product has {taxes.length} applicable taxes configured.
))}
{!taxes.length && i18n.str`No taxes configured for this product.`}
name="tax"
label={i18n.str`Amount`}
tooltip={i18n.str`Taxes can be in currencies that differ from the main currency used by the merchant.`}
>
Enter currency and value separated with a colon, e.g.
"USD:2.3".
name="name"
label={i18n.str`Description`}
tooltip={i18n.str`Legal name of the tax, e.g. VAT or import duties.`}
/>