-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
106 lines (88 loc) · 3.53 KB
/
script.js
File metadata and controls
106 lines (88 loc) · 3.53 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
const wrapper = document.querySelector(".wrapper"),
inputPart = wrapper.querySelector(".input-part"),
infoTxt = inputPart.querySelector(".info-txt"),
inputField = inputPart.querySelector("input"),
locationBtn = inputPart.querySelector("button"),
wIcon = document.querySelector(".weather-part img"),
arrowBack = wrapper.querySelector("header i");
let api;
inputField.addEventListener("keyup", e => {
if(e.key == "Enter" && inputField.value !=""){
requestApi(inputField.value);
}
});
// Location Device
locationBtn.addEventListener("click", () => {
if(navigator.geolocation){ //Si el navegador soporta la api de geolocalización
navigator.geolocation.getCurrentPosition(onSuccess, onError);
}else{
alert("Your browser not support geolocalization");
}
});
// Error
function onError(error){
infoTxt.innerText = error.message;
infoTxt.classList.add("error");
}
// 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=22211faf3a6caeca0c4fb4fe5c46ce84`;
fetchData();
}
// Llamada a la API
function requestApi(city){
api = `https://api.openweathermap.org/data/2.5/weather?q=${city}&units=metric&appid=22211faf3a6caeca0c4fb4fe5c46ce84`;
fetchData();
}
// Mostrar resultados
function fetchData(){
infoTxt.innerText = "Getting Weather details...";
infoTxt.classList.add("pending");
//obtenemos una respuesta de la api y lo retornamos parseado como un objeto js
//luego llamamos a la función weatherDetails y le pasamos el resultado de la api como parámetro
fetch(api).then(response => response.json()).then(result => weatherDetails(result));
}
function weatherDetails(info){
infoTxt.classList.replace("pending", "error");
if(info.cod == "404"){
infoTxt.innerText = `${inputField.value} isn't a valid city name`
}else{
//obtenemos los valores de las propiedades requeridas de la info del objeto
const city = info.name;
const country = info.sys.country;
const {description, id} = info.weather[0];
const {feels_like, humidity, temp} = info.main;
// custom icons
if(id==800){
wIcon.src="icons/clear.svg";
}else if(id >=200 && id <= 232){
wIcon.src="icons/strom.svg";
}else if(id >=600 && id <= 622){
wIcon.src="icons/snow.svg";
}else if(id >=701 && id <= 781){
wIcon.src="icons/haze.svg";
}else if(id >=801 && id <= 804){
wIcon.src="icons/cloud.svg";
}else if((id >=300 && id <= 321) || (id >= 500 && id<= 531)){
wIcon.src="icons/rain.svg";
}
//le pasamos los valores a un elemento en particular del html
wrapper.querySelector(".temp .numb").innerText = Math.floor(temp);
wrapper.querySelector(".weather").innerText = capitalize(description);
wrapper.querySelector(".location span").innerText = `${city}, ${country}`;
wrapper.querySelector(".temp .numb-2").innerText = Math.floor(feels_like);
wrapper.querySelector(".humidity span").innerText = `${humidity}%`;
// Capitalize (first letter :) )
function capitalize(word) {
return word[0].toUpperCase() + word.slice(1);
}
infoTxt.classList.remove("pending", "error");
wrapper.classList.add("active");
}
}
// Fin
// Volver
arrowBack.addEventListener("click", () =>{
wrapper.classList.remove("active");
})