diff --git a/src/components/form/paymentForm.tsx b/src/components/form/paymentForm.tsx index 5e9c44d..38bbc4d 100644 --- a/src/components/form/paymentForm.tsx +++ b/src/components/form/paymentForm.tsx @@ -67,9 +67,8 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas }; }) ?? []; - const payeeRef = useRef(null); - const categoryRef = useRef(null); - const noteRef = useRef(null); + const payeeRef = useRef({} as HTMLInputElement); + const categoryRef = useRef({} as HTMLInputElement); return (
@@ -147,8 +146,11 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas + {...field} + onChange={(e) => { + field.onChange(e); + payeeRef && payeeRef.current.focus(); + }}/> @@ -165,15 +167,18 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas { field.onChange(e); if (e && e.target.value) { const entity = entities.find((entity) => entity.id === Number(e.target.value)); - console.log(entity?.defaultCategoryId); + + // only focus category input if payee has no default category if (entity?.defaultCategoryId !== null) { form.setValue('categoryId', entity?.defaultCategoryId); + setTimeout(() => categoryRef.current.blur(), 0); + } else { + categoryRef && categoryRef.current.focus(); } } }}/> @@ -193,7 +198,6 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas diff --git a/src/components/ui/auto-complete-input.tsx b/src/components/ui/auto-complete-input.tsx index e6e3d46..971b41a 100644 --- a/src/components/ui/auto-complete-input.tsx +++ b/src/components/ui/auto-complete-input.tsx @@ -9,7 +9,6 @@ import { Button } from '@/components/ui/button'; export interface AutoCompleteInputProps extends React.InputHTMLAttributes { items: { label: string, value: any }[]; - next?: React.RefObject; } const AutoCompleteInput = React.forwardRef( @@ -32,7 +31,6 @@ const AutoCompleteInput = React.forwardRef) { - props.onChange?.(undefined as any); const value = e.target.value; setFilteredItems(props?.items?.filter((item) => { @@ -41,19 +39,26 @@ const AutoCompleteInput = React.forwardRef 0); + + // on typing only the internal state is changed while the form state is + // set to undefined. This way only the predefined items are actual values + // for the form validation + props.onChange?.(undefined as any); } + // since typing changes the internal values and therefor the selected value, this effect + // handles every filteredItems change to check if only one item is left useEffect(() => { + // only one item is left and the last character was a letter or digit. + // the last condition has to be checked to make it possible to use the backspace if (filteredItems.length === 1 && /^[a-zA-Z0-9]$/.test(lastKey)) { setValue(filteredItems[0].label); setOpen(false); props.onChange?.({target: {value: filteredItems[0].value}} as any); - props.next && props.next.current?.focus(); } }, [filteredItems]); useEffect(() => { - console.log('Prop value changed', value, props.value); if (props.value) { setValue(getNameOfPropValue()); } else { @@ -105,7 +110,6 @@ const AutoCompleteInput = React.forwardRef { props.onChange?.({target: {value: item.value}} as any); - props.next && props.next.current?.focus(); setValue(item.label); setOpen(false); }}