-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
57 lines (52 loc) · 1.89 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
let weather = {
apiKey: "5e9a20801f8240a90150dc4d2482b913",
fetchWeather: function (city) {
fetch(
"https://api.openweathermap.org/data/2.5/weather?q="
+ city
+ "&units=metric&appid="
+ this.apiKey
)
.then((response) => {
if (!response.ok) {
alert("No weather found for this city.");
throw new Error("No weather found for this city.");
}
return response.json();
})
.then((data) => this.displayWeather(data));
},
displayWeather: function (data) {
const { name } = data;
const { temp, temp_max,temp_min } = data.main;
const { description } = data.weather[0];
const { speed } = data.wind;
const { country } = data.sys;
console.log(name,country,temp,temp_max,temp_min,description,speed);
document.querySelector(".city").innerText = name + ", " + country;
document.querySelector(".degree").innerText = temp + " °C";
document.querySelector(".weather").innerText = description;
document.querySelector(".hi-low").innerText = "Hi/Low: " + temp_max + " °C" + "/" + temp_min + " °C";
document.querySelector(".wind").innerText = "Wind speed: " + speed + "km/h";
document.body.style.backgroundImage =
"url('https://source.unsplash.com/1600x900/?" + name + "')";
document.querySelector(".location").classList.remove("information");
},
search: function() {
this.fetchWeather(document.querySelector(".search").value);
},
};
document.querySelector(".searchBar .fa-magnifying-glass").addEventListener("click", function () {
weather.search();
});
document
.querySelector(".search")
.addEventListener("keyup", function (event) {
if (event.key == "Enter") {
weather.search();
}
});
weather.fetchWeather("");
function clearInput() {
let clearSearch = document.getElementById('search').value = ""
}