-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
46 lines (43 loc) · 1.81 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
let weather = {
apiKey: "d524c896b4286980de3c8a46d4149f56",
fetchWeather: function (city) {
fetch(
"https://api.openweathermap.org/data/2.5/weather?q="
+ city
+ "&units=metric&appid="
+ this.apiKey
)
.then((Response) => Response.json())
.then((data) => this.displayWeather(data))
},
displayWeather: function (data) {
const { name } = data
const { icon, description } = data.weather[0]
const { temp, humidity } = data.main
const { speed } = data.wind
document.querySelector(".city").innerText = "Weather in " + name
document.querySelector(".icon").src = "https://openweathermap.org/img/wn/" + icon + ".png"
document.querySelector(".description").innerText = description
document.querySelector(".temperature").innerText = temp + " °C"
document.querySelector(".humidity").innerText = "Humidity: " + humidity + "%"
document.querySelector(".wind").innerText = "Wind speed of: " + speed + " km/h"
document.querySelector(".weather").classList.remove("loading")
document.body.style.backgroundImage = "url('https://source.unsplash.com/1600x900/?" + name + "')"
},
search: function () {
this.fetchWeather(document.querySelector(".search-bar").value)
}
}
document.querySelector(".search button").addEventListener("click", function () {
weather.search()
}
)
document.querySelector(".search-bar").addEventListener("keyup", function (event) {
if (event.key == "Enter") {
weather.search()
}
})
// this calls the function to fetch a weather result as soon as the page loads with a default city
// in plan to use a default city based on user location
// currently set a default city of Belgrade
weather.fetchWeather("Belgrade")