An error occurred while loading the file. Please try again.
-
Harsha authoredf3d1db70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { useState } from "react";
import { HeadingFour } from "../headings";
import styles from "./TextAreaField.module.css";
/**
* TextArea component renders
* textarea type questions
*/
interface TextAreaFieldProps {
label?: string;
placeholder?: string;
showLabel: boolean;
rows?: number;
changeHandler?: (event: any) => void;
showStatus?: boolean;
value?: string;
defaultValue?: string;
isReadOnly?: boolean;
isRequired?: boolean;
maxLength?: any;
}
export const TextAreaField = ({
label,
changeHandler,
placeholder,
showLabel,
showStatus,
value,
rows,
isReadOnly,
isRequired,
defaultValue,
maxLength
}: TextAreaFieldProps) => {
const [characterCount, setCharacterCount] = useState(0);
const updateCharacterCount = (e: any) => {
e.preventDefault();
setCharacterCount(e.target.value.length);
};
return (
<div className="">
<div className={`${styles.text_field_input}`}>
{showLabel && (
<>
<HeadingFour heading={label} />
<br />
</>
)}
<textarea
placeholder={placeholder}
rows={rows ? rows : 4}
className={`${styles.text_area_input}`}
onChange={changeHandler}
onKeyUp={(e) => {
updateCharacterCount(e);
}}
maxLength={maxLength?maxLength:200}
value={value}
defaultValue={defaultValue}
readOnly={isReadOnly ? true : false}
required={isRequired ? true : false}
/>
{showStatus && (
<p
className={`${styles.text_area_status} float-end`}
>{`${characterCount}/200 characters`}</p>
)}
</div>
</div>
);
};