code with words

This commit is contained in:
Adam Bradley
2013-08-25 01:32:30 -05:00
parent 8f59ba549a
commit 583c0826eb
14 changed files with 244 additions and 90 deletions

View File

@ -58,7 +58,9 @@
<script src="../js/jquery/jquery-1.10.2.js"></script> <script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script> <script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script> <script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script> <script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script> <script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script> <script src="../js/framework/framework-init.js"></script>

View File

@ -24,7 +24,9 @@
<script src="../js/jquery/jquery-1.10.2.js"></script> <script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script> <script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script> <script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/test/event-listeners.js"></script> <script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script> <script src="../js/framework/framework-init.js"></script>
</body> </body>

View File

@ -56,7 +56,9 @@
<script src="../js/jquery/jquery-1.10.2.js"></script> <script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script> <script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script> <script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/framework-buttons.js"></script> <script src="../js/framework/framework-buttons.js"></script>
<script src="../js/framework/test/event-listeners.js"></script> <script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script> <script src="../js/framework/framework-init.js"></script>

View File

@ -101,7 +101,9 @@
<script src="../js/jquery/jquery-1.10.2.js"></script> <script src="../js/jquery/jquery-1.10.2.js"></script>
<script src="../js/framework/framework-events.js"></script> <script src="../js/framework/framework-events.js"></script>
<script src="../js/framework/framework-transition.js"></script>
<script src="../js/framework/framework-navigation.js"></script> <script src="../js/framework/framework-navigation.js"></script>
<script src="../js/framework/framework-template.js"></script>
<script src="../js/framework/test/event-listeners.js"></script> <script src="../js/framework/test/event-listeners.js"></script>
<script src="../js/framework/framework-init.js"></script> <script src="../js/framework/framework-init.js"></script>
</body> </body>

View File

@ -26,4 +26,4 @@
document.addEventListener('touchend', framework.Button.prototype._onTouchEnd); document.addEventListener('touchend', framework.Button.prototype._onTouchEnd);
document.addEventListener('touchcancel', framework.Button.prototype._onTouchEnd); document.addEventListener('touchcancel', framework.Button.prototype._onTouchEnd);
})(this, document, this.FM = this.FM || {}); })(this, document, FM = this.FM || {});

View File

@ -17,7 +17,9 @@
// Some convenient top-level event functions // Some convenient top-level event functions
framework.trigger = function(type, data) { framework.trigger = function(type, data) {
window.dispatchEvent(new CustomEvent(type, data)); window.dispatchEvent(new CustomEvent(type, {
detail: data
}));
}; };
framework.on = function(type, callback, element) { framework.on = function(type, callback, element) {
@ -94,4 +96,5 @@
window.addEventListener('touchend', _touchEnd); window.addEventListener('touchend', _touchEnd);
window.addEventListener('click', _click); window.addEventListener('click', _click);
window.addEventListener('popstate', _popstate); window.addEventListener('popstate', _popstate);
})(this, document, this.FM = this.FM || {});
})(this, document, FM = this.FM || {});

View File

@ -1,31 +1,39 @@
(function(window, document, framework) { (function(window, document, framework) {
// Start initalizing the framework
function initalize() { function initalize() {
// remove the ready listeners
document.removeEventListener( "DOMContentLoaded", initalize, false );
framework.trigger("initalized"); window.removeEventListener( "load", initalize, false );
}
// DOM has completed // trigger that the DOM is ready
function completed() {
// remove any listeners
document.removeEventListener( "DOMContentLoaded", completed, false );
window.removeEventListener( "load", completed, false );
framework.trigger("ready"); framework.trigger("ready");
// init the framework // ensure that the start page has an id
initalize(); var mainElement = document.querySelector("main");
if(mainElement) {
if(!mainElement.id || mainElement.id === "") {
mainElement.id = "pg" + Math.floor( Math.random() * 999999 );
}
// remember what the active page's id is
framework.activePageId = mainElement.id;
// inform the framework that the start page has been added to the DOM
framework.trigger("pagecreate", {id: mainElement.id, url: location.href});
// trigger that the start page is in view
framework.trigger("pageview");
}
} }
// When the DOM is ready, call completed() // When the DOM is ready, initalize the webapp
if ( document.readyState === "complete" ) { if ( document.readyState === "complete" ) {
// DOM is already ready // DOM is already ready
setTimeout( completed ); setTimeout( initalize );
} else { } else {
// DOM isn't ready yet, add event listeners // DOM isn't ready yet, add event listeners
document.addEventListener( "DOMContentLoaded", completed, false ); document.addEventListener( "DOMContentLoaded", initalize, false );
window.addEventListener( "load", completed, false ); window.addEventListener( "load", initalize, false );
} }
})(this, document, this.FM = this.FM || {}); })(this, document, FM = this.FM || {});

View File

@ -20,4 +20,4 @@
document.addEventListener('touchstart', framework.List.prototype._onTouchStart); document.addEventListener('touchstart', framework.List.prototype._onTouchStart);
document.addEventListener('touchend', framework.List.prototype._onTouchEnd); document.addEventListener('touchend', framework.List.prototype._onTouchEnd);
})(this, document, this.FM = this.FM || {}); })(this, document, FM = this.FM || {});

View File

@ -1,19 +1,29 @@
(function(window, document, location, framework) { (function(window, document, location, framework) {
var var
x; x,
link;
// Add listeners to each link in the document // Add listeners to each link in the document
framework.addLinkListeners = function() { function addNavListeners() {
for(x = 0; x < document.links.length; x++) { for(x = 0; x < document.links.length; x++) {
document.links[x].addEventListener('click', linkClick, false); link = document.links[x];
// double check we didnt already add this event
if(!link._hasClick) {
link.addEventListener('click', linkClick, false);
link._hasClick = true;
}
} }
} }
// Remove listeners to each link in the document // Remove listeners from the links in the inactive page element
framework.removeLinkListeners = function() { function removeInactivePageNavListeners(e) {
for(x = 0; x < document.links.length; x++) { var element = document.getElementById(e.detail.id);
document.links[x].removeEventListener('click', linkClick, false); if(element) {
links = element.querySelectorAll("a");
for(x = 0; x < links.length; x++) {
links[x].removeEventListener('click', linkClick, false);
}
} }
} }
@ -37,14 +47,25 @@
return false; return false;
} }
// only intercept the nav click if they're going to the same domain // only intercept the nav click if they're going to the same domain or page
if (location.protocol === target.protocol && location.host === target.host) { if (location.protocol === target.protocol && location.host === target.host) {
// this link is an anchor to the same page
// trigger the event that a new page should be shown
framework.trigger("pageinit", target.href);
// decide how to handle this click depending on the href
if(target.getAttribute("href").indexOf("#") === 0) { if(target.getAttribute("href").indexOf("#") === 0) {
// this click is going to another element within this same page
hashLinkClick(target); hashLinkClick(target);
} else { } else {
// this click is going to another page in the same domain
pageLinkClick(target); pageLinkClick(target);
} }
// stop the browser itself from continuing on with this click
// the above code will take care of the navigation
e.preventDefault(); e.preventDefault();
return false; return false;
} }
@ -52,7 +73,6 @@
// they are navigating to another URL within the same domain // they are navigating to another URL within the same domain
function pageLinkClick(target) { function pageLinkClick(target) {
console.log("pageLinkClick, get:", target.href);
push({ push({
url: target.href url: target.href
@ -64,14 +84,6 @@
console.log("hashLinkClick, get:", target.href); console.log("hashLinkClick, get:", target.href);
} }
function touchEnd(e) {
framework.trigger("touchEnd");
}
function popstate(e) {
}
function push(options) { function push(options) {
framework.isRequesting = true; framework.isRequesting = true;
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
@ -89,12 +101,21 @@
} }
function successPageLoad(xhr, options) { function successPageLoad(xhr, options) {
var data = parseXHR(xhr, options);
framework.isRequesting = false; framework.isRequesting = false;
var data = parseXHR(xhr, options);
insertPageIntoDom(data);
framework.trigger("pagetransition", {
newActivePageId: data.id,
url: data.url,
title: data.title
});
} }
function failedPageLoad(options) { function failedPageLoad(options) {
framework.trigger("pageloadfailed"); framework.trigger("pageinitfailed");
framework.isRequesting = false; framework.isRequesting = false;
} }
@ -111,41 +132,62 @@
container = document.createElement('div'); container = document.createElement('div');
container.innerHTML = xhr.responseText; container.innerHTML = xhr.responseText;
// get the title of the page
tmp = container.querySelector("title"); tmp = container.querySelector("title");
if(tmp) { if(tmp) {
data.title = tmp.innerText; data.title = tmp.innerText;
} else { } else {
tmp = container.querySelector("h1"); data.title = data.url;
if(tmp) {
data.title = tmp.innerText;
} else {
data.title = data.url;
}
} }
// get the main content of the page
tmp = container.querySelector("main"); tmp = container.querySelector("main");
if(tmp) { if(tmp) {
data.main = tmp.innerHTML; // get an id for this element
} else { if(!tmp.id || tmp.id === "") {
tmp = container.querySelector("body"); // it doesn't already have an id, so build a random one for it
if(tmp) { data.id = "pg" + Math.floor( Math.random() * 999999 );
data.main = tmp.innerHTML;
} else { } else {
data.main = container.innerHTML; // use their existing id
data.id = tmp.id;
} }
data.main = tmp.innerHTML;
} }
return data; return data;
} }
framework.on("ready", function(){ function insertPageIntoDom(data) {
// DOM is ready if(data && data.main) {
framework.addLinkListeners(); // get the first main element
}); var oldMainElement = document.querySelector("main");
window.addEventListener('touchstart', function () { framework.isScrolling = false; }); // build a new main element to hold the new data
window.addEventListener('touchmove', function () { framework.isScrolling = true; }) var newMainElement = document.createElement("main");
window.addEventListener('touchend', touchEnd); newMainElement.id = data.id;
window.addEventListener('popstate', popstate); newMainElement.innerHTML = data.main;
})(this, document, location, this.FM = this.FM || {}); // insert the new main element before the old main element
oldMainElement.parentNode.insertBefore(newMainElement, oldMainElement);
// inform the framework that a new page has been added to the DOM
framework.trigger("pagecreate", {
id: data.id,
url: data.url,
title: data.title
});
} else {
// something is wrong with the data, trigger that the page init failed
framework.trigger("pageinitfailed");
}
}
// after a page has been added to the DOM
framework.on("pagecreate", addNavListeners);
// before a page is about to be removed from the DOM
framework.on("pageremove", removeInactivePageNavListeners);
})(this, document, location, FM = this.FM || {});

View File

@ -22,4 +22,4 @@
document.addEventListener('touchstart', framework.Tabs.prototype._onTouchStart); document.addEventListener('touchstart', framework.Tabs.prototype._onTouchStart);
document.addEventListener('touchend', framework.Tabs.prototype._onTouchEnd); document.addEventListener('touchend', framework.Tabs.prototype._onTouchEnd);
})(this, document, this.FM = this.FM || {}); })(this, document, FM = this.FM || {});

View File

@ -0,0 +1,59 @@
'use strict';
(function(window, document, framework) {
// Loop through each element in the DOM and collect up all
// the templates it has. A template either has data to supply
// to others, or it needs data from another template
function initTemplates() {
var
x,
el,
emptyTemplates = [];
// collect up all the templates currently in the DOM
for(x=0; x<document.all.length; x++) {
el = document.all[x];
if(el.dataset.template && !el._templateSet) {
// this element is either supplying template
// data or it needs to be filled with template data
if(el.innerHTML == "") {
// this element is requesting to have its innerHTML
// built from a template already set
emptyTemplates.push(el);
} else {
// this element contains innerHTML which should be used
// as a template for other elements. Save this template
// data for future use.
// Save only in sessionStorage, which maintains a storage area that's
// available for the duration of the page session. A page session
// lasts for as long as the browser is open and survives over page
// reloads and restores. Opening a page in a new tab or window will
// cause a new session to be initiated.
sessionStorage.setItem(el.dataset.template, el.innerHTML);
}
// remember that this is set so we don't bother doing all this
// code again for the same element in the future
el._templateIsSet = true;
}
}
// go through each empty template and build it up with existing template data
for(x=0; x<emptyTemplates.length; x++) {
tmp = sessionStorage.getItem("t:" + el.dataset.template);
if(tmp) {
// we've got template data, plug it into this element's innerHTML
emptyTemplates[x].innerHTML = tmp;
}
}
}
framework.on("pageview", initTemplates);
})(this, document, FM = this.FM || {});

View File

@ -1,17 +0,0 @@
'use strict';
(function(window, document, framework) {
var x;
function collectTemplates() {
for(x=0; x<document.elements.length; x++) {
}
}
framework.on("ready", function(){
framework.collectTemplates();
});
})(this, document, this.FM = this.FM || {});

View File

@ -0,0 +1,18 @@
(function(window, document, framework) {
function transitionBegin(e) {
var activePageElement = document.getElementById(framework.activePageId);
if(activePageElement) {
activePageElement.parentNode.removeChild(activePageElement);
}
}
framework.on("pagetransition", transitionBegin);
})(this, document, FM = this.FM || {});

View File

@ -1,13 +1,46 @@
(function(window, document, framework, $) { (function(window, document, framework) {
framework.on("ready", function(){ // this file should not be apart of the build
console.log("ready") // its just just for testing that the correct
// events are being triggered and at the correct
// times, and so we don't have to hardcode/remove
// console calls throughout the code
framework.on('ready', function(){
console.log('ready');
});
framework.on('initalized', function(){
console.log('initalized');
});
framework.on('pageinit', function(e){
console.log('pageinit:', e.detail);
});
framework.on('pageinitfailed', function(){
console.log('pageinitfailed');
});
framework.on('pagecreate', function(e){
console.log('pagecreate, id:', e.detail.id, ", URL:", e.detail.url);
});
framework.on('pagetransition', function(e){
console.log('pagetransition, newActivePageId:', e.detail.newActivePageId);
});
framework.on('pageload', function(){
console.log('pageload');
});
framework.on('pageview', function(){
console.log('pageview');
});
framework.on('pageremove', function(){
console.log('pageremove');
}); });
// Test that the standard jQuery call works with our event system })(this, document, FM = this.FM || {});
$(window).on("initalized", function() {
console.log("initalized");
});
})(this, document, this.FM = this.FM || {}, jQuery);