-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
115 lines (100 loc) · 3.19 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
function formatDate(timestamp) {
let date = new Date(timestamp);
let hours = date.getHours();
let minutes = date.getMinutes();
if (minutes < 10) {
minutes = `0${minutes}`;
}
let days = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
let day = days[date.getDay()];
return `${day} ${hours}:${minutes}`;
}
function formatDay(timestamp) {
let date = new Date(timestamp * 1000);
let day = date.getDay();
let days = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
return days[day];
}
function displayForecast(response) {
let forecast = response.data.daily;
let forecastElement = document.querySelector("#forecast");
let forecastHTML = `<div class = "row">`;
forecast.forEach(function (forecastDay, index) {
if (index < 6) {
forecastHTML =
forecastHTML +
`
<div class="col-2">
<div class="weather-forecast-date">${formatDay(
forecastDay.dt
)}</div>
<img
src="http://openweathermap.org/img/wn/${
forecastDay.weather[0].icon
}@2x.png"
alt=""
width="42"
/>
<div class="weather-forecast-temperatures">
<span class="weather-forecast-temperature-max">${Math.round(
forecastDay.temp.max
)}° </span>
<span class="weather-forecast-temperature-min"> ${Math.round(
forecastDay.temp.min
)}° </span>
</div>
</div>
`;
}
});
forecastHTML = forecastHTML + `</div>`;
forecastElement.innerHTML = forecastHTML;
}
function getForecast(coordinates) {
console.log(coordinates);
let apiKey = "fc6fe7180f75f61eb4c6a27ee5f57b6b";
let apiUrl = `https://api.openweathermap.org/data/2.5/onecall?lat=${coordinates.lat}&lon=${coordinates.lon}&appid=${apiKey}&units=metric`;
axios.get(apiUrl).then(displayForecast);
}
function showTemperature(response) {
document.querySelector("h1").innerHTML = response.data.name;
document.querySelector("#temperature").innerHTML = Math.round(
response.data.main.temp
);
document.querySelector("#description").innerHTML =
response.data.weather[0].main;
document.querySelector("#humidity").innerHTML = response.data.main.humidity;
document.querySelector("#wind").innerHTML = response.data.wind.speed;
document.querySelector("#date").innerHTML = formatDate(
response.data.dt * 1000
);
document
.querySelector("#icon")
.setAttribute(
"src",
`http://openweathermap.org/img/wn/${response.data.weather[0].icon}@2x.png`
);
getForecast(response.data.coord);
}
function search(city) {
let apiKey = "fc6fe7180f75f61eb4c6a27ee5f57b6b";
let units = "metric";
let apiUrl = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}&units=${units}`;
axios.get(apiUrl).then(showTemperature);
}
function handleSubmit(event) {
event.preventDefault();
let city = document.querySelector(".enter-city");
search(city.value);
}
let form = document.querySelector("form");
form.addEventListener("submit", handleSubmit);
search("Kyiv");