1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450 |
- /**
- * @license almond 0.2.9 Copyright (c) 2011-2014, The Dojo Foundation All Rights Reserved.
- * Available via the MIT or new BSD license.
- * see: http://github.com/jrburke/almond for details
- */
- //Going sloppy to avoid 'use strict' string cost, but strict practices should
- //be followed.
- /*jslint sloppy: true */
- /*global setTimeout: false */
- var requirejs, require, define;
- (function (undef) {
- var main, req, makeMap, handlers,
- defined = {},
- waiting = {},
- config = {},
- defining = {},
- hasOwn = Object.prototype.hasOwnProperty,
- aps = [].slice,
- jsSuffixRegExp = /\.js$/;
- function hasProp(obj, prop) {
- return hasOwn.call(obj, prop);
- }
- /**
- * Given a relative module name, like ./something, normalize it to
- * a real name that can be mapped to a path.
- * @param {String} name the relative name
- * @param {String} baseName a real name that the name arg is relative
- * to.
- * @returns {String} normalized name
- */
- function normalize(name, baseName) {
- var nameParts, nameSegment, mapValue, foundMap, lastIndex,
- foundI, foundStarMap, starI, i, j, part,
- baseParts = baseName && baseName.split("/"),
- map = config.map,
- starMap = (map && map['*']) || {};
- //Adjust any relative paths.
- if (name && name.charAt(0) === ".") {
- //If have a base name, try to normalize against it,
- //otherwise, assume it is a top-level require that will
- //be relative to baseUrl in the end.
- if (baseName) {
- //Convert baseName to array, and lop off the last part,
- //so that . matches that "directory" and not name of the baseName's
- //module. For instance, baseName of "one/two/three", maps to
- //"one/two/three.js", but we want the directory, "one/two" for
- //this normalization.
- baseParts = baseParts.slice(0, baseParts.length - 1);
- name = name.split('/');
- lastIndex = name.length - 1;
- // Node .js allowance:
- if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
- name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
- }
- name = baseParts.concat(name);
- //start trimDots
- for (i = 0; i < name.length; i += 1) {
- part = name[i];
- if (part === ".") {
- name.splice(i, 1);
- i -= 1;
- } else if (part === "..") {
- if (i === 1 && (name[2] === '..' || name[0] === '..')) {
- //End of the line. Keep at least one non-dot
- //path segment at the front so it can be mapped
- //correctly to disk. Otherwise, there is likely
- //no path mapping for a path starting with '..'.
- //This can still fail, but catches the most reasonable
- //uses of ..
- break;
- } else if (i > 0) {
- name.splice(i - 1, 2);
- i -= 2;
- }
- }
- }
- //end trimDots
- name = name.join("/");
- } else if (name.indexOf('./') === 0) {
- // No baseName, so this is ID is resolved relative
- // to baseUrl, pull off the leading dot.
- name = name.substring(2);
- }
- }
- //Apply map config if available.
- if ((baseParts || starMap) && map) {
- nameParts = name.split('/');
- for (i = nameParts.length; i > 0; i -= 1) {
- nameSegment = nameParts.slice(0, i).join("/");
- if (baseParts) {
- //Find the longest baseName segment match in the config.
- //So, do joins on the biggest to smallest lengths of baseParts.
- for (j = baseParts.length; j > 0; j -= 1) {
- mapValue = map[baseParts.slice(0, j).join('/')];
- //baseName segment has config, find if it has one for
- //this name.
- if (mapValue) {
- mapValue = mapValue[nameSegment];
- if (mapValue) {
- //Match, update name to the new value.
- foundMap = mapValue;
- foundI = i;
- break;
- }
- }
- }
- }
- if (foundMap) {
- break;
- }
- //Check for a star map match, but just hold on to it,
- //if there is a shorter segment match later in a matching
- //config, then favor over this star map.
- if (!foundStarMap && starMap && starMap[nameSegment]) {
- foundStarMap = starMap[nameSegment];
- starI = i;
- }
- }
- if (!foundMap && foundStarMap) {
- foundMap = foundStarMap;
- foundI = starI;
- }
- if (foundMap) {
- nameParts.splice(0, foundI, foundMap);
- name = nameParts.join('/');
- }
- }
- return name;
- }
- function makeRequire(relName, forceSync) {
- return function () {
- //A version of a require function that passes a moduleName
- //value for items that may need to
- //look up paths relative to the moduleName
- return req.apply(undef, aps.call(arguments, 0).concat([relName, forceSync]));
- };
- }
- function makeNormalize(relName) {
- return function (name) {
- return normalize(name, relName);
- };
- }
- function makeLoad(depName) {
- return function (value) {
- defined[depName] = value;
- };
- }
- function callDep(name) {
- if (hasProp(waiting, name)) {
- var args = waiting[name];
- delete waiting[name];
- defining[name] = true;
- main.apply(undef, args);
- }
- if (!hasProp(defined, name) && !hasProp(defining, name)) {
- throw new Error('No ' + name);
- }
- return defined[name];
- }
- //Turns a plugin!resource to [plugin, resource]
- //with the plugin being undefined if the name
- //did not have a plugin prefix.
- function splitPrefix(name) {
- var prefix,
- index = name ? name.indexOf('!') : -1;
- if (index > -1) {
- prefix = name.substring(0, index);
- name = name.substring(index + 1, name.length);
- }
- return [prefix, name];
- }
- /**
- * Makes a name map, normalizing the name, and using a plugin
- * for normalization if necessary. Grabs a ref to plugin
- * too, as an optimization.
- */
- makeMap = function (name, relName) {
- var plugin,
- parts = splitPrefix(name),
- prefix = parts[0];
- name = parts[1];
- if (prefix) {
- prefix = normalize(prefix, relName);
- plugin = callDep(prefix);
- }
- //Normalize according
- if (prefix) {
- if (plugin && plugin.normalize) {
- name = plugin.normalize(name, makeNormalize(relName));
- } else {
- name = normalize(name, relName);
- }
- } else {
- name = normalize(name, relName);
- parts = splitPrefix(name);
- prefix = parts[0];
- name = parts[1];
- if (prefix) {
- plugin = callDep(prefix);
- }
- }
- //Using ridiculous property names for space reasons
- return {
- f: prefix ? prefix + '!' + name : name, //fullName
- n: name,
- pr: prefix,
- p: plugin
- };
- };
- function makeConfig(name) {
- return function () {
- return (config && config.config && config.config[name]) || {};
- };
- }
- handlers = {
- require: function (name) {
- return makeRequire(name);
- },
- exports: function (name) {
- var e = defined[name];
- if (typeof e !== 'undefined') {
- return e;
- } else {
- return (defined[name] = {});
- }
- },
- module: function (name) {
- return {
- id: name,
- uri: '',
- exports: defined[name],
- config: makeConfig(name)
- };
- }
- };
- main = function (name, deps, callback, relName) {
- var cjsModule, depName, ret, map, i,
- args = [],
- callbackType = typeof callback,
- usingExports;
- //Use name if no relName
- relName = relName || name;
- //Call the callback to define the module, if necessary.
- if (callbackType === 'undefined' || callbackType === 'function') {
- //Pull out the defined dependencies and pass the ordered
- //values to the callback.
- //Default to [require, exports, module] if no deps
- deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
- for (i = 0; i < deps.length; i += 1) {
- map = makeMap(deps[i], relName);
- depName = map.f;
- //Fast path CommonJS standard dependencies.
- if (depName === "require") {
- args[i] = handlers.require(name);
- } else if (depName === "exports") {
- //CommonJS module spec 1.1
- args[i] = handlers.exports(name);
- usingExports = true;
- } else if (depName === "module") {
- //CommonJS module spec 1.1
- cjsModule = args[i] = handlers.module(name);
- } else if (hasProp(defined, depName) ||
- hasProp(waiting, depName) ||
- hasProp(defining, depName)) {
- args[i] = callDep(depName);
- } else if (map.p) {
- map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
- args[i] = defined[depName];
- } else {
- throw new Error(name + ' missing ' + depName);
- }
- }
- ret = callback ? callback.apply(defined[name], args) : undefined;
- if (name) {
- //If setting exports via "module" is in play,
- //favor that over return value and exports. After that,
- //favor a non-undefined return value over exports use.
- if (cjsModule && cjsModule.exports !== undef &&
- cjsModule.exports !== defined[name]) {
- defined[name] = cjsModule.exports;
- } else if (ret !== undef || !usingExports) {
- //Use the return value from the function.
- defined[name] = ret;
- }
- }
- } else if (name) {
- //May just be an object definition for the module. Only
- //worry about defining if have a module name.
- defined[name] = callback;
- }
- };
- requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
- if (typeof deps === "string") {
- if (handlers[deps]) {
- //callback in this case is really relName
- return handlers[deps](callback);
- }
- //Just return the module wanted. In this scenario, the
- //deps arg is the module name, and second arg (if passed)
- //is just the relName.
- //Normalize module name, if it contains . or ..
- return callDep(makeMap(deps, callback).f);
- } else if (!deps.splice) {
- //deps is a config object, not an array.
- config = deps;
- if (config.deps) {
- req(config.deps, config.callback);
- }
- if (!callback) {
- return;
- }
- if (callback.splice) {
- //callback is an array, which means it is a dependency list.
- //Adjust args if there are dependencies
- deps = callback;
- callback = relName;
- relName = null;
- } else {
- deps = undef;
- }
- }
- //Support require(['a'])
- callback = callback || function () {};
- //If relName is a function, it is an errback handler,
- //so remove it.
- if (typeof relName === 'function') {
- relName = forceSync;
- forceSync = alt;
- }
- //Simulate async callback;
- if (forceSync) {
- main(undef, deps, callback, relName);
- } else {
- //Using a non-zero value because of concern for what old browsers
- //do, and latest browsers "upgrade" to 4 if lower value is used:
- //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
- //If want a value immediately, use require('id') instead -- something
- //that works in almond on the global level, but not guaranteed and
- //unlikely to work in other AMD implementations.
- setTimeout(function () {
- main(undef, deps, callback, relName);
- }, 4);
- }
- return req;
- };
- /**
- * Just drops the config on the floor, but returns req in case
- * the config return value is used.
- */
- req.config = function (cfg) {
- return req(cfg);
- };
- /**
- * Expose module registry for debugging and tooling
- */
- requirejs._defined = defined;
- define = function (name, deps, callback) {
- //This module may not have dependencies
- if (!deps.splice) {
- //deps is not an array, so probably means
- //an object literal or factory function for
- //the value. Adjust args.
- callback = deps;
- deps = [];
- }
- if (!hasProp(defined, name) && !hasProp(waiting, name)) {
- waiting[name] = [name, deps, callback];
- }
- };
- define.amd = {
- jQuery: true
- };
- }());
- define("almond", function(){});
- define('jquery',[],function () {
- return jQuery;
- });
- 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"></ul>'
- );
- this.$results = $results;
- return $results;
- };
- Results.prototype.clear = function () {
- this.$results.empty();
- };
- Results.prototype.append = function (data) {
- var $options = [];
- 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.setClasses = function () {
- var self = this;
- this.data.current(function (selected) {
- var selectedIds = $.map(selected, function (s) {
- return s.id.toString();
- });
- self.$results.find('.option.selected').removeClass('selected');
- var $options = self.$results.find('.option');
- $options.each(function () {
- var $option = $(this);
- var item = $option.data('data');
- if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
- $option.addClass('selected');
- }
- });
- });
- };
- Results.prototype.option = function (data) {
- var $option = $(
- '<li class="option highlightable selectable"></li>'
- );
- if (data.children) {
- $option.addClass('group').removeClass('highlightable selectable');
- 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.removeClass('selectable highlightable').addClass('disabled');
- }
- if (data.id == null) {
- $option.removeClass('selectable highlightable');
- }
- $option.data('data', data);
- return $option;
- };
- Results.prototype.bind = function (container, $container) {
- var self = this;
- this.on('results:all', function (data) {
- self.clear();
- self.append(data);
- self.setClasses();
- });
- this.on('results:append', function (data) {
- self.append(data);
- self.setClasses();
- });
- this.$results.on('mouseup', '.option.selectable', function (evt) {
- var $this = $(this);
- var data = $this.data('data');
- if ($this.hasClass('selected')) {
- self.trigger('unselected', {
- originalEvent: evt,
- data: data
- });
- self.setClasses();
- return;
- }
- self.trigger('selected', {
- originalEvent: evt,
- data: data
- });
- self.setClasses();
- });
- this.$results.on('mouseenter', '.option.highlightable', 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/single',[
- '../utils'
- ], function (Utils) {
- function SingleSelection ($element, options) {
- this.$element = $element;
- this.options = options;
- SingleSelection.__super__.constructor.call(this);
- }
- Utils.Extend(SingleSelection, Utils.Observable);
- SingleSelection.prototype.render = function () {
- var $selection = $(
- '<span class="single-select">' +
- '<span class="rendered-selection"></span>' +
- '</span>'
- );
- this.$selection = $selection;
- return $selection;
- };
- SingleSelection.prototype.bind = function (container, $container) {
- var self = this;
- this.$selection.on('mousedown', function (evt) {
- // Only respond to left clicks
- if (evt.which !== 1) {
- return;
- }
- self.trigger('toggle', {
- originalEvent: evt
- });
- });
- 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.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',[
- '../utils'
- ], function (Utils) {
- function MultipleSelection ($element, options) {
- this.$element = $element;
- this.options = options;
- MultipleSelection.__super__.constructor.call(this);
- }
- Utils.Extend(MultipleSelection, Utils.Observable);
- 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;
- this.$selection.on('click', function (evt) {
- self.trigger('toggle', {
- originalEvent: evt
- });
- });
- container.on('selection:update', function (params) {
- self.update(params.data);
- });
- };
- MultipleSelection.prototype.clear = function () {
- this.$selection.find('.rendered-selection').empty();
- };
- MultipleSelection.prototype.display = function (data) {
- return data.text;
- };
- 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 = $('<ul class="choice"></ul>');
- $selection.text(formatted);
- $selection.data('data', data);
- $selections.push($selection);
- }
- this.$selection.find('.rendered-selection').append($selections);
- };
- return MultipleSelection;
- });
- 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.');
- };
- 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.options.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" />' +
- '</span>'
- );
- this.$search = $search.find('input');
- $rendered.prepend($search);
- return $rendered;
- };
- Search.prototype.bind = function (decorated, container, $container) {
- decorated.call(this, container, $container);
- this.$search.on('keyup', function () {
- container.trigger('query', {
- term: $(this).val()
- });
- });
- };
- return Search;
- });
- define('select2/options',[
- './results',
- './selection/single',
- './selection/multiple',
- './utils',
- './data/select',
- './data/array',
- './data/ajax',
- './dropdown',
- './dropdown/search'
- ], function (ResultsList, SingleSelection, MultipleSelection, Utils,
- SelectData, ArrayData, AjaxData,
- Dropdown, Search) {
- function Options (options) {
- this.options = options;
- if (options.ajax) {
- this.dataAdapter = this.dataAdapter || AjaxData;
- } else if (options.data) {
- this.dataAdapter = this.dataAdapter || ArrayData;
- } else {
- this.dataAdapter = this.dataAdapter || SelectData;
- }
- var SearchableDropdown = Utils.Decorate(Dropdown, Search);
- this.resultsAdapter = ResultsList;
- this.dropdownAdapter = options.dropdownAdapter || SearchableDropdown;
- this.selectionAdapter = options.selectionAdapter;
- if (this.selectionAdapter == null) {
- if (this.options.multiple) {
- this.selectionAdapter = MultipleSelection;
- } else {
- this.selectionAdapter = SingleSelection;
- }
- }
- }
- 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
- this.data = new this.options.dataAdapter($element, this.options);
- var $container = this.render();
- this.$container = $container;
- $container.insertAfter(this.$element);
- $container.width($element.outerWidth(false));
- this.selection = new this.options.selectionAdapter($element, this.options);
- var $selectionContainer = $container.find('.selection');
- var $selection = this.selection.render();
- $selectionContainer.append($selection);
- this.dropdown = new this.options.dropdownAdapter($element, this.options);
- var $dropdownContainer = $container.find('.dropdown-wrapper');
- var $dropdown = this.dropdown.render();
- $dropdownContainer.append($dropdown);
- this.results = new this.options.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('toggle', function () {
- self.toggleDropdown();
- });
- 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.results.trigger('results:all', data);
- });
- });
- this.trigger('query', {});
- // Hide the original select
- $element.hide();
- };
- Utils.Extend(Select2, Utils.Observable);
- Select2.prototype.toggleDropdown = function () {
- if (this.$container.hasClass('open')) {
- this.trigger('close');
- } else {
- this.trigger('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;
- });
- require('jquery.select2');
|