HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<meta name="viewport" content="width=device-width" />
<div class="container text-center">
<div class="banner">
<h1 style="text-shadow:1px 1px 10px #29293d;">Local Weather App <img src="http://openweathermap.org/themes/demo/assets/vendor/owm/images/OWM_logo32_32.png" style="opacity: 0.8;filter: alpha(opacity=80);border-radius:15px;"></h1>
<small>www.openweathermap.org</small>
</div>
<div class="main-content text-center">
<form id="man-srch-form" class="row collapse">
<div class="form-group col-xs-12 col-sm-12">
<h4 class="pull-left">Search with ZIP and country code</h4>
</div>
<div class="form-group col-xs-12 col-sm-5">
<input id="txtBoxZCode" type="text" class="form-control" placeholder="Zip Code" />
</div>
<div class="form-group col-xs-12 col-sm-5">
<input id="txtBoxCCode" type="text" class="form-control" placeholder="Country Code"/>
</div>
<div class="form-group col-xs-12 col-sm-2">
<button id="btnMnSearch" class="btn btn-default" type="button" onclick="this.blur();">Search</button>
</div>
</form>
<div class="weather-data-container">
<div class="row pull-right weather-temp-settings">
<a id="tMetric" href="#">metric</a><span> | </span><a id="tImperial" href="#">imperial</a>
</div>
<div class="row pull-right weather-data-settings">
<div class="col-xs-12">
<a class="plain-anchor" href="#"><i class="fa fa-cog fa-2x dropdown dropdown-toggle" data-toggle="collapse" data-target="#man-srch-form"></i></a>
</div>
</div>
<div class="row pull-right weather-app-info">
<div class="col-xs-12">
<a class="plain-anchor" href="#"><i class="fa fa-info-circle fa-2x dropdown dropdown-toggle" data-toggle="collapse" data-target="#weather-app-info-content-container"></i></a>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6 col-lg-6">
<div class="clockDisplay-container">
<p id="dateDisplay"></p>
<h3 id="clockDisplay"></h3>
</div>
</div><!---end of col-xs-12-->
<div class="col-xs-12 col-md-6 col-lg-6">
<div class="curLocationDisp-container">
<h3 id="curLocationDisplay">N/A</h3>
<div id="weather-data">
</div>
</div>
</div><!---end of col-xs-12-->
</div><!---end row 1--->
<div class="row">
<div class="col-xs-4 col-lg-4">
<div>
<h4 class="disp-label">Temp</h4>
<p id="tempDisplay">N/A</p>
</div>
</div><!---end of col-xs-12-->
<div class="col-xs-4 col-md-4">
<div>
<h4 class="disp-label">Humidity</h4>
<p id="humidDisplay">N/A</p>
</div>
</div><!---end of col-xs-12-->
<div class="col-xs-4 col-md-4">
<div>
<h4 class="disp-label">Wind</h4>
<p id="windDisplay">N/A</p>
</div>
</div><!---end of col-xs-12-->
</div><!---end row 1--->
</div><!--end weather-data-container-->
</div><!--end main-content-->
<p><small>© 2016 WeAreNotGroot.com and FreeCodeCamp.com. All Rights Reserved</small></p>
<!--App info-->
<div id="weather-app-info-content-container" class="collapse">
<ul style="margin:0;text-align:left;">
<li>
This app uses html geolocation via google apis.
</li>
<li>
If geolocation is disabled in your browser, enable it and refresh the page.
</li>
<li>
If geolocation is not supported in your browser, try manual search using zip and country code in the app settings by clicking the cog-icon above(e.g. zip = 10013, country code = us, New York)
</li>
<li>
Another feature available is the choice of unit system by clicking their respective buttons. Metric or Imperial(e.g. °C or °F )
</li>
<li>
This app does not work on (https://) connection
</li>
</ul>
</div>
<!--TOMORROWS FORECAST-->
<button id="btnNxtForecast">how does tomorrow looks?</button>
<div id="nextForecast-container" class="container text-center" style="display:none;">
Forecast
<hr/>
<div id="nxt-forecast-contents" class="nxt-forecast-content text-center">
</div><!----next forecast content--->
</div>
</div>
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Passion+One');
html, body
{
width:100%;
height:100%;
font-size:14px;
}
body
{
min-width:335px;
width:100%;
height:100%;
font-family:Montserrat;
color:#e2e9e9;
background-color:#b9adad;
background-repeat: no-repeat;
background-attachment: fixed;
font-size:14px;
}
@media screen and (min-width: 380px) and(max-width:400px)
{
#clockDisplay
{
font-size:65%!important;
}
.banner, h1
{
margin:0px auto!important;
}
.weather-data-container, #man-srch-form
{
min-width:85%!important;
}
#nextForecast-container
{
min-width:80%!impotant;
}
.main-content
{
margin:0!important;
}
}
.plain-anchor, .plain-anchor:visited
{
color:white;
text-decoration:none;
}
#man-srch-form
{
margin:10px auto!important;
width:67%;
}
#man-srch-form input
{
border-radius:10px;
background:transparent;
background-color:rgba(0,0,0,0.3);
margin-bottom:5px;
color:white;
}
#man-srch-form button
{
border-radius:10px;
background:transparent;
background-color:rgba(0,0,0,0.1);
color:inherit;
}
.weather-temp-settings a
{
color:#d7e9ef;
text-decoration:none;
}
.weather-data-container .weather-temp-settings > a:hover
{
color:#5ca4bc;
}
.toggle.weather
{
background:transparent;
border-radius:15px; background-color:rgba(0,0,0,0.1)!important;
}
.dropdown-content
{
text-align:center;
padding:10px;
color:white;
background:transparent;
background-color:rgba(0,0,0,0.2);
border-radius:15px;
}
#btnNxtForecast
{
background:transparent!important;
border:none!important;
}
#btnNxtForecast:focus
{
outline:none;
}
.btnNxtForecast:hover
{
transform:scale(1.1);
}
#nextForecast-container
{
margin:20px auto;
padding:10px;
width:65%;
border-radius:25px;
background:rgba(0,0,0,0.2);
}
.nxt-forecast-content
{
width:100%;
margin:0 auto;
}
.nxt-forecast-item
{
max-width:100%;
margin:0 auto;
}
.banner
{
margin:50px auto;
font-size:1.5em;
}
.main-content
{
width:100%;
height:100%;
margin:10px auto;
padding:auto;
}
.weather-data-settings
{
padding:0!important;
margin-right:-152px!important;/*OG -80px*/
margin-top:-15px!important;/*OG -15px*/
}
.weather-app-info
{
padding:0!important;
margin-right:-152px!important;/*OG -80px*/
margin-top:20px!important;
}
#weather-app-info-content-container
{
margin:10px auto!important;
width:70%;
}
.weather-data-container
{
padding:25px;
margin:0 auto!important;
width:67%;
min-height:200px;
color:#f2f2f2;
border-radius:25px;
border-style:none;
background-color:rgba(0,0,0,0.2);
}
#data-text
{
}
.clockDisplay-container
{
margin:0 auto;
display:inline-block;
float:left;
font-size:100px;
}
#dateDisplay
{
margin:0 auto;
font-size:20%;
}
#clockDisplay
{
margin:0 auto;
font-size:65%;
}
#clockDisplay:hover
{
transform:scale(1.1);
}
.curLocationDisp-container
{
float:right;
}
.disp-label
{
word-wrap:break-word;
}
.backdrop-night
{
background-attachment: fixed;
background-repeat: no-repeat;
background: #b9adad; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#0D0333,#301140,#571C3F) fixed; /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#0D0333,#301140,#571C3F) fixed; /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#0D0333,#301140,#571C3F) fixed; /* For Firefox 3.6 to 15 */
background: linear-gradient(#0D0333,#26013D,#301140) fixed; /* Standard syntax */
}
.backdrop-morning
{
background-attachment: fixed;
background-repeat: no-repeat;
background: #b9adad; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#4dc4ff,#ffcc66) fixed; /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#4dc4ff,#ffcc66) fixed; /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#4dc4ff,#ffcc66) fixed; /* For Firefox 3.6 to 15 */
background: linear-gradient(#4dc4ff,#ffcc66) fixed; /* Standard syntax */
}
.backdrop-midday
{
background-attachment: fixed;
background-repeat: no-repeat;
background: #b9adad; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#99ccff,#66b2ff) fixed; /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#99ccff,#66b2ff) fixed; /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#99ccff,#66b2ff) fixed; /* For Firefox 3.6 to 15 */
background: linear-gradient(#99ccff,#66b2ff) fixed; /* Standard syntax */
}
.backdrop-dusk
{
background-attachment: fixed;
background-repeat: no-repeat;
background: #b9adad; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#ff9966, #9966ff) fixed; /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#ff9966, #9966ff) fixed; /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#ff9966, #9966ff) fixed; /* For Firefox 3.6 to 15 */
background: linear-gradient(#ff9966, #9966ff) fixed; /* Standard syntax */
}
.backdrop-dawn
{
background-attachment: fixed;
background-repeat: no-repeat;
background: #b9adad; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#9966ff,#ff9966) fixed; /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#9966ff,#ff9966) fixed; /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#9966ff,#ff9966) fixed; /* For Firefox 3.6 to 15 */
background: linear-gradient(#9966ff,#ff9966) fixed; /* Standard syntax */
}
/*
* Jan, 2016
* author: @wearenotgroot, FreeCodeCamp.com
* Greg
*/
$(document).ready(function(){
/*EVENT LISTENERS*/
document.getElementById("btnNxtForecast").addEventListener('click', displayNextDaysForecast);//add listener for the button pressed
document.getElementById('btnMnSearch').addEventListener('click',manualSearch); //add listener to manual search button
//add listener to manual metric and
document.getElementById('tMetric').addEventListener('click',toggleUnits);
document.getElementById('tImperial').addEventListener('click',toggleUnits);
/***VARIABLES AND REFERENCES***/
var time, hh, mm; //variable time hours and minutes
var timer = ""; //reference variable for the timeout object
var backdropTimer = ""; //backdrop timer(interval) variable reference
var clockDisplay = $('#clockDisplay'); //reference variable for the clock display
var dateDisplay = $('#dateDisplay'); //date display
var locationDisplay = $('#curLocationDisplay'); //current location display
var location = ""; //location variable city,country
var countryCode = ""; // country code
var zipCode = ""; // zip code
var weatherDisplay = $('#weather-data');//weather display
var tempDisplay = $('#tempDisplay'); //temperature display
var humidDisplay = $('#humidDisplay'); //humidity display
var windDisplay = $('#windDisplay'); //wind speed display
var longitude = ''; //map coordinate of user location
var latitude = ''; //map coordinate of user location
var weatherTimer = ''; //used in function timeout and intervals
var intervalStarted = false; //used to determine if the local weather check has started(checks every minute atm)
var body = $('body'); //ref variable, for the page body, used in setting the right backdrop
var localWeatherData = '';//object holder for local weather data
var forecastTimer = ''; //ref variable for forecast timeout/interval(id)
var forecastIntervalStarted = false; //ref variable for forecast start update check
var forecastItems = []; //array - holds the forecast data objects
var btnNxtForecast = $('#btnNxtForecast'); //ref variable, button to show the next days forecast
var nxtForecastContainer = $('#nextForecast-container'); //ref variable, container for the forecast list items
var nxtForecastContents = $('#nxt-forecast-contents');//container for the next days forecast data
var chckboxMISystem = $('#chckMISystem'); // checkbox/toggle for unit system(metric/imperial)
var units = 'metric';// unit system
var txtBoxZip = $('#txtBoxZCode');
var txtBoxCountry = $('#txtBoxCCode');
/**Static values for conversion and lookup**/
var backdrops = {dawn:'backdrop-dawn', morning:'backdrop-morning', mid:'backdrop-midday', dusk:'backdrop-dusk', night:'backdrop-night'}; //backdrop class list
var months = {0:'Jan',1:'Feb',2:'Mar',3:'Apr',4:'May',5:'Jun',6:'Jul',7:'Aug',8:'Sept',9:'Oct',10:'Nov',11:'Dec'} //list of months in a year
/*
* GET THE CURRENT TIME ON WHEN THE PAGE LOAD
* GET CURRENT LOCATION BASE ON IP(IP-API)
*
*/
initAll(); //initialise all necessary functions
/*
* Initialization
* start clock
* get current location base on ip
* get local weather
*/
function initAll()
{
resetClockTimer(); //reset timeout object if any
resetWeatherTimer(); //reset weather timeout/intervals
getCurrentLocation(); //get location via html 5 geolocate/ip-api
startClock(); // start a new timeout and get the current time
getLocalWeather(); //get local weather data
//getNextDaysForecast(false); //get local weather forecast for the next few days
}
/**Get location**/
/*
* use geolocation otherwise
* use manual search by clicking the cogwheel
*/
function getCurrentLocation()
{
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(displayCurrentLocation, errorHandling);
} else {
locationDisplay.text('browser support N/A');
console.log("Geolocation is not supported by this browser.");
}
}
/*
* update and display the users current location
*/
function displayCurrentLocation(data)
{
if(data['status'] ==='success')
{
location = data['city'] + ', ' + data['country'];
zipCode = data['zip'];
longitude = data['lon'];
latitude = data['lat'];
countryCode = data['countryCode'];
}
else if(data['cod'] == '200')
{
if(data.hasOwnProperty('city'))
{
location = data['city']['name'] +', '+data['city']['country'];
}
else
{
location = data['name'] +', '+data['sys']['country'];
}
}
else if(data && data.coords !== null)
{
if(longitude === '' && latitude === ''){
console.log(data.coords.longitude);
longitude = data.coords.longitude;
latitude = data.coords.latitude;
}
}
else
{
location = 'Location unavailable';
}
locationDisplay.text(location);
}
/*GET THE CURRENT TIME*/
function startClock()
{
timer = setTimeout(updateClockDisplay,500); //start clock
setBackdrop(); //set backdrop on page load
backdropTimer = setTimeout(setBackdrop,360000); //set interval to check for the right backdrop every hour
}
/*
* Reset timer and clear the interval by its ID
*/
function resetClockTimer()
{
updateClockDisplay(); //make sure the current time is display when page load
if(timer !== "")
{
clearTimeout(backdropTimer);
clearTimeout(timer);
timer = "";
}
}
/*
* Reset timer and clear the interval by its ID
*/
function resetWeatherTimer()
{
if(weatherTimer !== "")
{
clearTimeout(forecastTimer);
clearTimeout(weatherTimer);
weatherTimer = "";
forecastTimer = "";
}
}
/*
* Get the current time by Date object
*/
function getTime()
{
time = new Date();
hh = time.getHours();
mm = time.getMinutes();
displayCurrentDate(time); //update current date display
return (hh < 10 ? '0' + hh : hh) + ':' + (mm < 10 ? '0' + mm : mm);
}
/*
* Get current date and update display
* format: MM, dd YYYY
*/
function displayCurrentDate(date)
{
dateDisplay.text(months[date.getMonth()] + ' ' + date.getDate() + ', ' +date.getFullYear());
}
/*
* Update clock display
*
*/
function updateClockDisplay()
{
clockDisplay.text(getTime());
timer = setTimeout(updateClockDisplay,500); //set another timeout to update the clock display
}
/*
* Get local weather
* send api request to get local weather
* param - country code and zip code
*/
function getLocalWeather()
{
if(latitude === '' && longitude === '')
{
weatherTimer = setTimeout(getLocalWeather,60000);
return;
}
else
{
clearTimeout(weatherTimer);
if(!intervalStarted)
{
weatherTimer = setTimeout(getLocalWeather,60000);
intervalStarted = true;
}
}
$.getJSON('https://lying-stream.glitch.me/api/weather', { coords:{lat:latitude,lon:longitude} }, function(data){console.log(data)}).done(storeLocalWeatherData).fail(errorHandling);
weatherTimer = setTimeout(getLocalWeather,60000);
}
/*
* Manually search for weather data
* using ZIP-code and Country-Code
*/
function manualSearch(event)
{
event.stopPropagation();//stops dropdown-menu from closing
resetWeatherTimer();
zipCode = txtBoxZip.val();
countryCode = txtBoxCountry.val();
location = zipCode.trim() + ',' + countryCode.trim();
if(zipCode !== '' && countryCode !== '')
{
getNextDaysForecast(true);
}
}
/*
* Get forecast data for the next few days
* Call api to get forecast data
* data will be listed below the todays current weather forecast(user clicks how does tomorrow looks?)
*/
function getNextDaysForecast(isManual)
{
clearTimeout(forecastTimer);
if(location === '')
{
forecastTimer = setTimeout(function(){getNextDaysForecast(isManual);},30000);
return;
}
else
{
if(!forecastIntervalStarted && !isManual)
{
forecastTimer = setTimeout(function(){getNextDaysForecast(isManual);},1080000);
forecastIntervalStarted = true;
}
}
if(isManual)
{
$.getJSON('https://lying-stream.glitch.me/api/weather', { zip: location },function(){}).done(function(data){storeForecastData(data,isManual);}).fail(errorHandling);
}
else
{
$.getJSON('https://lying-stream.glitch.me/api/weather', { forecast: true, coords:{lat:latitude,lon:longitude} },function(){}).done(function(data){storeForecastData(data,isManual);}).fail(errorHandling);
forecastTimer = setTimeout(function(){getNextDaysForecast(isManual);},1080000);
}
}
function errorHandling(jqXHR, textStatus, errorThrown)
{
//console.log('Data unavailable');
}
/*
* Forecast item object
*/
var ForecastItem = function(newDate,newIcon,newDesc,newTemp,newHumid,newSpeed,newUnits)
{
var date = new Date(newDate);
var icon = newIcon;
var description = newDesc;
var temperature = newTemp;
var humidity = newHumid;
var wind = newSpeed;
var units = newUnits || 'metric';
this.getDate = function(){ return date; }
this.setDate = function(newDate){ date = newDate; }
this.getIcon = function(){ return icon; }
this.setIcon = function(newIcon){ icon = newIcon; }
this.getDescription = function(){ return description; }
this.setDescription = function(newDesc){ description = newDesc; }
this.getTemperature = function(){ return (units === 'metric' ? temperature + ' ' + String.fromCharCode(176)+'C': this.convertToFahrenheit(temperature)+ String.fromCharCode(176) + 'F'); }
this.setTemperature = function(newTemp){ temperature = newTemp; }
this.getHumidity = function(){ return humidity+ ' %'; }
this.setHumidity = function(newHumid){ humidity = newHumid; }
this.getWind = function(){ return (units === 'metric' ? wind + ' m/s': this.convertToMPH(wind) + ' mph'); }
this.setWind = function(newSpeed){ description = newSpeed; }
this.getUnits = function(){ return units; }
this.setUnits = function(newUnits){ units = newUnits; }
this.condenseDate = function()
{
return date.getDate() + ' ' + months[date.getMonth()];
}
this.getForecastTime = function()
{
return (date.getHours() < 10 ? '0' + date.getHours():date.getHours()) + ':' + (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
}
this.convertToMPH = function(val)
{
val = val * 2.24;
return Math.floor(val) + '.' + Math.round((val%1)*10);
}
this.convertToFahrenheit = function(val)
{
val = val * (9/5) + 32;
return Math.floor(val) + '.' + Math.round((val%1)*10);
}
};
/*
* Get the data store in the forecast array
* and appends html elements to display the data
*/
function displayForecast()
{
if(forecastItems.length > 0)
{
nxtForecastContents.empty();
for(var i = 0; i < forecastItems.length; i++)
{
forecastItems[i].setUnits(units);//use to update chosen unit system
var html = '<div class=\"row nxt-forecast-item\"><div class=\"col-xs-6 col-lg-3\"><div><h3>'+ forecastItems[i].condenseDate()+'</h3><p>'+ forecastItems[i].getForecastTime() +'</p></div></div> <div class=\"col-xs-6 col-lg-2\"><div><h4><img src=\"'+ forecastItems[i].getIcon() +'\"></img></h4><p>'+ forecastItems[i].getDescription() +'</p></div></div> <div class=\"col-xs-4 col-lg-2\"><div><h4 class=\"disp-label\">Temp</h4><p>'+ forecastItems[i].getTemperature() +'</p></div></div> <div class=\"col-xs-4 col-lg-2\"><div><h4 class=\"disp-label\">Humidity</h4><p>'+ forecastItems[i].getHumidity() +'</p></div></div> <div class=\"col-xs-4 col-lg-2\"><div><h4 class=\"disp-label\">Wind</h4><p>'+ forecastItems[i].getWind() +'</p></div></div> </div><hr/>'
nxtForecastContents.append(html);
}
}
}
/*
* Api callback function
* stores results in an array of objects type(ForecastItems)
*/
function storeForecastData(data,isManual)
{
var list = [];
if(data['cod'] == '200')
{
list = data['list'];
forecastItems = [];
for(var i = 0; i < list.length; i++)
{
var item = new ForecastItem(list[i]['dt_txt'].replace(/[-]/g,'/'),list[i]['weather'][0]['icon'],list[i]['weather'][0]['description'],list[i]['main']['temp'],list[i]['main']['humidity'],(list[i]['wind'] === null ? 0: list[i]['wind']['speed']),units);
forecastItems.push(item);
}
if(isManual)
{
displayCurrentLocation(data);
localWeatherData = forecastItems[0];
localWeatherData.setUnits(units);
displayLocalWeather(localWeatherData);
displayForecast();
}
}
}
/*
* Api callback function
* stores results in an objects type(ForecastItems)
*/
function storeLocalWeatherData(data)
{
if(data && !data.error)
{
console.log(data);
displayCurrentLocation(data); //display location{city, country}
localWeatherData = new ForecastItem(data.dt, data.icon, data.description, data.temp, data.humidity, data.wind.speed, data.units);
displayLocalWeather(localWeatherData);//display data
}
else
{
weatherDisplay.text('N/A');
}
}
/*
* Display local weather
*/
function displayLocalWeather(data)
{
weatherDisplay.empty();
var html = '<p><img src=\"' + data.getIcon() + '\">' + data.getDescription() +'</img></p>';
weatherDisplay.append(html);//append html
/*humidity, temperature, wind */
tempDisplay.text(data.getTemperature());
humidDisplay.text(data.getHumidity());
windDisplay.text(data.getWind());
}
/*
* set backdrop class according to the time
*/
function setBackdrop()
{
clearTimeout(backdropTimer);
removeBackdrop();//remove the backdrop class if set already before updating
if(hh >= 5 && hh <= 6)
{
body.addClass(backdrops['dawn']);
}
else if(hh > 6 && hh <= 10)
{
body.addClass(backdrops['morning']);
}
else if(hh > 10 && hh < 16)
{
body.addClass(backdrops['mid']);
}
else if(hh >= 16 && hh <= 18)
{
body.addClass(backdrops['dusk']);
}
else if(hh > 18 && hh < 24)
{
body.addClass(backdrops['night']);
}
else
{
body.addClass(backdrops['night']);
}
backdropTimer = setTimeout(setBackdrop,360000);
}
/*
* remove backdrop class if found in the body
*/
function removeBackdrop()
{
/*remove any backdrop class found in the body*/
body.removeClass(function (index, css) {
return (css.match(/((backdrop)(-\w+))/g) || []).join('');
});
}
/**Next Days Forecast**/
function displayNextDaysForecast()
{
closeNxtDaysDispForecast();
}
var isHidden = true; //determines if the forecast list container is hidden
/*
* Toggles forecast list container's visibility
* show/hide
*/
function closeNxtDaysDispForecast()
{
displayForecast();
nxtForecastContainer.slideToggle('slow');
/*if(!isHidden)
{
nxtForecastContainer.hide();
isHidden = true;
}
else
{
displayForecast(); //get and display forecast data if the container is visible
nxtForecastContainer.show();
isHidden = false;
}*/
}
/*
* Toggle between metric and imperial units
*/
function toggleUnits(e)
{
var id = e.target.id;
if(id === 'tMetric')
{
units = 'metric';
}
else
{
units = 'imperial';
}
/*update display with chosen unit system*/
if(forecastItems.length > 0)
{
displayForecast();
}
if(localWeatherData !== '')
{
localWeatherData.setUnits(units);
displayLocalWeather(localWeatherData);
}
}
});
Also see: Tab Triggers