-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextarea.tsx
52 lines (48 loc) · 1.44 KB
/
Textarea.tsx
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
import { Styles, withBEM } from "@digitalentities/react-hook-bem";
import React, { useCallback } from "react";
import { wrapSmoothEditInput } from "smooth-edit";
import {
UnstyledTextareaAutosize,
UnstyledTextareaAutosizeElement,
} from "unstyled-textarea-autosize";
import { useRefWithForwarding } from "use-ref-with-forwarding";
import styles from "./Textarea.module.scss";
const $UnstyledTextareaAutosize = withBEM(UnstyledTextareaAutosize);
export const FormTextarea = wrapSmoothEditInput<{
value: string;
onChange: (value: string) => void;
}>(function FormTextarea({
value,
onChange,
editMode,
activateEditMode,
rootRef,
contentRef,
}) {
// reference to the root element
const ref = useRefWithForwarding<UnstyledTextareaAutosizeElement | null>(
null,
[rootRef, contentRef]
);
// activate edit mode when the textarea element is focused
const onFocus = useCallback(() => {
activateEditMode();
}, [activateEditMode]);
// render the unstyled textarea element
return (
<Styles value={styles}>
<$UnstyledTextareaAutosize
ref={ref}
$block="textarea"
$modifier={{
"edit-mode": editMode,
}}
spellCheck={false}
onFocus={onFocus}
value={value}
onValueChange={onChange}
/>
</Styles>
);
},
{});