Hi, I am trying to work through the Wanderlust project and I think I have finished the code. However at some point everything stops working and nothing is displayed when you type in a city. I have gone over the code so many times that I just need someone else to take a look and tell me what’s wrong. I can’t seem to find anything wrong with the code.
The console says Uncaught SyntaxError: Unexpected token ‘catch’
I removed the catch from the block and tried running it again and it told me the catch was missing.
Here is a link to the exercise and my full code.
Please help me figure this out, I have been trying for days and it’s making me really doubt that I can even do this anymore.
// Foursquare API Info
const clientId = '**ClientID Removed**';
const clientSecret = '**ClientSecret Removed**';
const url = 'https://api.foursquare.com/v2/venues/explore?near=';
// OpenWeather Info
const openWeatherKey = '**Weather Key Removed**';
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=20210901"`;
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);
console.log(venues);
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}"`;
const 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 = createWeatherHTML(day);
$weatherDiv.append(weatherContent);
};
const executeSearch = () => {
$venueDivs.forEach(venue => venue.empty());
$weatherDiv.empty();
$destination.empty();
$container.css("visibility", "visible");
getVenues().then (venues => renderVenues(venues));
getForecast().then (forecast => renderForecast(forecast));
return false;
};
$submit.click(executeSearch);
Thank you for any feedback, I just want to learn.