-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskBox.jsx
71 lines (62 loc) · 1.51 KB
/
TaskBox.jsx
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
import {
Box,
Button,
Checkbox,
Container,
Flex,
Input,
Text,
} from "@chakra-ui/react";
import React, { useState } from "react";
import { DeleteIcon, EditIcon } from "@chakra-ui/icons";
const TaskBox = ({
myTaskList,
setmyTaskList,
task,
status,
editId,
id,
handleDelete,
handleEdit,
edit,
}) => {
const [taskEdit, setTaskEdit] = useState("");
const handleSubmit = (e) => {
e.preventDefault();
const editedList = myTaskList.map((el) => {
if (el.id === editId) {
return { ...el, task: taskEdit };
}
return el;
});
setmyTaskList(editedList);
handleEdit(null); // Reset edit mode
};
return (
<Box my={2} p={3} bgColor={ status ? "#588157" : "#1d2d44"} w={"100%"}>
{edit && id == editId ? (
<form onSubmit={handleSubmit}>
<Flex justify={"space-between"}>
<Input w={"90%"} onChange={(e) => setTaskEdit(e.target.value)} />
<Button ml={4} type="submit">
Edit
</Button>
</Flex>
</form>
) : (
<Flex w={"100%"} justify={"space-between"}>
<Text>{task}</Text>
<Box>
<Button mr={1} onClick={() => handleEdit(id)}>
<EditIcon />
</Button>
<Button onClick={() => handleDelete(id)}>
<DeleteIcon />
</Button>
</Box>
</Flex>
)}
</Box>
);
};
export default TaskBox;