-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentBody.tsx
61 lines (56 loc) · 2.3 KB
/
ContentBody.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
53
54
55
56
57
58
59
60
61
import { TextField, Typography } from "@mui/material";
import React, { ChangeEvent, useCallback, useState } from "react";
import { wrapSmoothEditInput } from "smooth-edit";
import { SmoothTransition } from "smooth-transition";
const ContentBody = wrapSmoothEditInput(function ({
editMode,
editTrigger,
activateEditMode,
rootRef,
contentRef,
}) {
// enable edit mode when clicking on the title
const onTextFieldClick = useCallback(() => {
activateEditMode();
}, [activateEditMode]);
// content
const [content, setContent] = useState(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sodales dolor a pulvinar tempus. Curabitur eget auctor risus. Cras sed felis a lacus tincidunt porttitor. Maecenas laoreet eros eu gravida dignissim. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Etiam pretium consectetur orci, non efficitur elit mollis ut. Nam sit amet dictum sem. Suspendisse dignissim interdum elit, nec tincidunt enim feugiat vel. Maecenas facilisis nisi ipsum, vel pulvinar lectus placerat vitae. Sed vitae dolor in mauris suscipit condimentum."
);
const onChange = useCallback((event: ChangeEvent<HTMLInputElement>) => {
setContent(event.target.value);
}, []);
// render edit and view mode
return (
<SmoothTransition
ref={rootRef}
render={[
(state) => (
<Typography
ref={state != "leave" ? contentRef : undefined}
onClick={onTextFieldClick}
variant="body2"
color="text.secondary"
>
{content}
</Typography>
),
(state) => (
<TextField
inputRef={state != "leave" ? contentRef : undefined}
label="Body"
autoFocus={editTrigger}
fullWidth
multiline
value={content}
onChange={onChange}
/>
),
]}
active={!editMode ? 0 : 1}
duration={500}
/>
);
},
{});
export default ContentBody;