-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalendar.js
500 lines (444 loc) · 15.7 KB
/
calendar.js
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
import { getDaysAndHours } from './lookUpDaysHours.js';
export default class Calendar {
constructor(events) {
this._validateEvents(events);
this.events = this._parseEvents(events);
this.currentDate = new Date();
this._scrollListener();
this._addHeaderButtonEventListeners();
this.renderAllDayRow();
this.renderCalendarBody();
this.renderCalendarHours();
this.render();
}
setDate(date) {
this.currentDate.setDate(date);
}
getDate() {
return this.currentDate;
}
getMonth() {
return this.currentDate.getMonth();
}
getTitle() {
return document.getElementById('calendar-title');
}
setTitle() {
const monthNames = [
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December'
];
const titleMonth = document.createElement('span');
titleMonth.classList.add('calendar-title-month');
titleMonth.innerText = monthNames[this.getMonth()];
const titleYear = document.createElement('span');
titleYear.classList.add('calendar-title-year');
titleYear.innerText = this.getDate().getFullYear();
this.getTitle().innerHTML = '';
this.getTitle().appendChild(titleMonth);
this.getTitle().appendChild(titleYear);
}
render() {
this.setTitle();
this.renderDays();
this.renderEvents();
}
renderEvents() {
this._resetAllColumns();
const thisWeekEvents = this.events.filter(event => {
return this._isExistInThisWeek(event.dateFrom, event.dateTo);
});
thisWeekEvents.forEach(event => {
this._renderEvent(event);
});
}
renderDays() {
const days = document.getElementById('calendar-days');
days.innerHTML = '';
const timelineColumn = document.createElement('div');
timelineColumn.classList.add('calendar-timeline-column');
days.appendChild(timelineColumn);
let monday = this._getMonday(this.getDate());
for (let i = 0; i < 7; i++) {
const day = document.createElement('div');
day.classList.add('calendar-day');
const dayName = document.createElement('span');
dayName.classList.add('calendar-day-name');
dayName.innerText = this._getDayName(monday);
day.appendChild(dayName);
const dayNumber = document.createElement('span');
dayNumber.classList.add('calendar-day-number');
// Check if monday is today
if (this._isToday(monday)) {
dayNumber.classList.add('calendar-day-number-today');
} else {
dayNumber.classList.remove('calendar-day-number-today');
}
dayNumber.innerText = monday.getDate();
day.appendChild(dayNumber);
days.appendChild(day);
monday.setDate(monday.getDate() + 1);
}
}
renderAllDayRow() {
const calendarBody = document.getElementById('calendar-body');
const allDayRow = document.createElement('div');
allDayRow.classList.add('calendar-all-day-row');
this._createCalendarBodyColumns(allDayRow);
allDayRow.querySelector('.calendar-timeline-column').innerText = 'all-day';
calendarBody.appendChild(allDayRow);
}
renderCalendarHours() {
const calendarRows = document.getElementsByClassName('calendar-body-row');
for (let i = 0; i < calendarRows.length; i++) {
const calendarRow = calendarRows[i];
const hourDiv = calendarRow.querySelector('.calendar-timeline-column');
const hour = `${(parseInt(calendarRow.dataset.hour)) % 24}`.padStart(2, '0') + ':00';
if (i === calendarRows.length - 1) {
const lastHour = document.createElement('div');
lastHour.classList.add('calendar-timeline-last-hour');
const lastHourText = document.createElement('span');
lastHourText.innerText = '00:00';
const hourText = document.createElement('span');
hourText.innerText = hour;
lastHour.appendChild(hourText);
lastHour.appendChild(lastHourText);
hourDiv.appendChild(lastHour);
} else {
hourDiv.innerText = hour;
}
}
}
renderCalendarBody() {
const calendarBody = document.getElementById('calendar-body');
const calendarBodyRows = this._createCalendarBodyRows();
calendarBody.appendChild(calendarBodyRows);
}
_renderEvent(event) {
const timeSlots = this._getDaysAndHours(event.dateFrom, event.dateTo);
timeSlots.forEach((slot, index) => {
const cell = this._getCell(slot.day, slot.hour);
if (!cell.querySelector(`[data-event-id="${event.id}"]`)) {
const eventDiv = document.createElement('div');
eventDiv.classList.add('calendar-event');
eventDiv.dataset.eventId = event.id;
eventDiv.style.backgroundColor = event.bgColor;
eventDiv.style.color = event.textColor;
this._addClicklistenerToEvent(eventDiv);
eventDiv.innerText = this._getEventName(event, timeSlots, index);
cell && cell.appendChild(eventDiv);
}
});
this._setEventStartEndSize(event);
}
_addClicklistenerToEvent(eventDiv) {
eventDiv.addEventListener('click', () => {
const eventId = eventDiv.dataset.eventId;
document.querySelector('#calendar-event-tooltip')?.remove();
const position = eventDiv.getBoundingClientRect();
const tooltip = document.createElement('div');
tooltip.classList.add('calendar-event-tooltip');
tooltip.id = 'calendar-event-tooltip';
tooltip.style.top = `${position.top + window.scrollY}px`;
tooltip.style.left = `${position.left + window.scrollX + this._getCellHeightAsNumber()}px`;
const event = this.events.find(event => event.id === parseInt(eventId));
const eventBody = document.createElement('div');
eventBody.classList.add('calendar-event-tooltip-body');
const closeIcon = document.createElement('span');
closeIcon.classList.add('calendar-event-tooltip-close');
closeIcon.innerHTML = '☓';
closeIcon.addEventListener('click', () => {
tooltip.remove();
});
const eventHeader = document.createElement('h1');
eventHeader.classList.add('calendar-event-tooltip-header');
eventHeader.innerText = event.eventName;
const eventTime = document.createElement('div');
eventTime.classList.add('calendar-event-tooltip-time');
eventTime.innerText = this._generateDateFromDateToString(event.dateFrom, event.dateTo);
eventBody.appendChild(closeIcon);
eventBody.appendChild(eventHeader);
eventBody.appendChild(eventTime);
tooltip.appendChild(eventBody);
document.querySelector('body').appendChild(tooltip);
});
}
_generateDateFromDateToString(dateFrom, dateTo) {
const dateFromHour = dateFrom.getHours().toString().padStart(2, '0');
const dateFromMinute = dateFrom.getMinutes().toString().padStart(2, '0');
const dateToHour = dateTo.getHours().toString().padStart(2, '0');
const dateToMinute = dateTo.getMinutes().toString().padStart(2, '0');
return `${dateFrom.toLocaleDateString()} ${dateFromHour}:${dateFromMinute} - ${dateTo.toLocaleDateString()} ${dateToHour}:${dateToMinute}`;
}
_setEventStartEndSize(event) {
// Check if event start is within this week
if (this._isThisWeek(event.dateFrom)) {
const startDay = event.dateFrom.getDay();
const startHour = event.dateFrom.getHours();
const startMinute = event.dateFrom.getMinutes();
const cell = this._getCell(startDay, startHour);
const eventDiv = cell.querySelector(`[data-event-id="${event.id}"]`);
if (eventDiv) {
const marginTop = startMinute ? (this._getCellHeightAsNumber() / 60) * startMinute : 0;
eventDiv.style.height = `${this._getCellHeightAsNumber() - marginTop}px`;
eventDiv.style.marginTop = `${marginTop}px`;
}
}
// Check if event end is within this week
if (this._isThisWeek(event.dateTo)) {
const endDay = event.dateTo.getDay();
const endHour = event.dateTo.getHours();
const endMinute = event.dateTo.getMinutes();
const cell = this._getCell(endDay, endHour);
const eventDiv = cell.querySelector(`[data-event-id="${event.id}"]`);
if (eventDiv) {
const marginBottom = endMinute ? ((this._getCellHeightAsNumber() / 60) * (60 - endMinute)) : 0;
if (eventDiv.style.height) {
eventDiv.style.height = `calc(${eventDiv.style.height} - ${marginBottom}px)`;
} else {
eventDiv.style.height = `${this._getCellHeightAsNumber() - marginBottom}px`;
}
}
}
}
_getCell(day, hour) {
const row = document.querySelector(`#calendar-body-row-${hour}`);
return row.querySelector(`[data-day="${day}"]`);
}
_getCellHeightAsNumber() {
return parseFloat(getComputedStyle(document.documentElement)
.getPropertyValue('--calendar-cell-height').replace('px', ''));
}
_getEventName(event, timeSlots, index) {
const currentDay = timeSlots[index].day;
const previousSlotDay = timeSlots[index - 1] ? timeSlots[index - 1].day : null;
if (timeSlots.length === 1) {
return event.eventName;
} else if (index === 0) {
return event.eventName;
} else if (currentDay !== previousSlotDay) {
return event.eventName;
} else {
return '';
}
}
_getDaysAndHours(dateFrom, dateTo) {
return this._getHours(dateFrom, dateTo);
}
_getDays(dateFrom, dateTo) {
const days = [];
let currentDate = new Date(dateFrom);
while (currentDate <= dateTo) {
days.push(currentDate);
currentDate.setDate(currentDate.getDate() + 1);
}
return days;
}
_getHours(dateFrom, dateTo) {
dateFrom = new Date(dateFrom);
dateTo = new Date(dateTo);
const hours = [];
let currentDateFrom = dateFrom.getTime() <= this._getMonday(this.getDate()).getTime() ? this._getMonday(this.getDate()) : dateFrom;
let currentDateTo = dateTo.getTime() >= this._getSunday(this.getDate()).getTime() ? this._getSunday(this.getDate()) : dateTo;
return getDaysAndHours(currentDateFrom, currentDateTo);
}
_resetAllColumns() {
const calendarColumns = document.querySelectorAll('.calendar-body-column');
for (let i = 0; i < calendarColumns.length; i++) {
if (!calendarColumns[i].classList.contains('calendar-timeline-column')) {
calendarColumns[i].innerHTML = '';
}
}
}
_createCalendarBodyRows() {
const calendarBodyRows = document.createElement('div');
calendarBodyRows.classList.add('calendar-body-rows');
for (let i = 0; i < 24; i++) {
const row = this._createCalendarBodyRow();
row.setAttribute('id', `calendar-body-row-${i}`);
row.dataset.hour = i;
calendarBodyRows.appendChild(row);
}
return calendarBodyRows;
}
_createCalendarBodyRow() {
const calendarBodyRow = document.createElement('div');
calendarBodyRow.classList.add('calendar-body-row');
this._createCalendarBodyColumns(calendarBodyRow);
return calendarBodyRow;
}
_createCalendarBodyColumns(row) {
const timelineColumn = document.createElement('div');
timelineColumn.classList.add('calendar-body-column');
timelineColumn.classList.add('calendar-timeline-column');
row.appendChild(timelineColumn);
for (let i = 0; i < 7; i++) {
const column = document.createElement('div');
column.dataset.day = (i + 1) % 7;
column.classList.add('calendar-body-column');
row.appendChild(column);
}
}
_addHeaderButtonEventListeners() {
const prevWeekButton = document.getElementById('calendar-action-button-prev');
const nextWeekButton = document.getElementById('calendar-action-button-next');
const todayButton = document.getElementById('calendar-action-button-today');
prevWeekButton.addEventListener('click', () => {
this.setDate(this.currentDate.getDate() - 7);
this.render();
});
nextWeekButton.addEventListener('click', () => {
this.setDate(this.currentDate.getDate() + 7);
this.render();
});
todayButton.addEventListener('click', () => {
this.currentDate = new Date();
this.render();
});
}
_scrollListener() {
const calendarBody = document.getElementById('calendar-body');
calendarBody.addEventListener('scroll', () => {
const scrollTop = calendarBody.scrollTop;
const allDayRow = document.querySelector('.calendar-all-day-row');
const rows = allDayRow.getElementsByClassName('calendar-body-column');
if (scrollTop < 7) {
rows[rows.length - 1].style.paddingTop = '40px';
rows[rows.length - 2].style.paddingTop = '40px';
} else {
rows[rows.length - 1].style.paddingTop = '0';
rows[rows.length - 2].style.paddingTop = '0';
}
});
}
_validateEvents(events) {
if (!Array.isArray(events)) {
throw new Error('Events must be an array');
}
for (let i = 0; i < events.length; i++) {
const event = events[i];
if (!event.dateFrom || !event.dateTo) {
throw new Error('Events must have start and end properties');
}
if (event.dateFrom > event.dateTo) {
throw new Error('Events must have start date before end date');
}
if (!event.eventName) {
throw new Error('Events must have a name');
}
if (event.id === undefined || event.id === null) {
event.id = this._getRandomId();
}
}
}
_parseEvents(events) {
const parsedEvents = [];
for (let i = 0; i < events.length; i++) {
const event = {
...events[i],
bgColor: this._getRandomBgColorAndTextColor().bgColor,
textColor: this._getRandomBgColorAndTextColor().textColor,
dateFrom: new Date(events[i].dateFrom),
dateTo: new Date(events[i].dateTo)
}
parsedEvents.push(event);
}
return parsedEvents;
}
_getDayName(date) {
const dayNames = [
'Sun',
'Mon',
'Tue',
'Wed',
'Thu',
'Fri',
'Sat'
];
return dayNames[date.getDay()];
}
_getMonday(date) {
date = new Date(date);
var day = date.getDay(),
diff = date.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday
return new Date((new Date(date.setDate(diff))).setHours(0, 0, 0, 0));
}
_getSunday(date) {
date = new Date(date);
var day = date.getDay(),
diff = date.getDate() - day + (day == 0 ? -6 : 1); // adjust when day is sunday
return new Date((new Date(date.setDate(diff + 6))).setHours(23, 59, 59, 999));
}
_isToday(date) {
const today = new Date()
return date.getDate() == today.getDate() &&
date.getMonth() == today.getMonth() &&
date.getFullYear() == today.getFullYear()
}
_isThisWeek(date) {
const monday = this._getMonday(this.getDate()).getTime();
const sunday = this._getSunday(this.getDate()).getTime();
return date.getTime() >= monday && date.getTime() <= sunday;
}
_isExistInThisWeek(dateFrom, dateTo) {
this.counter += 1;
return this._getMonday(this.getDate()).getTime() >= this._getMonday(dateFrom).getTime() &&
this._getSunday(this.getDate()).getTime() <= this._getSunday(dateTo).getTime()
}
_getRandomBgColorAndTextColor() {
const bgColors = [
'#f44336',
'#e91e63',
'#9c27b0',
'#673ab7',
'#3f51b5',
'#2196f3',
'#03a9f4',
'#00bcd4',
'#009688',
'#4caf50',
'#8bc34a',
'#cddc39',
'#ffeb3b',
'#ffc107',
'#ff9800',
'#ff5722',
'#795548',
'#607d8b'
];
const textColors = [
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff',
'#ffffff'
];
return {
bgColor: bgColors[Math.floor(Math.random() * bgColors.length)],
textColor: textColors[Math.floor(Math.random() * textColors.length)]
}
}
}