1 /* ***************************************************************************
2 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 * ***************************************************************************
23 * Author: Jinhyuk Jun <jinhyuk.jun@samsung.com>
26 (function ( $, undefined ) {
28 $.widget( "mobile.pagelayout", $.mobile.widget, {
30 visibleOnPageShow: true,
31 disablePageZoom: true,
32 transition: "slide", //can be none, fade, slide (slide maps to slideup or slidedown)
35 tapToggleBlacklist: "a, input, select, textarea, .ui-header-fixed, .ui-footer-fixed",
36 hideDuringFocus: "input, textarea, select",
37 updatePagePadding: true,
38 trackPersistentToolbars: true,
39 // Browser detection! Weeee, here we go...
40 // Unfortunately, position:fixed is costly, not to mention probably impossible, to feature-detect accurately.
41 // Some tests exist, but they currently return false results in critical devices and browsers, which could lead to a broken experience.
42 // Testing fixed positioning is also pretty obtrusive to page load, requiring injected elements and scrolling the window
43 // The following function serves to rule out some popular browsers with known fixed-positioning issues
44 // This is a plugin option like any other, so feel free to improve or overwrite it
45 supportBlacklist: function () {
47 ua = navigator.userAgent,
48 platform = navigator.platform,
49 // Rendering engine is Webkit, and capture major version
50 wkmatch = ua.match( /AppleWebKit\/([0-9]+)/ ),
51 wkversion = !!wkmatch && wkmatch[ 1 ],
52 ffmatch = ua.match( /Fennec\/([0-9]+)/ ),
53 ffversion = !!ffmatch && ffmatch[ 1 ],
54 operammobilematch = ua.match( /Opera Mobi\/([0-9]+)/ ),
55 omversion = !!operammobilematch && operammobilematch[ 1 ];
58 // iOS 4.3 and older : Platform is iPhone/Pad/Touch and Webkit version is less than 534 (ios5)
59 ( ( platform.indexOf( "iPhone" ) > -1 || platform.indexOf( "iPad" ) > -1 || platform.indexOf( "iPod" ) > -1 ) && wkversion && wkversion < 534 )
62 ( w.operamini && ({}).toString.call( w.operamini ) === "[object OperaMini]" )
64 ( operammobilematch && omversion < 7458 )
66 //Android lte 2.1: Platform is Android and Webkit version is less than 533 (Android 2.2)
67 ( ua.indexOf( "Android" ) > -1 && wkversion && wkversion < 533 )
69 // Firefox Mobile before 6.0 -
70 ( ffversion && ffversion < 6 )
73 ( "palmGetResource" in window && wkversion && wkversion < 534 )
76 ( ua.indexOf( "MeeGo" ) > -1 && ua.indexOf( "NokiaBrowser/8.5.0" ) > -1 )
83 initSelector: ":jqmData(role='content')"
86 _create: function () {
92 // Feature detecting support for
93 if ( o.supportBlacklist() ) {
98 self._addFixedClass();
99 self._addTransitionClass();
100 self._bindPageEvents();
103 self._bindContentControlEvents();
106 /* add minimum fixed css style to bar(header/footer) and content
107 * it need to update when core source modified(jquery.mobile.page.section.js)
108 * modified from core source cuz initSelector different */
109 _addFixedClass: function () {
113 $elHeader = $el.siblings( ":jqmData(role='header')" ),
114 $elFooter = $el.siblings( ":jqmData(role='footer')" ),
115 $elPage = $el.closest(".ui-page");
117 $elHeader.addClass( "ui-header-fixed" );
118 $elFooter.addClass( "ui-footer-fixed" );
120 // "fullscreen" overlay positioning
121 if ( o.fullscreen ) {
122 $elHeader.addClass( "ui-header-fullscreen" );
123 $elFooter.addClass( "ui-footer-fullscreen" );
125 .addClass( "ui-page-header-fullscreen" )
126 .addClass( "ui-page-footer-fullscreen" );
128 // If not fullscreen, add class to page to set top or bottom padding
129 $elPage.addClass( "ui-page-header-fixed" )
130 .addClass( "ui-page-footer-fixed" );
134 /* original core source(jquery.mobile.fixedToolbar.js)
136 _addTransitionClass: function () {
137 var tclass = this.options.transition;
139 if ( tclass && tclass !== "none" ) {
140 // use appropriate slide for header or footer
141 if ( tclass === "slide" ) {
142 tclass = this.element.is( ".ui-header" ) ? "slidedown" : "slideup";
145 this.element.addClass( tclass );
150 /* Set default page positon
151 * 1. add title style to header
152 * 2. Set default header/footer position */
153 setHeaderFooter: function ( event ) {
154 var $elPage = $( event.target ),
155 $elHeader = $elPage.find( ":jqmData(role='header')" ).length ? $elPage.find( ":jqmData(role='header')") : $elPage.siblings( ":jqmData(role='header')"),
156 $elFieldcontain = $elHeader.find( ":jqmData(role='fieldcontain')" ),
157 $elControlgroup = $elHeader.find( ":jqmData(role='controlgroup')" ),
158 $elContent = $elPage.find( ".ui-content" ),
165 if ( $elHeader.jqmData("position") == "fixed" || $.tizen.frameworkData.theme.match(/tizen/) || $elHeader.css("position") == "fixed" ) {
167 .css( "position", "fixed" )
168 .css( "top", "0px" );
171 /* set Title style */
172 if ( $elHeader.find("span.ui-title-text-sub").length ) {
173 $elHeader.addClass( "ui-title-multiline");
176 // divide content mode scrollview and non-scrollview
177 // recalculate content area when resize callback occur
178 if ( $.support.scrollview ) {
179 if ( $elHeader.css( "position" ) != "fixed" ) {
180 $elHeader.css( "position", "fixed" );
183 if ( $elHeader.css("position") != "fixed" ) {
184 $elHeader.css( "position", "relative" );
188 $elFooter = $( document ).find( ":jqmData(role='footer')" );
189 footerButton = $elFooter.children( "a" );
190 footerButton.each( function ( i ) {
191 if ( footerButton.eq( i ).is(".ui-btn") && !footerButton.eq( i ).is(".ui-btn-back") ) {
193 .removeClass( "ui-btn-left" )
194 .addClass( "ui-btn-footer-right" );
199 _bindPageEvents: function () {
204 //page event bindings
205 // Fixed toolbars require page zoom to be disabled, otherwise usability issues crop up
206 // This method is meant to disable zoom while a fixed-positioned toolbar page is visible
207 $el.closest( ".ui-page" )
208 .bind( "pagebeforeshow", function ( event ) {
209 if ( o.disablePageZoom ) {
210 $.mobile.zoom.disable( true );
212 if ( !o.visibleOnPageShow ) {
215 self.setHeaderFooter( event );
217 .bind( "webkitAnimationStart animationstart updatelayout", function ( e, data ) {
219 if ( o.updatePagePadding ) {
220 self.updatePagePadding(thisPage);
221 self.updatePageLayout(data);
225 .bind( "pageshow", function ( event ) {
227 self.updatePagePadding(thisPage);
228 self._updateHeaderArea();
229 if ( o.updatePagePadding ) {
230 $( window ).bind( "throttledresize." + self.widgetName, function () {
231 self.updatePagePadding(thisPage);
233 self.updatePageLayout();
234 self._updateHeaderArea();
239 .bind( "pagebeforehide", function ( e, ui ) {
240 if ( o.disablePageZoom ) {
241 $.mobile.zoom.enable( true );
243 if ( o.updatePagePadding ) {
244 $( window ).unbind( "throttledresize." + self.widgetName );
247 if ( o.trackPersistentToolbars ) {
248 var thisFooter = $( ".ui-footer-fixed:jqmData(id)", this ),
249 thisHeader = $( ".ui-header-fixed:jqmData(id)", this ),
250 nextFooter = thisFooter.length && ui.nextPage && $( ".ui-footer-fixed:jqmData(id='" + thisFooter.jqmData( "id" ) + "')", ui.nextPage ),
251 nextHeader = thisHeader.length && ui.nextPage && $( ".ui-header-fixed:jqmData(id='" + thisHeader.jqmData( "id" ) + "')", ui.nextPage );
253 nextFooter = nextFooter || $();
255 if ( nextFooter.length || nextHeader.length ) {
257 nextFooter.add( nextHeader ).appendTo( $.mobile.pageContainer );
259 ui.nextPage.one( "pageshow", function () {
260 nextFooter.add( nextHeader ).appendTo( this );
267 _bindContentControlEvents: function () {
272 $el.closest( ".ui-page" )
273 .bind( "pagebeforeshow", function ( event ) {
278 _updateHeaderArea : function () {
279 var $elPage = $( ".ui-page-active" ),
280 $elHeader = $elPage.find( ":jqmData(role='header')" ).length ? $elPage.find( ":jqmData(role='header')") : $elPage.siblings( ":jqmData(role='header')"),
281 headerBtnNum = $elHeader.children("a").length,
282 headerSrcNum = $elHeader.children("img").length;
284 $elHeader.find( "h1" ).css( "width", window.innerWidth - $elHeader.children( "a" ).width() * headerBtnNum - $elHeader.children( "a" ).width() / 4 - $elHeader.children( "img" ).width() * headerSrcNum * 4 );
285 /* add half width for default space between text and button, and img tag area is too narrow, so multiply three for img width*/
289 /* IME concenpt change after alpha2.0 */
290 /* _IMEShown : false,
291 _IMEindicatorHeight : window.outerHeight - window.innerHeight,
293 layoutPageIME: function () {
294 if ( $( document.activeElement ).is( "input" ) || $( document.activeElement ).is( "textarea" )
295 || $(".ui-page-active .ui-header .input-search-bar").length
296 || $(".ui-page-active .ui-content").find("input").length
297 || $(".ui-page-active .ui-content").find("textarea").length) {
299 if ( ( window.innerHeight + this._IMEindicatorHeight ) < window.outerHeight && window.innerWidth == window.outerWidth ) {
300 if ( this._IMEShown === false ) {
301 $( ".ui-page-active .ui-footer" ).hide();
302 this._IMEShown = true;
304 } else if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
305 if ( this._IMEShown === true ) {
306 $( ".ui-page-active .ui-footer" ).show();
307 this._IMEShown = false;
311 if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
312 if ( this._IMEShown === true ) {
313 $( ".ui-page-active .ui-footer" ).show();
314 this._IMEShown = false;
320 // This will set the content element's top or bottom padding equal to the toolbar's height
321 updatePagePadding: function ( tbPage ) {
322 var $el = this.element,
323 header = $el.siblings( ".ui-header" ).length;
325 // This behavior only applies to "fixed", not "fullscreen"
326 if ( this.options.fullscreen ) { return; }
328 tbPage = tbPage || $el.closest( ".ui-page" );
329 $( tbPage ).css( "padding-" + ( header ? "top" : "bottom" ), $el.siblings( ".ui-header" ).outerHeight() );
333 /* 1. Calculate and update content height */
334 updatePageLayout: function ( receiveType ) {
337 $elPage = $( document ).find( ".ui-page-active" ),
338 $elHeader = $elPage.find( ":jqmData(role='header')" ),
339 $elContent = $elPage.find( ":jqmData(role='content')" ),
340 resultContentHeight = 0,
341 resultFooterHeight = 0,
342 resultHeaderHeight = 0;
344 if ( $elPage.length ) {
345 $elFooter = $( document ).find( ".ui-page-active" ).find( ":jqmData(role='footer')" );
347 $elFooter = $( document ).find( ":jqmData(role='footer')" ).eq( 0 );
349 $elFooterControlbar = $elFooter.find( ".ui-navbar" );
351 // calculate footer height
352 resultFooterHeight = ( $elFooter.css( "display" ) == "none" ) ? 0 : $elFooter.height();
353 resultHeaderHeight = ( $elHeader.css( "display" ) == "none" ) ? 0 : $elHeader.height();
355 if (resultFooterHeight != 0 ) {
356 $elFooter.css( "bottom", 0 );
359 resultContentHeight = window.innerHeight - resultFooterHeight - resultHeaderHeight;
361 if ( $.support.scrollview ) {
362 if ( $elHeader.css("position") != "fixed" ) {
363 $elHeader.css( "position", "fixed" );
366 $elContent.height( resultContentHeight -
367 parseFloat( $elContent.css("padding-top") ) -
368 parseFloat( $elContent.css("padding-bottom") ) );
370 if ( $elHeader.css("position") != "fixed" ) {
371 $elHeader.css( "position", "relative" );
373 $elContent.height( resultContentHeight );
377 // check this line need
378 // because another style title will be not supported to updatePageLayout
380 // in case title changed
382 $elContent.css( "top", resultHeaderHeight + "px" );
386 _useTransition: function ( notransition ) {
387 var $win = $( window ),
389 scroll = $win.scrollTop(),
390 elHeight = $el.height(),
391 pHeight = $el.closest( ".ui-page" ).height(),
392 viewportHeight = $.mobile.getScreenHeight(),
393 tbtype = $el.is( ":jqmData(role='header')" ) ? "header" : "footer";
395 return !notransition &&
396 ( this.options.transition && this.options.transition !== "none" &&
398 ( tbtype === "header" && !this.options.fullscreen && scroll > elHeight ) ||
399 ( tbtype === "footer" && !this.options.fullscreen && scroll + viewportHeight < pHeight - elHeight )
400 ) || this.options.fullscreen
404 show: function ( notransition ) {
405 /* var hideClass = "ui-fixed-hidden",
408 if ( this._useTransition( notransition ) ){
410 .removeClass( "out " + hideClass )
414 $el.removeClass( hideClass );
416 this._visible = true;*/
419 hide: function ( notransition ) {
420 /* var hideClass = "ui-fixed-hidden",
422 // if it's a slide transition, our new transitions need the reverse class as well to slide outward
423 outclass = "out" + ( this.options.transition === "slide" ? " reverse" : "" );
425 if ( this._useTransition( notransition ) ){
427 .addClass( outclass )
429 .animationComplete( function () {
430 $el.addClass( hideClass ).removeClass( outclass );
434 $el.addClass( hideClass ).removeClass( outclass );
436 this._visible = false;*/
439 toggle: function () {
440 this[ this._visible ? "hide" : "show" ]();
443 /* support external api for adding backbutton via javascript */
444 /* backButton: function ( target, status ){
445 this._addBackbutton( target, "external" );
448 destroy: function () {
449 this.element.removeClass( "ui-header-fixed ui-footer-fixed ui-header-fullscreen ui-footer-fullscreen in out fade slidedown slideup ui-fixed-hidden" );
450 this.element.closest( ".ui-page" ).removeClass( "ui-page-header-fixed ui-page-footer-fixed ui-page-header-fullscreen ui-page-footer-fullscreen" );
455 //auto self-init widgets
457 .bind( "pagecreate create", function ( e ) {
458 // DEPRECATED in 1.1: support for data-fullscreen=true|false on the page element.
459 // This line ensures it still works, but we recommend moving the attribute to the toolbars themselves.
460 if ( $( e.target ).jqmData( "fullscreen" ) ) {
461 $( $.mobile.pagelayout.prototype.options.initSelector, e.target ).not( ":jqmData(fullscreen)" ).jqmData( "fullscreen", true );
463 $.mobile.pagelayout.prototype.enhanceWithin( e.target );