mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-21 00:10:24 +00:00
382 lines
11 KiB
JavaScript
382 lines
11 KiB
JavaScript
/*!
|
|
* jQuery Mobile
|
|
* http://jquerymobile.com/
|
|
*
|
|
* Copyright 2010, jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
(function( jQuery, window, undefined ) {
|
|
//some critical feature tests should be placed here.
|
|
//if we're missing support for any of these, then we're a C-grade browser
|
|
//to-do: see if we need more qualifiers here.
|
|
if ( !jQuery.support.mediaquery ) {
|
|
return;
|
|
}
|
|
|
|
//these properties should be made easy to override externally
|
|
jQuery.mobile = {};
|
|
|
|
jQuery.extend(jQuery.mobile, {
|
|
subPageUrlKey: 'ui-page', //define the key used in urls for sub-pages. Defaults to &ui-page=
|
|
degradeInputs: {
|
|
color: true,
|
|
date: true,
|
|
datetime: true,
|
|
"datetime-local": true,
|
|
email: true,
|
|
month: true,
|
|
number: true,
|
|
range: true,
|
|
search: true,
|
|
tel: true,
|
|
time: true,
|
|
url: true,
|
|
week: true
|
|
},
|
|
addBackBtn: true
|
|
});
|
|
|
|
var $window = jQuery(window),
|
|
$html = jQuery('html'),
|
|
$head = jQuery('head'),
|
|
$body,
|
|
$loader = jQuery('<div class="ui-loader ui-body-a ui-corner-all"><span class="ui-icon ui-icon-loading spin"></span><h1>loading</h1></div>'),
|
|
startPage,
|
|
startPageId = 'ui-page-start',
|
|
activePageClass = 'ui-page-active',
|
|
pageTransition,
|
|
transitions = 'slide slideup slidedown pop flip fade',
|
|
transitionDuration = 350,
|
|
backBtnText = "Back",
|
|
urlStack = [ {
|
|
url: location.hash.replace( /^#/, "" ),
|
|
transition: "slide"
|
|
} ],
|
|
focusable = "[tabindex],a,button:visible,select:visible,input",
|
|
nextPageRole = null;
|
|
|
|
// TODO: don't expose (temporary during code reorg)
|
|
$.mobile.urlStack = urlStack;
|
|
|
|
//consistent string escaping for urls and IDs
|
|
function idStringEscape(str){
|
|
return str.replace(/[^a-zA-Z0-9]/, '-');
|
|
}
|
|
|
|
$.mobile.idStringEscape = idStringEscape;
|
|
|
|
// hide address bar
|
|
function hideBrowserChrome() {
|
|
// prevent scrollstart and scrollstop events
|
|
jQuery.event.special.scrollstart.enabled = false;
|
|
setTimeout(function() {
|
|
window.scrollTo( 0, 0 );
|
|
},0);
|
|
setTimeout(function() {
|
|
jQuery.event.special.scrollstart.enabled = true;
|
|
}, 150 );
|
|
}
|
|
|
|
function getBaseURL(){
|
|
var newBaseURL = location.hash.replace(/#/,'').split('/');
|
|
if(newBaseURL.length && /[.|&]/.test(newBaseURL[newBaseURL.length-1]) ){
|
|
newBaseURL.pop();
|
|
}
|
|
newBaseURL = newBaseURL.join('/');
|
|
if(newBaseURL !== "" && newBaseURL.charAt(newBaseURL.length-1) !== '/'){ newBaseURL += '/'; }
|
|
return newBaseURL;
|
|
}
|
|
|
|
function setBaseURL(){
|
|
//set base url for new page assets
|
|
$('#ui-base').attr('href', getBaseURL());
|
|
}
|
|
|
|
function resetBaseURL(){
|
|
$('#ui-base').attr('href', location.pathname);
|
|
}
|
|
|
|
|
|
// send a link through hash tracking
|
|
jQuery.fn.ajaxClick = function() {
|
|
var href = jQuery( this ).attr( "href" );
|
|
pageTransition = jQuery( this ).data( "transition" ) || "slide";
|
|
nextPageRole = jQuery( this ).attr( "data-rel" );
|
|
|
|
//find new base for url building
|
|
var newBaseURL = getBaseURL();
|
|
|
|
//if href is absolute but local, or a local ID, no base needed
|
|
if( /^\//.test(href) || (/https?:\/\//.test(href) && !!(href).match(location.hostname)) || /^#/.test(href) ){
|
|
newBaseURL = '';
|
|
}
|
|
|
|
// set href to relative path using baseURL and
|
|
if( !/https?:\/\//.test(href) ){
|
|
href = newBaseURL + href;
|
|
}
|
|
|
|
//if it's a non-local-anchor and Ajax is not supported, or if it's an external link, go to page without ajax
|
|
if ( ( /^[^#]/.test(href) && !jQuery.support.ajax ) || ( /https?:\/\//.test(href) && !!!href.match(location.hostname) ) ) {
|
|
location = href
|
|
}
|
|
else{
|
|
// let the hashchange event handler take care of requesting the page via ajax
|
|
location.hash = href;
|
|
}
|
|
return this;
|
|
};
|
|
|
|
// ajaxify all navigable links
|
|
jQuery( "a:not([href=#]):not([target]):not([rel=external])" ).live( "click", function(event) {
|
|
jQuery( this ).ajaxClick();
|
|
return false;
|
|
});
|
|
|
|
// turn on/off page loading message.
|
|
function pageLoading( done ) {
|
|
if ( done ) {
|
|
$html.removeClass( "ui-loading" );
|
|
} else {
|
|
$loader.appendTo('body').css({top: $(window).scrollTop() + 75});
|
|
$html.addClass( "ui-loading" );
|
|
}
|
|
};
|
|
|
|
//for directing focus to the page title, or otherwise first focusable element
|
|
function reFocus(page){
|
|
var pageTitle = page.find( ".ui-title:eq(0)" );
|
|
if( pageTitle.length ){
|
|
pageTitle.focus();
|
|
}
|
|
else{
|
|
page.find( focusable ).eq(0).focus();
|
|
}
|
|
}
|
|
|
|
// transition between pages - based on transitions from jQtouch
|
|
function changePage( from, to, transition, back ) {
|
|
jQuery( document.activeElement ).blur();
|
|
|
|
|
|
//trigger before show/hide events
|
|
from.trigger("beforepagehide", {nextPage: to});
|
|
to.trigger("beforepageshow", {prevPage: from});
|
|
|
|
function loadComplete(){
|
|
pageLoading( true );
|
|
//trigger show/hide events, allow preventing focus change through return false
|
|
if( from.trigger("pagehide", {nextPage: to}) !== false && to.trigger("pageshow", {prevPage: from}) !== false ){
|
|
reFocus( to );
|
|
}
|
|
}
|
|
|
|
if(transition){
|
|
// animate in / out
|
|
from.addClass( transition + " out " + ( back ? "reverse" : "" ) );
|
|
to.addClass( activePageClass + " " + transition +
|
|
" in " + ( back ? "reverse" : "" ) );
|
|
|
|
// callback - remove classes, etc
|
|
to.animationComplete(function() {
|
|
from.add( to ).removeClass(" out in reverse " + transitions );
|
|
from.removeClass( activePageClass );
|
|
loadComplete();
|
|
});
|
|
}
|
|
else{
|
|
from.removeClass( activePageClass );
|
|
to.addClass( activePageClass );
|
|
loadComplete();
|
|
}
|
|
};
|
|
|
|
jQuery(function() {
|
|
var preventLoad = false;
|
|
|
|
$body = jQuery( "body" );
|
|
pageLoading();
|
|
|
|
// needs to be bound at domready (for IE6)
|
|
// find or load content, make it active
|
|
$window.bind( "hashchange", function(e, extras) {
|
|
if ( preventLoad ) {
|
|
preventLoad = false;
|
|
return;
|
|
}
|
|
|
|
var url = location.hash.replace( /^#/, "" ),
|
|
stackLength = urlStack.length,
|
|
// pageTransition only exists if the user clicked a link
|
|
back = !pageTransition && stackLength > 1 &&
|
|
urlStack[ stackLength - 2 ].url === url,
|
|
transition = (extras && extras.manuallyTriggered) ? false : pageTransition || "slide",
|
|
fileUrl = url;
|
|
pageTransition = undefined;
|
|
|
|
//reset base to pathname for new request
|
|
resetBaseURL();
|
|
|
|
// if the new href is the same as the previous one
|
|
if ( back ) {
|
|
transition = urlStack.pop().transition;
|
|
} else {
|
|
urlStack.push({ url: url, transition: transition });
|
|
}
|
|
|
|
//function for setting role of next page
|
|
function setPageRole( newPage ) {
|
|
if ( nextPageRole ) {
|
|
newPage.attr( "data-role", nextPageRole );
|
|
nextPageRole = undefined;
|
|
}
|
|
}
|
|
|
|
//wrap page and transfer data-attrs if it has an ID
|
|
function wrapNewPage( newPage ){
|
|
var copyAttrs = ['data-role', 'data-theme', 'data-fullscreen'], //TODO: more page-level attrs?
|
|
wrapper = newPage.wrap( "<div>" ).parent();
|
|
|
|
$.each(copyAttrs,function(i){
|
|
if( newPage.attr( copyAttrs[ i ] ) ){
|
|
wrapper.attr( copyAttrs[ i ], newPage.attr( copyAttrs[ i ] ) );
|
|
newPage.removeAttr( copyAttrs[ i ] );
|
|
}
|
|
});
|
|
return wrapper;
|
|
}
|
|
|
|
if ( url ) {
|
|
var active = jQuery( ".ui-page-active" );
|
|
|
|
// see if content is present already
|
|
var localDiv = jQuery( "[id='" + url + "']" );
|
|
if ( localDiv.length ) {
|
|
if ( localDiv.is( "[data-role]" ) ) {
|
|
setPageRole( localDiv );
|
|
}
|
|
setBaseURL();
|
|
localDiv.page();
|
|
changePage( active, localDiv, transition, back );
|
|
|
|
} else { //ajax it in
|
|
pageLoading();
|
|
|
|
if ( url.match( '&' + jQuery.mobile.subPageUrlKey ) ) {
|
|
fileUrl = url.split( '&' + jQuery.mobile.subPageUrlKey )[0];
|
|
}
|
|
|
|
$.ajax({
|
|
url: fileUrl,
|
|
success: function( html ) {
|
|
var page = jQuery("<div>" + html + "</div>").find('[data-role="page"]');
|
|
|
|
if ( page.attr('id') ) {
|
|
page = wrapNewPage( page );
|
|
}
|
|
|
|
page
|
|
.attr( "id", fileUrl )
|
|
.appendTo( "body" );
|
|
|
|
setPageRole( page );
|
|
page.page();
|
|
changePage( active, page, transition, back );
|
|
},
|
|
error: function() {
|
|
pageLoading( true );
|
|
|
|
jQuery("<div class='ui-loader ui-overlay-shadow ui-body-e ui-corner-all'><h1>Error Loading Page</h1></div>")
|
|
.css({ "display": "block", "opacity": 0.96 })
|
|
.appendTo("body")
|
|
.delay( 800 )
|
|
.fadeOut( 400, function(){
|
|
$(this).remove();
|
|
});
|
|
|
|
preventLoad = true;
|
|
history.back();
|
|
}
|
|
});
|
|
|
|
setBaseURL();
|
|
}
|
|
} else {
|
|
// either we've backed up to the root page url
|
|
// or it's the first page load with no hash present
|
|
var currentPage = jQuery( ".ui-page-active" );
|
|
if ( currentPage.length && !startPage.is( ".ui-page-active" ) ) {
|
|
changePage( currentPage, startPage, transition, back );
|
|
} else {
|
|
startPage.trigger("beforepageshow", {prevPage: $('')});
|
|
startPage.addClass( activePageClass );
|
|
pageLoading( true );
|
|
|
|
if( startPage.trigger("pageshow", {prevPage: $('')}) !== false ){
|
|
reFocus(startPage);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
//add orientation class on flip/resize.
|
|
$window.bind( "orientationchange", function( event, data ) {
|
|
$html.removeClass( "portrait landscape" ).addClass( data.orientation );
|
|
});
|
|
|
|
//add mobile, loading classes to doc
|
|
$html.addClass('ui-mobile');
|
|
|
|
//insert mobile meta - these will need to be configurable somehow.
|
|
$head.prepend(
|
|
'<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1" />' +
|
|
'<base href="" id="ui-base" />'
|
|
);
|
|
|
|
//set base href to pathname
|
|
resetBaseURL();
|
|
|
|
//incomplete fallback to workaround lack of animation callbacks.
|
|
//should this be extended into a full special event?
|
|
// note: Expects CSS animations use transitionDuration (350ms)
|
|
jQuery.fn.animationComplete = function(callback){
|
|
if(jQuery.support.WebKitAnimationEvent){
|
|
return jQuery(this).one('webkitAnimationEnd', callback); //check out transitionEnd (opera per Paul's request)
|
|
}
|
|
else{
|
|
setTimeout(callback, transitionDuration);
|
|
}
|
|
};
|
|
|
|
jQuery.extend({
|
|
pageLoading: pageLoading,
|
|
changePage: changePage,
|
|
hideBrowserChrome: hideBrowserChrome
|
|
});
|
|
|
|
//dom-ready
|
|
jQuery(function(){
|
|
|
|
//set up active page
|
|
startPage = jQuery('[data-role="page"]:first');
|
|
|
|
//make sure it has an ID - for finding it later
|
|
if(!startPage.attr('id')){
|
|
startPage.attr('id', startPageId);
|
|
}
|
|
|
|
//initialize all pages present
|
|
jQuery('[data-role="page"]').page();
|
|
|
|
//trigger a new hashchange, hash or not
|
|
$window.trigger( "hashchange", { manuallyTriggered: true } );
|
|
|
|
//update orientation
|
|
$html.addClass( jQuery.event.special.orientationchange.orientation( $window ) );
|
|
});
|
|
|
|
$window.load(hideBrowserChrome);
|
|
|
|
})( jQuery, this );
|