-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
132 lines (107 loc) · 3.55 KB
/
index.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
let now = new Date();
let day = now.getDay();
let hours = now.getHours();
let minutes = now.getMinutes();
let daysOfTheWeek = [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
];
day = daysOfTheWeek[now.getDay()];
let days = document.querySelector("#day-description");
days.innerHTML = `${day} ${hours}:${minutes}`;
// search engine
function city(event) {
event.preventDefault();
let cityName = document.querySelector("#city-name");
let cityInput = document.querySelector("#city-input");
cityName.innerHTML = cityInput.value;
nameIdk();
}
let form = document.querySelector("#search-form");
form.addEventListener("submit", city);
// change c to f and api
let change = 0;
let apiKey = "4b314f77d77d39ad00e3f1ae01186f3d";
let units = "metric";
let tempCity;
let url;
function changeTheSystem() {
if (change === 0) {
units = "imperial";
change = 1;
} else {
units = "metric";
change = 0;
}
nameIdk();
}
let changeSystem = document.querySelector("#changeToF");
changeSystem.addEventListener("click", changeTheSystem);
// ------- api
function nameIdk() {
let whatCity = document.querySelector("#city-name").innerHTML;
tempCity = whatCity;
url = `https://api.openweathermap.org/data/2.5/weather?q=${tempCity}&units=${units}&appid=${apiKey}`;
axios.get(url).then(showTemperature);
}
function getForecast(coordinates) {
let apiKey = "4b314f77d77d39ad00e3f1ae01186f3d";
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) {
let temperature = Math.round(response.data.main.temp);
let degrees = document.querySelector("#temperature-degrees");
degrees.innerHTML = temperature;
let precipitation = document.querySelector("#precipitation-description");
precipitation.innerHTML = `Precipitation: ${response.data.clouds.all}%`;
let wind = document.querySelector("#wind-description");
wind.innerHTML = `Wind: ${Math.round(response.data.wind.speed)} km/h`;
let weatherDescription = document.querySelector("#weather-description");
weatherDescription.innerHTML = response.data.weather[0].description;
let icon = document.querySelector("#main-icon")
icon.setAttribute(
"src",
`http://openweathermap.org/img/wn/${response.data.weather[0].icon}@2x.png`
);
getForecast(response.data.coord);
}
nameIdk();
// forecast :3
function formatDay(timestap) {
let date= new Date(timestap * 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;
}