123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- if (window.Node && Node.prototype && !Node.prototype.contains) {
- Node.prototype.contains = function (arg) {
- return !!(this.compareDocumentPosition(arg) & 16)
- }
- }
- (function($) {
- //Make nodes selectable by expression
- $.extend($.expr[':'], { sortable: "(' '+a.className+' ').indexOf(' ui-sortable ')" });
- $.fn.sortable = function(o) {
- return this.each(function() {
- new $.ui.sortable(this,o);
- });
- }
-
- //Macros for external methods that support chaining
- var methods = "destroy,enable,disable,refresh".split(",");
- for(var i=0;i<methods.length;i++) {
- var cur = methods[i], f;
- eval('f = function() { var a = arguments; return this.each(function() { if(jQuery(this).is(".ui-sortable")) jQuery.data(this, "ui-sortable")["'+cur+'"](a); }); }');
- $.fn["sortable"+cur.substr(0,1).toUpperCase()+cur.substr(1)] = f;
- };
-
- //get instance method
- $.fn.sortableInstance = function() {
- if($(this[0]).is(".ui-sortable")) return $.data(this[0], "ui-sortable");
- return false;
- };
-
- $.ui.sortable = function(el,o) {
-
- this.element = el;
- this.set = [];
- var options = {};
- var self = this;
- $.data(this.element, "ui-sortable", this);
- $(el).addClass("ui-sortable");
-
- $.extend(options, o);
- $.extend(options, {
- items: options.items || '> li',
- smooth: options.smooth != undefined ? options.smooth : true,
- helper: 'clone',
- containment: options.containment ? (options.containment == 'sortable' ? el : options.containment) : null,
- zIndex: options.zIndex || 1000,
- _start: function(h,p,c,t,e) {
- self.start.apply(t, [self, e]); // Trigger the onStart callback
- },
- _beforeStop: function(h,p,c,t,e) {
- self.stop.apply(t, [self, e]); // Trigger the onStart callback
- },
- _drag: function(h,p,c,t,e) {
- self.drag.apply(t, [self, e]); // Trigger the onStart callback
- },
- startCondition: function() {
- return !self.disabled;
- }
- });
-
- //Get the items
- var items = $(options.items, el);
-
- //Let's determine the floating mode
- options.floating = /left|right/.test(items.css('float'));
-
- //Let's determine the parent's offset
- if($(el).css('position') == 'static') $(el).css('position', 'relative');
- options.offset = $(el).offset({ border: false });
- items.each(function() {
- new $.ui.mouseInteraction(this,options);
- });
-
- //Add current items to the set
- items.each(function() {
- self.set.push([this,null]);
- });
-
- this.options = options;
- }
-
- $.extend($.ui.sortable.prototype, {
- plugins: {},
- currentTarget: null,
- lastTarget: null,
- prepareCallbackObj: function(self, that) {
- return {
- helper: self.helper,
- position: { left: self.pos[0], top: self.pos[1] },
- offset: self.options.cursorAt,
- draggable: self,
- current: that,
- options: self.options
- }
- },
- refresh: function() {
- //Get the items
- var self = this;
- var items = $(this.options.items, this.element);
- var unique = [];
- items.each(function() {
- old = false;
- for(var i=0;i<self.set.length;i++) { if(self.set[i][0] == this) old = true; }
- if(!old) unique.push(this);
- });
-
- for(var i=0;i<unique.length;i++) {
- new $.ui.mouseInteraction(unique[i],self.options);
- }
-
- //Add current items to the set
- this.set = [];
- items.each(function() {
- self.set.push([this,null]);
- });
-
- },
- destroy: function() {
- $(this.element).removeClass("ui-sortable").removeClass("ui-sortable-disabled");
- $(this.options.items, this.element).mouseInteractionDestroy();
-
- },
- enable: function() {
- $(this.element).removeClass("ui-sortable-disabled");
- this.disabled = false;
- },
- disable: function() {
- $(this.element).addClass("ui-sortable-disabled");
- this.disabled = true;
- },
- start: function(that, e) {
-
- var o = this.options;
- if(o.hoverClass) {
- that.helper = $('<div class="'+o.hoverClass+'"></div>').appendTo('body').css({
- height: this.element.offsetHeight+'px',
- width: this.element.offsetWidth+'px',
- position: 'absolute'
- });
- }
-
- if(o.zIndex) {
- if($(this.helper).css("zIndex")) o.ozIndex = $(this.helper).css("zIndex");
- $(this.helper).css('zIndex', o.zIndex);
- }
-
- that.firstSibling = $(this.element).prev()[0];
-
- $(this.element).triggerHandler("sortstart", [e, that.prepareCallbackObj(this)], o.start);
- $(this.element).css('visibility', 'hidden');
-
- return false;
-
- },
- stop: function(that, e) {
-
- var o = this.options;
- var self = this;
-
- if(o.smooth) {
- var os = $(this.element).offset();
- o.beQuietAtEnd = true;
- $(this.helper).animate({ left: os.left - o.po.left, top: os.top - o.po.top }, 500, stopIt);
- } else {
- stopIt();
- }
-
- function stopIt() {
- $(self.element).css('visibility', 'visible');
- if(that.helper) that.helper.remove();
- if(self.helper != self.element) $(self.helper).remove();
- if(o.ozIndex)
- $(self.helper).css('zIndex', o.ozIndex);
-
-
- //Let's see if the position in DOM has changed
- if($(self.element).prev()[0] != that.firstSibling) {
- //$(self.element).triggerHandler("sortupdate", [e, that.prepareCallbackObj(self, that)], o.update);
- }
- }
-
- return false;
-
- },
- drag: function(that, e) {
- var o = this.options;
- this.pos = [this.pos[0]-(o.cursorAt.left ? o.cursorAt.left : 0), this.pos[1]-(o.cursorAt.top ? o.cursorAt.top : 0)];
- var nv = $(this.element).triggerHandler("sort", [e, that.prepareCallbackObj(this)], o.sort);
- var nl = (nv && nv.left) ? nv.left : this.pos[0];
- var nt = (nv && nv.top) ? nv.top : this.pos[1];
-
- var m = that.set;
- var p = this.pos[1];
-
- for(var i=0;i<m.length;i++) {
-
- var ci = $(m[i][0]); var cio = m[i][0];
- if(this.element.contains(cio)) continue;
- var cO = ci.offset(); //TODO: Caching
- cO = { top: cO.top, left: cO.left };
-
- var mb = function(e) { if(true || o.lba != cio) { ci.before(e); o.lba = cio; } }
- var ma = function(e) { if(true || o.laa != cio) { ci.after(e); o.laa = cio; } }
-
- if(o.floating) {
-
- var overlap = ((cO.left - (this.pos[0]+(this.options.po ? this.options.po.left : 0)))/this.helper.offsetWidth);
- if(!(cO.top < this.pos[1]+(this.options.po ? this.options.po.top : 0) + cio.offsetHeight/2 && cO.top + cio.offsetHeight > this.pos[1]+(this.options.po ? this.options.po.top : 0) + cio.offsetHeight/2)) continue;
-
- } else {
- var overlap = ((cO.top - (this.pos[1]+(this.options.po ? this.options.po.top : 0)))/this.helper.offsetHeight);
- if(!(cO.left < this.pos[0]+(this.options.po ? this.options.po.left : 0) + cio.offsetWidth/2 && cO.left + cio.offsetWidth > this.pos[0]+(this.options.po ? this.options.po.left : 0) + cio.offsetWidth/2)) continue;
- }
-
- if(overlap >= 0 && overlap <= 0.5) { //Overlapping at top
- ci.prev().length ? ma(this.element) : mb(this.element);
- }
- if(overlap < 0 && overlap > -0.5) { //Overlapping at bottom
- ci.next()[0] == this.element ? mb(this.element) : ma(this.element);
- }
- }
-
- //Let's see if the position in DOM has changed
- if($(this.element).prev()[0] != that.lastSibling) {
- $(this.element).triggerHandler("sortchange", [e, that.prepareCallbackObj(this, that)], this.options.change);
- that.lastSibling = $(this.element).prev()[0];
- }
- if(that.helper) { //reposition helper if available
- var to = $(this.element).offset();
- that.helper.css({
- top: to.top+'px',
- left: to.left+'px'
- });
- }
-
- $(this.helper).css('left', nl+'px').css('top', nt+'px'); // Stick the helper to the cursor
- return false;
-
- }
- });
- })($);
|