92 lines
2.1 KiB
JavaScript
92 lines
2.1 KiB
JavaScript
/**
|
|
* Select wrapper.
|
|
*
|
|
* @author Htmlstream
|
|
* @version 1.0
|
|
*
|
|
*/
|
|
;(function ($) {
|
|
'use strict';
|
|
|
|
$.HSCore.components.HSSelect = {
|
|
/**
|
|
*
|
|
*
|
|
* @var Object _baseConfig
|
|
*/
|
|
_baseConfig: {},
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @var jQuery pageCollection
|
|
*/
|
|
pageCollection: $(),
|
|
|
|
/**
|
|
* Initialization of Select wrapper.
|
|
*
|
|
* @param String selector (optional)
|
|
* @param Object config (optional)
|
|
*
|
|
* @return jQuery pageCollection - collection of initialized items.
|
|
*/
|
|
|
|
init: function (selector, config) {
|
|
|
|
this.collection = selector && $(selector).length ? $(selector) : $();
|
|
if (!$(selector).length) return;
|
|
|
|
this.config = config && $.isPlainObject(config) ?
|
|
$.extend({}, this._baseConfig, config) : this._baseConfig;
|
|
|
|
this.config.itemSelector = selector;
|
|
|
|
this.initSelect();
|
|
|
|
return this.pageCollection;
|
|
|
|
},
|
|
|
|
initSelect: function () {
|
|
//Variables
|
|
var $self = this,
|
|
config = $self.config,
|
|
collection = $self.pageCollection;
|
|
|
|
//Actions
|
|
this.collection.each(function (i, el) {
|
|
//Variables
|
|
var $this = $(el),
|
|
searchMaxSelections = $this.data('max-selections'),
|
|
setControlClasses = $this.data('control-classes'),
|
|
setOpenIcon = $this.data('open-icon'),
|
|
setCloseIcon = $this.data('close-icon');
|
|
|
|
$this.chosen({
|
|
inherit_select_classes: true,
|
|
max_selected_options: searchMaxSelections ? searchMaxSelections : Infinity,
|
|
disable_search: true
|
|
});
|
|
|
|
if (setControlClasses) {
|
|
$this.next().find('.chosen-single div').addClass(setControlClasses);
|
|
}
|
|
|
|
if (setOpenIcon) {
|
|
$this.next().find('.chosen-single div b').append('<i class="' + setOpenIcon + '"></i>');
|
|
|
|
if (setCloseIcon) {
|
|
$this.next().find('.chosen-single div b').append('<i class="' + setCloseIcon + '"></i>');
|
|
}
|
|
}
|
|
|
|
//Actions
|
|
collection = collection.add($this);
|
|
});
|
|
}
|
|
};
|
|
})(jQuery);
|
|
|
|
//Test comment
|