jquery-ui/ui/jquery.ui.position.js

314 lines
9.4 KiB
JavaScript
Raw Normal View History

/*
* jQuery UI Position @VERSION
*
2011-01-17 14:13:18 +00:00
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* http://docs.jquery.com/UI/Position
*/
(function( $, undefined ) {
$.ui = $.ui || {};
2011-03-22 17:12:03 +00:00
var rhorizontal = /left|center|right/,
rvertical = /top|center|bottom/,
roffset = /[+-]\d+%?/,
rposition = /^\w+/,
rpercent = /%$/,
center = "center",
_position = $.fn.position;
2010-02-14 18:15:32 +00:00
$.fn.position = function( options ) {
if ( !options || !options.of ) {
return _position.apply( this, arguments );
}
2010-02-14 18:15:32 +00:00
// make a copy, we don't want to modify arguments
2010-02-14 18:15:32 +00:00
options = $.extend( {}, options );
2010-02-14 18:15:32 +00:00
var target = $( options.of ),
within = $( options.within || window ),
targetElem = target[0],
2010-02-14 18:15:32 +00:00
collision = ( options.collision || "flip" ).split( " " ),
offsets = {},
atOffset,
targetWidth,
targetHeight,
basePosition;
if ( targetElem.nodeType === 9 ) {
targetWidth = target.width();
targetHeight = target.height();
basePosition = { top: 0, left: 0 };
2010-12-10 19:34:21 +00:00
} else if ( $.isWindow( targetElem ) ) {
targetWidth = target.width();
targetHeight = target.height();
basePosition = { top: target.scrollTop(), left: target.scrollLeft() };
} else if ( targetElem.preventDefault ) {
// force left top to allow flipping
2010-02-14 18:15:32 +00:00
options.at = "left top";
targetWidth = targetHeight = 0;
basePosition = { top: options.of.pageY, left: options.of.pageX };
} else {
targetWidth = target.outerWidth();
targetHeight = target.outerHeight();
basePosition = target.offset();
}
2011-03-21 18:02:00 +00:00
// force my and at to have valid horizontal and vertical positions
// if a value is missing or invalid, it will be converted to center
2010-02-14 18:15:32 +00:00
$.each( [ "my", "at" ], function() {
2011-03-22 17:12:03 +00:00
var pos = ( options[ this ] || "" ).split( " " ),
horizontalOffset,
verticalOffset;
2010-02-14 18:15:32 +00:00
if ( pos.length === 1) {
2011-03-22 17:12:03 +00:00
pos = rhorizontal.test( pos[ 0 ] ) ?
pos.concat( [ center ] ) :
rvertical.test( pos[ 0 ] ) ?
[ center ].concat( pos ) :
[ center, center ];
2010-02-14 18:15:32 +00:00
}
2011-03-22 17:12:03 +00:00
pos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : center;
pos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : center;
// calculate offsets
horizontalOffset = roffset.exec( pos[ 0 ] );
2011-03-22 17:12:03 +00:00
verticalOffset = roffset.exec( pos[ 1 ] );
offsets[ this ] = [
horizontalOffset ? horizontalOffset[ 0 ] : 0,
verticalOffset ? verticalOffset[ 0 ] : 0
];
// reduce to just the positions without the offsets
options[ this ] = [
rposition.exec( pos[ 0 ] )[ 0 ],
rposition.exec( pos[ 1 ] )[ 0 ]
];
});
// normalize collision option
2010-02-14 18:15:32 +00:00
if ( collision.length === 1 ) {
collision[ 1 ] = collision[ 0 ];
}
2011-03-22 17:12:03 +00:00
if ( options.at[ 0 ] === "right" ) {
2010-02-14 18:15:32 +00:00
basePosition.left += targetWidth;
2011-03-22 17:12:03 +00:00
} else if ( options.at[ 0 ] === center ) {
2010-02-14 18:15:32 +00:00
basePosition.left += targetWidth / 2;
}
2011-03-22 17:12:03 +00:00
if ( options.at[ 1 ] === "bottom" ) {
2010-02-14 18:15:32 +00:00
basePosition.top += targetHeight;
2011-03-22 17:12:03 +00:00
} else if ( options.at[ 1 ] === center ) {
2010-02-14 18:15:32 +00:00
basePosition.top += targetHeight / 2;
}
atOffset = [
parseInt( offsets.at[ 0 ], 10 ) *
( rpercent.test( offsets.at[ 0 ] ) ? targetWidth / 100 : 1 ),
parseInt( offsets.at[ 1 ], 10 ) *
( rpercent.test( offsets.at[ 1 ] ) ? targetHeight / 100 : 1 )
];
basePosition.left += atOffset[ 0 ],
basePosition.top += atOffset[ 1 ];
return this.each(function() {
2010-02-14 18:15:32 +00:00
var elem = $( this ),
elemWidth = elem.outerWidth(),
elemHeight = elem.outerHeight(),
marginLeft = parseInt( $.curCSS( this, "marginLeft", true ) ) || 0,
marginTop = parseInt( $.curCSS( this, "marginTop", true ) ) || 0,
collisionWidth = elemWidth + marginLeft +
( parseInt( $.curCSS( this, "marginRight", true ) ) || 0 ),
collisionHeight = elemHeight + marginTop +
( parseInt( $.curCSS( this, "marginBottom", true ) ) || 0 ),
position = $.extend( {}, basePosition ),
myOffset = [
parseInt( offsets.my[ 0 ], 10 ) *
( rpercent.test( offsets.my[ 0 ] ) ? elem.outerWidth() / 100 : 1 ),
parseInt( offsets.my[ 1 ], 10 ) *
( rpercent.test( offsets.my[ 1 ] ) ? elem.outerHeight() / 100 : 1 )
],
collisionPosition;
2011-03-22 17:12:03 +00:00
if ( options.my[ 0 ] === "right" ) {
2010-02-14 18:15:32 +00:00
position.left -= elemWidth;
2011-03-22 17:12:03 +00:00
} else if ( options.my[ 0 ] === center ) {
2010-02-14 18:15:32 +00:00
position.left -= elemWidth / 2;
}
2011-03-22 17:12:03 +00:00
if ( options.my[ 1 ] === "bottom" ) {
2010-02-14 18:15:32 +00:00
position.top -= elemHeight;
2011-03-22 17:12:03 +00:00
} else if ( options.my[ 1 ] === center ) {
2010-02-14 18:15:32 +00:00
position.top -= elemHeight / 2;
}
position.left += myOffset[ 0 ];
position.top += myOffset[ 1 ];
// prevent fractions (see #5280)
position.left = Math.round( position.left );
position.top = Math.round( position.top );
collisionPosition = {
left: position.left - marginLeft,
top: position.top - marginTop
};
2010-02-14 18:15:32 +00:00
$.each( [ "left", "top" ], function( i, dir ) {
2011-03-22 17:12:03 +00:00
if ( $.ui.position[ collision[ i ] ] ) {
$.ui.position[ collision[ i ] ][ dir ]( position, {
targetWidth: targetWidth,
targetHeight: targetHeight,
elemWidth: elemWidth,
elemHeight: elemHeight,
collisionPosition: collisionPosition,
collisionWidth: collisionWidth,
collisionHeight: collisionHeight,
offset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],
my: options.my,
at: options.at,
within: within
2010-02-14 18:15:32 +00:00
});
}
});
2010-02-14 18:15:32 +00:00
if ( $.fn.bgiframe ) {
elem.bgiframe();
}
elem.offset( $.extend( position, { using: options.using } ) );
});
};
$.ui.position = {
fit: {
2010-02-14 18:15:32 +00:00
left: function( position, data ) {
2011-05-11 23:44:20 +00:00
var win = data.within,
isWindow = $.isWindow(data.within[0]),
winOffset = isWindow ? 0 : win.offset().left,
outerWidth = isWindow ? win.width() : win.outerWidth(),
overLeft = win.scrollLeft() - data.collisionPosition.left + winOffset,
overRight = data.collisionPosition.left + data.collisionWidth - outerWidth - win.scrollLeft() - winOffset;
// element is wider than window or too far left -> align with left edge
if ( data.collisionWidth > outerWidth || overLeft > 0 ) {
position.left = position.left + overLeft;
// too far right -> align with right edge
} else if ( overRight > 0 ) {
position.left = position.left - overRight;
// adjust based on position and margin
} else {
position.left = Math.max( position.left - data.collisionPosition.left, position.left );
}
},
2010-02-14 18:15:32 +00:00
top: function( position, data ) {
2011-05-11 23:44:20 +00:00
var win = data.within,
isWindow = $.isWindow(data.within[0]),
winOffset = isWindow ? 0 : win.offset().top,
outerHeight = isWindow ? win.height() : win.outerHeight(),
overTop = win.scrollTop() - data.collisionPosition.top + winOffset,
overBottom = data.collisionPosition.top + data.collisionHeight - outerHeight - win.scrollTop() - winOffset;
// element is taller than window or too far up -> align with top edge
if ( data.collisionHeight > outerHeight || overTop > 0 ) {
position.top = position.top + overTop;
// too far down -> align with bottom edge
} else if ( overBottom > 0 ) {
position.top = position.top - overBottom;
// adjust based on position and margin
} else {
position.top = Math.max( position.top - data.collisionPosition.top, position.top );
}
}
},
flip: {
2010-02-14 18:15:32 +00:00
left: function( position, data ) {
2011-03-22 17:12:03 +00:00
if ( data.at[ 0 ] === center ) {
return;
2010-02-14 18:15:32 +00:00
}
2011-05-11 23:44:20 +00:00
var win = data.within,
isWindow = $.isWindow(data.within[0]),
winOffset = isWindow ? 0 : win.offset().left,
outerWidth = isWindow ? win.width() : win.outerWidth(),
overLeft = data.collisionPosition.left - winOffset,
overRight = data.collisionPosition.left + data.collisionWidth - outerWidth - win.scrollLeft() - winOffset
left = data.my[ 0 ] === "left",
2010-02-14 18:15:32 +00:00
myOffset = data.my[ 0 ] === "left" ?
-data.elemWidth :
data.my[ 0 ] === "right" ?
data.elemWidth :
0,
atOffset = data.at[ 0 ] === "left" ?
data.targetWidth :
-data.targetWidth,
2010-02-14 18:15:32 +00:00
offset = -2 * data.offset[ 0 ];
if ( overLeft < 0 || overRight > 0 ) {
position.left += myOffset + atOffset + offset;
}
},
2010-02-14 18:15:32 +00:00
top: function( position, data ) {
2011-03-22 17:12:03 +00:00
if ( data.at[ 1 ] === center ) {
return;
2010-02-14 18:15:32 +00:00
}
2011-05-11 23:44:20 +00:00
var win = data.within,
isWindow = $.isWindow(data.within[0]),
winOffset = isWindow ? 0 : win.offset().top,
outerHeight = isWindow ? win.height() : win.outerHeight(),
overTop = data.collisionPosition.top - winOffset,
overBottom = data.collisionPosition.top + data.collisionHeight - outerHeight - win.scrollTop() - winOffset,
top = data.my[ 1 ] === "top",
myOffset = top ?
2010-02-14 18:15:32 +00:00
-data.elemHeight :
data.my[ 1 ] === "bottom" ?
data.elemHeight :
0,
atOffset = data.at[ 1 ] === "top" ?
data.targetHeight :
-data.targetHeight,
offset = -2 * data.offset[ 1 ];
if ( overTop < 0 || overBottom > 0) {
position.top += myOffset + atOffset + offset;
}
}
}
};
// DEPRECATED
if ( $.uiBackCompat !== false ) {
// offset option
(function( $ ) {
var _position = $.fn.position;
$.fn.position = function( options ) {
if ( !options || !( "offset" in options ) ) {
return _position.call( this, options );
}
var offset = options.offset.split( " " ),
at = options.at.split( " " );
if ( offset.length === 1 ) {
offset[ 1 ] = offset[ 0 ];
}
if ( /^\d/.test( offset[ 0 ] ) ) {
offset[ 0 ] = "+" + offset[ 0 ];
}
if ( /^\d/.test( offset[ 1 ] ) ) {
offset[ 1 ] = "+" + offset[ 1 ];
}
if ( at.length === 1 ) {
if ( /left|center|right/.test( at[ 0 ] ) ) {
at[ 1 ] = "center";
} else {
at[ 1 ] = at[ 0 ];
at[ 0 ] = "center";
}
}
return _position.call( this, $.extend( options, {
at: at[ 0 ] + offset[ 0 ] + " " + at[ 1 ] + offset[ 1 ],
offset: undefined
} ) );
}
2011-03-22 17:12:03 +00:00
}( jQuery ) );
}
}( jQuery ) );