Tizen 2.0 Release
[platform/framework/web/web-ui-fw.git] / libs / patch / 0020-JQM-Apply-tizen-style-context-popup.patch
1 From f19edbb67df9a307f9a8a6b3cc7e059794b98563 Mon Sep 17 00:00:00 2001
2 From: "hjnim.kim" <hjnim.kim@samsung.com>
3 Date: Thu, 17 Jan 2013 10:12:59 +0900
4 Subject: [PATCH] JQM Apply tizen style context popup
5
6 Apply tizen style context popup ( data-postion-to = "origin" or null )
7
8 Change-Id: I654ba0c51e74f144c5f38c292380daa60b7cb38f
9 Signed-off-by: hyunjung kim <hjnim.kim@samsung.com>
10 ---
11  libs/js/jquery-mobile-1.2.0/js/widgets/popup.js |   96 ++++++++++++++++++++---
12  1 files changed, 86 insertions(+), 10 deletions(-)
13
14 diff --git a/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js b/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
15 index c222f08..b46e737 100644
16 --- a/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
17 +++ b/libs/js/jquery-mobile-1.2.0/js/widgets/popup.js
18 @@ -58,7 +58,7 @@ define( [ "jquery",
19                         //      https://github.com/jquery/jquery-mobile/issues/4784
20                         //
21                         // NOTE this option is modified in _create!
22 -                       history: !$.mobile.browser.ie
23 +                       history: false
24                 },
25  
26                 _eatEventAndClose: function( e ) {
27 @@ -109,7 +109,7 @@ define( [ "jquery",
28                 },
29  
30                 _resizeTimeout: function() {
31 -                       if ( !this._maybeRefreshTimeout() ) {
32 +                       if ( !this._maybeRefreshTimeout() && this.positionTo === "window" ) {
33                                 // effectively rapid-open the popup while leaving the screen intact
34                                 this._trigger( "beforeposition" );
35                                 this._ui.container
36 @@ -144,7 +144,8 @@ define( [ "jquery",
37                         var ui = {
38                                         screen: $( "<div class='ui-screen-hidden ui-popup-screen'></div>" ),
39                                         placeholder: $( "<div style='display: none;'><!-- placeholder --></div>" ),
40 -                                       container: $( "<div class='ui-popup-container ui-selectmenu-hidden'></div>" )
41 +                                       container: $( "<div class='ui-popup-container ui-selectmenu-hidden'></div>" ),
42 +                                       arrow : $("<div class='ui-arrow'></div>")
43                                 },
44                                 thisPage = this.element.closest( ".ui-page" ),
45                                 myId = this.element.attr( "id" ),
46 @@ -174,7 +175,7 @@ define( [ "jquery",
47                                 ui.placeholder.html( "<!-- placeholder for " + myId + " -->" );
48                         }
49                         ui.container.append( this.element );
50 -
51 +                       ui.container.append( ui.arrow );
52                         // Add class to popup element
53                         this.element.addClass( "ui-popup" );
54  
55 @@ -276,7 +277,7 @@ define( [ "jquery",
56                 },
57  
58                 _setTolerance: function( value ) {
59 -                       var tol = { t: 30, r: 15, b: 30, l: 15 };
60 +                       var tol = { t: 5, r: 5, b: 5, l: 5 };
61  
62                         if ( value ) {
63                                 var ar = String( value ).split( "," );
64 @@ -361,7 +362,11 @@ define( [ "jquery",
65                                         cx: winCoords.cx - this._tolerance.l - this._tolerance.r,
66                                         cy: winCoords.cy - this._tolerance.t - this._tolerance.b
67                                 },
68 -                               menuSize, ret;
69 +                               menuSize, ret,
70 +                               linkOffset = $(this.link).offset(),
71 +                               positionOffsets = [],
72 +                               correctionValue = [0,0],
73 +                               arrayIdx;
74  
75                         // Clamp the width of the menu before grabbing its size
76                         this._ui.container.css( "max-width", rc.cx );
77 @@ -389,7 +394,48 @@ define( [ "jquery",
78  
79                         ret.y -= Math.min( ret.y, Math.max( 0, ret.y + menuSize.cy - docHeight ) );
80  
81 -                       return { left: ret.x, top: ret.y };
82 +                       if ( this.positionTo !== "origin" )
83 +                       {
84 +                               return { left: ret.x, top: ret.y , arrowleft: 0 , arrowtop: 0};
85 +                       }
86 +
87 +                       positionOffsets = [ linkOffset.left,
88 +                                                               linkOffset.top,
89 +                                                               docEl.clientHeight - ( linkOffset.top + $(this.link).height() ),
90 +                                                               docEl.clientWidth - ( linkOffset.left + $(this.link).width() )];
91 +                       arrayIdx = positionOffsets.indexOf(Math.max.apply(window,positionOffsets));
92 +
93 +                       switch( arrayIdx )
94 +                       {
95 +                               case 0:
96 +                                       correctionValue = [ -$(this.link).width() , 0];
97 +                                       arrow.attr( "class", "" )
98 +                                                                       .addClass( "ui-arrow right" );
99 +                                       break;
100 +                               case 1:
101 +                                       correctionValue = [ 0 , -(ret.y + menuSize.cy - linkOffset.top)];
102 +                                       arrowtop = menuSize.cy - 1;
103 +                                       arrowleft = (linkOffset.left - ret.x + correctionValue[0]) + ( $(this.link).width() / 2 ) - parseInt( $(this._ui.arrow).css("border-width") ) / 2;
104 +                                       $(this._ui.arrow).attr( "class", "" )
105 +                                                                       .addClass( "ui-arrow bottom" );
106 +                                       break;
107 +                               case 2:
108 +                                       correctionValue = [ 0 , ( linkOffset.top + $(this.link).height() - ret.y ) ];
109 +                                       arrowtop = - parseInt( $(this._ui.arrow).css("border-width") ) * 2 + 1;
110 +                                       arrowleft = (linkOffset.left - ret.x + correctionValue[0]) + ( $(this.link).width() / 2 ) - parseInt( $(this._ui.arrow).css("border-width") ) / 2;
111 +                                       $(this._ui.arrow).attr( "class", "" )
112 +                                                                       .addClass("ui-arrow top");
113 +                                       break;
114 +                               case 3:
115 +                                       correctionValue = [ ( menuSize.cx < $(this.link).width() ) ? ( $(this.link).width() / 2 ) + ( menuSize.cx / 2) : $(this.link).width() , 0];
116 +                                       arrowtop = ( linkOffset.top - ret.y  ) + ( $(this.link).height() / 2 ) - parseInt( $(this._ui.arrow).css("border-width") ) ;
117 +                                       arrowleft = - parseInt( $(this._ui.arrow).css("border-width") ) * 2;
118 +                                       $(this._ui.arrow).attr( "class", "" )
119 +                                                                       .addClass("ui-arrow right");
120 +                                       break;
121 +                       }
122 +
123 +                       return { left: ret.x + correctionValue[0], top: ret.y + correctionValue[1] , arrowleft: arrowleft , arrowtop: arrowtop };
124                 },
125  
126                 _createPrereqs: function( screenPrereq, containerPrereq, whenDone ) {
127 @@ -569,7 +615,7 @@ define( [ "jquery",
128                         this._ui.container
129                                 .removeClass( "ui-selectmenu-hidden" )
130                                 .offset( coords );
131 -
132 +                       this._ui.arrow.css( { top : coords.arrowtop, left : coords.arrowleft } );
133                         if ( this.options.overlayTheme && androidBlacklist ) {
134                                 /* TODO:
135                                 The native browser on Android 4.0.X ("Ice Cream Sandwich") suffers from an issue where the popup overlay appears to be z-indexed
136 @@ -694,15 +740,45 @@ define( [ "jquery",
137                 // what should be in _open. Seems to be "visual" vs "history" for now
138                 open: function( options ) {
139                         var self = this, opts = this.options, url, hashkey, activePage, currentIsDialog, hasHash, urlHistory;
140 -
141 +                       // self.link = ( $(event.target).attr('data-role') === 'button') ? event.target : $(event.target).closest('[data-role="button"]')[0];
142                         // make sure open is idempotent
143                         if( $.mobile.popup.active ) {
144                                 return;
145                         }
146 -
147                         // set the global popup mutex
148                         $.mobile.popup.active = this;
149 +                       if( !options ) {
150 +                               options = [];
151 +                       }
152 +                       if ( !options.link ) {
153 +                               self.link = $(event.target).closest('a')[0];
154 +                       } else {
155 +                               self.link = options.link;
156 +                       }
157 +                       self.positionTo = ( options != null && options.positionTo != null ) ? options.positionTo : "origin";
158 +                       if ( $(self.link).jqmData("position-to") !== "window"
159 +                                       && self.positionTo !== "window" ) {
160 +
161 +                               $(self.element).addClass("ui-ctxpopup");
162 +                               $(self._ui.container).removeClass("ui-popup-container")
163 +                                       .addClass("ui-ctxpopup-container");
164  
165 +                               if( self.positionTo !== "origin" ) {
166 +                                       $(self._ui.arrow).hide();
167 +                               } else {
168 +                                       $(self._ui.arrow).show();
169 +                               }
170 +                       } else {
171 +                               $(self._ui.arrow).hide();
172 +                       }
173 +                       if( !options.x
174 +                               && self.positionTo === "origin" ) {
175 +                               options.x = $(self.link).offset().left + $(self.link).outerWidth() / 2;
176 +                       }
177 +                       if( !options.y
178 +                               && self.positionTo === "origin" ) {
179 +                               options.y = $(self.link).offset().top + $(self.link).outerHeight() / 2;
180 +                       }
181                         // if history alteration is disabled close on navigate events
182                         // and leave the url as is
183                         if( !( opts.history ) ) {
184 -- 
185 1.7.5.4
186