import { useState, useEffect, useRef } from "react"; import { useHistory } from "react-router-dom"; import CalendarBtn from "../Buttons/CalendarBtn"; import DatePickerModal from "../Modal/DatePickerModal"; import scheduleApi from "../../apis/schedule.api"; import { useAuth } from "../../utils/context"; import catchErrors from "../../utils/catchErrors"; import moment from 'moment'; import FullCalendar from '@fullcalendar/react'; import dayGridPlugin from '@fullcalendar/daygrid'; import interactionPlugin from "@fullcalendar/interaction"; import bootstrapPlugin from '@fullcalendar/bootstrap'; import '@fortawesome/fontawesome-free/css/all.css'; const Monthly = () => { const { user } = useAuth() const [initialDate, setInitialDate] = useState(moment().format('YYYY-MM-DD')) const [changeDate, setChangeDate] = useState(moment().format('YYYY-MM-DD')) const [show, setShow] = useState(false) const [scheduleList, setScheduleList] = useState([]) const [error, setError] = useState("") const calendarRef = useRef(null) const calenIconRef = useRef(null) let calendar = null const history = useHistory(); useEffect(() => { if (calendarRef && calendarRef.current) { calendar = calendarRef.current.getApi() } }) useEffect(() => { if (calenIconRef && calenIconRef.current) { calenIconRef.current.addEventListener('click', () => { calendar.today() let date = moment(calendar.getDate()).format('YYYY-MM-DD') setChangeDate(date) }) } return () => { if (calenIconRef && calenIconRef.current) { calenIconRef.current.removeEventListener('click', () => { calendar.today() let date = moment(calendar.getDate()).format('YYYY-MM-DD') setChangeDate(date) }) } } }, [calenIconRef.current]) useEffect(() => { calendar.gotoDate(changeDate) getAll() }, [changeDate]) useEffect(() => { calendar.removeAllEvents() calendar.addEventSource(scheduleList) }, [scheduleList]) async function getAll() { try { setError("") const { KU, individual } = await scheduleApi.getbyMonth(changeDate, user.id) setScheduleList([...KU, ...individual]) } catch (error) { catchErrors(error, setError) } } return ( <> {console.log("usdiuasd==",scheduleList)}
{ const weekList = ["일", "월", "화", "수", "목", "금", "토"] return weekList[date.dow] }} views={{ dayGridMonth: { dayMaxEvents: 3 } }} validRange={{ start: moment(initialDate).subtract(3, 'years').format('YYYY-MM[-01]'), end: moment(initialDate).add(3, 'years').add(1, 'months').format('YYYY-MM[-01]') }} customButtons={{ myCustomButton: { text: moment(changeDate).format('YYYY.MM'), click: () => { setShow(true) return