Export 0.1.61
[platform/framework/web/web-ui-fw.git] / src / widgets / popupwindow / js / jquery.mobile.tizen.popupwindow.js
1 /*
2  * jQuery Mobile Widget @VERSION
3  *
4  * This software is licensed under the MIT licence (as defined by the OSI at
5  * http://www.opensource.org/licenses/mit-license.php)
6  *
7  * ***************************************************************************
8  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
9  * Copyright (c) 2011 by Intel Corporation Ltd.
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and associated documentation files (the "Software"),
13  * to deal in the Software without restriction, including without limitation
14  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15  * and/or sell copies of the Software, and to permit persons to whom the
16  * Software is furnished to do so, subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice shall be included in
19  * all copies or substantial portions of the Software.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  * DEALINGS IN THE SOFTWARE.
28  * ***************************************************************************
29  *
30  * Authors: Gabriel Schulhof <gabriel.schulhof@intel.com>,
31  *          Elliot Smith <elliot.smith@intel.com>
32  */
33
34 /*
35  * Shows other elements inside a popup window.
36  *
37  * To apply, add the attribute data-role="popupwindow" to a <div> element inside
38  * a page. Alternatively, call popupwindow()
39  * on an element, eg :
40  *
41  *     $("#mypopupwindowContent").popupwindow();
42  * where the html might be :
43  *     <div id="mypopupwindowContent"></div>
44  *
45  * To trigger the popupwindow to appear, it is necessary to make a call to its
46  * 'open()' method. This is typically done by binding a function to an event
47  * emitted by an input element, such as a the clicked event emitted by a button
48  * element. The open() method takes two arguments, specifying the x and y
49  * screen coordinates of the center of the popup window.
50
51  * You can associate a button with a popup window like this:
52  *      <div id="mypopupContent" style="display: table;" data-role="popupwindow">
53  *          <table>
54  *              <tr> <td>Eenie</td>   <td>Meenie</td>  <td>Mynie</td>   <td>Mo</td>  </tr>
55  *              <tr> <td>Catch-a</td> <td>Tiger</td>   <td>By-the</td>  <td>Toe</td> </tr>
56  *              <tr> <td>If-he</td>   <td>Hollers</td> <td>Let-him</td> <td>Go</td>  </tr>
57  *              <tr> <td>Eenie</td>   <td>Meenie</td>  <td>Mynie</td>   <td>Mo</td>  </tr>
58  *          </table>
59  *      </div>
60  * <a href="#myPopupContent" data-rel="popupwindow" data-role="button">Show popup</a>
61  *
62  * Options:
63  *
64  *     theme: String; the theme for the popupwindow contents
65  *                   Default: null
66  *
67  *     overlayTheme: String; the theme for the popupwindow
68  *                   Default: null
69  *
70  *     shadow: Boolean; display a shadow around the popupwindow
71  *             Default: true
72  *
73  *     corners: Boolean; display a shadow around the popupwindow
74  *             Default: true
75  *
76  *     fade: Boolean; fades the opening and closing of the popupwindow
77  *
78  *     transition: String; the transition to use when opening or closing
79  *                 a popupwindow
80  *                 Default: $.mobile.defaultDialogTransition
81  *
82  * Events:
83  *      popupbeforeposition: triggered after a popup has completed preparations for opening, but has not yet opened
84  *      popupafteropen: triggered after a popup has completely opened
85  *      popupafterclose triggered when a popup has completely closed
86 */
87
88 (function ( $, undefined ) {
89         $.widget( "tizen.popupwindow", $.tizen.widgetex, {
90                 options: {
91                         theme: null,
92                         overlayTheme: "s",
93                         style: "custom",
94                         disabled: false,
95                         shadow: true,
96                         corners: true,
97                         fade: false,
98                         opacity: 0.7,
99                         widthRatio: 0.8612,
100                         transition: $.mobile.defaultDialogTransition,
101                         initSelector: ":jqmData(role='popupwindow')"
102                 },
103
104                 _htmlProto: {
105                         ui: {
106                                 screen: "#popupwindow-screen",
107                                 container: "#popupwindow-container"
108                         }
109                 },
110
111                 _setStyle: function () {
112                         var popup = this.element,
113                                 style = popup.attr( 'data-style' );
114
115                         if ( style ) {
116                                 this.options.style = style;
117                         }
118
119                         popup.addClass( this.options.style );
120                         popup.find( ":jqmData(role='title')" )
121                                         .wrapAll( "<div class='popup-title'></div>" );
122                         popup.find( ":jqmData(role='text')" )
123                                         .wrapAll( "<div class='popup-text'></div>" );
124                         popup.find( ":jqmData(role='button-bg')" )
125                                         .wrapAll( "<div class='popup-button-bg'></div>" );
126                         popup.find( ":jqmData(role='check-bg')" )
127                                         .wrapAll( "<div class='popup-check-bg'></div>" );
128                         popup.find( ":jqmData(role='scroller-bg')" )
129                                         .addClass( "popup-scroller-bg" );
130                         popup.find( ":jqmData(role='text-bottom-bg')" )
131                                         .wrapAll( "<div class='popup-text-bottom-bg'></div>" );
132                         popup.find( ":jqmData(role='text-left')" )
133                                         .wrapAll( "<div class='popup-text-left'></div>" );
134                         popup.find( ":jqmData(role='text-right')" )
135                                         .wrapAll( "<div class='popup-text-right'></div>" );
136                         popup.find( ":jqmData(role='progress-bg')" )
137                                         .wrapAll( "<div class='popup-progress-bg'></div>" );
138                 },
139
140                 _create: function () {
141                         console.warn("popupwindow() was deprecated. use popup() instead.");
142                         var thisPage = this.element.closest(":jqmData(role='page')"),
143                                 self = this;
144
145                         if ( thisPage.length === 0 ) {
146                                 thisPage = $("body");
147                         }
148
149                         this._ui.placeholder =
150                                         $( "<div><!-- placeholder for " + this.element.attr("id") + " --></div>" )
151                                         .css("display", "none")
152                                         .insertBefore( this.element );
153
154                         thisPage.append( this._ui.screen );
155                         this._ui.container.insertAfter( this._ui.screen );
156                         this._ui.container.append( this.element );
157
158                         this._setStyle();
159
160                         this._isOpen = false;
161
162                         this._ui.screen.bind( "vclick", function ( e ) {
163                                 self.close();
164                                 return false;
165                         } );
166                 },
167
168                 destroy: function () {
169                         this.element.insertBefore( this._ui.placeholder );
170
171                         this._ui.placeholder.remove();
172                         this._ui.container.remove();
173                         this._ui.screen.remove();
174                         this.element.triggerHandler("destroyed");
175                         $.Widget.prototype.destroy.call( this );
176                 },
177
178                 _placementCoords: function ( x, y, cw, ch ) {
179                         var screenHeight = $( window ).height(),
180                                 screenWidth = $( window ).width(),
181                                 halfheight = ch / 2,
182                                 maxwidth = parseFloat( this._ui.container.css( "max-width" ) ),
183                                 roomtop = y,
184                                 roombot = screenHeight - y,
185                                 newtop,
186                                 newleft;
187
188                         if ( roomtop > ch / 2 && roombot > ch / 2 ) {
189                                 newtop = y - halfheight;
190                         } else {
191                                 newtop = roomtop > roombot ? screenHeight - ch - 30 : 30;
192                         }
193
194                         if ( cw < maxwidth ) {
195                                 newleft = ( screenWidth - cw ) / 2;
196                         } else {
197                                 newleft = x - cw / 2;
198
199                                 if ( newleft < 10 ) {
200                                         newleft = 10;
201                                 } else if ( ( newleft + cw ) > screenWidth ) {
202                                         newleft = screenWidth - cw - 10;
203                                 }
204                         }
205
206                         return { x : newleft, y : newtop };
207                 },
208
209                 _setPosition: function ( x_where, y_where ) {
210                         var x = ( undefined === x_where ? $( window ).width()  / 2 : x_where ),
211                                 y = ( undefined === y_where ? $( window ).height() / 2 : y_where ),
212                                 coords,
213                                 ctxpopup = this.element.data("ctxpopup"),
214                                 popupWidth,
215                                 menuHeight,
216                                 menuWidth,
217                                 screenHeight,
218                                 screenWidth,
219                                 roomtop,
220                                 roombot,
221                                 halfheight,
222                                 maxwidth,
223                                 newtop,
224                                 newleft;
225
226                         if ( !ctxpopup ) {
227                                 popupWidth = $( window ).width() * this.options.widthRatio;
228                                 this._ui.container.css( "width", popupWidth );
229
230                                 if ( this._ui.container.outerWidth() > $( window ).width() ) {
231                                         this._ui.container.css( {"max-width" : $( window ).width() - 30} );
232                                 }
233                         }
234
235                         coords = this._placementCoords( x, y,
236                                         this._ui.container.outerWidth(),
237                                         this._ui.container.outerHeight() );
238
239                         menuHeight = this._ui.container.innerHeight();
240                         menuWidth = this._ui.container.innerWidth();
241                         screenHeight = $( window ).height();
242                         screenWidth = $( window ).width();
243                         roomtop = y;
244                         roombot = screenHeight - y;
245                         halfheight = menuHeight / 2;
246                         maxwidth = parseFloat( this._ui.container.css( "max-width" ) );
247                         newtop = ( screenHeight - menuHeight ) / 2;
248
249                         if ( !maxwidth || menuWidth < maxwidth ) {
250                                 newleft = ( screenWidth - menuWidth ) / 2;
251                         } else {
252                                 newleft = x - menuWidth / 2;
253
254                                 if ( newleft < 30 ) {
255                                         newleft = 30;
256                                 } else if ( ( newleft + menuWidth ) > screenWidth ) {
257                                         newleft = screenWidth - menuWidth - 30;
258                                 }
259                         }
260
261                         if ( ctxpopup ) {
262                                 newtop = coords.y;
263                                 newleft = coords.x;
264                         }
265
266                         this._ui.container.css({
267                                 top: newtop,
268                                 left: newleft
269                         });
270
271                         this._ui.screen.css( "height", screenHeight );
272                 },
273                 open: function ( x_where, y_where, backgroundclose ) {
274                         var self = this,
275                                 zIndexMax = 0;
276
277                         if ( this._isOpen || this.options.disabled ) {
278                                 return;
279                         }
280
281                         $( document ).find("*").each( function () {
282                                 var el = $( this ),
283                                         zIndex = parseInt( el.css("z-index"), 10 );
284
285                                 if ( !( el.is( self._ui.container ) ||
286                                                 el.is( self._ui.screen ) ||
287                                                 isNaN( zIndex ))) {
288                                         zIndexMax = Math.max( zIndexMax, zIndex );
289                                 }
290                         } );
291
292                         this._ui.screen.css( "height", $( window ).height() )
293                                         .removeClass("ui-screen-hidden");
294
295                         if( backgroundclose ) {
296                                 this._ui.screen.css( "opacity", 0 );
297                         } else {
298                                 if ( this.options.fade ) {
299                                         this._ui.screen.animate( {opacity: this.options.opacity}, "fast" );
300                                 } else {
301                                         this._ui.screen.css( {opacity: this.options.opacity} );
302                                 }
303                         }
304
305                         this._setPosition( x_where, y_where );
306
307                         this.element.trigger("popupbeforeposition");
308
309                         this._ui.container
310                                 .removeClass("ui-selectmenu-hidden")
311                                 .addClass("in")
312                                 .animationComplete( function () {
313                                         self.element.trigger("popupafteropen");
314                                 } );
315
316                         this._isOpen = true;
317
318                         if ( !this._reflow ) {
319                                 this._reflow = function () {
320                                         if ( !self._isOpen ) {
321                                                 return;
322                                         }
323
324                                         self._setPosition( x_where, y_where );
325                                 };
326
327                                 $( window ).bind( "resize", this._reflow );
328                         }
329                 },
330
331                 close: function () {
332                         if ( !this._isOpen ) {
333                                 return;
334                         }
335
336                         if ( this._reflow ) {
337                                 $( window ).unbind( "resize", this._reflow );
338                                 this._reflow = null;
339                         }
340
341                         var self = this,
342                                 hideScreen = function () {
343                                         self._ui.screen.addClass("ui-screen-hidden");
344                                         self._isOpen = false;
345                                 };
346
347                         this._ui.container.removeClass("in").addClass("reverse out");
348
349                         if ( this.options.transition === "none" ) {
350                                 this._ui.container
351                                         .addClass("ui-selectmenu-hidden")
352                                         .removeAttr("style");
353                                 this.element.trigger("popupafterclose");
354                         } else {
355                                 this._ui.container.animationComplete( function () {
356                                         self._ui.container
357                                                 .removeClass("reverse out")
358                                                 .addClass("ui-selectmenu-hidden")
359                                                 .removeAttr("style");
360                                         self.element.trigger("popupafterclose");
361                                 } );
362                         }
363
364                         if ( this.options.fade ) {
365                                 this._ui.screen.animate( {opacity: 0}, "fast", hideScreen );
366                         } else {
367                                 hideScreen();
368                         }
369                 },
370
371                 _realSetTheme: function ( dst, theme ) {
372                         var classes = ( dst.attr("class") || "" ).split(" "),
373                                 alreadyAdded = true,
374                                 currentTheme = null,
375                                 matches;
376
377                         while ( classes.length > 0 ) {
378                                 currentTheme = classes.pop();
379                                 matches = currentTheme.match(/^ui-body-([a-z])$/);
380
381                                 if ( matches && matches.length > 1 ) {
382                                         currentTheme = matches[1];
383                                         break;
384                                 } else {
385                                         currentTheme = null;
386                                 }
387                         }
388
389                         dst.removeClass( "ui-body-" + currentTheme );
390                         if ( ( theme || "" ).match(/[a-z]/) ) {
391                                 dst.addClass( "ui-body-" + theme );
392                         }
393                 },
394
395                 _setTheme: function ( value ) {
396                         this._realSetTheme( this.element, value );
397                         this.options.theme = value;
398                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "theme", value );
399                 },
400
401                 _setOverlayTheme: function ( value ) {
402                         this._realSetTheme( this._ui.container, value );
403                         this.options.overlayTheme = value;
404                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "overlay-theme", value );
405                 },
406
407                 _setShadow: function ( value ) {
408                         this.options.shadow = value;
409                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "shadow", value );
410                         this._ui.container[value ? "addClass" : "removeClass"]("ui-overlay-shadow");
411                 },
412
413                 _setCorners: function ( value ) {
414                         this.options.corners = value;
415                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "corners", value );
416                         this._ui.container[value ? "addClass" : "removeClass"]("ui-corner-all");
417                 },
418
419                 _setFade: function ( value ) {
420                         this.options.fade = value;
421                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "fade", value );
422                 },
423
424                 _setTransition: function ( value ) {
425                         this._ui.container
426                                 .removeClass( this.options.transition || "" )
427                                 .addClass( value );
428                         this.options.transition = value;
429                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "transition", value );
430                 },
431
432                 _setDisabled: function ( value ) {
433                         $.Widget.prototype._setOption.call( this, "disabled", value );
434                         if ( value ) {
435                                 this.close();
436                         }
437                 }
438         });
439
440         $.tizen.popupwindow.bindPopupToButton = function ( btn, popup ) {
441                 if ( btn.length === 0 || popup.length === 0 ) {
442                         return;
443                 }
444
445                 var btnVClickHandler = function ( e ) {
446                         if ( !popup.jqmData("overlay-theme-set") ) {
447                                 popup.popupwindow( "option", "overlayTheme", btn.jqmData("theme") );
448                         }
449
450                         popup.popupwindow( "open",
451                                 btn.offset().left + btn.outerWidth()  / 2,
452                                 btn.offset().top  + btn.outerHeight() / 2 );
453
454                         return false;
455                 };
456
457                 if ( ( popup.popupwindow("option", "overlayTheme") || "" ).match(/[a-z]/) ) {
458                         popup.jqmData( "overlay-theme-set", true );
459                 }
460
461                 btn
462                         .attr({
463                                 "aria-haspopup": true,
464                                 "aria-owns": btn.attr("href")
465                         })
466                         .removeAttr("href")
467                         .bind( "vclick", btnVClickHandler );
468
469                 popup.bind( "destroyed", function () {
470                         btn.unbind( "vclick", btnVClickHandler );
471                 } );
472         };
473
474         $( document ).bind( "pagecreate create", function ( e ) {
475                 $( $.tizen.popupwindow.prototype.options.initSelector, e.target )
476                         .not(":jqmData(role='none'), :jqmData(role='nojs')")
477                         .popupwindow();
478
479                 $( "a[href^='#']:jqmData(rel='popupwindow')", e.target ).each( function () {
480                         $.tizen.popupwindow.bindPopupToButton( $( this ), $( $( this ).attr("href") ) );
481                 });
482         });
483 }( jQuery ));