2014-11-01 04:10:40 +03:00
|
|
|
(function() { if ($ && $.fn && $.fn.select2 && $.fn.select2.amd) { define = $.fn.select2.amd.define; require = $.fn.select2.amd.require; }define('select2/utils',[], function () {
|
2014-08-27 02:01:42 +04:00
|
|
|
var Utils = {};
|
|
|
|
|
|
|
|
Utils.Extend = function (ChildClass, SuperClass) {
|
2014-09-22 00:43:44 +04:00
|
|
|
var __hasProp = {}.hasOwnProperty;
|
2014-08-27 02:01:42 +04:00
|
|
|
|
|
|
|
function BaseConstructor () {
|
|
|
|
this.constructor = ChildClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var key in SuperClass) {
|
|
|
|
if (__hasProp.call(SuperClass, key)) {
|
|
|
|
ChildClass[key] = SuperClass[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseConstructor.prototype = SuperClass.prototype;
|
|
|
|
ChildClass.prototype = new BaseConstructor();
|
|
|
|
ChildClass.__super__ = SuperClass.prototype;
|
|
|
|
|
|
|
|
return ChildClass;
|
|
|
|
};
|
|
|
|
|
2014-08-29 03:54:01 +04:00
|
|
|
function getMethods (theClass) {
|
|
|
|
var proto = theClass.prototype;
|
|
|
|
|
|
|
|
var methods = [];
|
|
|
|
|
|
|
|
for (var methodName in proto) {
|
|
|
|
var m = proto[methodName];
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if (typeof m !== 'function') {
|
2014-08-29 03:54:01 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
methods.push(methodName);
|
|
|
|
}
|
|
|
|
|
|
|
|
return methods;
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Decorate = function (SuperClass, DecoratorClass) {
|
|
|
|
var decoratedMethods = getMethods(DecoratorClass);
|
|
|
|
var superMethods = getMethods(SuperClass);
|
|
|
|
|
|
|
|
function DecoratedClass () {
|
|
|
|
var unshift = Array.prototype.unshift;
|
|
|
|
|
|
|
|
var argCount = DecoratorClass.prototype.constructor.length;
|
|
|
|
|
|
|
|
var calledConstructor = SuperClass.prototype.constructor;
|
|
|
|
|
|
|
|
if (argCount > 0) {
|
2014-08-29 05:20:36 +04:00
|
|
|
unshift.call(arguments, SuperClass.prototype.constructor);
|
|
|
|
|
2014-08-29 03:54:01 +04:00
|
|
|
calledConstructor = DecoratorClass.prototype.constructor;
|
|
|
|
}
|
|
|
|
|
|
|
|
calledConstructor.apply(this, arguments);
|
|
|
|
}
|
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
DecoratorClass.displayName = SuperClass.displayName;
|
|
|
|
|
2014-08-29 03:54:01 +04:00
|
|
|
function ctr () {
|
|
|
|
this.constructor = DecoratedClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoratedClass.prototype = new ctr();
|
|
|
|
|
|
|
|
for (var m = 0; m < superMethods.length; m++) {
|
2014-09-22 00:43:44 +04:00
|
|
|
var superMethod = superMethods[m];
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
DecoratedClass.prototype[superMethod] =
|
|
|
|
SuperClass.prototype[superMethod];
|
2014-08-29 03:54:01 +04:00
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
var calledMethod = function (methodName) {
|
|
|
|
// Stub out the original method if it's not decorating an actual method
|
|
|
|
var originalMethod = function () {};
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if (methodName in DecoratedClass.prototype) {
|
|
|
|
originalMethod = DecoratedClass.prototype[methodName];
|
|
|
|
}
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
var decoratedMethod = DecoratorClass.prototype[methodName];
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
return function () {
|
|
|
|
var unshift = Array.prototype.unshift;
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
unshift.call(arguments, originalMethod);
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
return decoratedMethod.apply(this, arguments);
|
|
|
|
};
|
|
|
|
};
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
for (var d = 0; d < decoratedMethods.length; d++) {
|
|
|
|
var decoratedMethod = decoratedMethods[d];
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
|
2014-08-29 03:54:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return DecoratedClass;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-29 03:54:01 +04:00
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
var Observable = function () {
|
|
|
|
this.listeners = {};
|
|
|
|
};
|
|
|
|
|
|
|
|
Observable.prototype.on = function (event, callback) {
|
|
|
|
if (event in this.listeners) {
|
|
|
|
this.listeners[event].push(callback);
|
|
|
|
} else {
|
|
|
|
this.listeners[event] = [callback];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Observable.prototype.trigger = function (event) {
|
2014-08-27 19:33:33 +04:00
|
|
|
var slice = Array.prototype.slice;
|
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
if (event in this.listeners) {
|
2014-08-27 19:33:33 +04:00
|
|
|
this.invoke(this.listeners[event], slice.call(arguments, 1));
|
2014-08-27 02:01:42 +04:00
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if ('*' in this.listeners) {
|
|
|
|
this.invoke(this.listeners['*'], arguments);
|
2014-08-27 02:01:42 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Observable.prototype.invoke = function (listeners, params) {
|
|
|
|
for (var i = 0, len = listeners.length; i < len; i++) {
|
|
|
|
listeners[i].apply(this, params);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Utils.Observable = Observable;
|
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
Utils.generateChars = function (length) {
|
|
|
|
var chars = '';
|
|
|
|
|
|
|
|
for (var i = 0; i < length; i++) {
|
|
|
|
var randomChar = Math.floor(Math.random() * 36);
|
|
|
|
chars += randomChar.toString(36);
|
|
|
|
}
|
|
|
|
|
|
|
|
return chars;
|
|
|
|
};
|
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
return Utils;
|
|
|
|
});
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
define('select2/results',[
|
|
|
|
'./utils'
|
|
|
|
], function (Utils) {
|
2014-08-29 00:00:56 +04:00
|
|
|
function Results ($element, options, dataAdapter) {
|
2014-08-27 05:18:26 +04:00
|
|
|
this.$element = $element;
|
2014-08-28 04:18:17 +04:00
|
|
|
this.data = dataAdapter;
|
2014-10-20 03:49:06 +04:00
|
|
|
this.options = options;
|
2014-08-28 04:18:17 +04:00
|
|
|
|
|
|
|
Results.__super__.constructor.call(this);
|
2014-08-27 05:18:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(Results, Utils.Observable);
|
|
|
|
|
|
|
|
Results.prototype.render = function () {
|
|
|
|
var $results = $(
|
2014-10-20 04:40:45 +04:00
|
|
|
'<ul class="options" role="tree"></ul>'
|
2014-08-27 05:18:26 +04:00
|
|
|
);
|
|
|
|
|
2014-10-20 03:49:06 +04:00
|
|
|
if (this.options.get('multiple')) {
|
|
|
|
$results.attr('aria-multiselectable', 'true');
|
|
|
|
}
|
|
|
|
|
2014-08-28 04:18:17 +04:00
|
|
|
this.$results = $results;
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
return $results;
|
2014-08-28 04:18:17 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Results.prototype.clear = function () {
|
|
|
|
this.$results.empty();
|
|
|
|
};
|
|
|
|
|
|
|
|
Results.prototype.append = function (data) {
|
|
|
|
var $options = [];
|
|
|
|
|
2014-10-17 02:39:06 +04:00
|
|
|
data = this.sort(data);
|
|
|
|
|
2014-08-28 04:18:17 +04:00
|
|
|
for (var d = 0; d < data.length; d++) {
|
|
|
|
var item = data[d];
|
|
|
|
|
|
|
|
var $option = this.option(item);
|
|
|
|
|
|
|
|
$options.push($option);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$results.append($options);
|
|
|
|
};
|
|
|
|
|
2014-10-17 02:39:06 +04:00
|
|
|
Results.prototype.sort = function (data) {
|
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
2014-08-29 00:00:56 +04:00
|
|
|
Results.prototype.setClasses = function () {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
this.data.current(function (selected) {
|
2014-10-16 03:26:38 +04:00
|
|
|
var selectedIds = $.map(selected, function (s) {
|
|
|
|
return s.id.toString();
|
|
|
|
});
|
2014-08-29 00:00:56 +04:00
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
var $options = self.$results.find('.option[aria-selected]');
|
2014-08-29 00:00:56 +04:00
|
|
|
|
|
|
|
$options.each(function () {
|
|
|
|
var $option = $(this);
|
2014-09-22 00:43:44 +04:00
|
|
|
var item = $option.data('data');
|
2014-08-29 00:00:56 +04:00
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
|
2014-10-18 18:49:51 +04:00
|
|
|
$option.attr('aria-selected', 'true');
|
|
|
|
} else {
|
|
|
|
$option.attr('aria-selected', 'false');
|
2014-08-29 00:00:56 +04:00
|
|
|
}
|
|
|
|
});
|
2014-10-18 18:49:51 +04:00
|
|
|
|
|
|
|
var $selected = $options.filter('[aria-selected=true]');
|
|
|
|
|
|
|
|
// Check if there are any selected options
|
|
|
|
if ($selected.length > 0) {
|
|
|
|
// If there are selected options, highlight the first
|
|
|
|
$selected.first().trigger('mouseenter');
|
|
|
|
} else {
|
|
|
|
// If there are no selected options, highlight the first option
|
|
|
|
// in the dropdown
|
|
|
|
$options.first().trigger('mouseenter');
|
|
|
|
}
|
2014-08-29 00:00:56 +04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-08-28 04:18:17 +04:00
|
|
|
Results.prototype.option = function (data) {
|
|
|
|
var $option = $(
|
2014-10-20 04:40:45 +04:00
|
|
|
'<li class="option" role="treeitem" aria-selected="false"></li>'
|
2014-08-28 04:18:17 +04:00
|
|
|
);
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
if (data.children) {
|
2014-10-18 18:49:51 +04:00
|
|
|
$option
|
2014-10-20 04:40:45 +04:00
|
|
|
.attr('role', 'group')
|
|
|
|
.attr('aria-label', data.text)
|
2014-10-18 18:49:51 +04:00
|
|
|
.removeAttr('aria-selected');
|
2014-10-15 06:30:37 +04:00
|
|
|
|
|
|
|
var $label = $('<strong class="group-label"></strong>');
|
|
|
|
$label.html(data.text);
|
|
|
|
|
|
|
|
var $children = [];
|
|
|
|
|
|
|
|
for (var c = 0; c < data.children.length; c++) {
|
|
|
|
var child = data.children[c];
|
|
|
|
|
|
|
|
var $child = this.option(child);
|
|
|
|
|
|
|
|
$children.push($child);
|
|
|
|
}
|
|
|
|
|
|
|
|
var $childrenContainer = $('<ul class="options nested-options"></ul>');
|
|
|
|
|
|
|
|
$childrenContainer.append($children);
|
|
|
|
|
|
|
|
$option.append($label);
|
|
|
|
$option.append($childrenContainer);
|
|
|
|
} else {
|
|
|
|
$option.html(data.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.disabled) {
|
2014-10-18 18:49:51 +04:00
|
|
|
$option
|
|
|
|
.removeAttr('aria-selected')
|
|
|
|
.attr('aria-disabled', 'true');
|
2014-10-15 06:30:37 +04:00
|
|
|
}
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
if (data.id == null) {
|
2014-10-20 00:13:57 +04:00
|
|
|
$option.removeAttr('aria-selected');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data._resultId != null) {
|
|
|
|
$option.attr('id', data._resultId);
|
2014-10-16 04:51:29 +04:00
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
$option.data('data', data);
|
2014-08-28 04:18:17 +04:00
|
|
|
|
|
|
|
return $option;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-31 02:34:41 +04:00
|
|
|
Results.prototype.bind = function (container, $container) {
|
2014-08-28 04:18:17 +04:00
|
|
|
var self = this;
|
|
|
|
|
2014-10-20 03:49:06 +04:00
|
|
|
var id = container.id + '-results';
|
|
|
|
|
|
|
|
this.$results.attr('id', id);
|
|
|
|
|
2014-10-17 03:08:11 +04:00
|
|
|
container.on('results:all', function (params) {
|
2014-08-28 04:18:17 +04:00
|
|
|
self.clear();
|
2014-10-17 03:08:11 +04:00
|
|
|
self.append(params.data);
|
2014-08-31 02:53:05 +04:00
|
|
|
|
2014-10-20 04:40:45 +04:00
|
|
|
if (container.isOpen()) {
|
|
|
|
self.setClasses();
|
|
|
|
}
|
2014-08-28 04:18:17 +04:00
|
|
|
});
|
|
|
|
|
2014-10-17 03:08:11 +04:00
|
|
|
container.on('results:append', function (params) {
|
|
|
|
self.append(params.data);
|
2014-08-29 00:00:56 +04:00
|
|
|
|
2014-10-20 04:40:45 +04:00
|
|
|
if (container.isOpen()) {
|
|
|
|
self.setClasses();
|
|
|
|
}
|
2014-09-22 00:43:44 +04:00
|
|
|
});
|
2014-08-28 04:18:17 +04:00
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
container.on('select', function () {
|
2014-10-20 04:40:45 +04:00
|
|
|
if (!container.isOpen()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
self.setClasses();
|
|
|
|
});
|
|
|
|
|
|
|
|
container.on('unselect', function () {
|
2014-10-20 04:40:45 +04:00
|
|
|
if (!container.isOpen()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
self.setClasses();
|
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
container.on('open', function () {
|
|
|
|
// When the dropdown is open, aria-expended="true"
|
|
|
|
self.$results.attr('aria-expanded', 'true');
|
2014-10-20 03:49:06 +04:00
|
|
|
self.$results.attr('aria-hidden', 'false');
|
2014-10-18 18:49:51 +04:00
|
|
|
|
|
|
|
self.setClasses();
|
2014-10-21 03:51:47 +04:00
|
|
|
self.ensureHighlightVisible();
|
2014-10-18 18:49:51 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
container.on('close', function () {
|
|
|
|
// When the dropdown is closed, aria-expended="false"
|
|
|
|
self.$results.attr('aria-expanded', 'false');
|
2014-10-20 03:49:06 +04:00
|
|
|
self.$results.attr('aria-hidden', 'true');
|
|
|
|
self.$results.removeAttr('aria-activedescendant');
|
2014-10-18 18:49:51 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
container.on('results:select', function () {
|
|
|
|
var $highlighted = self.$results.find('.highlighted');
|
|
|
|
|
2014-10-18 19:28:42 +04:00
|
|
|
if ($highlighted.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
var data = $highlighted.data('data');
|
|
|
|
|
|
|
|
if ($highlighted.attr('aria-selected') == 'true') {
|
|
|
|
self.trigger('unselected', {
|
|
|
|
data: data
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
self.trigger('selected', {
|
|
|
|
data: data
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-10-18 19:28:42 +04:00
|
|
|
container.on('results:previous', function () {
|
|
|
|
var $highlighted = self.$results.find('.highlighted');
|
|
|
|
|
|
|
|
var $options = self.$results.find('[aria-selected]');
|
|
|
|
|
|
|
|
var currentIndex = $options.index($highlighted);
|
|
|
|
|
|
|
|
// If we are already at te top, don't move further
|
|
|
|
if (currentIndex === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var nextIndex = currentIndex - 1;
|
|
|
|
|
|
|
|
// If none are highlighted, highlight the first
|
|
|
|
if ($highlighted.length === 0) {
|
|
|
|
nextIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $next = $options.eq(nextIndex);
|
|
|
|
|
|
|
|
$next.trigger('mouseenter');
|
2014-10-20 01:04:57 +04:00
|
|
|
|
|
|
|
var currentOffset = self.$results.offset().top;
|
|
|
|
var nextTop = $next.offset().top;
|
|
|
|
var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
|
|
|
|
|
|
|
|
if (nextIndex === 0) {
|
|
|
|
self.$results.scrollTop(0);
|
|
|
|
} else if (nextTop - currentOffset < 0) {
|
|
|
|
self.$results.scrollTop(nextOffset);
|
|
|
|
}
|
2014-10-18 19:28:42 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
container.on('results:next', function () {
|
|
|
|
var $highlighted = self.$results.find('.highlighted');
|
|
|
|
|
|
|
|
var $options = self.$results.find('[aria-selected]');
|
|
|
|
|
|
|
|
var currentIndex = $options.index($highlighted);
|
|
|
|
|
|
|
|
var nextIndex = currentIndex + 1;
|
|
|
|
|
|
|
|
// If we are at the last option, stay there
|
|
|
|
if (nextIndex >= $options.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $next = $options.eq(nextIndex);
|
|
|
|
|
|
|
|
$next.trigger('mouseenter');
|
2014-10-20 01:04:57 +04:00
|
|
|
|
|
|
|
var currentOffset = self.$results.offset().top +
|
|
|
|
self.$results.outerHeight(false);
|
|
|
|
var nextBottom = $next.offset().top + $next.outerHeight(false);
|
|
|
|
var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
|
|
|
|
|
|
|
|
if (nextIndex === 0) {
|
|
|
|
self.$results.scrollTop(0);
|
|
|
|
} else if (nextBottom > currentOffset) {
|
|
|
|
self.$results.scrollTop(nextOffset);
|
|
|
|
}
|
2014-10-18 19:28:42 +04:00
|
|
|
});
|
|
|
|
|
2014-10-20 03:49:06 +04:00
|
|
|
container.on('results:focus', function (params) {
|
|
|
|
params.element.addClass('highlighted');
|
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
this.$results.on('mouseup', '.option[aria-selected]', function (evt) {
|
2014-08-31 02:53:05 +04:00
|
|
|
var $this = $(this);
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
var data = $this.data('data');
|
2014-10-18 18:49:51 +04:00
|
|
|
|
|
|
|
if ($this.attr('aria-selected') === 'true') {
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('unselected', {
|
2014-08-31 02:53:05 +04:00
|
|
|
originalEvent: evt,
|
|
|
|
data: data
|
2014-09-22 00:43:44 +04:00
|
|
|
});
|
2014-08-31 02:53:05 +04:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2014-08-28 04:18:17 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('selected', {
|
2014-08-28 04:18:17 +04:00
|
|
|
originalEvent: evt,
|
|
|
|
data: data
|
2014-08-29 00:00:56 +04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
this.$results.on('mouseenter', '.option[aria-selected]', function (evt) {
|
2014-10-20 03:49:06 +04:00
|
|
|
var data = $(this).data('data');
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
self.$results.find('.option.highlighted').removeClass('highlighted');
|
2014-10-20 03:49:06 +04:00
|
|
|
|
|
|
|
self.trigger('results:focus', {
|
|
|
|
data: data,
|
|
|
|
element: $(this)
|
|
|
|
});
|
2014-08-29 00:00:56 +04:00
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$results.on('mouseleave', '.option', function (evt) {
|
2014-10-20 03:49:06 +04:00
|
|
|
if ($(this).hasClass('highlighted')) {
|
|
|
|
$(this).removeClass('highlighted');
|
|
|
|
self.$results.removeAttr('aria-activedescendant');
|
|
|
|
}
|
2014-08-28 04:18:17 +04:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-10-21 03:51:47 +04:00
|
|
|
Results.prototype.ensureHighlightVisible = function () {
|
|
|
|
var $highlighted = this.$results.find('.highlighted');
|
|
|
|
|
|
|
|
if ($highlighted.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $options = this.$results.find('[aria-selected]');
|
|
|
|
|
|
|
|
var currentIndex = $options.index($highlighted);
|
|
|
|
|
|
|
|
var currentOffset = this.$results.offset().top;
|
|
|
|
var nextTop = $highlighted.offset().top;
|
|
|
|
var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
|
|
|
|
|
|
|
|
var offsetDelta = nextTop - currentOffset;
|
|
|
|
nextOffset -= $highlighted.outerHeight(false) * 2;
|
|
|
|
|
|
|
|
if (currentIndex <= 2) {
|
|
|
|
this.$results.scrollTop(0);
|
|
|
|
} else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
|
|
|
|
this.$results.scrollTop(nextOffset);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
return Results;
|
2014-09-22 00:43:44 +04:00
|
|
|
});
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
define('select2/selection/base',[
|
2014-08-29 19:31:18 +04:00
|
|
|
'../utils'
|
2014-08-27 05:18:26 +04:00
|
|
|
], function (Utils) {
|
2014-10-18 04:53:34 +04:00
|
|
|
function BaseSelection ($element, options) {
|
2014-08-27 05:18:26 +04:00
|
|
|
this.$element = $element;
|
|
|
|
this.options = options;
|
2014-08-27 19:33:33 +04:00
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
BaseSelection.__super__.constructor.call(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(BaseSelection, Utils.Observable);
|
|
|
|
|
|
|
|
BaseSelection.prototype.render = function () {
|
|
|
|
throw new Error('The `render` method must be defined in child classes.');
|
|
|
|
};
|
|
|
|
|
|
|
|
BaseSelection.prototype.bind = function (container, $container) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
container.on('selection:update', function (params) {
|
|
|
|
self.update(params.data);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
BaseSelection.prototype.update = function (data) {
|
|
|
|
throw new Error('The `update` method must be defined in child classes.');
|
|
|
|
};
|
|
|
|
|
|
|
|
return BaseSelection;
|
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
define('select2/keys',[
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
var KEYS = {
|
|
|
|
BACKSPACE: 8,
|
|
|
|
TAB: 9,
|
|
|
|
ENTER: 13,
|
|
|
|
SHIFT: 16,
|
|
|
|
CTRL: 17,
|
|
|
|
ALT: 18,
|
|
|
|
ESC: 27,
|
|
|
|
SPACE: 32,
|
|
|
|
PAGE_UP: 33,
|
|
|
|
PAGE_DOWN: 34,
|
|
|
|
END: 35,
|
|
|
|
HOME: 36,
|
|
|
|
LEFT: 37,
|
|
|
|
UP: 38,
|
|
|
|
RIGHT: 39,
|
|
|
|
DOWN: 40,
|
|
|
|
DELETE: 46,
|
|
|
|
|
|
|
|
isArrow: function (k) {
|
|
|
|
k = k.which ? k.which : k;
|
|
|
|
|
|
|
|
switch (k) {
|
|
|
|
case KEY.LEFT:
|
|
|
|
case KEY.RIGHT:
|
|
|
|
case KEY.UP:
|
|
|
|
case KEY.DOWN:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return KEYS;
|
|
|
|
});
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
define('select2/selection/single',[
|
|
|
|
'./base',
|
2014-10-18 18:49:51 +04:00
|
|
|
'../utils',
|
|
|
|
'../keys'
|
|
|
|
], function (BaseSelection, Utils, KEYS) {
|
2014-10-18 04:53:34 +04:00
|
|
|
function SingleSelection () {
|
|
|
|
SingleSelection.__super__.constructor.apply(this, arguments);
|
2014-08-27 05:18:26 +04:00
|
|
|
}
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
Utils.Extend(SingleSelection, BaseSelection);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
SingleSelection.prototype.render = function () {
|
2014-08-27 05:18:26 +04:00
|
|
|
var $selection = $(
|
2014-10-20 00:13:57 +04:00
|
|
|
'<span class="single-select" tabindex="0" role="combobox" ' +
|
|
|
|
'aria-autocomplete="list" aria-haspopup="true" aria-expanded="false">' +
|
2014-08-27 19:33:33 +04:00
|
|
|
'<span class="rendered-selection"></span>' +
|
|
|
|
'</span>'
|
2014-08-27 05:18:26 +04:00
|
|
|
);
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
$selection.attr('title', this.$element.attr('title'));
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
this.$selection = $selection;
|
|
|
|
|
|
|
|
return $selection;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-31 02:34:41 +04:00
|
|
|
SingleSelection.prototype.bind = function (container, $container) {
|
2014-08-27 05:18:26 +04:00
|
|
|
var self = this;
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
SingleSelection.__super__.bind.apply(this, arguments);
|
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
var id = container.id + '-container';
|
2014-10-20 03:49:06 +04:00
|
|
|
var resultsId = container.id + '-results';
|
2014-10-20 01:39:09 +04:00
|
|
|
|
|
|
|
this.$selection.find('.rendered-selection').attr('id', id);
|
|
|
|
this.$selection.attr('aria-labelledby', id);
|
2014-10-20 03:49:06 +04:00
|
|
|
this.$selection.attr('aria-owns', resultsId);
|
2014-10-20 01:39:09 +04:00
|
|
|
|
2014-08-31 03:32:29 +04:00
|
|
|
this.$selection.on('mousedown', function (evt) {
|
2014-08-31 04:25:32 +04:00
|
|
|
// Only respond to left clicks
|
|
|
|
if (evt.which !== 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('toggle', {
|
2014-08-27 05:18:26 +04:00
|
|
|
originalEvent: evt
|
|
|
|
});
|
|
|
|
});
|
2014-08-31 02:34:41 +04:00
|
|
|
|
2014-10-20 00:13:57 +04:00
|
|
|
container.on('open', function () {
|
2014-10-20 04:40:45 +04:00
|
|
|
// When the dropdown is open, aria-expanded="true"
|
2014-10-20 00:13:57 +04:00
|
|
|
self.$selection.attr('aria-expanded', 'true');
|
|
|
|
});
|
|
|
|
|
|
|
|
container.on('close', function () {
|
2014-10-20 04:40:45 +04:00
|
|
|
// When the dropdown is closed, aria-expanded="false"
|
2014-10-20 00:13:57 +04:00
|
|
|
self.$selection.attr('aria-expanded', 'false');
|
2014-10-20 04:40:45 +04:00
|
|
|
self.$selection.removeAttr('aria-activedescendant');
|
2014-10-20 00:13:57 +04:00
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
this.$selection.on('focus', function (evt) {
|
|
|
|
// User focuses on the container
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$selection.on('blur', function (evt) {
|
|
|
|
// User exits the container
|
|
|
|
});
|
|
|
|
|
2014-10-20 01:04:57 +04:00
|
|
|
this.$selection.on('keydown', function (evt) {
|
2014-10-18 18:49:51 +04:00
|
|
|
var key = evt.which;
|
|
|
|
|
|
|
|
if (container.isOpen()) {
|
|
|
|
if (key == KEYS.ENTER) {
|
|
|
|
self.trigger('results:select');
|
2014-10-20 03:49:06 +04:00
|
|
|
|
|
|
|
evt.preventDefault();
|
2014-10-18 19:28:42 +04:00
|
|
|
} else if (key == KEYS.UP) {
|
|
|
|
self.trigger('results:previous');
|
2014-10-20 01:04:57 +04:00
|
|
|
|
|
|
|
evt.preventDefault();
|
2014-10-18 19:28:42 +04:00
|
|
|
} else if (key == KEYS.DOWN) {
|
|
|
|
self.trigger('results:next');
|
2014-10-20 01:04:57 +04:00
|
|
|
|
|
|
|
evt.preventDefault();
|
2014-10-18 18:49:51 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (key == KEYS.ENTER || key == KEYS.SPACE) {
|
|
|
|
self.trigger('open');
|
2014-10-20 03:49:06 +04:00
|
|
|
|
|
|
|
evt.preventDefault();
|
2014-10-18 18:49:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-10-20 03:49:06 +04:00
|
|
|
container.on('results:focus', function (params) {
|
|
|
|
self.$selection.attr('aria-activedescendant', params.data._resultId);
|
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
container.on('selection:update', function (params) {
|
2014-08-31 02:34:41 +04:00
|
|
|
self.update(params.data);
|
2014-09-22 00:43:44 +04:00
|
|
|
});
|
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
SingleSelection.prototype.clear = function () {
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$selection.find('.rendered-selection').empty();
|
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
SingleSelection.prototype.display = function (data) {
|
2014-08-27 05:18:26 +04:00
|
|
|
return data.text;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
SingleSelection.prototype.selectionContainer = function () {
|
|
|
|
return $('<span></span>');
|
|
|
|
};
|
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
SingleSelection.prototype.update = function (data) {
|
2014-09-22 00:43:44 +04:00
|
|
|
if (data.length === 0) {
|
2014-08-27 05:18:26 +04:00
|
|
|
this.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var selection = data[0];
|
|
|
|
|
|
|
|
var formatted = this.display(selection);
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$selection.find('.rendered-selection').html(formatted);
|
|
|
|
};
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
return SingleSelection;
|
|
|
|
});
|
|
|
|
|
|
|
|
define('select2/selection/multiple',[
|
2014-10-18 04:53:34 +04:00
|
|
|
'./base',
|
2014-08-29 19:31:18 +04:00
|
|
|
'../utils'
|
2014-10-18 04:53:34 +04:00
|
|
|
], function (BaseSelection, Utils) {
|
2014-08-29 19:31:18 +04:00
|
|
|
function MultipleSelection ($element, options) {
|
|
|
|
this.$element = $element;
|
|
|
|
this.options = options;
|
|
|
|
|
|
|
|
MultipleSelection.__super__.constructor.call(this);
|
|
|
|
}
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
Utils.Extend(MultipleSelection, BaseSelection);
|
2014-08-29 19:31:18 +04:00
|
|
|
|
|
|
|
MultipleSelection.prototype.render = function () {
|
|
|
|
var $selection = $(
|
|
|
|
'<span class="multiple-select">' +
|
|
|
|
'<ul class="rendered-selection"></ul>' +
|
|
|
|
'</span>'
|
|
|
|
);
|
|
|
|
|
|
|
|
this.$selection = $selection;
|
|
|
|
|
|
|
|
return $selection;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-08-31 02:34:41 +04:00
|
|
|
MultipleSelection.prototype.bind = function (container, $container) {
|
2014-08-29 19:31:18 +04:00
|
|
|
var self = this;
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
MultipleSelection.__super__.bind.apply(this, arguments);
|
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
this.$selection.on('click', function (evt) {
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('toggle', {
|
2014-08-29 19:31:18 +04:00
|
|
|
originalEvent: evt
|
|
|
|
});
|
|
|
|
});
|
2014-08-31 02:34:41 +04:00
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
this.$selection.on('click', '.remove', function (evt) {
|
|
|
|
var $remove = $(this);
|
|
|
|
var $selection = $remove.parent();
|
|
|
|
|
|
|
|
var data = $selection.data('data');
|
|
|
|
|
|
|
|
self.trigger('unselected', {
|
|
|
|
originalEvent: evt,
|
|
|
|
data: data
|
|
|
|
});
|
|
|
|
});
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-29 19:31:18 +04:00
|
|
|
|
|
|
|
MultipleSelection.prototype.clear = function () {
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$selection.find('.rendered-selection').empty();
|
|
|
|
};
|
2014-08-29 19:31:18 +04:00
|
|
|
|
|
|
|
MultipleSelection.prototype.display = function (data) {
|
|
|
|
return data.text;
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-29 19:31:18 +04:00
|
|
|
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
MultipleSelection.prototype.selectionContainer = function () {
|
2014-10-17 04:32:08 +04:00
|
|
|
var $container = $(
|
|
|
|
'<li class="choice">' +
|
2014-10-18 18:49:51 +04:00
|
|
|
'<span class="remove" role="presentation">×</span>' +
|
2014-10-17 04:32:08 +04:00
|
|
|
'</li>'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $container;
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
};
|
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
MultipleSelection.prototype.update = function (data) {
|
|
|
|
this.clear();
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if (data.length === 0) {
|
2014-08-29 19:31:18 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $selections = [];
|
|
|
|
|
|
|
|
for (var d = 0; d < data.length; d++) {
|
|
|
|
var selection = data[d];
|
|
|
|
|
|
|
|
var formatted = this.display(selection);
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
var $selection = this.selectionContainer();
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
$selection.append(formatted);
|
|
|
|
$selection.data('data', selection);
|
2014-08-29 19:31:18 +04:00
|
|
|
|
|
|
|
$selections.push($selection);
|
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$selection.find('.rendered-selection').append($selections);
|
|
|
|
};
|
2014-08-29 19:31:18 +04:00
|
|
|
|
|
|
|
return MultipleSelection;
|
2014-08-27 05:18:26 +04:00
|
|
|
});
|
|
|
|
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
define('select2/selection/placeholder',[
|
|
|
|
'../utils'
|
|
|
|
], function (Utils) {
|
|
|
|
function Placeholder (decorated, $element, options) {
|
|
|
|
this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
|
|
|
|
|
|
|
|
decorated.call(this, $element, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
|
|
|
|
if (typeof placeholder === 'string') {
|
|
|
|
placeholder = {
|
|
|
|
id: '',
|
|
|
|
text: placeholder
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return placeholder;
|
|
|
|
};
|
|
|
|
|
|
|
|
Placeholder.prototype.update = function (decorated, data) {
|
|
|
|
var singlePlaceholder = (
|
|
|
|
data.length == 1 && data[0].id != this.placeholder.id
|
|
|
|
);
|
|
|
|
var multipleSelections = data.length > 1;
|
|
|
|
|
|
|
|
if (multipleSelections || singlePlaceholder) {
|
|
|
|
return decorated.call(this, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.clear();
|
|
|
|
|
|
|
|
var $placeholder = this.selectionContainer();
|
|
|
|
|
|
|
|
$placeholder.html(this.display(this.placeholder));
|
|
|
|
$placeholder.addClass('placeholder').removeClass('choice');
|
|
|
|
|
|
|
|
this.$selection.find('.rendered-selection').append($placeholder);
|
|
|
|
};
|
|
|
|
|
|
|
|
return Placeholder;
|
|
|
|
});
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
define('select2/data/base',[
|
|
|
|
'../utils'
|
|
|
|
], function (Utils) {
|
|
|
|
function BaseAdapter ($element, options) {
|
|
|
|
BaseAdapter.__super__.constructor.call(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(BaseAdapter, Utils.Observable);
|
|
|
|
|
|
|
|
BaseAdapter.prototype.current = function (callback) {
|
|
|
|
throw new Error('The `current` method must be defined in child classes.');
|
|
|
|
};
|
|
|
|
|
|
|
|
BaseAdapter.prototype.query = function (params, callback) {
|
|
|
|
throw new Error('The `query` method must be defined in child classes.');
|
|
|
|
};
|
|
|
|
|
2014-10-18 04:53:34 +04:00
|
|
|
BaseAdapter.prototype.bind = function (container, $container) {
|
|
|
|
// Can be implemented in subclasses
|
|
|
|
};
|
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
BaseAdapter.prototype.generateResultId = function (container, data) {
|
|
|
|
var id = container.id + '-result-';
|
2014-10-20 00:13:57 +04:00
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
id += Utils.generateChars(4);
|
2014-10-20 00:13:57 +04:00
|
|
|
|
|
|
|
if (data.id != null) {
|
|
|
|
id += '-' + data.id.toString();
|
|
|
|
} else {
|
2014-10-20 01:39:09 +04:00
|
|
|
id += '-' + Utils.generateChars(4);
|
2014-10-20 00:13:57 +04:00
|
|
|
}
|
|
|
|
return id;
|
|
|
|
};
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
return BaseAdapter;
|
|
|
|
});
|
|
|
|
|
|
|
|
define('select2/data/select',[
|
|
|
|
'./base',
|
|
|
|
'../utils',
|
|
|
|
'jquery'
|
|
|
|
], function (BaseAdapter, Utils, $) {
|
|
|
|
function SelectAdapter ($element, options) {
|
|
|
|
this.$element = $element;
|
|
|
|
|
|
|
|
SelectAdapter.__super__.constructor.call(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(SelectAdapter, BaseAdapter);
|
|
|
|
|
|
|
|
SelectAdapter.prototype.current = function (callback) {
|
|
|
|
var data = [];
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
this.$element.find(':selected').each(function () {
|
|
|
|
var $option = $(this);
|
|
|
|
|
|
|
|
var option = self.item($option);
|
|
|
|
|
|
|
|
data.push(option);
|
|
|
|
});
|
|
|
|
|
|
|
|
callback(data);
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectAdapter.prototype.select = function (data) {
|
|
|
|
var self = this;
|
|
|
|
|
2014-10-21 03:15:37 +04:00
|
|
|
// Create items marked as tags
|
|
|
|
if (data._tag === true) {
|
|
|
|
// Clear the tag flag from it
|
|
|
|
delete data._tag;
|
|
|
|
|
|
|
|
// Create and add the option
|
|
|
|
var $option = this.option(data);
|
|
|
|
this.$element.append($option);
|
|
|
|
}
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
if (this.$element.prop('multiple')) {
|
|
|
|
this.current(function (currentData) {
|
|
|
|
var val = [];
|
|
|
|
|
|
|
|
data = [data];
|
|
|
|
data.push.apply(data, currentData);
|
|
|
|
|
|
|
|
for (var d = 0; d < data.length; d++) {
|
|
|
|
id = data[d].id;
|
|
|
|
|
|
|
|
if (val.indexOf(id) === -1) {
|
|
|
|
val.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.$element.val(val);
|
|
|
|
self.$element.trigger('change');
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
var val = data.id;
|
|
|
|
|
|
|
|
this.$element.val(val);
|
2014-10-21 03:15:37 +04:00
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
this.$element.trigger('change');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectAdapter.prototype.unselect = function (data) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if (!this.$element.prop('multiple')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.current(function (currentData) {
|
|
|
|
var val = [];
|
|
|
|
|
|
|
|
for (var d = 0; d < currentData.length; d++) {
|
|
|
|
id = currentData[d].id;
|
|
|
|
|
|
|
|
if (id !== data.id && val.indexOf(id) === -1) {
|
|
|
|
val.push(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.$element.val(val);
|
2014-10-21 03:15:37 +04:00
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
self.$element.trigger('change');
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectAdapter.prototype.bind = function (container, $container) {
|
|
|
|
var self = this;
|
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
this.container = container;
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
container.on('select', function (params) {
|
|
|
|
self.select(params.data);
|
|
|
|
});
|
|
|
|
|
|
|
|
container.on('unselect', function (params) {
|
|
|
|
self.unselect(params.data);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectAdapter.prototype.query = function (params, callback) {
|
|
|
|
var data = [];
|
|
|
|
var self = this;
|
|
|
|
|
2014-10-15 06:30:37 +04:00
|
|
|
var $options = this.$element.children();
|
|
|
|
|
|
|
|
$options.each(function () {
|
2014-10-15 05:12:57 +04:00
|
|
|
var $option = $(this);
|
|
|
|
|
2014-10-15 06:30:37 +04:00
|
|
|
if (!$option.is('option') && !$option.is('optgroup')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
var option = self.item($option);
|
|
|
|
|
2014-10-15 06:30:37 +04:00
|
|
|
var matches = self.matches(params, option);
|
|
|
|
|
|
|
|
if (matches !== null) {
|
|
|
|
data.push(matches);
|
2014-10-15 05:12:57 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
callback(data);
|
|
|
|
};
|
|
|
|
|
2014-10-21 03:15:37 +04:00
|
|
|
SelectAdapter.prototype.option = function (data) {
|
|
|
|
var $option = $('<option></option>');
|
|
|
|
|
|
|
|
$option.text(data.text);
|
|
|
|
$option.val(data.id);
|
|
|
|
$option.prop('disabled', data.disabled || false);
|
|
|
|
|
|
|
|
// Get any automatically generated data values
|
|
|
|
var detectedData = this.item($option);
|
|
|
|
|
|
|
|
// Merge it with the already present data
|
|
|
|
var combinedData = $.extend({}, data, detectedData);
|
|
|
|
|
|
|
|
// Override the option's data with the combined data
|
|
|
|
$option.data('data', combinedData);
|
|
|
|
|
|
|
|
return $option;
|
|
|
|
};
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
SelectAdapter.prototype.item = function ($option) {
|
|
|
|
var data = $option.data('data');
|
|
|
|
|
|
|
|
// If the data has already be generated, use it
|
|
|
|
if (data == null) {
|
2014-10-15 06:30:37 +04:00
|
|
|
if ($option.is('option')) {
|
|
|
|
data = {
|
|
|
|
id: $option.val(),
|
|
|
|
text: $option.html(),
|
|
|
|
disabled: $option.prop('disabled')
|
|
|
|
};
|
|
|
|
} else if ($option.is('optgroup')) {
|
|
|
|
data = {
|
|
|
|
text: $option.attr('label'),
|
|
|
|
children: []
|
|
|
|
};
|
|
|
|
|
|
|
|
var $children = $option.children('option');
|
|
|
|
var children = [];
|
|
|
|
|
|
|
|
for (var c = 0; c < $children.length; c++) {
|
|
|
|
var $child = $($children[c]);
|
|
|
|
|
|
|
|
var child = this.item($child);
|
|
|
|
|
|
|
|
children.push(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
data.children = children;
|
|
|
|
}
|
2014-10-15 05:12:57 +04:00
|
|
|
|
2014-10-20 04:49:20 +04:00
|
|
|
if (data.id && this.container != null) {
|
2014-10-20 01:39:09 +04:00
|
|
|
data._resultId = this.generateResultId(this.container, data);
|
2014-10-20 00:13:57 +04:00
|
|
|
}
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
$option.data('data', data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
|
|
|
SelectAdapter.prototype.matches = function (params, data) {
|
2014-10-15 06:30:37 +04:00
|
|
|
var match = $.extend(true, {}, data);
|
|
|
|
|
|
|
|
if (data.children) {
|
|
|
|
for (var c = data.children.length - 1; c >= 0; c--) {
|
|
|
|
var child = data.children[c];
|
|
|
|
|
|
|
|
var matches = this.matches(params, child);
|
|
|
|
|
|
|
|
// If there wasn't a match, remove the object in the array
|
|
|
|
if (matches === null) {
|
|
|
|
match.children.splice(c, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match.children.length > 0) {
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
if ($.trim(params.term) === '') {
|
2014-10-15 06:30:37 +04:00
|
|
|
return match;
|
2014-10-15 05:12:57 +04:00
|
|
|
}
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
if (data.text.toUpperCase().indexOf(params.term.toUpperCase()) > -1) {
|
2014-10-15 06:30:37 +04:00
|
|
|
return match;
|
2014-10-15 05:12:57 +04:00
|
|
|
}
|
|
|
|
|
2014-10-15 06:30:37 +04:00
|
|
|
return null;
|
2014-10-15 05:12:57 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
return SelectAdapter;
|
|
|
|
});
|
|
|
|
|
2014-08-31 04:25:32 +04:00
|
|
|
define('select2/data/array',[
|
2014-09-22 00:43:44 +04:00
|
|
|
'./select',
|
2014-10-20 05:03:48 +04:00
|
|
|
'../utils',
|
|
|
|
'jquery'
|
|
|
|
], function (SelectAdapter, Utils, $) {
|
2014-08-31 04:25:32 +04:00
|
|
|
function ArrayAdapter ($element, options) {
|
2014-10-20 05:03:48 +04:00
|
|
|
this.data = options.get('data');
|
2014-08-31 04:25:32 +04:00
|
|
|
|
|
|
|
ArrayAdapter.__super__.constructor.call(this, $element, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(ArrayAdapter, SelectAdapter);
|
|
|
|
|
|
|
|
ArrayAdapter.prototype.select = function (data) {
|
|
|
|
var self = this;
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$element.find('option').each(function () {
|
2014-08-31 04:25:32 +04:00
|
|
|
var $option = $(this);
|
|
|
|
var option = self.item($option);
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
if (option.id == data.id.toString()) {
|
2014-08-31 04:25:32 +04:00
|
|
|
$option.remove();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var $option = this.option(data);
|
|
|
|
|
|
|
|
this.$element.append($option);
|
|
|
|
|
|
|
|
ArrayAdapter.__super__.select.call(this, data);
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-31 04:25:32 +04:00
|
|
|
|
|
|
|
ArrayAdapter.prototype.query = function (params, callback) {
|
|
|
|
var matches = [];
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
$.each(this.data, function () {
|
|
|
|
var option = this;
|
|
|
|
|
|
|
|
if (self.matches(params, option)) {
|
|
|
|
matches.push(option);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
callback(matches);
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-31 04:25:32 +04:00
|
|
|
|
|
|
|
return ArrayAdapter;
|
|
|
|
});
|
|
|
|
|
2014-08-31 05:14:46 +04:00
|
|
|
define('select2/data/ajax',[
|
2014-09-22 00:43:44 +04:00
|
|
|
'./array',
|
|
|
|
'../utils',
|
|
|
|
'jquery'
|
2014-08-31 05:14:46 +04:00
|
|
|
], function (ArrayAdapter, Utils, $) {
|
|
|
|
function AjaxAdapter ($element, options) {
|
2014-10-17 02:19:15 +04:00
|
|
|
this.ajaxOptions = options.get('ajax');
|
2014-08-31 05:14:46 +04:00
|
|
|
|
|
|
|
this.processResults = this.ajaxOptions.processResults ||
|
|
|
|
function (results) {
|
2014-09-22 00:43:44 +04:00
|
|
|
return results;
|
2014-08-31 05:14:46 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ArrayAdapter.__super__.constructor.call(this, $element, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(AjaxAdapter, ArrayAdapter);
|
|
|
|
|
|
|
|
AjaxAdapter.prototype.query = function (params, callback) {
|
|
|
|
var matches = [];
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
var options = $.extend({
|
2014-09-22 01:12:21 +04:00
|
|
|
type: 'GET'
|
2014-08-31 05:14:46 +04:00
|
|
|
}, this.ajaxOptions);
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if (typeof options.url === 'function') {
|
2014-08-31 05:14:46 +04:00
|
|
|
options.url = options.url(params);
|
|
|
|
}
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
if (typeof options.data === 'function') {
|
2014-08-31 05:14:46 +04:00
|
|
|
options.data = options.data(params);
|
|
|
|
}
|
|
|
|
|
|
|
|
var $request = $.ajax(options);
|
|
|
|
|
|
|
|
$request.success(function (data) {
|
|
|
|
var results = self.processResults(data);
|
|
|
|
|
|
|
|
callback(results);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return AjaxAdapter;
|
|
|
|
});
|
|
|
|
|
2014-10-21 03:15:37 +04:00
|
|
|
define('select2/data/tags',[
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
function Tags (decorated, $element, options) {
|
|
|
|
var tags = options.get('tags');
|
|
|
|
|
|
|
|
decorated.call(this, $element, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
Tags.prototype.query = function (decorated, params, callback) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if (params.term == null || params.term === '' || params.page != null) {
|
|
|
|
decorated.call(this, params, callback);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function wrapper (data, child) {
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
|
|
var option = data[i];
|
|
|
|
|
|
|
|
var checkChildren = (
|
|
|
|
option.children != null && !wrapper(option.children, true)
|
|
|
|
);
|
|
|
|
|
|
|
|
var checkText = option.text === params.term;
|
|
|
|
|
|
|
|
if (checkText || checkChildren) {
|
|
|
|
if (child) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(data);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (child) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var tag = self.createTag(params);
|
|
|
|
tag._tag = true;
|
|
|
|
|
|
|
|
data.unshift(tag);
|
|
|
|
|
|
|
|
callback(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
decorated.call(this, params, wrapper);
|
|
|
|
};
|
|
|
|
|
|
|
|
Tags.prototype.createTag = function (decorated, params) {
|
|
|
|
return {
|
|
|
|
id: params.term,
|
|
|
|
text: params.term
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
return Tags;
|
|
|
|
});
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
define('select2/dropdown',[
|
|
|
|
'./utils'
|
|
|
|
], function (Utils) {
|
|
|
|
function Dropdown ($element, options) {
|
|
|
|
this.$element = $element;
|
|
|
|
}
|
|
|
|
|
|
|
|
Utils.Extend(Dropdown, Utils.Observable);
|
|
|
|
|
|
|
|
Dropdown.prototype.render = function () {
|
|
|
|
var $dropdown = $(
|
|
|
|
'<span class="dropdown">' +
|
|
|
|
'<span class="results"></span>' +
|
|
|
|
'</span>'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $dropdown;
|
|
|
|
};
|
|
|
|
|
|
|
|
Dropdown.prototype.bind = function (container, $container) {
|
|
|
|
// Can be implemented in subclasses
|
|
|
|
};
|
|
|
|
|
|
|
|
return Dropdown;
|
|
|
|
});
|
|
|
|
|
|
|
|
define('select2/dropdown/search',[
|
|
|
|
|
|
|
|
], function () {
|
|
|
|
function Search () { }
|
|
|
|
|
|
|
|
Search.prototype.render = function (decorated) {
|
|
|
|
var $rendered = decorated.call(this);
|
|
|
|
|
|
|
|
var $search = $(
|
|
|
|
'<span class="search">' +
|
2014-10-18 18:49:51 +04:00
|
|
|
'<input type="search" name="search" tabindex="-1" role="textbox" />' +
|
2014-10-16 04:51:29 +04:00
|
|
|
'</span>'
|
|
|
|
);
|
|
|
|
|
2014-10-17 03:08:11 +04:00
|
|
|
this.$searchContainer = $search;
|
2014-10-16 04:51:29 +04:00
|
|
|
this.$search = $search.find('input');
|
|
|
|
|
|
|
|
$rendered.prepend($search);
|
|
|
|
|
|
|
|
return $rendered;
|
|
|
|
};
|
|
|
|
|
|
|
|
Search.prototype.bind = function (decorated, container, $container) {
|
2014-10-17 03:08:11 +04:00
|
|
|
var self = this;
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
decorated.call(this, container, $container);
|
|
|
|
|
|
|
|
this.$search.on('keyup', function () {
|
|
|
|
container.trigger('query', {
|
|
|
|
term: $(this).val()
|
|
|
|
});
|
|
|
|
});
|
2014-10-17 03:08:11 +04:00
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
container.on('open', function () {
|
|
|
|
self.$search.attr('tabindex', 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
container.on('close', function () {
|
|
|
|
self.$search.attr('tabindex', -1);
|
|
|
|
});
|
|
|
|
|
2014-10-17 03:08:11 +04:00
|
|
|
container.on('results:all', function (params) {
|
|
|
|
if (params.query.term == null || params.query.term === '') {
|
|
|
|
var showSearch = self.showSearch(params);
|
|
|
|
|
|
|
|
if (showSearch) {
|
|
|
|
self.$searchContainer.show();
|
|
|
|
} else {
|
|
|
|
self.$searchContainer.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
Search.prototype.showSearch = function (params) {
|
|
|
|
return true;
|
2014-10-16 04:51:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
return Search;
|
|
|
|
});
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
define('select2/defaults',[
|
2014-08-27 05:18:26 +04:00
|
|
|
'./results',
|
2014-10-11 06:17:51 +04:00
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
'./selection/single',
|
2014-08-31 04:25:32 +04:00
|
|
|
'./selection/multiple',
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
'./selection/placeholder',
|
2014-08-31 04:25:32 +04:00
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
'./utils',
|
|
|
|
|
2014-10-15 05:12:57 +04:00
|
|
|
'./data/select',
|
2014-08-31 05:14:46 +04:00
|
|
|
'./data/array',
|
2014-10-16 04:51:29 +04:00
|
|
|
'./data/ajax',
|
2014-10-21 03:15:37 +04:00
|
|
|
'./data/tags',
|
2014-10-16 04:51:29 +04:00
|
|
|
|
|
|
|
'./dropdown',
|
|
|
|
'./dropdown/search'
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
], function (ResultsList,
|
|
|
|
SingleSelection, MultipleSelection, Placeholder,
|
|
|
|
Utils,
|
2014-10-21 03:15:37 +04:00
|
|
|
SelectData, ArrayData, AjaxData, Tags,
|
2014-10-16 04:51:29 +04:00
|
|
|
Dropdown, Search) {
|
2014-10-17 02:19:15 +04:00
|
|
|
function Defaults () {
|
|
|
|
this.reset();
|
|
|
|
}
|
2014-08-27 02:01:42 +04:00
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
Defaults.prototype.apply = function (options) {
|
|
|
|
options = $.extend({}, options, this.defaults);
|
|
|
|
|
|
|
|
if (options.dataAdapter == null) {
|
|
|
|
if (options.ajax) {
|
|
|
|
options.dataAdapter = AjaxData;
|
|
|
|
} else if (options.data) {
|
|
|
|
options.dataAdapter = ArrayData;
|
|
|
|
} else {
|
|
|
|
options.dataAdapter = SelectData;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-21 03:15:37 +04:00
|
|
|
if (options.tags != null) {
|
|
|
|
options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
|
|
|
|
}
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
if (options.resultsAdapter == null) {
|
|
|
|
options.resultsAdapter = ResultsList;
|
2014-10-15 05:12:57 +04:00
|
|
|
}
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
if (options.dropdownAdapter == null) {
|
|
|
|
var SearchableDropdown = Utils.Decorate(Dropdown, Search);
|
2014-10-16 04:51:29 +04:00
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
options.dropdownAdapter = SearchableDropdown;
|
|
|
|
}
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
if (options.selectionAdapter == null) {
|
|
|
|
if (options.multiple) {
|
|
|
|
options.selectionAdapter = MultipleSelection;
|
2014-08-29 19:31:18 +04:00
|
|
|
} else {
|
2014-10-17 02:19:15 +04:00
|
|
|
options.selectionAdapter = SingleSelection;
|
2014-08-29 19:31:18 +04:00
|
|
|
}
|
Added support for placeholders
Placeholder support has been implemented as a separate module, so
any selection container should be able to be decorated and get
instant placeholder support. It hooks into the updating method of
selections, and determines when to display the placeholder based
on the options that are being updated.
It works in the same way as the old placeholders. If no options
are selected and being displayed, like in the case of a multiple
select, then the placeholder will always be shown. If one option
is being displayed, and the id of the placeholder matches the id
of the selected element, then the placeholder will be shown. This
is similar to the functionality that was present in Select2 2.x,
where the placeholder could be passed in as an object that would
be compared to the selection.
This still requires that, for single selects, the first element
must match the placeholder id. Because the default placeholder id
is a blank string, this will maintain backwards compatibility with
past versions where the first option should be blank. This can
still be overridden to point at a different id, keeping support
for systems where the placeholder doesn't use a blank value.
**Note:** This does not hide the blank option for single selects,
but that will still be maintained for backwards compatibility
within the results module. It will not depend on a placeholder
being present, but instead will hide any options with blank text.
2014-10-17 03:59:38 +04:00
|
|
|
|
|
|
|
// Add the placeholder mixin if a placeholder was specified
|
|
|
|
if (options.placeholder != null) {
|
|
|
|
options.selectionAdapter = Utils.Decorate(
|
|
|
|
options.selectionAdapter,
|
|
|
|
Placeholder
|
|
|
|
);
|
|
|
|
}
|
2014-08-29 19:31:18 +04:00
|
|
|
}
|
2014-10-17 02:19:15 +04:00
|
|
|
|
|
|
|
return options;
|
|
|
|
};
|
|
|
|
|
|
|
|
Defaults.prototype.reset = function () {
|
|
|
|
this.defaults = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
var defaults = new Defaults();
|
|
|
|
|
|
|
|
return defaults;
|
|
|
|
});
|
|
|
|
|
|
|
|
define('select2/options',[
|
|
|
|
'./defaults'
|
|
|
|
], function (Defaults) {
|
|
|
|
function Options (options) {
|
|
|
|
this.options = Defaults.apply(options);
|
2014-08-27 02:01:42 +04:00
|
|
|
}
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
Options.prototype.fromElement = function ($e) {
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
Options.prototype.get = function (key) {
|
|
|
|
return this.options[key];
|
|
|
|
};
|
|
|
|
|
|
|
|
Options.prototype.set = function (key, val) {
|
|
|
|
this.options[key] = val;
|
|
|
|
};
|
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
return Options;
|
2014-09-22 00:43:44 +04:00
|
|
|
});
|
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
define('select2/core',[
|
2014-08-27 05:18:26 +04:00
|
|
|
'jquery',
|
|
|
|
'./options',
|
|
|
|
'./utils'
|
2014-08-27 02:01:42 +04:00
|
|
|
], function ($, Options, Utils) {
|
2014-08-27 05:18:26 +04:00
|
|
|
var Select2 = function ($element, options) {
|
|
|
|
this.$element = $element;
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-10-20 01:39:09 +04:00
|
|
|
if ($element.attr('id') != null) {
|
|
|
|
this.id = $element.attr('id');
|
|
|
|
} else if ($element.attr('name') != null) {
|
|
|
|
this.id = $element.attr('name') + '-' + Utils.generateChars(2);
|
|
|
|
} else {
|
|
|
|
this.id = Utils.generateChars(4);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.id = 'select2-' + this.id;
|
|
|
|
|
2014-08-29 19:31:18 +04:00
|
|
|
options = options || {};
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
options.multiple = options.multiple || $element.prop('multiple');
|
2014-08-29 19:31:18 +04:00
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
this.options = new Options(options);
|
|
|
|
|
2014-08-27 19:33:33 +04:00
|
|
|
Select2.__super__.constructor.call(this);
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
// Set up containers and adapters
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
var DataAdapter = this.options.get('dataAdapter');
|
|
|
|
this.data = new DataAdapter($element, this.options);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
|
|
|
var $container = this.render();
|
2014-08-31 04:42:46 +04:00
|
|
|
this.$container = $container;
|
2014-08-27 05:18:26 +04:00
|
|
|
|
|
|
|
$container.insertAfter(this.$element);
|
|
|
|
|
2014-10-16 03:42:43 +04:00
|
|
|
$container.width($element.outerWidth(false));
|
2014-08-27 19:33:33 +04:00
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
var SelectionAdapter = this.options.get('selectionAdapter');
|
|
|
|
this.selection = new SelectionAdapter($element, this.options);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
var $selectionContainer = $container.find('.selection');
|
2014-08-27 05:18:26 +04:00
|
|
|
var $selection = this.selection.render();
|
|
|
|
|
|
|
|
$selectionContainer.append($selection);
|
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
var DropdownAdapter = this.options.get('dropdownAdapter');
|
|
|
|
this.dropdown = new DropdownAdapter($element, this.options);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-10-11 06:17:51 +04:00
|
|
|
var $dropdownContainer = $container.find('.dropdown-wrapper');
|
2014-08-27 05:18:26 +04:00
|
|
|
var $dropdown = this.dropdown.render();
|
|
|
|
|
2014-08-27 19:33:33 +04:00
|
|
|
$dropdownContainer.append($dropdown);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-10-17 02:19:15 +04:00
|
|
|
var ResultsAdapter = this.options.get('resultsAdapter');
|
|
|
|
this.results = new ResultsAdapter($element, this.options, this.data);
|
2014-08-27 05:18:26 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
var $resultsContainer = $dropdown.find('.results');
|
2014-08-27 05:18:26 +04:00
|
|
|
var $results = this.results.render();
|
|
|
|
|
|
|
|
$resultsContainer.append($results);
|
|
|
|
|
2014-08-27 19:33:33 +04:00
|
|
|
// Bind events
|
2014-08-27 05:18:26 +04:00
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
2014-08-31 02:34:41 +04:00
|
|
|
this.data.bind(this, $container);
|
|
|
|
this.selection.bind(this, $container);
|
2014-10-16 04:51:29 +04:00
|
|
|
|
|
|
|
this.dropdown.bind(this, $container);
|
2014-08-31 02:34:41 +04:00
|
|
|
this.results.bind(this, $container);
|
2014-08-27 19:33:33 +04:00
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.$element.on('change', function () {
|
2014-08-27 19:33:33 +04:00
|
|
|
self.data.current(function (data) {
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('selection:update', {
|
2014-08-31 02:34:41 +04:00
|
|
|
data: data
|
|
|
|
});
|
2014-08-27 19:33:33 +04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
this.selection.on('open', function () {
|
2014-10-21 04:29:23 +04:00
|
|
|
self.open();
|
2014-10-18 18:49:51 +04:00
|
|
|
});
|
|
|
|
this.selection.on('close', function () {
|
2014-10-21 04:29:23 +04:00
|
|
|
self.close();
|
2014-10-18 18:49:51 +04:00
|
|
|
});
|
2014-09-22 00:43:44 +04:00
|
|
|
this.selection.on('toggle', function () {
|
2014-08-31 04:42:46 +04:00
|
|
|
self.toggleDropdown();
|
2014-08-27 19:33:33 +04:00
|
|
|
});
|
2014-08-28 04:18:17 +04:00
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
this.selection.on('results:select', function () {
|
|
|
|
self.trigger('results:select');
|
|
|
|
});
|
2014-10-18 19:28:42 +04:00
|
|
|
this.selection.on('results:previous', function () {
|
|
|
|
self.trigger('results:previous');
|
|
|
|
});
|
|
|
|
this.selection.on('results:next', function () {
|
|
|
|
self.trigger('results:next');
|
|
|
|
});
|
2014-10-18 18:49:51 +04:00
|
|
|
|
2014-10-17 04:32:08 +04:00
|
|
|
this.selection.on('unselected', function (params) {
|
|
|
|
self.trigger('unselect', params);
|
|
|
|
|
2014-10-21 04:29:23 +04:00
|
|
|
self.close();
|
2014-10-17 04:32:08 +04:00
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.results.on('selected', function (params) {
|
|
|
|
self.trigger('select', params);
|
2014-08-31 02:34:41 +04:00
|
|
|
|
2014-10-21 04:29:23 +04:00
|
|
|
self.close();
|
2014-08-28 04:18:17 +04:00
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.results.on('unselected', function (params) {
|
|
|
|
self.trigger('unselect', params);
|
2014-08-31 02:53:05 +04:00
|
|
|
|
2014-10-21 04:29:23 +04:00
|
|
|
self.close();
|
2014-08-31 04:42:46 +04:00
|
|
|
});
|
|
|
|
|
2014-10-20 03:49:06 +04:00
|
|
|
this.results.on('results:focus', function (params) {
|
|
|
|
self.trigger('results:focus', params);
|
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.on('open', function () {
|
|
|
|
$container.addClass('open');
|
2014-08-31 04:42:46 +04:00
|
|
|
});
|
|
|
|
|
2014-09-22 00:43:44 +04:00
|
|
|
this.on('close', function () {
|
|
|
|
$container.removeClass('open');
|
2014-08-31 02:53:05 +04:00
|
|
|
});
|
|
|
|
|
2014-08-28 04:18:17 +04:00
|
|
|
// Set the initial state
|
|
|
|
|
|
|
|
this.data.current(function (initialData) {
|
2014-09-22 00:43:44 +04:00
|
|
|
self.trigger('selection:update', {
|
2014-08-31 03:32:29 +04:00
|
|
|
data: initialData
|
|
|
|
});
|
2014-08-28 04:18:17 +04:00
|
|
|
});
|
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
this.on('query', function (params) {
|
|
|
|
this.data.query(params, function (data) {
|
2014-10-17 03:08:11 +04:00
|
|
|
self.trigger('results:all', {
|
|
|
|
data: data,
|
|
|
|
query: params
|
|
|
|
});
|
2014-10-16 04:51:29 +04:00
|
|
|
});
|
2014-08-28 04:18:17 +04:00
|
|
|
});
|
2014-08-31 03:32:29 +04:00
|
|
|
|
2014-10-16 04:51:29 +04:00
|
|
|
this.trigger('query', {});
|
|
|
|
|
2014-08-31 03:32:29 +04:00
|
|
|
// Hide the original select
|
|
|
|
|
|
|
|
$element.hide();
|
2014-10-18 18:49:51 +04:00
|
|
|
$element.attr('tabindex', '-1');
|
2014-10-21 04:29:23 +04:00
|
|
|
|
|
|
|
$element.data('select2', this);
|
2014-08-27 02:01:42 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
Utils.Extend(Select2, Utils.Observable);
|
|
|
|
|
2014-08-31 04:42:46 +04:00
|
|
|
Select2.prototype.toggleDropdown = function () {
|
2014-10-18 18:49:51 +04:00
|
|
|
if (this.isOpen()) {
|
2014-10-21 04:29:23 +04:00
|
|
|
this.close();
|
2014-08-31 04:42:46 +04:00
|
|
|
} else {
|
2014-10-21 04:29:23 +04:00
|
|
|
this.open();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Select2.prototype.open = function () {
|
|
|
|
if (this.isOpen()) {
|
|
|
|
return;
|
2014-08-31 04:42:46 +04:00
|
|
|
}
|
2014-10-21 04:29:23 +04:00
|
|
|
|
|
|
|
this.trigger('open');
|
|
|
|
};
|
|
|
|
|
|
|
|
Select2.prototype.close = function () {
|
|
|
|
if (!this.isOpen()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.trigger('close');
|
2014-09-22 00:43:44 +04:00
|
|
|
};
|
2014-08-31 04:42:46 +04:00
|
|
|
|
2014-10-18 18:49:51 +04:00
|
|
|
Select2.prototype.isOpen = function () {
|
|
|
|
return this.$container.hasClass('open');
|
|
|
|
};
|
|
|
|
|
2014-08-27 05:18:26 +04:00
|
|
|
Select2.prototype.render = function () {
|
|
|
|
var $container = $(
|
2014-08-29 03:54:01 +04:00
|
|
|
'<span class="select2 select2-container select2-theme-default">' +
|
2014-08-27 19:33:33 +04:00
|
|
|
'<span class="selection"></span>' +
|
2014-10-20 03:49:06 +04:00
|
|
|
'<span class="dropdown-wrapper" aria-hidden="true"></span>' +
|
2014-08-27 19:33:33 +04:00
|
|
|
'</span>'
|
2014-08-27 05:18:26 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
return $container;
|
|
|
|
};
|
|
|
|
|
2014-08-27 02:01:42 +04:00
|
|
|
return Select2;
|
|
|
|
});
|
|
|
|
|
2014-10-16 03:26:38 +04:00
|
|
|
define('jquery.select2',[
|
|
|
|
'jquery',
|
|
|
|
'select2/core'
|
|
|
|
], function ($, Select2) {
|
|
|
|
if ($.fn.select2 == null) {
|
|
|
|
$.fn.select2 = function (options) {
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
if (typeof options === 'object') {
|
|
|
|
this.each(function () {
|
|
|
|
var instance = new Select2($(this), options);
|
|
|
|
});
|
|
|
|
} else if (typeof options === 'string') {
|
|
|
|
var instance = this.data('select2');
|
2014-10-21 04:29:23 +04:00
|
|
|
var args = Array.prototype.slice.call(arguments, 1);
|
2014-10-16 03:26:38 +04:00
|
|
|
|
2014-10-21 04:29:23 +04:00
|
|
|
instance[options](args);
|
2014-10-16 03:26:38 +04:00
|
|
|
} else {
|
|
|
|
throw new Error('Invalid arguments for Select2: ' + options);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return Select2;
|
|
|
|
});
|
|
|
|
|
2014-11-01 04:10:40 +03:00
|
|
|
require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());
|