12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346 |
- define('select2/utils',[], function () {
- var Utils = {};
- Utils.Extend = function (ChildClass, SuperClass) {
- var __hasProp = {}.hasOwnProperty;
- 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;
- };
- function getMethods (theClass) {
- var proto = theClass.prototype;
- var methods = [];
- for (var methodName in proto) {
- var m = proto[methodName];
- if (typeof m !== 'function') {
- 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) {
- unshift.call(arguments, SuperClass.prototype.constructor);
- calledConstructor = DecoratorClass.prototype.constructor;
- }
- calledConstructor.apply(this, arguments);
- }
- DecoratorClass.displayName = SuperClass.displayName;
- function ctr () {
- this.constructor = DecoratedClass;
- }
- DecoratedClass.prototype = new ctr();
- for (var m = 0; m < superMethods.length; m++) {
- var superMethod = superMethods[m];
- DecoratedClass.prototype[superMethod] =
- SuperClass.prototype[superMethod];
- }
- var calledMethod = function (methodName) {
- // Stub out the original method if it's not decorating an actual method
- var originalMethod = function () {};
- if (methodName in DecoratedClass.prototype) {
- originalMethod = DecoratedClass.prototype[methodName];
- }
- var decoratedMethod = DecoratorClass.prototype[methodName];
- return function () {
- var unshift = Array.prototype.unshift;
- unshift.call(arguments, originalMethod);
- return decoratedMethod.apply(this, arguments);
- };
- };
- for (var d = 0; d < decoratedMethods.length; d++) {
- var decoratedMethod = decoratedMethods[d];
- DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
- }
- return DecoratedClass;
- };
- 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) {
- var slice = Array.prototype.slice;
- if (event in this.listeners) {
- this.invoke(this.listeners[event], slice.call(arguments, 1));
- }
- if ('*' in this.listeners) {
- this.invoke(this.listeners['*'], arguments);
- }
- };
- Observable.prototype.invoke = function (listeners, params) {
- for (var i = 0, len = listeners.length; i < len; i++) {
- listeners[i].apply(this, params);
- }
- };
- Utils.Observable = Observable;
- return Utils;
- });
- define('select2/results',[
- './utils'
- ], function (Utils) {
- function Results ($element, options, dataAdapter) {
- this.$element = $element;
- this.data = dataAdapter;
- Results.__super__.constructor.call(this);
- }
- Utils.Extend(Results, Utils.Observable);
- Results.prototype.render = function () {
- var $results = $(
- '<ul class="options" role="listbox"></ul>'
- );
- this.$results = $results;
- return $results;
- };
- Results.prototype.clear = function () {
- this.$results.empty();
- };
- Results.prototype.append = function (data) {
- var $options = [];
- data = this.sort(data);
- for (var d = 0; d < data.length; d++) {
- var item = data[d];
- var $option = this.option(item);
- $options.push($option);
- }
- this.$results.append($options);
- };
- Results.prototype.sort = function (data) {
- return data;
- };
- Results.prototype.setClasses = function () {
- var self = this;
- this.data.current(function (selected) {
- var selectedIds = $.map(selected, function (s) {
- return s.id.toString();
- });
- var $options = self.$results.find('.option[aria-selected]');
- $options.each(function () {
- var $option = $(this);
- var item = $option.data('data');
- if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
- $option.attr('aria-selected', 'true');
- } else {
- $option.attr('aria-selected', 'false');
- }
- });
- 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');
- }
- });
- };
- Results.prototype.option = function (data) {
- var $option = $(
- '<li class="option" role="option" aria-selected="false"></li>'
- );
- if (data.children) {
- $option
- .addClass('group')
- .removeAttr('aria-selected');
- 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) {
- $option
- .removeAttr('aria-selected')
- .attr('aria-disabled', 'true');
- }
- if (data.id == null) {
- $option.removeClass('aria-selected');
- }
- $option.data('data', data);
- return $option;
- };
- Results.prototype.bind = function (container, $container) {
- var self = this;
- container.on('results:all', function (params) {
- self.clear();
- self.append(params.data);
- self.setClasses();
- });
- container.on('results:append', function (params) {
- self.append(params.data);
- self.setClasses();
- });
- container.on('select', function () {
- self.setClasses();
- });
- container.on('unselect', function () {
- self.setClasses();
- });
- container.on('open', function () {
- // When the dropdown is open, aria-expended="true"
- self.$results.attr('aria-expanded', 'true');
- self.setClasses();
- });
- container.on('close', function () {
- // When the dropdown is closed, aria-expended="false"
- self.$results.attr('aria-expanded', 'false');
- });
- container.on('results:select', function () {
- var $highlighted = self.$results.find('.highlighted');
- var data = $highlighted.data('data');
- if ($highlighted.attr('aria-selected') == 'true') {
- self.trigger('unselected', {
- data: data
- });
- } else {
- self.trigger('selected', {
- data: data
- });
- }
- });
- this.$results.on('mouseup', '.option[aria-selected]', function (evt) {
- var $this = $(this);
- var data = $this.data('data');
- if ($this.attr('aria-selected') === 'true') {
- self.trigger('unselected', {
- originalEvent: evt,
- data: data
- });
- return;
- }
- self.trigger('selected', {
- originalEvent: evt,
- data: data
- });
- });
- this.$results.on('mouseenter', '.option[aria-selected]', function (evt) {
- self.$results.find('.option.highlighted').removeClass('highlighted');
- $(this).addClass('highlighted');
- });
- this.$results.on('mouseleave', '.option', function (evt) {
- $(this).removeClass('highlighted');
- });
- };
- return Results;
- });
- define('select2/selection/base',[
- '../utils'
- ], function (Utils) {
- function BaseSelection ($element, options) {
- this.$element = $element;
- this.options = options;
- 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;
- });
- 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;
- });
- define('select2/selection/single',[
- './base',
- '../utils',
- '../keys'
- ], function (BaseSelection, Utils, KEYS) {
- function SingleSelection () {
- SingleSelection.__super__.constructor.apply(this, arguments);
- }
- Utils.Extend(SingleSelection, BaseSelection);
- SingleSelection.prototype.render = function () {
- var $selection = $(
- '<span class="single-select" tabindex="0">' +
- '<span class="rendered-selection"></span>' +
- '</span>'
- );
- $selection.attr('title', this.$element.attr('title'));
- this.$selection = $selection;
- return $selection;
- };
- SingleSelection.prototype.bind = function (container, $container) {
- var self = this;
- SingleSelection.__super__.bind.apply(this, arguments);
- this.$selection.on('mousedown', function (evt) {
- // Only respond to left clicks
- if (evt.which !== 1) {
- return;
- }
- self.trigger('toggle', {
- originalEvent: evt
- });
- });
- this.$selection.on('focus', function (evt) {
- // User focuses on the container
- });
- this.$selection.on('blur', function (evt) {
- // User exits the container
- });
- this.$selection.on('keyup', function (evt) {
- var key = evt.which;
- if (container.isOpen()) {
- if (key == KEYS.ENTER) {
- self.trigger('results:select');
- }
- } else {
- if (key == KEYS.ENTER || key == KEYS.SPACE) {
- self.trigger('open');
- }
- }
- });
- container.on('selection:update', function (params) {
- self.update(params.data);
- });
- };
- SingleSelection.prototype.clear = function () {
- this.$selection.find('.rendered-selection').empty();
- };
- SingleSelection.prototype.display = function (data) {
- return data.text;
- };
- SingleSelection.prototype.selectionContainer = function () {
- return $('<span></span>');
- };
- SingleSelection.prototype.update = function (data) {
- if (data.length === 0) {
- this.clear();
- return;
- }
- var selection = data[0];
- var formatted = this.display(selection);
- this.$selection.find('.rendered-selection').html(formatted);
- };
- return SingleSelection;
- });
- define('select2/selection/multiple',[
- './base',
- '../utils'
- ], function (BaseSelection, Utils) {
- function MultipleSelection ($element, options) {
- this.$element = $element;
- this.options = options;
- MultipleSelection.__super__.constructor.call(this);
- }
- Utils.Extend(MultipleSelection, BaseSelection);
- MultipleSelection.prototype.render = function () {
- var $selection = $(
- '<span class="multiple-select">' +
- '<ul class="rendered-selection"></ul>' +
- '</span>'
- );
- this.$selection = $selection;
- return $selection;
- };
- MultipleSelection.prototype.bind = function (container, $container) {
- var self = this;
- MultipleSelection.__super__.bind.apply(this, arguments);
- this.$selection.on('click', function (evt) {
- self.trigger('toggle', {
- originalEvent: evt
- });
- });
- 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
- });
- });
- };
- MultipleSelection.prototype.clear = function () {
- this.$selection.find('.rendered-selection').empty();
- };
- MultipleSelection.prototype.display = function (data) {
- return data.text;
- };
- MultipleSelection.prototype.selectionContainer = function () {
- var $container = $(
- '<li class="choice">' +
- '<span class="remove" role="presentation">×</span>' +
- '</li>'
- );
- return $container;
- };
- MultipleSelection.prototype.update = function (data) {
- this.clear();
- if (data.length === 0) {
- return;
- }
- var $selections = [];
- for (var d = 0; d < data.length; d++) {
- var selection = data[d];
- var formatted = this.display(selection);
- var $selection = this.selectionContainer();
- $selection.append(formatted);
- $selection.data('data', selection);
- $selections.push($selection);
- }
- this.$selection.find('.rendered-selection').append($selections);
- };
- return MultipleSelection;
- });
- 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;
- });
- 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.');
- };
- BaseAdapter.prototype.bind = function (container, $container) {
- // Can be implemented in subclasses
- };
- 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;
- 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);
- 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);
- self.$element.trigger('change');
- });
- };
- SelectAdapter.prototype.bind = function (container, $container) {
- var self = this;
- 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;
- var $options = this.$element.children();
- $options.each(function () {
- var $option = $(this);
- if (!$option.is('option') && !$option.is('optgroup')) {
- return;
- }
- var option = self.item($option);
- var matches = self.matches(params, option);
- if (matches !== null) {
- data.push(matches);
- }
- });
- callback(data);
- };
- SelectAdapter.prototype.item = function ($option) {
- var data = $option.data('data');
- // If the data has already be generated, use it
- if (data == null) {
- 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;
- }
- $option.data('data', data);
- }
- return data;
- };
- SelectAdapter.prototype.matches = function (params, data) {
- 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;
- }
- }
- if ($.trim(params.term) === '') {
- return match;
- }
- if (data.text.toUpperCase().indexOf(params.term.toUpperCase()) > -1) {
- return match;
- }
- return null;
- };
- return SelectAdapter;
- });
- define('select2/data/array',[
- './select',
- '../utils'
- ], function (SelectAdapter, Utils) {
- function ArrayAdapter ($element, options) {
- this.data = options.options.data;
- ArrayAdapter.__super__.constructor.call(this, $element, options);
- }
- Utils.Extend(ArrayAdapter, SelectAdapter);
- ArrayAdapter.prototype.select = function (data) {
- var self = this;
- this.$element.find('option').each(function () {
- var $option = $(this);
- var option = self.item($option);
- if (option.id == data.id.toString()) {
- $option.remove();
- }
- });
- var $option = this.option(data);
- this.$element.append($option);
- ArrayAdapter.__super__.select.call(this, data);
- };
- ArrayAdapter.prototype.option = function (data) {
- var $option = $('<option></option>');
- $option.text(data.text);
- $option.val(data.id);
- $option.data('data', data);
- return $option;
- };
- 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);
- };
- return ArrayAdapter;
- });
- define('select2/data/ajax',[
- './array',
- '../utils',
- 'jquery'
- ], function (ArrayAdapter, Utils, $) {
- function AjaxAdapter ($element, options) {
- this.ajaxOptions = options.get('ajax');
- this.processResults = this.ajaxOptions.processResults ||
- function (results) {
- return results;
- };
- 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({
- type: 'GET'
- }, this.ajaxOptions);
- if (typeof options.url === 'function') {
- options.url = options.url(params);
- }
- if (typeof options.data === 'function') {
- options.data = options.data(params);
- }
- var $request = $.ajax(options);
- $request.success(function (data) {
- var results = self.processResults(data);
- callback(results);
- });
- };
- return AjaxAdapter;
- });
- 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">' +
- '<input type="search" name="search" tabindex="-1" role="textbox" />' +
- '</span>'
- );
- this.$searchContainer = $search;
- this.$search = $search.find('input');
- $rendered.prepend($search);
- return $rendered;
- };
- Search.prototype.bind = function (decorated, container, $container) {
- var self = this;
- decorated.call(this, container, $container);
- this.$search.on('keyup', function () {
- container.trigger('query', {
- term: $(this).val()
- });
- });
- container.on('open', function () {
- self.$search.attr('tabindex', 0);
- });
- container.on('close', function () {
- self.$search.attr('tabindex', -1);
- });
- 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;
- };
- return Search;
- });
- define('select2/defaults',[
- './results',
- './selection/single',
- './selection/multiple',
- './selection/placeholder',
- './utils',
- './data/select',
- './data/array',
- './data/ajax',
- './dropdown',
- './dropdown/search'
- ], function (ResultsList,
- SingleSelection, MultipleSelection, Placeholder,
- Utils,
- SelectData, ArrayData, AjaxData,
- Dropdown, Search) {
- function Defaults () {
- this.reset();
- }
- 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;
- }
- }
- if (options.resultsAdapter == null) {
- options.resultsAdapter = ResultsList;
- }
- if (options.dropdownAdapter == null) {
- var SearchableDropdown = Utils.Decorate(Dropdown, Search);
- options.dropdownAdapter = SearchableDropdown;
- }
- if (options.selectionAdapter == null) {
- if (options.multiple) {
- options.selectionAdapter = MultipleSelection;
- } else {
- options.selectionAdapter = SingleSelection;
- }
- // Add the placeholder mixin if a placeholder was specified
- if (options.placeholder != null) {
- options.selectionAdapter = Utils.Decorate(
- options.selectionAdapter,
- Placeholder
- );
- }
- }
- 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);
- }
- 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;
- };
- return Options;
- });
- define('select2/core',[
- 'jquery',
- './options',
- './utils'
- ], function ($, Options, Utils) {
- var Select2 = function ($element, options) {
- this.$element = $element;
- options = options || {};
- options.multiple = options.multiple || $element.prop('multiple');
- this.options = new Options(options);
- Select2.__super__.constructor.call(this);
- // Set up containers and adapters
- var DataAdapter = this.options.get('dataAdapter');
- this.data = new DataAdapter($element, this.options);
- var $container = this.render();
- this.$container = $container;
- $container.insertAfter(this.$element);
- $container.width($element.outerWidth(false));
- var SelectionAdapter = this.options.get('selectionAdapter');
- this.selection = new SelectionAdapter($element, this.options);
- var $selectionContainer = $container.find('.selection');
- var $selection = this.selection.render();
- $selectionContainer.append($selection);
- var DropdownAdapter = this.options.get('dropdownAdapter');
- this.dropdown = new DropdownAdapter($element, this.options);
- var $dropdownContainer = $container.find('.dropdown-wrapper');
- var $dropdown = this.dropdown.render();
- $dropdownContainer.append($dropdown);
- var ResultsAdapter = this.options.get('resultsAdapter');
- this.results = new ResultsAdapter($element, this.options, this.data);
- var $resultsContainer = $dropdown.find('.results');
- var $results = this.results.render();
- $resultsContainer.append($results);
- // Bind events
- var self = this;
- this.data.bind(this, $container);
- this.selection.bind(this, $container);
- this.dropdown.bind(this, $container);
- this.results.bind(this, $container);
- this.$element.on('change', function () {
- self.data.current(function (data) {
- self.trigger('selection:update', {
- data: data
- });
- });
- });
- this.selection.on('open', function () {
- self.trigger('open');
- });
- this.selection.on('close', function () {
- self.trigger('close');
- });
- this.selection.on('toggle', function () {
- self.toggleDropdown();
- });
- this.selection.on('results:select', function () {
- self.trigger('results:select');
- });
- this.selection.on('unselected', function (params) {
- self.trigger('unselect', params);
- self.trigger('close');
- });
- this.results.on('selected', function (params) {
- self.trigger('select', params);
- self.trigger('close');
- });
- this.results.on('unselected', function (params) {
- self.trigger('unselect', params);
- self.trigger('close');
- });
- this.on('open', function () {
- $container.addClass('open');
- });
- this.on('close', function () {
- $container.removeClass('open');
- });
- // Set the initial state
- this.data.current(function (initialData) {
- self.trigger('selection:update', {
- data: initialData
- });
- });
- this.on('query', function (params) {
- this.data.query(params, function (data) {
- self.trigger('results:all', {
- data: data,
- query: params
- });
- });
- });
- this.trigger('query', {});
- // Hide the original select
- $element.hide();
- $element.attr('tabindex', '-1');
- };
- Utils.Extend(Select2, Utils.Observable);
- Select2.prototype.toggleDropdown = function () {
- if (this.isOpen()) {
- this.trigger('close');
- } else {
- this.trigger('open');
- }
- };
- Select2.prototype.isOpen = function () {
- return this.$container.hasClass('open');
- };
- Select2.prototype.render = function () {
- var $container = $(
- '<span class="select2 select2-container select2-theme-default">' +
- '<span class="selection"></span>' +
- '<span class="dropdown-wrapper"></span>' +
- '</span>'
- );
- return $container;
- };
- return Select2;
- });
- 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');
- instance[options](arguments.slice(1));
- } else {
- throw new Error('Invalid arguments for Select2: ' + options);
- }
- };
- }
- return Select2;
- });
|