You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
937 B
React
34 lines
937 B
React
2 years ago
|
import { forwardRef, useEffect, useRef } from 'react';
|
||
|
|
||
|
export default forwardRef(function TextInput(
|
||
|
{ type = 'text', name, id, value, className, autoComplete, required, isFocused, handleChange },
|
||
|
ref
|
||
|
) {
|
||
|
const input = ref ? ref : useRef();
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (isFocused) {
|
||
|
input.current.focus();
|
||
|
}
|
||
|
}, []);
|
||
|
|
||
|
return (
|
||
|
<div className="flex flex-col items-start">
|
||
|
<input
|
||
|
type={type}
|
||
|
name={name}
|
||
|
id={id}
|
||
|
value={value}
|
||
|
className={
|
||
|
`border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm ` +
|
||
|
className
|
||
|
}
|
||
|
ref={input}
|
||
|
autoComplete={autoComplete}
|
||
|
required={required}
|
||
|
onChange={(e) => handleChange(e)}
|
||
|
/>
|
||
|
</div>
|
||
|
);
|
||
|
});
|