-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppointmentsCalendar.js
More file actions
55 lines (50 loc) · 1.95 KB
/
AppointmentsCalendar.js
File metadata and controls
55 lines (50 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
54
55
import React from 'react';
import FullCalendar from 'fullcalendar-reactwrapper';
import * as appointmentsService from '../services/appointmentsService';
import './AppointmentsCalendar.css';
import moment from 'moment';
class Calendar extends React.Component {
constructor(props) {
super(props)
this.state = {
appointmentList: []
, month: moment().format('MMMM YYYY')
, monthNumber: moment().format('M')
}
}
componentDidMount() {
appointmentsService.readAll()
.then(response => {
const appointmentInfo = response.item.map((data) => {
return {
title: data.description
, start: data.appointmentDate
}
})
this.setState({
appointmentList: appointmentInfo
})
})
}
render() {
return (
<React.Fragment>
<div className="calendar card fc fc-unthemed fc-ltr">
<div className='fc-header-toolbar fc-toolbar' data-calendar-month={this.state.monthNumber - 1}>
<div className='fc-view-container'>
<FullCalendar
id="appointmentCalendar"
navLinks={true} // can click day/week names to navigate views
editable={true}
eventLimit={true} // allow "more" link when too many events
events={this.state.appointmentList} // renders API appointment details
eventClick={function (calEvent, jsEvent, view, resourceObj) { alert(calEvent.title) }}
/>
</div>
</div>
</div>
</React.Fragment>
);
}
}
export default Calendar;