36 lines
1.1 KiB
JavaScript

class Forecast {
constructor() {
this.key = "1MZNL2NHfeA5C9uLvtZKQcUDQPiSxThq"
this.weatherURI = "http://dataservice.accuweather.com/currentconditions/v1/";
this.cityURI = "http://dataservice.accuweather.com/locations/v1/cities/search"
}
async updateCity(city) {
// console.log(city);
const cityDets = await this.getCity(city);
const weather = await this.getWeather(cityDets.Key);
return { cityDets, weather };
}
async getCity(city) {
const query = `?apikey=${this.key}&q=${city}`;
const response = await fetch(this.cityURI + query);
const data = await response.json();
return data[0];
}
async getWeather(id) {
const query = `${id}?apikey=${this.key}`;
const response = await fetch(this.weatherURI + query);
const data = await response.json();
// console.log(data)
return data[0];
}
}
// getCity("vienna").then((data) => {
// return getWeather(data.Key);
// }).then((data) => console.log(data))
// .catch(err => console.log(err));