Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a Select2SortableWidget #468

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,4 @@ Contributors
- Stanisław Pitucha, 2020/06/30
- Lele Gaifax, 2020/08/22
- Geoffrey T. Dairiki, 2020/08/24
- Thijs Damsma, 2020/08/31
140 changes: 140 additions & 0 deletions deform/static/select2sortable/html.sortable.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
/*
* HTML5 Sortable jQuery Plugin
* https://github.com/voidberg/html5select2sortable
*
* Original code copyright 2012 Ali Farhadi.
* This version is mantained by Alexandru Badiu <[email protected]>
*
* Thanks to the following contributors: andyburke, bistoco, daemianmack, drskullster, flying-sheep, OscarGodson, Parikshit N. Samant, rodolfospalenza, ssafejava
*
* Released under the MIT license.
*/
'use strict';

(function ($) {
var dragging, draggingHeight, placeholders = $();
$.fn.select2sortable = function (options) {
var method = String(options);

options = $.extend({
connectWith: false,
placeholder: null,
dragImage: null
}, options);

return this.each(function () {

var index, items = $(this).children(options.items), handles = options.handle ? items.find(options.handle) : items;

if (method === 'reload') {
$(this).children(options.items).off('dragstart.h5s dragend.h5s selectstart.h5s dragover.h5s dragenter.h5s drop.h5s');
}
if (/^enable|disable|destroy$/.test(method)) {
var citems = $(this).children($(this).data('items')).attr('draggable', method === 'enable');
if (method === 'destroy') {
$(this).off('sortupdate');
$(this).removeData('opts');
citems.add(this).removeData('connectWith items')
.off('dragstart.h5s dragend.h5s dragover.h5s dragenter.h5s drop.h5s').off('sortupdate');
handles.off('selectstart.h5s');
}
return;
}

var soptions = $(this).data('opts');

if (typeof soptions === 'undefined') {
$(this).data('opts', options);
}
else {
options = soptions;
}

var startParent, newParent;
var placeholder = ( options.placeholder === null ) ? $('<' + (/^ul|ol$/i.test(this.tagName) ? 'li' : 'div') + ' class="select2sortable-placeholder"/>') : $(options.placeholder).addClass('select2sortable-placeholder');

$(this).data('items', options.items);
placeholders = placeholders.add(placeholder);
if (options.connectWith) {
$(options.connectWith).add(this).data('connectWith', options.connectWith);
}

items.attr('role', 'option');
items.attr('aria-grabbed', 'false');

// Setup drag handles
handles.attr('draggable', 'true').not('a[href], img').on('selectstart.h5s', function() {
if (this.dragDrop) {
this.dragDrop();
}
return false;
}).end();

// Handle drag events on draggable items
items.on('dragstart.h5s', function(e) {
var dt = e.originalEvent.dataTransfer;
dt.effectAllowed = 'move';
dt.setData('text', '');

if (options.dragImage && dt.setDragImage) {
dt.setDragImage(options.dragImage, 0, 0);
}

index = (dragging = $(this)).addClass('select2sortable-dragging').attr('aria-grabbed', 'true').index();
draggingHeight = dragging.outerHeight();
startParent = $(this).parent();
dragging.parent().triggerHandler('sortstart', {item: dragging, startparent: startParent});
}).on('dragend.h5s',function () {
if (!dragging) {
return;
}
dragging.removeClass('select2sortable-dragging').attr('aria-grabbed', 'false').show();
placeholders.detach();
newParent = $(this).parent();
if (index !== dragging.index() || startParent.get(0) !== newParent.get(0)) {
dragging.parent().triggerHandler('sortupdate', {item: dragging, oldindex: index, startparent: startParent, endparent: newParent});
}
dragging = null;
draggingHeight = null;
}).add([this, placeholder]).on('dragover.h5s dragenter.h5s drop.h5s', function(e) {
if (!items.is(dragging) && options.connectWith !== $(dragging).parent().data('connectWith')) {
return true;
}
if (e.type === 'drop') {
e.stopPropagation();
placeholders.filter(':visible').after(dragging);
dragging.trigger('dragend.h5s');
return false;
}
e.preventDefault();
e.originalEvent.dataTransfer.dropEffect = 'move';
if (items.is(this)) {
var thisHeight = $(this).outerHeight();
if (options.forcePlaceholderSize) {
placeholder.height(draggingHeight);
}

// Check if $(this) is bigger than the draggable. If it is, we have to define a dead zone to prevent flickering
if (thisHeight > draggingHeight) {
// Dead zone?
var deadZone = thisHeight - draggingHeight, offsetTop = $(this).offset().top;
if (placeholder.index() < $(this).index() && e.originalEvent.pageY < offsetTop + deadZone) {
return false;
}
else if (placeholder.index() > $(this).index() && e.originalEvent.pageY > offsetTop + thisHeight - deadZone) {
return false;
}
}

dragging.hide();
$(this)[placeholder.index() < $(this).index() ? 'after' : 'before'](placeholder);
placeholders.not(placeholder).detach();
} else if (!placeholders.is(this) && !$(this).children(options.items).length) {
placeholders.detach();
$(this).append(placeholder);
}
return false;
});
});
};
})(jQuery);
Binary file added deform/static/select2sortable/select2-spinner.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading