From 40845225289d0148df42ceeb4ca5290a50486f9d Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 10 Jan 2023 22:50:29 +0100 Subject: [PATCH] Fixed onTyping function being called on every type --- src/components/input.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/input.tsx b/src/components/input.tsx index 3fdb1e5..3a2de6e 100644 --- a/src/components/input.tsx +++ b/src/components/input.tsx @@ -39,6 +39,7 @@ function setSetIsText(id: string | undefined, isText: boolean, setIsText: Setter interface Input extends InputProps { leading?: JSX.Element, trailing?: JSX.Element, + onChange?: () => void, } export const Input: Component> = ( @@ -77,7 +78,7 @@ export const Input: Component> = ( return ( { leading } - + > = ( type={ type } placeholder={ placeholder ?? undefined } required={ required } - onInput={ () => setSetIsText(id, isText(), setIsText) } - onChange={ onChange /*TODO only called after ENTER*/ }/> + onInput={ () => { + setSetIsText(id, isText(), setIsText); + if (onChange) { + onChange(); + } + } } /> { trailing } ); @@ -107,7 +112,7 @@ function HoverTitle( transition-all duration-150 text-gray-600 dark:text-gray-400` } for={ htmlFor }>
{ title }
-
+
); }