-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
63 lines (57 loc) · 2.1 KB
/
script.js
File metadata and controls
63 lines (57 loc) · 2.1 KB
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
let weather = {
"apiKey": "9f5368f3b1697c7a8d17154d6a801aed",
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 tempCelsius = Math.floor(data.main.temp);
const tempFahrenheit = Math.floor((tempCelsius * 9 / 5) + 32);
const { humidity } = data.main;
const { speed } = data.wind;
document.querySelector(".city").innerText = "Weather in " + name;
document.querySelector(".icon").src =
"https://openweathermap.org/img/wn/" + icon + "@2x.png";
document.querySelector(".description").innerText = description;
document.querySelector(".temp").innerText = tempFahrenheit + "°F";
document.querySelector(".humidity").innerText =
"Humidity: " + humidity + "%";
document.querySelector(".wind").innerText =
"Wind speed: " + speed + "km/h";
document.querySelector(".weather").classList.remove("loading");
document.body.style.backgroundImage =
"url('https://source.unsplash.com/1600x900?" + name + "')";
},
displayMainPage: function () {
const defaultCity = "Brooklyn"; // Default city
this.fetchWeather(defaultCity);
},
search: function () {
const searchBar = document.querySelector(".search-bar");
const city = searchBar.value;
if (city) {
this.fetchWeather(city);
} else {
this.displayMainPage();
}
},
};
document.addEventListener("DOMContentLoaded", function () {
weather.displayMainPage();
document.querySelector(".search button").addEventListener("click", function () {
weather.search();
});
document.querySelector(".search-bar").addEventListener("keyup", function (event) {
if (event.key === "Enter") {
weather.search();
}
});
});