import { useState, useEffect, useRef } from "react"; import CalendarBtn from "../Buttons/CalendarBtn"; import DatePickerModal from "../Modal/DatePickerModal"; import ScheduleModal from "../Modal/ScheduleModal"; import scheduleApi from "../../apis/schedule.api"; 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 AdminMonthly = () => { const [initialDate, setInitialDate] = useState(moment().format('YYYY-MM-DD')) const [changeDate, setChangeDate] = useState(moment().format('YYYY-MM-DD')) const [pickerShow, setPickerShow] = useState(false) const [dateShow, setDateShow] = useState({ date: moment().format('YYYY-MM-DD'), show: false }) const [scheduleList, setScheduleList] = useState([]) const [error, setError] = useState("") const calendarRef = useRef(null) const calenIconRef = useRef(null) let calendar = null useEffect(() => { if (calendarRef && calendarRef.current) { calendar = calendarRef.current.getApi() } }) // useEffect(() => { // getAll() // return () => { // getAll() // } // }, []) 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.addEventSource(scheduleList) }, [scheduleList]) async function getAll() { try { setError("") const resList = await scheduleApi.getbyMonth(changeDate) setScheduleList(resList) } catch (error) { catchErrors(error, setError) } } return ( <> {console.log("list==", scheduleList)}
{ const weekList = ["일", "월", "화", "수", "목", "금", "토"] return weekList[date.dow] }} 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: () => { setPickerShow(true) return }} timeZone="local" events={scheduleList, { color: 'crimson' }} eventLimit="3" themeSystem='bootstrap' height='78vh' /> ) } export default AdminMonthly