Monthly.js 5.29 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
    const { user } = useAuth()
Kim, Subin's avatar
Monthly    
Kim, Subin committed
17
18
19
    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
20
21
    const [scheduleList, setScheduleList] = useState([])
    const [error, setError] = useState("")
Kim, Subin's avatar
Monthly    
Kim, Subin committed
22
    const calendarRef = useRef(null)
Kim, Subin's avatar
Kim, Subin committed
23
    const calenIconRef = useRef(null)
Kim, Subin's avatar
Monthly    
Kim, Subin committed
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
53
    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
54
        getAll()
Kim, Subin's avatar
Monthly    
Kim, Subin committed
55
56
    }, [changeDate])

Kim, Subin's avatar
context    
Kim, Subin committed
57
    useEffect(() => {
Kim, Subin's avatar
Kim, Subin committed
58
        calendar.removeAllEvents()
Kim, Subin's avatar
context    
Kim, Subin committed
59
60
61
62
63
64
        calendar.addEventSource(scheduleList)
    }, [scheduleList])

    async function getAll() {
        try {
            setError("")
Kim, Subin's avatar
Kim, Subin committed
65
66
            const { KU, individual } = await scheduleApi.getbyMonth(changeDate, user.id)
            setScheduleList([...KU, ...individual])
Kim, Subin's avatar
context    
Kim, Subin committed
67
68
69
70
71
        } catch (error) {
            catchErrors(error, setError)
        }
    }

Kim, Subin's avatar
Monthly    
Kim, Subin committed
72
    return (
Kim, Subin's avatar
Monthly    
Kim, Subin committed
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
        <>
            <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]
                }}
Kim, Subin's avatar
more    
Kim, Subin committed
91
92
93
94
95
                views={{
                    dayGridMonth: {
                        dayMaxEvents: 3
                    }
                }}
Kim, Subin's avatar
Monthly    
Kim, Subin committed
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
125
126
127
                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
more    
Kim, Subin committed
128
                eventLimit={3}
Kim, Subin's avatar
Kim, Subin committed
129
130
                moreLinkContent={arg => arg.shortText}
                moreLinkClick={info => history.push(`/schedule/${moment(info.date).format('YYYY-MM-DD')}`)}
Kim, Subin's avatar
Kim, Subin committed
131
                height='80vh'
Kim, Subin's avatar
Monthly    
Kim, Subin committed
132
133
134
            />
            <DatePickerModal initialDate={initialDate} changeDate={changeDate} setChangeDate={setChangeDate} show={show} setShow={setShow} />
        </>
Kim, Subin's avatar
Monthly    
Kim, Subin committed
135
136
137
138
    )
}

export default Monthly