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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
import { useEffect, useRef, useState } from "react";
import Form from "../../commons/Form";
import Input from "../../commons/Input";
function Headline({ id, text, fontSize, xPos, yPos, setHeadlines }) {
const inputRef = useRef(null);
const [isEditing, setIsEditing] = useState(false);
useEffect(() => {
isEditing && inputRef.current.focus();
});
const [inputValue, setInputValue] = useState(text);
useEffect(() => {
setInputValue(text);
}, [text]);
const getXPos = () => {
let styles = {};
switch (xPos) {
case "Left":
styles = { gridColumn: 1, textAlign: "left" };
break;
case "Right":
styles = { gridColumn: 2, textAlign: "right" };
break;
case "Center":
styles = {
gridColumnStart: 1,
gridColumnEnd: "span 2",
justifySelf: "center",
textAlign: "center",
};
break;
default:
break;
}
return styles;
};
const getYPos = () => {
let styles = {};
switch (yPos) {
case "Top":
styles = { gridRow: 1 };
break;
case "Bottom":
styles = { gridRow: 3, alignSelf: "end" };
break;
case "Middle":
styles = { gridRow: 2, alignSelf: "center" };
break;
default:
break;
}
return styles;
};
const styles = {
fontSize: fontSize,
...getYPos(),
...getXPos(),
};
const onSubmit = (e) => {
e.preventDefault();
setIsEditing(false);
};
const updateText = (e) => {
setInputValue(e.target.value);
};
useEffect(() => {
setHeadlines((previous) => {
return previous.map((headline) => {
if (headline.id !== id) return headline;
return { ...headline, text: inputValue };
});
});
}, [setHeadlines, id, inputValue]);
useEffect(() => {
setHeadlines((previous) => {
return previous.map((headline) => {
if (headline.id !== id) return headline;
return { ...headline, text: inputValue };
});
});
}, [setHeadlines, id, inputValue]);
const onBlur = () => {
setIsEditing(false);
};
return (
<>
{isEditing ? (
<Form onSubmitHandler={onSubmit} styles={styles}>
<Input
value={inputValue}
ref={inputRef}
onChangeHandler={updateText}
onBlurHandler={onBlur}
additionalClasses="meme-preview__headline"
/>
</Form>
) : (
<p
className="meme-preview__headline"
onClick={() => setIsEditing(true)}
style={styles}
>
{inputValue}
</p>
)}
</>
);
}
export default Headline;
|