import { h, VNode } from "preact"; import { useLayoutEffect, useRef, useState } from "preact/hooks"; export interface TextInputProps { label: string; grabFocus?: boolean; error?: string; tooltip?: string; bind: [string, (x: string) => void]; } export function TextInput(props: TextInputProps): VNode { const inputRef = useRef(null); useLayoutEffect(() => { if (props.grabFocus) { inputRef.current?.focus(); } }, [props.grabFocus]); const value = props.bind[0]; const [dirty, setDirty] = useState(false) const showError = dirty && props.error return (
{setDirty(true); props.bind[1]((e.target as HTMLInputElement).value)}} ref={inputRef} style={{ display: "block" }} />
{showError &&

{props.error}

}
); }