Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created May 4, 2020 14:55
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/53c593aad56619d18ed10d36c0f66bff to your computer and use it in GitHub Desktop.
Save codecademydev/53c593aad56619d18ed10d36c0f66bff to your computer and use it in GitHub Desktop.
Codecademy export
const createVenueHTML = (name, category, location, iconSource) => {
return `<h2>${name}</h2>
<h3 id='category'>${category}</h3>
<img class="venueimage" src="${iconSource}"/>
<h3>Address:</h3>
<p>${location.address}</p>
<p>${location.postalCode}</p>
<p>${location.city}</p>`;
}
const createWeatherHTML = (currentDay) => {
console.log(currentDay)
return `<h2>${weekDays[(new Date()).getDay()]}</h2>
<h2>Temperature: ${kelvinToFahrenheit(currentDay.main.temp)}&deg;F</h2>
<h2>Condition: ${currentDay.weather[0].description}</h2>
<h2>Humidity: ${currentDay.main.humidity}%</h2>
<img src="https://openweathermap.org/img/wn/${currentDay.weather[0].icon}@2x.png">`;
}
const kelvinToFahrenheit = k => ((k - 273.15) * 9 / 5 + 32).toFixed(0);
function shuffleArray(array){
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
};
// Foursquare API Info
const clientId = 'PUWZMU2SL2TJ3YVGL4WK2DMZUXLK3HXZ25MRPR2SVRAKYSYR';
const clientSecret = '4OMHQRT1TXSYCGEQZ0DWCZKID2MITE1SSJQDZA0UQFGUX5XR';
const url = 'https://api.foursquare.com/v2/venues/explore?near=';
// OpenWeather Info
const openWeatherKey = '56a7947a8b5ee54c07fe7adfc6d46157';
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=20180401`;
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) => {
let randomizedArray = shuffleArray(venues);
$venueDivs.forEach(($venue, index) => {
// Add your code here:
const venue = venues[index];
const category = venue.categories[0].name;
const venueIcon = venue.categories[0].icon;
const venueImgSrc = `${venueIcon.prefix}bg_64${venueIcon.suffix}`;
let venueContent = createVenueHTML(venue.name, category, 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment