Revert "Export"
[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                                         .wrapAll( "<div class='popup-scroller-bg'></div>" );
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                         var thisPage = this.element.closest(":jqmData(role='page')"),
142                                 self = this;
143
144                         if ( thisPage.length === 0 ) {
145                                 thisPage = $("body");
146                         }
147
148                         this._ui.placeholder =
149                                         $( "<div><!-- placeholder for " + this.element.attr("id") + " --></div>" )
150                                         .css("display", "none")
151                                         .insertBefore( this.element );
152
153                         thisPage.append( this._ui.screen );
154                         this._ui.container.insertAfter( this._ui.screen );
155                         this._ui.container.append( this.element );
156
157                         this._setStyle();
158
159                         this._isOpen = false;
160
161                         this._ui.screen.bind( "vclick", function ( e ) {
162                                 self.close();
163                                 return false;
164                         } );
165                 },
166
167                 destroy: function () {
168                         this.element.insertBefore( this._ui.placeholder );
169
170                         this._ui.placeholder.remove();
171                         this._ui.container.remove();
172                         this._ui.screen.remove();
173                         this.element.triggerHandler("destroyed");
174                         $.Widget.prototype.destroy.call( this );
175                 },
176
177                 _placementCoords: function ( x, y, cw, ch ) {
178                         var screenHeight = $( window ).height(),
179                                 screenWidth = $( window ).width(),
180                                 halfheight = ch / 2,
181                                 maxwidth = parseFloat( this._ui.container.css( "max-width" ) ),
182                                 roomtop = y,
183                                 roombot = screenHeight - y,
184                                 newtop,
185                                 newleft;
186
187                         if ( roomtop > ch / 2 && roombot > ch / 2 ) {
188                                 newtop = y - halfheight;
189                         } else {
190                                 newtop = roomtop > roombot ? screenHeight - ch - 30 : 30;
191                         }
192
193                         if ( cw < maxwidth ) {
194                                 newleft = ( screenWidth - cw ) / 2;
195                         } else {
196                                 newleft = x - cw / 2;
197
198                                 if ( newleft < 10 ) {
199                                         newleft = 10;
200                                 } else if ( ( newleft + cw ) > screenWidth ) {
201                                         newleft = screenWidth - cw - 10;
202                                 }
203                         }
204
205                         return { x : newleft, y : newtop };
206                 },
207
208                 _setPosition: function ( x_where, y_where ) {
209                         var x = ( undefined === x_where ? $( window ).width()  / 2 : x_where ),
210                                 y = ( undefined === y_where ? $( window ).height() / 2 : y_where ),
211                                 coords,
212                                 ctxpopup = this.element.data("ctxpopup"),
213                                 popupWidth,
214                                 menuHeight,
215                                 menuWidth,
216                                 screenHeight,
217                                 screenWidth,
218                                 roomtop,
219                                 roombot,
220                                 halfheight,
221                                 maxwidth,
222                                 newtop,
223                                 newleft;
224
225                         if ( !ctxpopup ) {
226                                 popupWidth = $( window ).width() * this.options.widthRatio;
227                                 this._ui.container.css( "width", popupWidth );
228
229                                 if ( this._ui.container.outerWidth() > $( window ).width() ) {
230                                         this._ui.container.css( {"max-width" : $( window ).width() - 30} );
231                                 }
232                         }
233
234                         coords = this._placementCoords( x, y,
235                                         this._ui.container.outerWidth(),
236                                         this._ui.container.outerHeight() );
237
238                         menuHeight = this._ui.container.innerHeight();
239                         menuWidth = this._ui.container.innerWidth();
240                         screenHeight = $( window ).height();
241                         screenWidth = $( window ).width();
242                         roomtop = y;
243                         roombot = screenHeight - y;
244                         halfheight = menuHeight / 2;
245                         maxwidth = parseFloat( this._ui.container.css( "max-width" ) );
246                         newtop = ( screenHeight - menuHeight ) / 2;
247
248                         if ( menuWidth < maxwidth ) {
249                                 newleft = ( screenWidth - menuWidth ) / 2;
250                         } else {
251                                 newleft = x - menuWidth / 2;
252
253                                 if ( newleft < 30 ) {
254                                         newleft = 30;
255                                 } else if ( ( newleft + menuWidth ) > screenWidth ) {
256                                         newleft = screenWidth - menuWidth - 30;
257                                 }
258                         }
259
260                         if ( ctxpopup ) {
261                                 newtop = coords.y;
262                                 newleft = coords.x;
263                         }
264
265                         this._ui.container.css({
266                                 top: newtop,
267                                 left: newleft
268                         });
269
270                         this._ui.screen.css( "height", screenHeight );
271                 },
272
273                 open: function ( x_where, y_where ) {
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 ( this.options.fade ) {
296                                 this._ui.screen.animate( {opacity: this.options.opacity}, "fast" );
297                         } else {
298                                 this._ui.screen.css( {opacity: this.options.opacity} );
299                         }
300
301                         this._setPosition( x_where, y_where );
302
303                         this.element.trigger("popupbeforeposition");
304
305                         this._ui.container
306                                 .removeClass("ui-selectmenu-hidden")
307                                 .addClass("in")
308                                 .animationComplete( function () {
309                                         self.element.trigger("popupafteropen");
310                                 } );
311
312                         this._isOpen = true;
313
314                         if ( !this._reflow ) {
315                                 this._reflow = function () {
316                                         if ( !self._isOpen ) {
317                                                 return;
318                                         }
319
320                                         self._setPosition( x_where, y_where );
321                                 };
322
323                                 $( window ).bind( "resize", this._reflow );
324                         }
325                 },
326
327                 close: function () {
328                         if ( !this._isOpen ) {
329                                 return;
330                         }
331
332                         if ( this._reflow ) {
333                                 $( window ).unbind( "resize", this._reflow );
334                                 this._reflow = null;
335                         }
336
337                         var self = this,
338                                 hideScreen = function () {
339                                         self._ui.screen.addClass("ui-screen-hidden");
340                                         self._isOpen = false;
341                                 };
342
343                         this._ui.container.removeClass("in").addClass("reverse out");
344
345                         if ( this.options.transition === "none" ) {
346                                 this._ui.container
347                                         .addClass("ui-selectmenu-hidden")
348                                         .removeAttr("style");
349                                 this.element.trigger("popupafterclose");
350                         } else {
351                                 this._ui.container.animationComplete( function () {
352                                         self._ui.container
353                                                 .removeClass("reverse out")
354                                                 .addClass("ui-selectmenu-hidden")
355                                                 .removeAttr("style");
356                                         self.element.trigger("popupafterclose");
357                                 } );
358                         }
359
360                         if ( this.options.fade ) {
361                                 this._ui.screen.animate( {opacity: 0}, "fast", hideScreen );
362                         } else {
363                                 hideScreen();
364                         }
365                 },
366
367                 _realSetTheme: function ( dst, theme ) {
368                         var classes = ( dst.attr("class") || "" ).split(" "),
369                                 alreadyAdded = true,
370                                 currentTheme = null,
371                                 matches;
372
373                         while ( classes.length > 0 ) {
374                                 currentTheme = classes.pop();
375                                 matches = currentTheme.match(/^ui-body-([a-z])$/);
376
377                                 if ( matches && matches.length > 1 ) {
378                                         currentTheme = matches[1];
379                                         break;
380                                 } else {
381                                         currentTheme = null;
382                                 }
383                         }
384
385                         dst.removeClass( "ui-body-" + currentTheme );
386                         if ( ( theme || "" ).match(/[a-z]/) ) {
387                                 dst.addClass( "ui-body-" + theme );
388                         }
389                 },
390
391                 _setTheme: function ( value ) {
392                         this._realSetTheme( this.element, value );
393                         this.options.theme = value;
394                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "theme", value );
395                 },
396
397                 _setOverlayTheme: function ( value ) {
398                         this._realSetTheme( this._ui.container, value );
399                         this.options.overlayTheme = value;
400                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "overlay-theme", value );
401                 },
402
403                 _setShadow: function ( value ) {
404                         this.options.shadow = value;
405                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "shadow", value );
406                         this._ui.container[value ? "addClass" : "removeClass"]("ui-overlay-shadow");
407                 },
408
409                 _setCorners: function ( value ) {
410                         this.options.corners = value;
411                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "corners", value );
412                         this._ui.container[value ? "addClass" : "removeClass"]("ui-corner-all");
413                 },
414
415                 _setFade: function ( value ) {
416                         this.options.fade = value;
417                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "fade", value );
418                 },
419
420                 _setTransition: function ( value ) {
421                         this._ui.container
422                                 .removeClass( this.options.transition || "" )
423                                 .addClass( value );
424                         this.options.transition = value;
425                         this.element.attr( "data-" + ( $.mobile.ns || "" ) + "transition", value );
426                 },
427
428                 _setDisabled: function ( value ) {
429                         $.Widget.prototype._setOption.call( this, "disabled", value );
430                         if ( value ) {
431                                 this.close();
432                         }
433                 }
434         });
435
436         $.tizen.popupwindow.bindPopupToButton = function ( btn, popup ) {
437                 if ( btn.length === 0 || popup.length === 0 ) {
438                         return;
439                 }
440
441                 var btnVClickHandler = function ( e ) {
442                         if ( !popup.jqmData("overlay-theme-set") ) {
443                                 popup.popupwindow( "option", "overlayTheme", btn.jqmData("theme") );
444                         }
445
446                         popup.popupwindow( "open",
447                                 btn.offset().left + btn.outerWidth()  / 2,
448                                 btn.offset().top  + btn.outerHeight() / 2 );
449
450                         return false;
451                 };
452
453                 if ( ( popup.popupwindow("option", "overlayTheme") || "" ).match(/[a-z]/) ) {
454                         popup.jqmData( "overlay-theme-set", true );
455                 }
456
457                 btn
458                         .attr({
459                                 "aria-haspopup": true,
460                                 "aria-owns": btn.attr("href")
461                         })
462                         .removeAttr("href")
463                         .bind( "vclick", btnVClickHandler );
464
465                 popup.bind( "destroyed", function () {
466                         btn.unbind( "vclick", btnVClickHandler );
467                 } );
468         };
469
470         $( document ).bind( "pagecreate create", function ( e ) {
471                 $( $.tizen.popupwindow.prototype.options.initSelector, e.target )
472                         .not(":jqmData(role='none'), :jqmData(role='nojs')")
473                         .popupwindow();
474
475                 $( "a[href^='#']:jqmData(rel='popupwindow')", e.target ).each( function () {
476                         $.tizen.popupwindow.bindPopupToButton( $( this ), $( $( this ).attr("href") ) );
477                 });
478         });
479 }( jQuery ));