TodoList.js 2.66 KB
Newer Older
Kim, Subin's avatar
Kim, Subin committed
1
2
import { useState, useEffect } from "react";
import { useParams } from "react-router-dom";
Kim, Subin's avatar
Kim, Subin committed
3
4
import TodoModal from "../components/Modal/TodoModal";
import TodoPostModal from "../components/Modal/TodoPostModal";
Kim, Subin's avatar
Kim, Subin committed
5
6
7
8
import todoApi from "../apis/todo.api";
import { useAuth } from "../utils/context";
import catchErrors from "../utils/catchErrors";
import moment from "moment";
9
10
11
import styles from "../components/Form/form.module.scss";

const TodoList = () => {
Kim, Subin's avatar
Kim, Subin committed
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
  const { user } = useAuth()
  const { date } = useParams()
  const [todoList, setTodoList] = useState([])
  const [selectTodo, setSelectTodo] = useState(null)
  const [error, setError] = useState("");

  useEffect(() => {
    getAll()
  }, [date])

  async function getAll() {
    try {
      setError("")
      const resList = await todoApi.getTodo(user.id, date)
      setTodoList(resList)
    } catch (error) {
      catchErrors(error, setError)
    }
  }

  async function delayTodo() {
    try {
      setError("")
      const nextDate = moment(date).add(1, 'day').format("YYYY-MM-DD")
      await todoApi.edit({ id: selectTodo.id, todoDate: nextDate }, user.id)
      getAll()
    } catch (error) {
      catchErrors(error, setError)
    }
  }

  async function delTodo(todoId) {
    try {
      setError("")
      await todoApi.remove(todoId, user.id)
      alert("해당 할일이 성공적으로 삭제되었습니다.")
      getAll()
    } catch (error) {
      catchErrors(error, setError)
    }
  }
53
54

  return (
Kim, Subin's avatar
Kim, Subin committed
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
    <div className={"mt-3 " + (todoList.length ? "d-flex" : "d-block")}>
      {todoList.length !== 0 ?
        todoList.map((todo, idx) => <>
          <div className="d-flex align-items-center" style={{ width: "75%" }}>
            <input className={`form-check-input rounded-0 shadow-none mt-0 ${styles.checkBox}`} type="checkbox" checked={todo.done} />
            <label className="form-check-label fs-5 ms-3 pe-2 text-nowrap" style={{ overflow: "hidden", textOverflow: "ellipsis" }}>{todo.todoTitle}</label>
          </div>
          <div className="d-flex justify-content-between" style={{ cursor: "pointer", width: "25%" }}>
            <i className="bi bi-arrow-right fs-5" data-bs-toggle="modal" data-bs-target="#postmodal" onClick={() => setSelectTodo(todo)}></i>
            <i className="bi bi-pencil-square fs-5" data-bs-toggle="modal" data-bs-target="#todomodal" onClick={() => setSelectTodo(todo)}></i>
            <i className="bi bi-trash fs-5" onClick={() => delTodo(todo.id)}></i>
          </div>
        </>) : <p className="text-center">등록된 할일이 없습니다.</p>}
      <TodoPostModal handleClick={delayTodo} />
      <TodoModal curDate={date} selectTodo={selectTodo} />
70
    </div>
71
72
73
74
  )
}

export default TodoList;