src/components/month/calendarMonthView.component.ts
Shows all events on a given month. Example usage:
1
2
3
4
<mwl-calendar-month-view
[viewDate]="viewDate"
[events]="events">
</mwl-calendar-month-view>
selector | mwl-calendar-month-view |
template | <div class="cal-month-view"> |
activeDayIsOpen
|
Whether the events list for the day of the
Type:
Default value: |
dayModifier
|
A function that will be called before each cell is rendered. The first argument will contain the calendar cell.
Type: |
events
|
An array of events to display on view
Type: |
locale
|
The locale used to format dates
Type: |
refresh
|
An observable that when emitted on will re-render the current view
Type: |
tooltipPlacement
|
The placement of the event tooltip
Type:
Default value: |
viewDate
|
The current view date
Type: |
weekStartsOn
|
The start number of the week
Type: |
dayClicked
|
Called when the day cell is clicked $event type: any
|
eventClicked
|
Called when the event title is clicked $event type: any
|
eventTimesChanged
|
Called when an event is dragged and dropped $event type: any
|
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
import {
Component,
OnChanges,
Input,
Output,
EventEmitter,
ChangeDetectorRef,
OnInit,
OnDestroy,
LOCALE_ID,
Inject
} from '@angular/core';
import {
CalendarEvent,
WeekDay,
MonthView,
getWeekViewHeader,
getMonthView,
MonthViewDay
} from 'calendar-utils';
import { Subject } from 'rxjs/Subject';
import { Subscription } from 'rxjs/Subscription';
import isSameDay from 'date-fns/is_same_day';
import setDate from 'date-fns/set_date';
import setMonth from 'date-fns/set_month';
import setYear from 'date-fns/set_year';
import getDate from 'date-fns/get_date';
import getMonth from 'date-fns/get_month';
import getYear from 'date-fns/get_year';
import differenceInSeconds from 'date-fns/difference_in_seconds';
import addSeconds from 'date-fns/add_seconds';
import { CalendarEventTimesChangedEvent } from '../../interfaces/calendarEventTimesChangedEvent.interface';
/**
* Shows all events on a given month. Example usage:
*
* ```
* <mwl-calendar-month-view
* [viewDate]="viewDate"
* [events]="events">
* </mwl-calendar-month-view>
* ```
*/
@Component({
selector: 'mwl-calendar-month-view',
template: `
<div class="cal-month-view">
<div class="cal-cell-row cal-header">
<div class="cal-cell" *ngFor="let header of columnHeaders">
{{ header.date | calendarDate:'monthViewColumnHeader':locale }}
</div>
</div>
<div class="cal-days">
<div *ngFor="let rowIndex of view.rowOffsets">
<div class="cal-cell-row">
<mwl-calendar-month-cell
*ngFor="let day of view.days | slice : rowIndex : rowIndex + 7"
[class.cal-drag-over]="day.dragOver"
[day]="day"
[openDay]="openDay"
[locale]="locale"
[tooltipPlacement]="tooltipPlacement"
(click)="dayClicked.emit({day: day})"
(highlightDay)="toggleDayHighlight($event.event, true)"
(unhighlightDay)="toggleDayHighlight($event.event, false)"
mwlDroppable
(dragEnter)="day.dragOver = true"
(dragLeave)="day.dragOver = false"
(drop)="day.dragOver = false; eventDropped(day, $event.dropData.event)"
(eventClicked)="eventClicked.emit({event: $event.event})">
</mwl-calendar-month-cell>
</div>
<mwl-calendar-open-day-events
[isOpen]="openRowIndex === rowIndex"
[events]="openDay?.events"
(eventClicked)="eventClicked.emit({event: $event.event})">
</mwl-calendar-open-day-events>
</div>
</div>
</div>
`
})
export class CalendarMonthViewComponent implements OnChanges, OnInit, OnDestroy {
/**
* The current view date
*/
@Input() viewDate: Date;
/**
* An array of events to display on view
*/
@Input() events: CalendarEvent[] = [];
/**
* Whether the events list for the day of the `viewDate` option is visible or not
*/
@Input() activeDayIsOpen: boolean = false;
/**
* A function that will be called before each cell is rendered. The first argument will contain the calendar cell.
* If you add the `cssClass` property to the cell it will add that class to the cell in the template
*/
@Input() dayModifier: Function;
/**
* An observable that when emitted on will re-render the current view
*/
@Input() refresh: Subject<any>;
/**
* The locale used to format dates
*/
@Input() locale: string;
/**
* The placement of the event tooltip
*/
@Input() tooltipPlacement: string = 'top';
/**
* The start number of the week
*/
@Input() weekStartsOn: number;
/**
* Called when the day cell is clicked
*/
@Output() dayClicked: EventEmitter<{day: MonthViewDay}> = new EventEmitter<{day: MonthViewDay}>();
/**
* Called when the event title is clicked
*/
@Output() eventClicked: EventEmitter<{event: CalendarEvent}> = new EventEmitter<{event: CalendarEvent}>();
/**
* Called when an event is dragged and dropped
*/
@Output() eventTimesChanged: EventEmitter<CalendarEventTimesChangedEvent> = new EventEmitter<CalendarEventTimesChangedEvent>();
/**
* @hidden
*/
columnHeaders: WeekDay[];
/**
* @hidden
*/
view: MonthView;
/**
* @hidden
*/
openRowIndex: number;
/**
* @hidden
*/
openDay: MonthViewDay;
/**
* @hidden
*/
refreshSubscription: Subscription;
/**
* @hidden
*/
constructor(private cdr: ChangeDetectorRef, @Inject(LOCALE_ID) locale: string) {
this.locale = locale;
}
/**
* @hidden
*/
ngOnInit(): void {
if (this.refresh) {
this.refreshSubscription = this.refresh.subscribe(() => {
this.refreshAll();
this.cdr.markForCheck();
});
}
}
/**
* @hidden
*/
ngOnChanges(changes: any): void {
if (changes.viewDate) {
this.refreshHeader();
}
if (changes.viewDate || changes.events) {
this.refreshBody();
}
if (changes.activeDayIsOpen || changes.viewDate || changes.events) {
this.checkActiveDayIsOpen();
}
}
/**
* @hidden
*/
ngOnDestroy(): void {
if (this.refreshSubscription) {
this.refreshSubscription.unsubscribe();
}
}
/**
* @hidden
*/
toggleDayHighlight(event: CalendarEvent, isHighlighted: boolean): void {
this.view.days.forEach(day => {
if (isHighlighted && day.events.indexOf(event) > -1) {
day.backgroundColor = event.color.secondary;
} else {
delete day.backgroundColor;
}
});
}
/**
* @hidden
*/
eventDropped(day: MonthViewDay, event: CalendarEvent): void {
const year: number = getYear(day.date);
const month: number = getMonth(day.date);
const date: number = getDate(day.date);
const newStart: Date = setYear(setMonth(setDate(event.start, date), month), year);
let newEnd: Date;
if (event.end) {
const secondsDiff: number = differenceInSeconds(newStart, event.start);
newEnd = addSeconds(event.end, secondsDiff);
}
this.eventTimesChanged.emit({event, newStart, newEnd});
}
private refreshHeader(): void {
this.columnHeaders = getWeekViewHeader({
viewDate: this.viewDate,
weekStartsOn: this.weekStartsOn
});
}
private refreshBody(): void {
this.view = getMonthView({
events: this.events,
viewDate: this.viewDate,
weekStartsOn: this.weekStartsOn
});
if (this.dayModifier) {
this.view.days.forEach(day => this.dayModifier(day));
}
}
private checkActiveDayIsOpen(): void {
if (this.activeDayIsOpen === true) {
this.openDay = this.view.days.find(day => isSameDay(day.date, this.viewDate));
const index: number = this.view.days.indexOf(this.openDay);
this.openRowIndex = Math.floor(index / 7) * 7;
} else {
this.openRowIndex = null;
this.openDay = null;
}
}
private refreshAll(): void {
this.refreshHeader();
this.refreshBody();
this.checkActiveDayIsOpen();
}
}