N-FIN-7: add currency input component

This commit is contained in:
Markus Thielker 2024-03-11 00:36:06 +01:00
parent 756dcb5618
commit 8fce6de31d
No known key found for this signature in database

View file

@ -0,0 +1,70 @@
'use client';
import { useReducer } from 'react';
import { FormControl, FormField, FormItem, FormLabel, FormMessage } from '@/components/ui/form';
import { Input } from '@/components/ui/input';
import { UseFormReturn } from 'react-hook-form';
type TextInputProps = {
form: UseFormReturn<any>;
name: string;
label: string;
placeholder: string;
};
const moneyFormatter = Intl.NumberFormat('en-US', {
currency: 'EUR',
currencyDisplay: 'symbol',
currencySign: 'standard',
style: 'currency',
minimumFractionDigits: 2,
maximumFractionDigits: 2,
});
export default function CurrencyInput(props: TextInputProps) {
const initialValue = props.form.getValues()[props.name]
? moneyFormatter.format(props.form.getValues()[props.name] / 100)
: '';
const [value, setValue] = useReducer((_: any, next: string) => {
const digits = next.replace(/\D/g, '');
return moneyFormatter.format(Number(digits) / 100);
}, initialValue);
function handleChange(realChangeFn: Function, formattedValue: string) {
const digits = formattedValue.replace(/\D/g, '');
const realValue = Number(digits);
realChangeFn(realValue);
}
return (
<FormField
control={props.form.control}
name={props.name}
render={({field}) => {
field.value = value;
const _change = field.onChange;
return (
<FormItem>
<FormLabel>{props.label}</FormLabel>
<FormControl>
<Input
placeholder={props.placeholder}
type="text"
{...field}
onChange={(ev) => {
setValue(ev.target.value);
handleChange(_change, ev.target.value);
}}
value={value}
/>
</FormControl>
<FormMessage/>
</FormItem>
);
}}
/>
);
}