-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdrag-arrange.js
279 lines (230 loc) · 8.26 KB
/
drag-arrange.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/**
* drag-shift
* http://github.com/vishalok12
* Copyright (c) 2014 Vishal Kumar
* Licensed under the MIT License.
*/
'use strict';
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else {
// Browser globals
factory(jQuery);
}
}(function ($) {
var IS_TOUCH_DEVICE = ('ontouchstart' in document.documentElement);
/**
* mouse move threshold (in px) until drag action starts
* @type {Number}
*/
var DRAG_THRESHOLD = 5;
/**
* to generate event namespace
* @type {Number}
*/
var counter = 0;
/**
* Javascript events for touch device/desktop
* @return {Object}
*/
var dragEvents = (function () {
if (IS_TOUCH_DEVICE) {
return {
START: 'touchstart',
MOVE: 'touchmove',
END: 'touchend'
};
}
else {
return {
START: 'mousedown',
MOVE: 'mousemove',
END: 'mouseup'
};
}
}());
$.fn.arrangeable = function(options) {
var dragging = false;
var $clone;
var dragElement;
var originalClientX, originalClientY; // client(X|Y) position before drag starts
var $elements; // list of elements to shift between
var touchDown = false;
var leftOffset, topOffset;
var eventNamespace;
if (typeof options === "string") {
// check if want to destroy drag-arrange
if (options === 'destroy') {
if (this.eq(0).data('drag-arrange-destroy')) {
this.eq(0).data('drag-arrange-destroy')();
}
return this;
}
}
options = $.extend({
"dragEndEvent": "drag.end.arrangeable"
}, options);
var dragEndEvent = options["dragEndEvent"];
$elements = this;
eventNamespace = getEventNamespace();
this.each(function() {
// bindings to trigger drag on element
var dragSelector = options.dragSelector;
var self = this;
var $this = $(this);
if (dragSelector) {
$this.on(dragEvents.START + eventNamespace, dragSelector, dragStartHandler);
} else {
$this.on(dragEvents.START + eventNamespace, dragStartHandler);
}
function dragStartHandler(e) {
// a mouse down/touchstart event, but still drag doesn't start till threshold reaches
// stopPropagation is compulsory, otherwise touchmove fires only once (android < 4 issue)
e.stopPropagation();
touchDown = true;
originalClientX = e.clientX || e.originalEvent.touches[0].clientX;
originalClientY = e.clientY || e.originalEvent.touches[0].clientY;
dragElement = self;
}
});
// bind mouse-move/touchmove on document
// (as it is not compulsory that event will trigger on dragging element)
$(document).on(dragEvents.MOVE + eventNamespace, dragMoveHandler)
.on(dragEvents.END + eventNamespace, dragEndHandler);
function dragMoveHandler(e) {
if (!touchDown) { return; }
var $dragElement = $(dragElement);
var dragDistanceX = (e.clientX || e.originalEvent.touches[0].clientX) - originalClientX;
var dragDistanceY = (e.clientY || e.originalEvent.touches[0].clientY) - originalClientY;
if (dragging) {
e.stopPropagation();
$clone.css({
left: leftOffset + dragDistanceX,
top: topOffset + dragDistanceY
});
shiftHoveredElement($clone, $dragElement, $elements);
// check for drag threshold (drag has not started yet)
} else if (Math.abs(dragDistanceX) > DRAG_THRESHOLD ||
Math.abs(dragDistanceY) > DRAG_THRESHOLD) {
$clone = clone($dragElement);
// initialize left offset and top offset
// will be used in successive calls of this function
leftOffset = dragElement.offsetLeft - parseInt($dragElement.css('margin-left')) -
parseInt($dragElement.css('padding-left'));
topOffset = dragElement.offsetTop - parseInt($dragElement.css('margin-top')) -
parseInt($dragElement.css('padding-top'));
// put cloned element just above the dragged element
// and move it instead of original element
$clone.css({
left: leftOffset,
top: topOffset
});
$dragElement.parent().append($clone);
// hide original dragged element
$dragElement.css('visibility', 'hidden');
dragging = true;
}
}
function dragEndHandler(e) {
if (dragging) {
// remove the cloned dragged element and
// show original element back
e.stopPropagation();
dragging = false;
$clone.remove();
dragElement.style.visibility = 'visible';
$(dragElement).parent().trigger(dragEndEvent, [$(dragElement)]);
}
touchDown = false;
}
function destroy() {
$elements.each(function() {
// bindings to trigger drag on element
var dragSelector = options.dragSelector;
var $this = $(this);
if (dragSelector) {
$this.off(dragEvents.START + eventNamespace, dragSelector);
} else {
$this.off(dragEvents.START + eventNamespace);
}
});
$(document).off(dragEvents.MOVE + eventNamespace)
.off(dragEvents.END + eventNamespace);
// remove data
$elements.eq(0).data('drag-arrange-destroy', null);
// clear variables
$elements = null;
dragMoveHandler = null;
dragEndHandler = null;
}
this.eq(0).data('drag-arrange-destroy', destroy);
};
function clone($element) {
var $clone = $element.clone();
$clone.css({
position: 'absolute',
width: $element.width(),
height: $element.height(),
'z-index': 100000 // very high value to prevent it to hide below other element(s)
});
return $clone;
}
/**
* find the element on which the dragged element is hovering
* @return {DOM Object} hovered element
*/
function getHoveredElement($clone, $dragElement, $movableElements) {
var cloneOffset = $clone.offset();
var cloneWidth = $clone.width();
var cloneHeight = $clone.height();
var cloneLeftPosition = cloneOffset.left;
var cloneRightPosition = cloneOffset.left + cloneWidth;
var cloneTopPosition = cloneOffset.top;
var cloneBottomPosition = cloneOffset.top + cloneHeight;
var $currentElement;
var horizontalMidPosition, verticalMidPosition;
var offset, overlappingX, overlappingY, inRange;
for (var i = 0; i < $movableElements.length; i++) {
$currentElement = $movableElements.eq(i);
if ($currentElement[0] === $dragElement[0]) { continue; }
offset = $currentElement.offset();
// current element width and draggable element(clone) width or height can be different
horizontalMidPosition = offset.left + 0.5 * $currentElement.width();
verticalMidPosition = offset.top + 0.5 * $currentElement.height();
// check if this element position is overlapping with dragged element
overlappingX = (horizontalMidPosition < cloneRightPosition) &&
(horizontalMidPosition > cloneLeftPosition);
overlappingY = (verticalMidPosition < cloneBottomPosition) &&
(verticalMidPosition > cloneTopPosition);
inRange = overlappingX && overlappingY;
if (inRange) {
return $currentElement[0];
}
}
}
function shiftHoveredElement($clone, $dragElement, $movableElements) {
var hoveredElement = getHoveredElement($clone, $dragElement, $movableElements);
if (hoveredElement !== $dragElement[0]) {
// shift all other elements to make space for the dragged element
var hoveredElementIndex = $movableElements.index(hoveredElement);
var dragElementIndex = $movableElements.index($dragElement);
if (hoveredElementIndex < dragElementIndex) {
$(hoveredElement).before($dragElement);
} else {
$(hoveredElement).after($dragElement);
}
// since elements order have changed, need to change order in jQuery Object too
shiftElementPosition($movableElements, dragElementIndex, hoveredElementIndex);
}
}
function shiftElementPosition(arr, fromIndex, toIndex) {
var temp = arr.splice(fromIndex, 1)[0];
return arr.splice(toIndex, 0, temp);
}
function getEventNamespace() {
counter += 1;
return '.drag-arrange-' + counter;
}
}));