-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue2-endoflife-countdown.js
74 lines (58 loc) · 1.91 KB
/
vue2-endoflife-countdown.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
// Vue2 EOL
const vue2EOL = new Date('December 31, 2023 23:59:59').getTime();
const businessDayMilliseconds = 24 * 60 * 60 * 1000; // Assuming 24 hours per business day
const holidayCalendar = [
// Add your holidays here
];
// Update the countdown every second
const countdownInterval = setInterval(() => updateCountdown(vue2EOL), 1000);
function calculateCountDownTime(targetDate) {
const currentDate = new Date();
const currentDateTimestamp = currentDate.getTime();
const timeDifference = targetDate - currentDateTimestamp;
const businessDays = calculateBusinessDaysRemaining();
const hours = Math.floor(
(timeDifference % businessDayMilliseconds) / (1000 * 60 * 60)
);
const minutes = Math.floor((timeDifference % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeDifference % (1000 * 60)) / 1000);
return {
businessDays,
hours,
minutes,
seconds,
};
function calculateBusinessDaysRemaining() {
let currentDateTimestamp = currentDate.getTime();
let businessDays = 0;
while (currentDateTimestamp < targetDate) {
currentDate.setDate(currentDate.getDate() + 1);
businessDays++;
currentDateTimestamp = currentDate.getTime();
}
return businessDays;
}
}
function updateView(timeLeft, labels) {
Object.values(timeLeft)
.map(number => {
const numberStr = number.toString();
return numberStr.length === 1 ? `0${numberStr}` : numberStr;
})
.forEach((date, index) => {
const label = labels[index];
label.textContent = date;
});
}
function updateCountdown(targetDate) {
const timeLeft = calculateCountDownTime(targetDate);
const countDownDisplay = document.querySelectorAll(
'[data-vue-eol-countdown-number]'
);
updateView(
[timeLeft.businessDays, timeLeft.hours, timeLeft.minutes, timeLeft.seconds],
countDownDisplay
);
}
// Initial call to set up the countdown
updateCountdown(vue2EOL);