jquery-ui/ui/jquery.ui.draggable.js

245 lines
5.1 KiB
JavaScript
Raw Normal View History

2008-06-04 02:34:33 +00:00
/*
* jQuery UI Draggable 2.0.0
2008-06-04 02:34:33 +00:00
*
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
*
2008-06-04 02:34:33 +00:00
* http://docs.jquery.com/UI/Draggables
*
* Depends:
* jquery.ui.core.js
* jquery.ui.widget.js
2008-06-04 02:34:33 +00:00
*/
(function( $, undefined ) {
2008-06-04 02:34:33 +00:00
$.widget("ui.draggable", {
widgetEventPrefix: "drag",
options: {
helper : false
},
// Either initialized element or the helper
dragEl : false,
position : {},
offset : {},
// Start X/Y coords of mouse before drag
startCoords : {},
// Start position of element before drag
startPosition : {},
// Start offset of element before drag
startOffset : {},
// TODO: actually remove data
destroy: function() {
return this;
},
_create: function() {
this.scrollParent = this.element.scrollParent();
// Static position elements can"t be moved with top/left
if ( this.element.css( "position" ) === "static" ) {
this.element.css( "position", "relative" );
}
// Prevent browser from hijacking drag
this.element.disableSelection();
// Using proxy to avoid anon functions using self to pass "this" along
this.element.bind( "mousedown." + this.widgetName, $.proxy( this._mouseDown, this ) );
2009-01-22 13:10:18 +00:00
},
_setPosition : function() {
var left, top, position, cssPosition;
// Helper is appended to body so offset of element is all that"s needed
if ( this.options.helper === true ) {
return this.element.offset();
}
2008-11-28 15:43:32 +00:00
cssPosition = this.dragEl.css( "position" );;
// If fixed or absolute
if ( cssPosition !== "relative" ) {
2008-11-28 15:43:32 +00:00
position = this.dragEl.position();
2008-11-28 15:43:32 +00:00
if ( cssPosition === "absolute" ) {
return position;
}
// Take into account scrollbar for fixed position
position.top = position.top - this.scrollParent.scrollTop();
position.left = position.left - this.scrollParent.scrollLeft();
return position;
} // cssPosition !+== absolute
/** When using relative, css values are checked **/
left = this.dragEl.css( "left" );
top = this.dragEl.css( "top" );
// Webkit will give back auto if there is nothing inline yet
left = ( left === "auto" ) ? 0 : parseInt( left, 10 );
top = ( top === "auto" ) ? 0 : parseInt( top, 10 );
return {
2009-01-22 13:10:18 +00:00
left : left,
top : top
};
},
_mouseDown : function( event ) {
this.dragEl = this.element;
// Helper required, so clone, hide, and set reference
if ( this.options.helper === true ) {
this.dragEl = this.element.clone();
// If source element has an ID, change ID of helper to avoid overlap
if ( this.element.attr( "id" ) ) {
this.dragEl
.css({
position : "absolute",
display : "none"
})
.disableSelection()
.attr( "id", this.element.attr( "id" ) + "-" + this.widgetName );
} // id
2008-06-04 02:34:33 +00:00
$( "body" ).append( this.dragEl );
} // if this.options.helper = true
2008-06-04 02:34:33 +00:00
// Cache starting absolute and relative positions
this.startPosition = this._setPosition();
this.startOffset = this.dragEl.offset();
// Cache current position and offset
this.position = $.extend( {}, this.startPosition );
this.offset = $.extend( {}, this.startOffset );
2009-01-22 13:10:18 +00:00
this.startCoords = {
left : event.clientX,
top : event.clientY
};
2009-01-22 13:10:18 +00:00
this._trigger( "start", event );
2009-01-22 13:10:18 +00:00
$(document).bind( "mousemove." + this.widgetName, $.proxy( this._mouseMove, this ) );
$(document).bind( "mouseup." + this.widgetName, $.proxy( this._mouseUp, this ) );
2009-01-22 13:10:18 +00:00
// Set the helper up by actual element
if ( this.options.helper === true ) {
2008-12-31 08:22:11 +00:00
// get the absolute position of element so that helper will know where to go
elOffset = this.element.offset();
this.dragEl.css({
display : "block",
top : elOffset.top + "px",
left : elOffset.left + "px"
});
} // this.options.height = true
},
_mouseMove : function( event ) {
var leftDiff = event.clientX - this.startCoords.left,
topDiff = event.clientY - this.startCoords.top,
newLeft = leftDiff + this.startPosition.left,
newTop = topDiff + this.startPosition.top;
this.position = {
left : newLeft,
top : newTop
};
// Refresh offset cache with new positions
this.offset.left = this.startOffset.left + newLeft;
this.offset.top = this.startOffset.top + newTop;
2008-06-04 02:34:33 +00:00
this._trigger( "drag", event );
2008-06-04 02:34:33 +00:00
// User overriding left/top so shortcut math is no longer valid
if ( newLeft !== this.position.left || newTop !== this.position.top ) {
// refresh offset using slower functions
this.offset = this.dragEl.offset();
}
this.dragEl.css({
left : this.position.left + "px",
top : this.position.top + "px"
2009-01-24 01:36:22 +00:00
});
2008-11-28 15:43:32 +00:00
},
2009-01-24 01:36:22 +00:00
_mouseUp : function( event ) {
2009-01-24 01:36:22 +00:00
this._trigger( "stop", event );
2009-01-24 01:36:22 +00:00
this.startCoords = {};
if ( this.options.helper === true ) {
this.dragEl.remove();
}
$(document).unbind( "mousemove." + this.widgetName );
$(document).unbind( "mouseup." + this.widgetName );
2008-06-04 02:34:33 +00:00
},
_trigger: function( type, event, ui ) {
ui = ui || this._uiHash();
return $.Widget.prototype._trigger.call( this, type, event, ui );
},
_uiHash: function(event) {
return {
position : this.position,
offset : this.offset
2008-06-04 02:34:33 +00:00
};
}
2008-06-04 02:34:33 +00:00
});
$.extend($.ui.draggable, {
version: "2.0.0"
2008-06-04 02:34:33 +00:00
});
2008-06-04 02:34:33 +00:00
})(jQuery);