-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathscript.js
83 lines (71 loc) · 3.12 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
// Inputs and buttton
const presentInput = document.querySelector("#present");
const pastInput = document.querySelector("#past");
const btn = document.querySelector(".btn");
// display element
const year = document.querySelector(".year");
const month = document.querySelector(".month");
const week = document.querySelector(".week");
const day = document.querySelector(".day");
const hour = document.querySelector(".hour");
const minute = document.querySelector(".minute");
const second = document.querySelector(".second");
const millisec = document.querySelector(".millisec");
// Re-assignable variable for current and past date.
let presentDateInTimeStamp, pastDateInTimeStamp;
// Setting the current date as a default value.
const currentDate = new Date();
const yyyy = currentDate.getFullYear();
const mmInTwoDigit = `${currentDate.getMonth() + 1}`.padStart(2, 0);
const ddInTwoDigit = `${currentDate.getDate()}`.padStart(2, 0);
presentInput.value = `${yyyy}-${mmInTwoDigit}-${ddInTwoDigit}`;
// Listening change event from the current input element.
presentInput.addEventListener("change", (e) => {
// Getting input and convert it into millisec.
presentDateInTimeStamp = Date.parse(e.target.value);
// Changing the button text and bg color, if the user do not change the default input value.
btnBGColorHandler("Age Calculate", "dodgerblue");
});
// Listening change event from the past input element.
pastInput.addEventListener("change", (e) => {
// Getting input and convert it into millisec.
pastDateInTimeStamp = Date.parse(e.target.value);
// Changing the button text and bg color, if the user do not change the default input value.
btnBGColorHandler("Age Calculate", "dodgerblue");
});
// Listening a click event on button.
btn.addEventListener("click", hadleTimestamp);
function hadleTimestamp() {
// Checking if the present and past date has valid date in timestamp.
if (presentDateInTimeStamp && pastDateInTimeStamp) {
// Subtractic present date from the past.
const ms = presentDateInTimeStamp - pastDateInTimeStamp;
// Generating other date and time unit using millisec.
const msToSec = Math.abs(ms / 1000);
const msToMin = Math.abs(ms / (1000 * 60));
const msToHrs = Math.abs(ms / (1000 * 60 * 60));
const daysFromTimeStamp = Math.abs(ms / (1000 * 60 * 60 * 24));
const yearFromDays = daysFromTimeStamp / 365;
const monthFromYear = yearFromDays * 12;
const weekFromDays = daysFromTimeStamp / 7;
//Changing the text content to display the output.
second.textContent = msToSec;
minute.textContent = msToMin;
hour.textContent = msToHrs;
day.textContent = daysFromTimeStamp;
year.textContent = Math.trunc(yearFromDays);
month.textContent = Math.trunc(monthFromYear);
week.textContent = Math.trunc(weekFromDays);
millisec.textContent = Math.abs(ms);
} else {
btnBGColorHandler("Please change the both dates", "red");
}
}
function btnBGColorHandler(text, bgColor) {
// Change the background color and text after 3 seconds.
setTimeout(() => {
btn.textContent = `${text}`;
btn.style.backgroundColor = `${bgColor}`;
}, 3000);
}
window.onload = hadleTimestamp;