-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
114 lines (102 loc) · 3.84 KB
/
script.js
File metadata and controls
114 lines (102 loc) · 3.84 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
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
function formatDate(timestamp) {
let date = new Date(timestamp);
let days = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
let day = days[date.getDay()];
return `${day} ${formatHours(timestamp)}`;
}
function formatHours(timestamp) {
let date = new Date(timestamp);
let hours = date.getHours();
if (hours < 10) {
hours = `0${hours}`;
}
let minutes = date.getMinutes();
if (minutes < 10) {
minutes = `0${minutes}`;
}
return `${hours}:${minutes}`;
}
function displayWeatherCondition(response) {
let temperatureElement = document.querySelector("#temperature");
let cityElement = document.querySelector("#city");
let descriptionElement = document.querySelector("#description");
let humidityElement = document.querySelector("#humidity");
let windElement = document.querySelector("#wind");
let dateElement = document.querySelector("#date");
let iconElement = document.querySelector("#icon");
let tempMaxElement = document.querySelector("#temp_max");
let tempMinElement = document.querySelector("#temp_min");
cityElement.innerHTML = response.data.name;
dateElement.innerHTML = formatDate(response.data.dt * 1000);
temperatureElement.innerHTML = Math.round(response.data.main.temp);
humidityElement.innerHTML = response.data.main.humidity;
windElement.innerHTML = Math.round(response.data.wind.speed);
iconElement.setAttribute(
"src",
`http://openweathermap.org/img/wn/${response.data.weather[0].icon}@2x.png`
);
iconElement.setAttribute("alt", response.data.weather[0].description);
descriptionElement.innerHTML = response.data.weather[0].description;
tempMaxElement.innerHTML = Math.round(response.data.main.temp_max);
tempMinElement.innerHTML = Math.round(response.data.main.temp_min);
}
function displayForecast(response) {
let forecastElement = document.querySelector("#forecast");
forecastElement.innerHTML = null;
let forecast = null;
for (let index = 0; index < 6; index++) {
forecast = response.data.list[index];
forecastElement.innerHTML += `
<div class="col-2">
<h3>
${formatHours(forecast.dt * 1000)}
</h3>
<img
src="http://openweathermap.org/img/wn/${
forecast.weather[0].icon
}@2x.png"
/>
<div class="weather-forecast-temperature">
<strong>${Math.round(forecast.main.temp_max)}°</strong> ${Math.round(
forecast.main.temp_min
)}°
</div>
</div>
`;
}
}
function search(city) {
let apiKey = "2c65ee63631088d8b35830f963cef245";
let apiUrl = `https://api.openweathermap.org/data/2.5/weather?q=${city}&appid=${apiKey}&units=imperial`;
axios.get(apiUrl).then(displayWeatherCondition);
apiUrl = `https://api.openweathermap.org/data/2.5/forecast?q=${city}&appid=${apiKey}&units=imperial`;
axios.get(apiUrl).then(displayForecast);
}
function handleSubmit(event) {
event.preventDefault();
let cityInputElement = document.querySelector("#city-input");
search(cityInputElement.value);
}
function searchLocation(position) {
let apiKey = "2c65ee63631088d8b35830f963cef245";
let apiUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${position.coords.latitude}&lon=${position.coords.longitude}&appid=${apiKey}&units=imperial`;
axios.get(apiUrl).then(displayWeatherCondition);
apiUrl = `https://api.openweathermap.org/data/2.5/forecast?lat=${position.coords.latitude}&lon=${position.coords.longitude}&appid=${apiKey}&units=imperial`;
axios.get(apiUrl).then(displayForecast);
}
function getCurrentLocation(event) {
navigator.geolocation.getCurrentPosition(searchLocation);
}
let form = document.querySelector("#search-form");
form.addEventListener("submit", handleSubmit);
let currentLocationButton = document.querySelector("#current-location-button");
currentLocationButton.addEventListener("click", getCurrentLocation);
search("Los Angeles");