From ed49ad4ce7d09b1a582768b4b8e6dba7ddc6997d Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Wed, 25 Dec 2024 17:56:41 +0100 Subject: [PATCH 1/2] N-FIN-86: fix payor input always focus next --- src/components/form/paymentForm.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/form/paymentForm.tsx b/src/components/form/paymentForm.tsx index 38bbc4d..87bacb1 100644 --- a/src/components/form/paymentForm.tsx +++ b/src/components/form/paymentForm.tsx @@ -69,6 +69,7 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas const payeeRef = useRef({} as HTMLInputElement); const categoryRef = useRef({} as HTMLInputElement); + const submitRef = useRef({} as HTMLButtonElement); return (
@@ -149,7 +150,9 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas {...field} onChange={(e) => { field.onChange(e); - payeeRef && payeeRef.current.focus(); + if (e && e.target.value) { + payeeRef && payeeRef.current.focus(); + } }}/> From 5d8554068c8dbe4f68aa2ac68ed547ba67ff6edd Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Wed, 25 Dec 2024 17:59:09 +0100 Subject: [PATCH 2/2] N-FIN-86: focus submit button after last input filled --- src/components/form/paymentForm.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/components/form/paymentForm.tsx b/src/components/form/paymentForm.tsx index 87bacb1..3963d75 100644 --- a/src/components/form/paymentForm.tsx +++ b/src/components/form/paymentForm.tsx @@ -179,7 +179,7 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas // only focus category input if payee has no default category if (entity?.defaultCategoryId !== null) { form.setValue('categoryId', entity?.defaultCategoryId); - setTimeout(() => categoryRef.current.blur(), 0); + submitRef && submitRef.current.focus(); } else { categoryRef && categoryRef.current.focus(); } @@ -201,7 +201,14 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas + {...field} + onChange={(e) => { + field.onChange(e); + if (e && e.target.value) { + submitRef && submitRef.current.focus(); + } + }} + /> @@ -223,7 +230,8 @@ export default function PaymentForm({value, entities, categories, onSubmit, clas )} /> - + );