0388424d2c58b1913c424bc9940abdbdf9202054
[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 ( 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
274                 open: function ( x_where, y_where ) {
275                         var self = this,
276                                 zIndexMax = 0;
277
278                         if ( this._isOpen || this.options.disabled ) {
279                                 return;
280                         }
281
282                         $( document ).find("*").each( function () {
283                                 var el = $( this ),
284                                         zIndex = parseInt( el.css("z-index"), 10 );
285
286                                 if ( !( el.is( self._ui.container ) ||
287                                                 el.is( self._ui.screen ) ||
288                                                 isNaN( zIndex ))) {
289                                         zIndexMax = Math.max( zIndexMax, zIndex );
290                                 }
291                         } );
292
293                         this._ui.screen.css( "height", $( window ).height() )
294                                         .removeClass("ui-screen-hidden");
295
296                         if ( this.options.fade ) {
297                                 this._ui.screen.animate( {opacity: this.options.opacity}, "fast" );
298                         } else {
299                                 this._ui.screen.css( {opacity: this.options.opacity} );
300                         }
301
302                         this._setPosition( x_where, y_where );
303
304                         this.element.trigger("popupbeforeposition");
305
306                         this._ui.container
307                                 .removeClass("ui-selectmenu-hidden")
308                                 .addClass("in")
309                                 .animationComplete( function () {
310                                         self.element.trigger("popupafteropen");
311                                 } );
312
313                         this._isOpen = true;
314
315                         if ( !this._reflow ) {
316                                 this._reflow = function () {
317                                         if ( !self._isOpen ) {
318                                                 return;
319                                         }
320
321                                         self._setPosition( x_where, y_where );
322                                 };
323
324                                 $( window ).bind( "resize", this._reflow );
325                         }
326                 },
327
328                 close: function () {
329                         if ( !this._isOpen ) {
330                                 return;
331                         }
332
333                         if ( this._reflow ) {
334                                 $( window ).unbind( "resize", this._reflow );
335                                 this._reflow = null;
336                         }
337
338                         var self = this,
339                                 hideScreen = function () {
340                                         self._ui.screen.addClass("ui-screen-hidden");
341                                         self._isOpen = false;
342                                 };
343
344                         this._ui.container.removeClass("in").addClass("reverse out");
345
346                         if ( this.options.transition === "none" ) {
347                                 this._ui.container
348                                         .addClass("ui-selectmenu-hidden")
349                                         .removeAttr("style");
350                                 this.element.trigger("popupafterclose");
351                         } else {
352                                 this._ui.container.animationComplete( function () {
353                                         self._ui.container
354                                                 .removeClass("reverse out")
355                                                 .addClass("ui-selectmenu-hidden")
356                                                 .removeAttr("style");
357                                         self.element.trigger("popupafterclose");
358                                 } );
359                         }
360
361                         if ( this.options.fade ) {
362                                 this._ui.screen.animate( {opacity: 0}, "fast", hideScreen );
363                         } else {
364                                 hideScreen();
365                         }
366                 },
367
368                 _realSetTheme: function ( dst, theme ) {
369                         var classes = ( dst.attr("class") || "" ).split(" "),
370                                 alreadyAdded = true,
371                                 currentTheme = null,
372                                 matches;
373
374                         while ( classes.length > 0 ) {
375                                 currentTheme = classes.pop();
376                                 matches = currentTheme.match(/^ui-body-([a-z])$/);
377
378                                 if ( matches && matches.length > 1 ) {
379                                         currentTheme = matches[1];
380                                         break;
381                                 } else {
382                                         currentTheme = null;
383                                 }
384                         }
385
386                         dst.removeClass( "ui-body-" + currentTheme );
387                         if ( ( theme || "" ).match(/[a-z]/) ) {
388                                 dst.addClass( "ui-body-" + theme );
389                         }
390                 },
391
392                 _setTheme: function ( value ) {
393                         this._realSetTheme( this.element, value );
394                         this.options.theme = value;
395                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "theme", value );
396                 },
397
398                 _setOverlayTheme: function ( value ) {
399                         this._realSetTheme( this._ui.container, value );
400                         this.options.overlayTheme = value;
401                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "overlay-theme", value );
402                 },
403
404                 _setShadow: function ( value ) {
405                         this.options.shadow = value;
406                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "shadow", value );
407                         this._ui.container[value ? "addClass" : "removeClass"]("ui-overlay-shadow");
408                 },
409
410                 _setCorners: function ( value ) {
411                         this.options.corners = value;
412                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "corners", value );
413                         this._ui.container[value ? "addClass" : "removeClass"]("ui-corner-all");
414                 },
415
416                 _setFade: function ( value ) {
417                         this.options.fade = value;
418                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "fade", value );
419                 },
420
421                 _setTransition: function ( value ) {
422                         this._ui.container
423                                 .removeClass( this.options.transition || "" )
424                                 .addClass( value );
425                         this.options.transition = value;
426                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "transition", value );
427                 },
428
429                 _setDisabled: function ( value ) {
430                         $.Widget.prototype._setOption.call( this, "disabled", value );
431                         if ( value ) {
432                                 this.close();
433                         }
434                 }
435         });
436
437         $.tizen.popupwindow.bindPopupToButton = function ( btn, popup ) {
438                 if ( btn.length === 0 || popup.length === 0 ) {
439                         return;
440                 }
441
442                 var btnVClickHandler = function ( e ) {
443                         if ( !popup.jqmData("overlay-theme-set") ) {
444                                 popup.popupwindow( "option", "overlayTheme", btn.jqmData("theme") );
445                         }
446
447                         popup.popupwindow( "open",
448                                 btn.offset().left + btn.outerWidth()  / 2,
449                                 btn.offset().top  + btn.outerHeight() / 2 );
450
451                         return false;
452                 };
453
454                 if ( ( popup.popupwindow("option", "overlayTheme") || "" ).match(/[a-z]/) ) {
455                         popup.jqmData( "overlay-theme-set", true );
456                 }
457
458                 btn
459                         .attr({
460                                 "aria-haspopup": true,
461                                 "aria-owns": btn.attr("href")
462                         })
463                         .removeAttr("href")
464                         .bind( "vclick", btnVClickHandler );
465
466                 popup.bind( "destroyed", function () {
467                         btn.unbind( "vclick", btnVClickHandler );
468                 } );
469         };
470
471         $( document ).bind( "pagecreate create", function ( e ) {
472                 $( $.tizen.popupwindow.prototype.options.initSelector, e.target )
473                         .not(":jqmData(role='none'), :jqmData(role='nojs')")
474                         .popupwindow();
475
476                 $( "a[href^='#']:jqmData(rel='popupwindow')", e.target ).each( function () {
477                         $.tizen.popupwindow.bindPopupToButton( $( this ), $( $( this ).attr("href") ) );
478                 });
479         });
480 }( jQuery ));