Monthly.js 5.06 KB
Newer Older
Kim, Subin's avatar
Monthly    
Kim, Subin committed
1
2
import { useState, useEffect, useRef } from "react";
import { useHistory } from "react-router-dom";
Kim, Subin's avatar
Kim, Subin committed
3
4
import CalendarBtn from "../Buttons/CalendarBtn";
import DatePickerModal from "../Modal/DatePickerModal";
Kim, Subin's avatar
context    
Kim, Subin committed
5
import scheduleApi from "../../apis/schedule.api";
Kim, Subin's avatar
Kim, Subin committed
6
7
import { useAuth } from "../../utils/context";
import catchErrors from "../../utils/catchErrors";
Kim, Subin's avatar
Monthly    
Kim, Subin committed
8
9
import moment from 'moment';
import FullCalendar from '@fullcalendar/react';
Kim, Subin's avatar
Monthly    
Kim, Subin committed
10
import dayGridPlugin from '@fullcalendar/daygrid';
Kim, Subin's avatar
Monthly    
Kim, Subin committed
11
12
13
import interactionPlugin from "@fullcalendar/interaction";
import bootstrapPlugin from '@fullcalendar/bootstrap';
import '@fortawesome/fontawesome-free/css/all.css';
Kim, Subin's avatar
Monthly    
Kim, Subin committed
14
15

const Monthly = () => {
Kim, Subin's avatar
context    
Kim, Subin committed
16
17
    const { user } = useAuth()
    console.log("msds==",user)
Kim, Subin's avatar
Monthly    
Kim, Subin committed
18
19
20
    const [initialDate, setInitialDate] = useState(moment().format('YYYY-MM-DD'))
    const [changeDate, setChangeDate] = useState(moment().format('YYYY-MM-DD'))
    const [show, setShow] = useState(false)
Kim, Subin's avatar
context    
Kim, Subin committed
21
22
    const [scheduleList, setScheduleList] = useState([])
    const [error, setError] = useState("")
Kim, Subin's avatar
Monthly    
Kim, Subin committed
23
    const calendarRef = useRef(null)
Kim, Subin's avatar
Kim, Subin committed
24
    const calenIconRef = useRef(null)
Kim, Subin's avatar
Monthly    
Kim, Subin committed
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
    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)
Kim, Subin's avatar
context    
Kim, Subin committed
55
        getAll()
Kim, Subin's avatar
Monthly    
Kim, Subin committed
56
57
    }, [changeDate])

Kim, Subin's avatar
context    
Kim, Subin committed
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
    useEffect(() => {
        calendar.addEventSource(scheduleList)
    }, [scheduleList])

    async function getAll() {
        try {
            setError("")
            console.log("home user",user)
            const resList = await scheduleApi.getbyMonth(changeDate, user.id)
            setScheduleList(resList)
        } catch (error) {
            catchErrors(error, setError)
        }
    }

Kim, Subin's avatar
Monthly    
Kim, Subin committed
73
    return (
Kim, Subin's avatar
Monthly    
Kim, Subin committed
74
        <>
Kim, Subin's avatar
context    
Kim, Subin committed
75
        {console.log("user scheduleList==",scheduleList)}
Kim, Subin's avatar
Monthly    
Kim, Subin committed
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
            <div ref={calenIconRef} className="position-absolute" style={{ top: "9px", right: "8px" }}>
                <CalendarBtn date={moment(initialDate).format('DD')} />
            </div>
            <FullCalendar
                ref={calendarRef}
                plugins={[dayGridPlugin, interactionPlugin, bootstrapPlugin]}
                initialView="dayGridMonth"
                initialDate={initialDate}
                headerToolbar={{
                    start: 'prev',
                    center: 'myCustomButton',
                    end: 'next'
                }}
                dayHeaderContent={(date) => {
                    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: () => {
                            setShow(true)
                            return <button className="btn btn-primary" type="button" data-bs-toggle="offcanvas" data-bs-target="#datePicker" aria-controls="datePicker" />
                        }
                    },
                    prev: {
                        icon: "fa-chevron-left",
                        click: () => {
                            calendar.prev()
                            let date = moment(calendar.getDate()).format('YYYY-MM-DD')
                            setChangeDate(date)
                        }
                    },
                    next: {
                        icon: "fa-chevron-right",
                        click: () => {
                            calendar.next()
                            let date = moment(calendar.getDate()).format('YYYY-MM-DD')
                            setChangeDate(date)
                        }
                    }
                }}
                dateClick={({ dateStr }) => history.push(`/schedule/${dateStr}`)}
                timeZone="local"
                themeSystem='bootstrap'
Kim, Subin's avatar
context    
Kim, Subin committed
125
                eventLimit="3"
Kim, Subin's avatar
Kim, Subin committed
126
                height='80vh'
Kim, Subin's avatar
Monthly    
Kim, Subin committed
127
128
129
            />
            <DatePickerModal initialDate={initialDate} changeDate={changeDate} setChangeDate={setChangeDate} show={show} setShow={setShow} />
        </>
Kim, Subin's avatar
Monthly    
Kim, Subin committed
130
131
132
133
    )
}

export default Monthly