mirror of https://github.com/RubaXa/Sortable.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
477 lines
9.7 KiB
477 lines
9.7 KiB
/**! |
|
* Sortable |
|
* @author RubaXa <trash@rubaxa.org> |
|
* @license MIT |
|
*/ |
|
|
|
|
|
(function (factory){ |
|
"use strict"; |
|
|
|
if( typeof define === "function" && define.amd ){ |
|
define("Sortable", [], factory); |
|
} |
|
else { |
|
window["Sortable"] = factory(); |
|
} |
|
})(function (){ |
|
"use strict"; |
|
|
|
var |
|
dragEl |
|
, ghostEl |
|
, rootEl |
|
, nextEl |
|
|
|
, lastEl |
|
, lastCSS |
|
|
|
, activeGroup |
|
|
|
, tapEvt |
|
, touchEvt |
|
|
|
, expando = 'Sortable' + (new Date).getTime() |
|
|
|
, win = window |
|
, document = win.document |
|
, parseInt = win.parseInt |
|
, Event = win.CustomEvent |
|
|
|
, noop = function (){} |
|
, slice = [].slice |
|
|
|
, touchDragOverListeners = [] |
|
; |
|
|
|
|
|
/** |
|
* @class Sortable |
|
* @param {HTMLElement} el |
|
* @param {Object} [options] |
|
* @constructor |
|
*/ |
|
function Sortable(el, options){ |
|
this.el = el; // root element |
|
this.options = options = (options || {}); |
|
|
|
|
|
// Defaults |
|
options.group = options.group || Math.random(); |
|
options.handle = options.handle || null; |
|
options.draggable = options.draggable || el.children[0] && el.children[0].nodeName || 'li'; |
|
options.ghostClass = options.ghostClass || 'sortable-ghost'; |
|
|
|
options.onAdd = _bind(this, options.onAdd || noop); |
|
options.onUpdate = _bind(this, options.onUpdate || noop); |
|
options.onRemove = _bind(this, options.onRemove || noop); |
|
|
|
|
|
el[expando] = options.group; |
|
|
|
|
|
// Bind all prevate methods |
|
for( var fn in this ){ |
|
if( fn.charAt(0) === '_' ){ |
|
this[fn] = _bind(this, this[fn]); |
|
} |
|
} |
|
|
|
|
|
// Bind events |
|
_on(el, 'add', options.onAdd); |
|
_on(el, 'update', options.onUpdate); |
|
_on(el, 'remove', options.onRemove); |
|
|
|
_on(el, 'mousedown', this._onTapStart); |
|
_on(el, 'touchstart', this._onTapStart); |
|
|
|
_on(el, 'dragover', this._onDragOver); |
|
_on(el, 'dragenter', this._onDragOver); |
|
|
|
touchDragOverListeners.push(this._onDragOver); |
|
} |
|
|
|
|
|
Sortable.prototype = { |
|
constructor: Sortable, |
|
|
|
|
|
_applyEffects: function (){ |
|
_toggleClass(dragEl, this.options.ghostClass, true); |
|
}, |
|
|
|
|
|
_onTapStart: function (evt/**TouchEvent*/){ |
|
var |
|
touch = evt.touches && evt.touches[0] |
|
, target = (touch || evt).target |
|
, options = this.options |
|
; |
|
|
|
if( options.handle ){ |
|
target = _closest(target, options.handle, this.el); |
|
} |
|
|
|
target = _closest(target, options.draggable, this.el); |
|
|
|
if( target && !dragEl ){ |
|
tapEvt = evt; |
|
target.draggable = true; |
|
|
|
// Disable "draggable" |
|
_find(target, 'a', _disableDraggable); |
|
_find(target, 'img', _disableDraggable); |
|
|
|
|
|
if( touch ){ |
|
// Touch device support |
|
tapEvt = { |
|
target: target |
|
, clientX: touch.clientX |
|
, clientY: touch.clientY |
|
}; |
|
this._onDragStart(tapEvt, true); |
|
evt.preventDefault(); |
|
} |
|
|
|
|
|
_on(this.el, 'dragstart', this._onDragStart); |
|
_on(this.el, 'dragend', this._onDrop); |
|
|
|
_on(document, 'dragover', _globalDragOver); |
|
|
|
|
|
try { |
|
if( document.selection ){ |
|
document.selection.empty(); |
|
} else { |
|
window.getSelection().removeAllRanges() |
|
} |
|
} catch (err){ } |
|
} |
|
}, |
|
|
|
|
|
_emulateDragOver: function (){ |
|
if( touchEvt ){ |
|
_css(ghostEl, 'display', 'none'); |
|
|
|
var |
|
target = document.elementFromPoint(touchEvt.clientX, touchEvt.clientY) |
|
, parent = target |
|
, group = this.options.group |
|
, i = touchDragOverListeners.length |
|
; |
|
|
|
do { |
|
if( parent[expando] === group ){ |
|
|
|
while( i-- ){ |
|
touchDragOverListeners[i]({ |
|
clientX: touchEvt.clientX, |
|
clientY: touchEvt.clientY, |
|
target: target, |
|
rootEl: parent |
|
}); |
|
} |
|
break; |
|
} |
|
} |
|
while( parent = parent.parentNode ); |
|
|
|
_css(ghostEl, 'display', ''); |
|
} |
|
}, |
|
|
|
|
|
_onTouchMove: function (evt){ |
|
if( tapEvt ){ |
|
var |
|
touch = evt.touches[0] |
|
, dx = touch.clientX - tapEvt.clientX |
|
, dy = touch.clientY - tapEvt.clientY |
|
; |
|
|
|
touchEvt = touch; |
|
_css(ghostEl, 'webkitTransform', 'translate3d('+dx+'px,'+dy+'px,0)'); |
|
} |
|
}, |
|
|
|
|
|
_onDragStart: function (evt/**Event*/, isTouch){ |
|
var |
|
target = evt.target |
|
, dataTransfer = evt.dataTransfer |
|
; |
|
|
|
rootEl = this.el; |
|
dragEl = target; |
|
nextEl = target.nextSibling; |
|
activeGroup = this.options.group; |
|
|
|
if( isTouch ){ |
|
var rect = target.getBoundingClientRect(), css = _css(target); |
|
|
|
ghostEl = target.cloneNode(true); |
|
|
|
_css(ghostEl, 'top', rect.top - parseInt(css.marginTop, 10)); |
|
_css(ghostEl, 'left', rect.left - parseInt(css.marginLeft, 10)); |
|
_css(ghostEl, 'width', rect.right - rect.left); |
|
_css(ghostEl, 'height', rect.bottom - rect.top); |
|
_css(ghostEl, 'opacity', '0.8'); |
|
_css(ghostEl, 'position', 'fixed'); |
|
_css(ghostEl, 'zIndex', '100000'); |
|
|
|
target.parentNode.insertBefore(ghostEl, target); |
|
|
|
// Bind touch events |
|
_on(document, 'touchmove', this._onTouchMove); |
|
_on(document, 'touchend', this._onDrop); |
|
|
|
this._loopId = setInterval(this._emulateDragOver, 100); |
|
} |
|
else { |
|
dataTransfer.effectAllowed = 'move'; |
|
dataTransfer.setData('Text', target.textContent); |
|
|
|
_on(document, 'drop', this._onDrop); |
|
} |
|
|
|
setTimeout(this._applyEffects); |
|
}, |
|
|
|
|
|
_onDragOver: function (evt){ |
|
if( activeGroup === this.options.group && (evt.rootEl === void 0 || evt.rootEl === this.el) ){ |
|
var |
|
el = this.el |
|
, target = _closest(evt.target, this.options.draggable, el) |
|
; |
|
|
|
|
|
if( el.children.length === 0 ){ |
|
el.appendChild(dragEl); |
|
} |
|
else if( target && (target !== dragEl) ){ |
|
if( lastEl !== target ){ |
|
lastEl = target; |
|
lastCSS = _css(target) |
|
} |
|
|
|
|
|
var |
|
rect = target.getBoundingClientRect() |
|
, width = rect.right - rect.left |
|
, height = rect.bottom - rect.top |
|
, floating = /left|right|inline/.test(lastCSS.cssFloat + lastCSS.display) |
|
, after = !floating && (evt.clientY - rect.top)/height > .5 || floating && (evt.clientX - rect.left)/width > .5 |
|
, nextSibling = target.nextSibling |
|
; |
|
|
|
|
|
if( after && !nextSibling ){ |
|
el.appendChild(dragEl); |
|
} else { |
|
target.parentNode.insertBefore(dragEl, after ? nextSibling : target); |
|
} |
|
} |
|
} |
|
}, |
|
|
|
|
|
_onDrop: function (evt/**Event*/){ |
|
clearInterval(this._loopId); |
|
|
|
// Unbind events |
|
_off(document, 'drop', this._onDrop); |
|
_off(document, 'dragover', _globalDragOver); |
|
|
|
_off(this.el, 'dragend', this._onDrop); |
|
_off(this.el, 'dragstart', this._onDragStart); |
|
|
|
_off(document, 'touchmove', this._onTouchMove); |
|
_off(document, 'touchend', this._onDrop); |
|
|
|
|
|
if( evt ){ |
|
evt.preventDefault(); |
|
|
|
if( ghostEl ){ |
|
ghostEl.parentNode.removeChild(ghostEl); |
|
} |
|
|
|
if( dragEl ){ |
|
var opts = { bubbles: true, cancelable: true, detail: dragEl }; |
|
|
|
_toggleClass(dragEl, this.options.ghostClass, false); |
|
|
|
if( !rootEl.contains(dragEl) ){ |
|
// Remove event |
|
rootEl.dispatchEvent(new Event('remove', opts)); |
|
|
|
// Add event |
|
dragEl.dispatchEvent(new Event('add', opts)); |
|
} |
|
else if( dragEl.nextSibling !== nextEl ){ |
|
// Update event |
|
dragEl.dispatchEvent(new Event('update', opts)); |
|
} |
|
} |
|
|
|
|
|
// Set NULL |
|
rootEl = |
|
dragEl = |
|
ghostEl = |
|
nextEl = |
|
|
|
tapEvt = |
|
touchEvt = |
|
|
|
lastEl = |
|
lastCSS = |
|
|
|
activeGroup = null; |
|
} |
|
}, |
|
|
|
|
|
destroy: function (){ |
|
var el = this.el, options = this.options; |
|
|
|
_off(el, 'add', options.onAdd); |
|
_off(el, 'update', options.onUpdate); |
|
_off(el, 'remove', options.onRemove); |
|
|
|
_off(el, 'mousedown', this._onTapStart); |
|
_off(el, 'touchstart', this._onTapStart); |
|
|
|
_off(el, 'dragover', this._onDragOver); |
|
_off(el, 'dragenter', this._onDragOver); |
|
|
|
touchDragOverListeners.splice(touchDragOverListeners.indexOf(this._onDragOver), 1); |
|
|
|
this._onDrop(); |
|
|
|
this.el = null; |
|
} |
|
}; |
|
|
|
|
|
function _bind(ctx, fn){ |
|
var args = slice.call(arguments, 2); |
|
return fn.bind ? fn.bind.apply(fn, [ctx].concat(args)) : function (){ |
|
return fn.apply(ctx, args.concat(slice.call(arguments))); |
|
}; |
|
} |
|
|
|
|
|
function _closest(el, selector, ctx){ |
|
if( el && ctx ){ |
|
ctx = ctx || document; |
|
selector = selector.split('.'); |
|
|
|
var |
|
tag = selector.shift().toUpperCase() |
|
, re = new RegExp('\\b('+selector.join('|')+')\\b', 'g') |
|
; |
|
|
|
do { |
|
if( |
|
(tag === '' || el.nodeName == tag) |
|
&& (!selector.length || ((el.className+'').match(re) || []).length == selector.length) |
|
){ |
|
return el; |
|
} |
|
} |
|
while( el !== ctx && (el = el.parentNode) ); |
|
} |
|
|
|
return null; |
|
} |
|
|
|
|
|
function _globalDragOver(evt){ |
|
evt.dataTransfer.dropEffect = 'move'; |
|
evt.preventDefault(); |
|
} |
|
|
|
|
|
function _on(el, event, fn){ |
|
el.addEventListener(event, fn, false); |
|
} |
|
|
|
|
|
function _off(el, event, fn){ |
|
el.removeEventListener(event, fn, false); |
|
} |
|
|
|
|
|
function _toggleClass(el, name, state){ |
|
if( el ){ |
|
if( el.classList ){ |
|
el.classList[state ? 'add' : 'remove'](name); |
|
} |
|
else { |
|
var className = (' '+el.className+' ').replace(/\s+/g, ' ').replace(' '+name+' ', ''); |
|
el.className = className + (state ? ' '+name : '') |
|
} |
|
} |
|
} |
|
|
|
|
|
function _css(el, prop, val){ |
|
if( el && el.style ){ |
|
if( val === void 0 ){ |
|
if( document.defaultView && document.defaultView.getComputedStyle ){ |
|
val = document.defaultView.getComputedStyle(el, ''); |
|
} |
|
else if( el.currentStyle ){ |
|
val = el.currentStyle; |
|
} |
|
return prop === void 0 ? val : val[prop]; |
|
} else { |
|
el.style[prop] = val + (typeof val === 'string' ? '' : 'px'); |
|
} |
|
} |
|
} |
|
|
|
|
|
function _find(ctx, tagName, iterator){ |
|
if( ctx ){ |
|
var list = ctx.getElementsByTagName(tagName), i = 0, n = list.length; |
|
if( iterator ){ |
|
for( ; i < n; i++ ){ |
|
iterator(list[i], i); |
|
} |
|
} |
|
return list; |
|
} |
|
return []; |
|
} |
|
|
|
|
|
function _disableDraggable(el){ |
|
return el.draggable = false; |
|
} |
|
|
|
|
|
|
|
// Export utils |
|
Sortable.utils = { |
|
on: _on, |
|
off: _off, |
|
css: _css, |
|
find: _find, |
|
bind: _bind, |
|
closest: _closest, |
|
toggleClass: _toggleClass |
|
}; |
|
|
|
|
|
Sortable.version = '0.1.0'; |
|
|
|
// Export |
|
return Sortable; |
|
});
|
|
|