123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- 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;
- };
- 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/data/select',[
- '../utils'
- ], function (Utils) {
- function SelectAdapter ($element, options) {
- this.$element = $element;
- }
- Utils.Extend(SelectAdapter, Utils.Observable);
- 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.query = function (params, callback) {
- var data = [];
- var self = this;
- this.$element.find("option").each(function () {
- var $option = $(this);
- var option = self.item($option);
- if (self.matches(params, option)) {
- data.push(option);
- }
- });
- callback(data);
- };
- SelectAdapter.prototype.item = function ($option) {
- var data = {
- id: $option.val(),
- text: $option.html()
- };
- return data;
- };
- SelectAdapter.prototype.matches = function (params, data) {
- if (data.text.indexOf(params.term) > -1) {
- return true;
- }
- return false;
- }
- return SelectAdapter;
- });
- define('select2/results',[
- './utils'
- ], function (Utils) {
- function Results ($element, dataAdapter) {
- this.$element = $element;
- this.dataAdapter = dataAdapter;
- }
- Utils.Extend(Results, Utils.Observable);
- Results.prototype.render = function () {
- var $results = $(
- '<ul class="options"></ul>'
- );
- return $results;
- }
- return Results;
- })
- ;
- 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="">' +
- '<span class="results"></span>' +
- '</span>'
- );
- return $dropdown;
- }
- return Dropdown;
- })
- ;
- define('select2/selection',[
- './utils'
- ], function (Utils) {
- function Selection ($element, options) {
- this.$element = $element;
- this.options = options;
- Selection.__super__.constructor.call(this);
- }
- Utils.Extend(Selection, Utils.Observable);
- Selection.prototype.render = function () {
- var $selection = $(
- '<span class="single-select">' +
- '<span class="rendered-selection"></span>' +
- '</span>'
- );
- this.$selection = $selection;
- return $selection;
- }
- Selection.prototype.bind = function ($container) {
- var self = this;
- this.$selection.on('click', function (evt) {
- self.trigger("toggle", {
- originalEvent: evt
- });
- });
- }
- Selection.prototype.clear = function () {
- this.$selection.find(".rendered-selection").text("");
- }
- Selection.prototype.display = function (data) {
- return data.text;
- }
- Selection.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 Selection;
- });
- define('select2/options',[
- './data/select',
- './results',
- './dropdown',
- './selection'
- ], function (SelectData, ResultsList, Dropdown, Selection) {
- function Options (options) {
- this.options = options;
- this.dataAdapter = SelectData;
- this.resultsAdapter = ResultsList;
- this.dropdownAdapter = Dropdown;
- this.selectionAdapter = Selection;
- }
- return Options;
- })
- ;
- define('select2/core',[
- 'jquery',
- './options',
- './utils'
- ], function ($, Options, Utils) {
- var Select2 = function ($element, options) {
- this.$element = $element;
- this.options = new Options(options);
- Select2.__super__.constructor.call(this);
- // Set up containers and adapters
- this.data = new this.options.dataAdapter($element, options);
- var $container = this.render();
- $container.insertAfter(this.$element);
- $container.width($element.width());
- this.selection = new this.options.selectionAdapter($element, options);
- var $selectionContainer = $container.find(".selection");
- var $selection = this.selection.render();
- $selectionContainer.append($selection);
- this.dropdown = new this.options.dropdownAdapter($element, options);
- var $dropdownContainer = $container.find(".dropdown");
- var $dropdown = this.dropdown.render();
- $dropdownContainer.append($dropdown);
- this.results = new this.options.resultsAdapter($element, options);
- var $resultsContainer = $dropdown.find(".results");
- var $results = this.results.render();
- $resultsContainer.append($results);
- // Bind events
- this.selection.bind($container);
- // Set the initial state
- var self = this;
- this.data.current(function (initialData) {
- self.selection.update(initialData);
- });
- this.$element.on("change", function () {
- self.data.current(function (data) {
- self.selection.update(data);
- });
- });
- this.selection.on("toggle", function () {
- $container.toggleClass("open");
- });
- };
- Utils.Extend(Select2, Utils.Observable);
- Select2.prototype.render = function () {
- var $container = $(
- '<span class="select2 select2-container">' +
- '<span class="selection"></span>' +
- '<span class="dropdown"></span>' +
- '</span>'
- );
- return $container;
- };
- return Select2;
- });
|