first commit
This commit is contained in:
67
libraries/selectize/plugins/drag_drop/plugin.js
Normal file
67
libraries/selectize/plugins/drag_drop/plugin.js
Normal file
@@ -0,0 +1,67 @@
|
||||
/**
|
||||
* Plugin: "drag_drop" (selectize.js)
|
||||
* Copyright (c) 2013 Brian Reavis & contributors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
||||
* file except in compliance with the License. You may obtain a copy of the License at:
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software distributed under
|
||||
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
||||
* ANY KIND, either express or implied. See the License for the specific language
|
||||
* governing permissions and limitations under the License.
|
||||
*
|
||||
* @author Brian Reavis <brian@thirdroute.com>
|
||||
*/
|
||||
|
||||
Selectize.define('drag_drop', function(options) {
|
||||
if (!$.fn.sortable) throw new Error('The "drag_drop" plugin requires jQuery UI "sortable".');
|
||||
if (this.settings.mode !== 'multi') return;
|
||||
var self = this;
|
||||
|
||||
self.lock = (function() {
|
||||
var original = self.lock;
|
||||
return function() {
|
||||
var sortable = self.$control.data('sortable');
|
||||
if (sortable) sortable.disable();
|
||||
return original.apply(self, arguments);
|
||||
};
|
||||
})();
|
||||
|
||||
self.unlock = (function() {
|
||||
var original = self.unlock;
|
||||
return function() {
|
||||
var sortable = self.$control.data('sortable');
|
||||
if (sortable) sortable.enable();
|
||||
return original.apply(self, arguments);
|
||||
};
|
||||
})();
|
||||
|
||||
self.setup = (function() {
|
||||
var original = self.setup;
|
||||
return function() {
|
||||
original.apply(this, arguments);
|
||||
|
||||
var $control = self.$control.sortable({
|
||||
items: '[data-value]',
|
||||
forcePlaceholderSize: true,
|
||||
disabled: self.isLocked,
|
||||
start: function(e, ui) {
|
||||
ui.placeholder.css('width', ui.helper.css('width'));
|
||||
$control.css({overflow: 'visible'});
|
||||
},
|
||||
stop: function() {
|
||||
$control.css({overflow: 'hidden'});
|
||||
var active = self.$activeItems ? self.$activeItems.slice() : null;
|
||||
var values = [];
|
||||
$control.children('[data-value]').each(function() {
|
||||
values.push($(this).attr('data-value'));
|
||||
});
|
||||
self.setValue(values);
|
||||
self.setActiveItem(active);
|
||||
}
|
||||
});
|
||||
};
|
||||
})();
|
||||
|
||||
});
|
||||
16
libraries/selectize/plugins/drag_drop/plugin.less
Normal file
16
libraries/selectize/plugins/drag_drop/plugin.less
Normal file
@@ -0,0 +1,16 @@
|
||||
.selectize-control.plugin-drag_drop {
|
||||
&.multi > .selectize-input > div.ui-sortable-placeholder {
|
||||
visibility: visible !important;
|
||||
background: #f2f2f2 !important;
|
||||
background: rgba(0,0,0,0.06) !important;
|
||||
border: 0 none !important;
|
||||
.selectize-box-shadow(inset 0 0 12px 4px #fff);
|
||||
}
|
||||
.ui-sortable-placeholder::after {
|
||||
content: '!';
|
||||
visibility: hidden;
|
||||
}
|
||||
.ui-sortable-helper {
|
||||
.selectize-box-shadow(0 2px 5px rgba(0,0,0,0.2));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user