PlanItem.js 2.28 KB
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { useState } from "react";
import { Link } from "react-router-dom";
import catchErrors from "../../utils/catchErrors.js";
import styles from "../Schedule/schedule.module.scss";
import styles2 from "./studyplan.module.scss";

const PlanItem = () => {
  const [error, setError] = useState("")

  async function delSchedule() {
    try {
      setError("")
      alert("해당 일정을 삭제했습니다.")
      window.location.reload()
    } catch (error) {
      catchErrors(error, setError)
    }
  }

  return (
Choi Ga Young's avatar
Choi Ga Young committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    <div className="d-flex">
      <input className={`form-check-input rounded-0 shadow-none mt-1 ${styles2.checkBox}`} style={{ width: "5%" }} type="checkbox" />
      <div className="accordion-item border-0 col" style={{ width: "95%" }}>
        <button className={`d-flex flex-column align-items-start accordion-button collapsed bg-white shadow-none px-0 pt-0 ps-3 ${styles.activeBtn}`} type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
          <h5 className={`accordion-header ${styles.title}`} id="flush-headingOne">
            과제02 제출하기, 코딩과제 있음ssssssssss
          </h5>
          <p className={`text-secondary mb-0 ${styles.time}`}>~21.09.30 16:00</p>
        </button>
        <div id="flush-collapseOne" className="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="S#addplanlist">
          <div className={`accordion-body px-0 pt-2 pb-0 mb-3 ${styles.textBox}`}>
            <div className="d-flex align-items-start fw-bold">
              <i class="bi bi-clock-history fs-5"></i>
              <div className="col-11 ms-2 align-self-center">
                21.09.30 16:00
Choi Ga Young's avatar
Choi Ga Young committed
36
37
              </div>
            </div>
Choi Ga Young's avatar
Choi Ga Young committed
38
39
40
41
42
            컴퓨터의 프로세스  체크하는 프로그램 만들기 과제<br />결과화면 캡쳐해서 exe파일이랑 함께 압축하여 제출하기
            <div className="d-flex justify-content-end mt-3">
              <Link className="btn btn-light btn-sm border-dark" to="/studyplan/edit">수정</Link>
              <button type="button" className="btn btn-crimson btn-sm ms-2" onClick={delSchedule}>삭제</button>
            </div>
Choi Ga Young's avatar
Choi Ga Young committed
43
44
45
          </div>
        </div>
      </div>
Choi Ga Young's avatar
Choi Ga Young committed
46
    </div>
Choi Ga Young's avatar
Choi Ga Young committed
47
48
49
50
  )
}

export default PlanItem;