-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscript.js
324 lines (283 loc) · 9.98 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
const wrapper = document.querySelector(".wrapper"),
inputPart = document.querySelector(".input-part"),
infoTxt = inputPart.querySelector(".info-txt"),
inputField = inputPart.querySelector("input"),
locationBtn = inputPart.querySelector("button"),
weatherPart = wrapper.querySelector(".weather-part"),
forecastSection = wrapper.querySelector(".forecast"),
forecastDetails = forecastSection.querySelector(".forecast-details"),
wIcon = weatherPart.querySelector("img"),
arrowBack = wrapper.querySelector("header i");
let api;
let apiKey = "b190a0605344cc4f3af08d0dd473dd25";
const weatherChartCtx = document.getElementById("weatherChart").getContext("2d");
let weatherChart;
// Function to create or update weather chart
function createWeatherChart(labels, data) {
if (weatherChart) {
weatherChart.destroy();
}
weatherChart = new Chart(weatherChartCtx, {
type: "line", // Change chart type as needed (line, bar, etc.)
data: {
labels: labels,
datasets: [{
label: "Temperature (°C)",
data: data,
backgroundColor: "rgba(54, 162, 235, 0.6)",
borderColor: "rgba(54, 162, 235, 1)",
borderWidth: 1,
fill: false
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
}
// Event listeners
inputField.addEventListener("keyup", (e) => {
if (e.key === "Enter" && inputField.value.trim() !== "") {
requestApi(inputField.value.trim());
}
});
locationBtn.addEventListener("click", () => {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(onSuccess, onError);
} else {
alert("Your browser does not support geolocation API.");
}
});
// Function to request weather data
function requestApi(city) {
api = `https://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=${apiKey}`;
fetchData();
}
// Function to handle geolocation success
function onSuccess(position) {
const { latitude, longitude } = position.coords;
api = `https://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&units=metric&appid=${apiKey}`;
fetchData();
}
// Function to handle geolocation error
function onError(error) {
infoTxt.innerText = error.message;
infoTxt.classList.add("error");
clearWeatherData();
}
// Function to fetch weather data from API
function fetchData() {
infoTxt.innerText = "Fetching weather details...";
infoTxt.classList.add("pending");
fetch(api)
.then((res) => res.json())
.then((result) => {
if (result.cod && result.cod === "404") {
infoTxt.innerText = `${inputField.value} is not a valid city name`;
infoTxt.classList.replace("pending", "error");
clearWeatherData();
} else {
clearWeatherData(); // Clear previous weather and forecast data
weatherDetails(result);
fetchForecast(result.coord.lat, result.coord.lon); // Fetch 7-day forecast
fetchHourlyForecast(result.coord.lat, result.coord.lon); // Fetch hourly forecast
}
})
.catch(() => {
infoTxt.innerText = "Something went wrong";
infoTxt.classList.replace("pending", "error");
clearWeatherData();
});
}
// Function to display weather details
function weatherDetails(info) {
const { name: city, sys: { country }, weather: [{ description, id }], main: { temp, feels_like, humidity }, wind: { speed }, dt } = info;
const weatherDate = new Date(dt * 1000).toLocaleString('en', {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
hour12: true
});
wIcon.src = getWeatherIcon(id);
weatherPart.querySelector(".temp .numb").innerText = Math.round(temp);
weatherPart.querySelector(".weather").innerText = description;
weatherPart.querySelector(".location span").innerText = `${city}, ${country}`;
weatherPart.querySelector(".temp .numb-2").innerText = Math.round(feels_like);
weatherPart.querySelector(".humidity span").innerText = `${humidity}%`;
weatherPart.querySelector(".wind span").innerText = `${speed} m/s`;
weatherPart.querySelector(".date-time").innerText = weatherDate;
infoTxt.classList.remove("pending", "error");
infoTxt.innerText = "";
inputField.value = "";
wrapper.classList.add("active");
}
// Function to fetch daily forecast data
function fetchForecast(latitude, longitude) {
const forecastApi = `https://api.openweathermap.org/data/2.5/onecall?lat=${latitude}&lon=${longitude}&exclude=current,minutely,hourly&units=metric&appid=${apiKey}`;
fetch(forecastApi)
.then((res) => res.json())
.then((data) => {
if (data.cod && data.cod === "404") {
infoTxt.innerText = "Forecast data not available";
infoTxt.classList.replace("pending", "error");
clearForecast();
} else {
updateForecast(data.daily.slice(1, 8)); // Update forecast for next 7 days
}
})
.catch(() => {
infoTxt.innerText = "Forecast data not available";
infoTxt.classList.replace("pending", "error");
clearForecast();
});
}
// Function to fetch hourly forecast data
function fetchHourlyForecast(latitude, longitude) {
const hourlyForecastApi = `https://api.openweathermap.org/data/2.5/onecall?lat=${latitude}&lon=${longitude}&exclude=current,daily,minutely&units=metric&appid=${apiKey}`;
fetch(hourlyForecastApi)
.then((res) => res.json())
.then((data) => {
if (data.cod && data.cod === "404") {
infoTxt.innerText = "Hourly forecast data not available";
infoTxt.classList.replace("pending", "error");
clearHourlyForecast();
} else {
updateHourlyForecast(data.hourly.slice(0, 24)); // Update hourly forecast for next 24 hours
}
})
.catch(() => {
infoTxt.innerText = "Hourly forecast data not available";
infoTxt.classList.replace("pending", "error");
clearHourlyForecast();
});
}
// Function to update daily forecast
function updateForecast(dailyData) {
forecastDetails.innerHTML = ""; // Clear previous forecast details
dailyData.forEach((day) => {
const { dt, weather: [{ description, id }], temp: { max, min } } = day;
const dayOfWeek = new Date(dt * 1000).toLocaleDateString('en', { weekday: 'long' });
const forecastCard = document.createElement("div");
forecastCard.classList.add("forecast-card");
forecastCard.innerHTML = `
<div class="forecast-day">${dayOfWeek}</div>
<img src="${getWeatherIcon(id)}" alt="Weather Icon" />
<div class="forecast-temp">
<span class="max-temp">${Math.round(max)}°C</span> /
<span class="min-temp">${Math.round(min)}°C</span>
</div>
<div class="forecast-desc">${description}</div>
`;
forecastDetails.appendChild(forecastCard);
});
}
// Function to update hourly forecast
function updateHourlyForecast(hourlyData) {
const labels = [];
const data = [];
hourlyData.forEach((hour) => {
const { dt, temp } = hour;
const hourOfDay = new Date(dt * 1000).toLocaleTimeString('en', { hour: 'numeric', hour12: true });
labels.push(hourOfDay);
data.push(temp);
});
createWeatherChart(labels, data); // Create or update hourly weather chart
}
// Function to clear weather data
function clearWeatherData() {
wIcon.src = "";
weatherPart.querySelector(".temp .numb").innerText = "";
weatherPart.querySelector(".weather").innerText = "";
weatherPart.querySelector(".location span").innerText = "";
weatherPart.querySelector(".temp .numb-2").innerText = "";
weatherPart.querySelector(".humidity span").innerText = "";
weatherPart.querySelector(".wind span").innerText = "";
weatherPart.querySelector(".date-time").innerText = "";
infoTxt.innerText = "";
forecastSection.style.display = "block"; // Ensure forecast section is visible
clearForecast(); // Clear previous forecast data
clearHourlyForecast(); // Clear previous hourly forecast data
}
// Function to clear forecast data
function clearForecast() {
forecastDetails.innerHTML = ""; // Clear daily forecast details
}
// Function to clear hourly forecast data
function clearHourlyForecast() {
if (weatherChart) {
weatherChart.destroy();
}
}
// Function to get weather icon based on weather id
function getWeatherIcon(weatherId) {
if (weatherId === 800) {
return "icons/clear.svg";
} else if (weatherId >= 200 && weatherId <= 232) {
return "icons/storm.svg";
} else if (weatherId >= 600 && weatherId <= 622) {
return "icons/snow.svg";
} else if (weatherId >= 701 && weatherId <= 781) {
return "icons/haze.svg";
} else if (weatherId >= 801 && weatherId <= 804) {
return "icons/cloud.svg";
} else if ((weatherId >= 500 && weatherId <= 531) || (weatherId >= 300 && weatherId <= 321)) {
return "icons/rain.svg";
} else {
return "icons/unknown.svg";
}
}
// Event listener for back button
arrowBack.addEventListener("click", () => {
wrapper.classList.remove("active");
clearWeatherData();
});
// Change Color Theme
var isDark = false;
const colors = [
"hsl(345, 80%, 50%)",
"hsl(100, 80%, 50%)",
"hsl(200, 80%, 50%)",
"hsl(227, 66%, 55%)",
"hsl(26, 80%, 50%)",
"hsl(44, 90%, 51%)",
"hsl(280, 100%, 65%)",
"hsl(480, 100%, 25%)",
"hsl(180, 100%, 25%)",
];
const colorBtns = document.querySelectorAll(".theme-color");
const darkModeBtn = document.querySelector(".dark-mode-btn");
darkModeBtn.addEventListener("click", () => {
isDark = !isDark;
changeTheme(isDark ? "#000" : colors[3]);
});
colorBtns.forEach((btn, index) => {
btn.style.backgroundColor = colors[index];
btn.addEventListener("click", () => {
changeTheme(btn.style.backgroundColor);
});
});
function changeTheme(color) {
document.documentElement.style.setProperty("--primary-color", color);
saveTheme(color);
}
function saveTheme(color) {
localStorage.setItem("theme", color);
}
function getTheme() {
const theme = localStorage.getItem("theme");
if (theme) {
changeTheme(theme);
}
}
getTheme(); // Initialize theme on page load