-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
93 lines (67 loc) · 1.84 KB
/
script.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
const date = new Date();
const renderCalendar = () => {
date.setDate(1);
// date.setMonth(5); // uncomment to test month and last days change
const monthDays = document.querySelector(".days");
const lastDay = new Date(date.getFullYear(),date.getMonth() + 1,0).getDate() // Gets last day of current month
const prevLastDay = new Date(date.getFullYear(),date.getMonth() ,0).getDate() // Gets last day of previous month
const firstDayIndex = date.getDay();
const lastDayIndex = new Date(date.getFullYear(),date.getMonth() + 1,0).getDay();
function getLastDay(x)
{
if (x == 7) {
return 8
}
else{
return (x - 7)
}
}
const nextDays = 6 - getLastDay(lastDayIndex);
const months = [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
];
document.querySelector(".date h1").innerHTML
= months[date.getMonth()];
document.querySelector(".date p").innerHTML
= new Date().toDateString();
let days = "";
// loop for previous days
for (let x = firstDayIndex; x > 0; x--) {
days += `<div class="prev-date">${prevLastDay - x + 1}</div>`
}
// previous dates
for(let i = 1; i <= lastDay; i++) {
if(i === new Date().getDate() && date.getMonth()
=== new Date().getMonth()) {
days += `<div class="today">${i}</div>`;
}
else {
days += `<div>${i}</div>`;
}
}
// post dates
for (let j = 1; j <= nextDays; j++) {
days += `<div class="next-date">${j}</div>`;
monthDays.innerHTML = days;
}
}
document.querySelector(".leftArrow").addEventListener('click',()=> {
date.setMonth(date.getMonth() - 1);
renderCalendar();
})
document.querySelector(".rightArrow").addEventListener('click',()=> {
date.setMonth(date.getMonth() + 1);
renderCalendar();
})
renderCalendar();