Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 26, 2020 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/9755ec308c831fdf37440c6d2de655e5 to your computer and use it in GitHub Desktop.
Save codecademydev/9755ec308c831fdf37440c6d2de655e5 to your computer and use it in GitHub Desktop.
Codecademy export
// Foursquare API Info
const clientId = 'TGXPK44EPKLGQ4M021W5Y2JZELRZYLYHXDXW1MIZZEQVLAGN';
const clientSecret = 'GNP2FGROJUHT2PFBXRPXOYPSEFO5K253TG4AY0A23MHAGDZY';
const url = 'https://api.foursquare.com/v2/venues/explore?near=';
// OpenWeather Info
const openWeatherKey = 'c80ad7cdb604e86641f38849bbbf4040';
const weatherUrl = 'https://api.openweathermap.org/data/2.5/weather';
// Page Elements
const $input = $('#city');
const $submit = $('#button');
const $destination = $('#destination');
const $container = $('.container');
const $venueDivs = [$("#venue1"), $("#venue2"), $("#venue3"), $("#venue4")];
const $weatherDiv = $("#weather1");
const weekDays = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
// Add AJAX functions here:
const getVenues = async() => {
const city=$input.val();
const urlToFetch=`${url}${city}&limit=10&client_id=${clientId}&client_secret=${clientSecret}&v=20200925`;
try{
const response = await fetch(urlToFetch);
if(response.ok){
const jsonResponse= await response.json();
const venues= jsonResponse.response.groups[0].items.map(item=> item.venue);
return venues;
}
}
catch(error){
console.log(error)
}
}
const getForecast = async () => {
const urlToFetch = `${weatherUrl}?&q=${$input.val()}&APPID=${openWeatherKey}`;
try{
const response=await fetch(urlToFetch);
if(response.ok){
const jsonResponse=await response.json();
}
return jsonResponse;
}
catch (error) {
console.log(error);
}
}
// Render functions
const renderVenues = (venues) => {
$venueDivs.forEach(($venue, index) => {
// Add your code here:
const venue = venues[index];
const venueIcon= venue.categories[0].icon;
const venueImgSrc = `${venueIcon.prefix}bg_64${venueIcon.suffix}`;
let venueContent = createVenueHTML(venue.name,venue.location,venueImgSrc);
$venue.append(venueContent);
});
$destination.append(`<h2>${venues[0].location.city}</h2>`);
}
const renderForecast = (day) => {
// Add your code here:
let weatherContent = '';
$weatherDiv.append(weatherContent);
}
const executeSearch = () => {
$venueDivs.forEach(venue => venue.empty());
$weatherDiv.empty();
$destination.empty();
$container.css("visibility", "visible");
getVenues().then(venues=> renderVenues(venues));
}
getForecast()
return false;
}
$submit.click(executeSearch)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment