select2.js 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631
  1. window.$ = window.$ || {};(function() { if ($ && $.fn && $.fn.select2 && $.fn.select2.amd) { define = $.fn.select2.amd.define; require = $.fn.select2.amd.require; }/**
  2. * @license almond 0.2.9 Copyright (c) 2011-2014, The Dojo Foundation All Rights Reserved.
  3. * Available via the MIT or new BSD license.
  4. * see: http://github.com/jrburke/almond for details
  5. */
  6. //Going sloppy to avoid 'use strict' string cost, but strict practices should
  7. //be followed.
  8. /*jslint sloppy: true */
  9. /*global setTimeout: false */
  10. var requirejs, require, define;
  11. (function (undef) {
  12. var main, req, makeMap, handlers,
  13. defined = {},
  14. waiting = {},
  15. config = {},
  16. defining = {},
  17. hasOwn = Object.prototype.hasOwnProperty,
  18. aps = [].slice,
  19. jsSuffixRegExp = /\.js$/;
  20. function hasProp(obj, prop) {
  21. return hasOwn.call(obj, prop);
  22. }
  23. /**
  24. * Given a relative module name, like ./something, normalize it to
  25. * a real name that can be mapped to a path.
  26. * @param {String} name the relative name
  27. * @param {String} baseName a real name that the name arg is relative
  28. * to.
  29. * @returns {String} normalized name
  30. */
  31. function normalize(name, baseName) {
  32. var nameParts, nameSegment, mapValue, foundMap, lastIndex,
  33. foundI, foundStarMap, starI, i, j, part,
  34. baseParts = baseName && baseName.split("/"),
  35. map = config.map,
  36. starMap = (map && map['*']) || {};
  37. //Adjust any relative paths.
  38. if (name && name.charAt(0) === ".") {
  39. //If have a base name, try to normalize against it,
  40. //otherwise, assume it is a top-level require that will
  41. //be relative to baseUrl in the end.
  42. if (baseName) {
  43. //Convert baseName to array, and lop off the last part,
  44. //so that . matches that "directory" and not name of the baseName's
  45. //module. For instance, baseName of "one/two/three", maps to
  46. //"one/two/three.js", but we want the directory, "one/two" for
  47. //this normalization.
  48. baseParts = baseParts.slice(0, baseParts.length - 1);
  49. name = name.split('/');
  50. lastIndex = name.length - 1;
  51. // Node .js allowance:
  52. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
  53. name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
  54. }
  55. name = baseParts.concat(name);
  56. //start trimDots
  57. for (i = 0; i < name.length; i += 1) {
  58. part = name[i];
  59. if (part === ".") {
  60. name.splice(i, 1);
  61. i -= 1;
  62. } else if (part === "..") {
  63. if (i === 1 && (name[2] === '..' || name[0] === '..')) {
  64. //End of the line. Keep at least one non-dot
  65. //path segment at the front so it can be mapped
  66. //correctly to disk. Otherwise, there is likely
  67. //no path mapping for a path starting with '..'.
  68. //This can still fail, but catches the most reasonable
  69. //uses of ..
  70. break;
  71. } else if (i > 0) {
  72. name.splice(i - 1, 2);
  73. i -= 2;
  74. }
  75. }
  76. }
  77. //end trimDots
  78. name = name.join("/");
  79. } else if (name.indexOf('./') === 0) {
  80. // No baseName, so this is ID is resolved relative
  81. // to baseUrl, pull off the leading dot.
  82. name = name.substring(2);
  83. }
  84. }
  85. //Apply map config if available.
  86. if ((baseParts || starMap) && map) {
  87. nameParts = name.split('/');
  88. for (i = nameParts.length; i > 0; i -= 1) {
  89. nameSegment = nameParts.slice(0, i).join("/");
  90. if (baseParts) {
  91. //Find the longest baseName segment match in the config.
  92. //So, do joins on the biggest to smallest lengths of baseParts.
  93. for (j = baseParts.length; j > 0; j -= 1) {
  94. mapValue = map[baseParts.slice(0, j).join('/')];
  95. //baseName segment has config, find if it has one for
  96. //this name.
  97. if (mapValue) {
  98. mapValue = mapValue[nameSegment];
  99. if (mapValue) {
  100. //Match, update name to the new value.
  101. foundMap = mapValue;
  102. foundI = i;
  103. break;
  104. }
  105. }
  106. }
  107. }
  108. if (foundMap) {
  109. break;
  110. }
  111. //Check for a star map match, but just hold on to it,
  112. //if there is a shorter segment match later in a matching
  113. //config, then favor over this star map.
  114. if (!foundStarMap && starMap && starMap[nameSegment]) {
  115. foundStarMap = starMap[nameSegment];
  116. starI = i;
  117. }
  118. }
  119. if (!foundMap && foundStarMap) {
  120. foundMap = foundStarMap;
  121. foundI = starI;
  122. }
  123. if (foundMap) {
  124. nameParts.splice(0, foundI, foundMap);
  125. name = nameParts.join('/');
  126. }
  127. }
  128. return name;
  129. }
  130. function makeRequire(relName, forceSync) {
  131. return function () {
  132. //A version of a require function that passes a moduleName
  133. //value for items that may need to
  134. //look up paths relative to the moduleName
  135. return req.apply(undef, aps.call(arguments, 0).concat([relName, forceSync]));
  136. };
  137. }
  138. function makeNormalize(relName) {
  139. return function (name) {
  140. return normalize(name, relName);
  141. };
  142. }
  143. function makeLoad(depName) {
  144. return function (value) {
  145. defined[depName] = value;
  146. };
  147. }
  148. function callDep(name) {
  149. if (hasProp(waiting, name)) {
  150. var args = waiting[name];
  151. delete waiting[name];
  152. defining[name] = true;
  153. main.apply(undef, args);
  154. }
  155. if (!hasProp(defined, name) && !hasProp(defining, name)) {
  156. throw new Error('No ' + name);
  157. }
  158. return defined[name];
  159. }
  160. //Turns a plugin!resource to [plugin, resource]
  161. //with the plugin being undefined if the name
  162. //did not have a plugin prefix.
  163. function splitPrefix(name) {
  164. var prefix,
  165. index = name ? name.indexOf('!') : -1;
  166. if (index > -1) {
  167. prefix = name.substring(0, index);
  168. name = name.substring(index + 1, name.length);
  169. }
  170. return [prefix, name];
  171. }
  172. /**
  173. * Makes a name map, normalizing the name, and using a plugin
  174. * for normalization if necessary. Grabs a ref to plugin
  175. * too, as an optimization.
  176. */
  177. makeMap = function (name, relName) {
  178. var plugin,
  179. parts = splitPrefix(name),
  180. prefix = parts[0];
  181. name = parts[1];
  182. if (prefix) {
  183. prefix = normalize(prefix, relName);
  184. plugin = callDep(prefix);
  185. }
  186. //Normalize according
  187. if (prefix) {
  188. if (plugin && plugin.normalize) {
  189. name = plugin.normalize(name, makeNormalize(relName));
  190. } else {
  191. name = normalize(name, relName);
  192. }
  193. } else {
  194. name = normalize(name, relName);
  195. parts = splitPrefix(name);
  196. prefix = parts[0];
  197. name = parts[1];
  198. if (prefix) {
  199. plugin = callDep(prefix);
  200. }
  201. }
  202. //Using ridiculous property names for space reasons
  203. return {
  204. f: prefix ? prefix + '!' + name : name, //fullName
  205. n: name,
  206. pr: prefix,
  207. p: plugin
  208. };
  209. };
  210. function makeConfig(name) {
  211. return function () {
  212. return (config && config.config && config.config[name]) || {};
  213. };
  214. }
  215. handlers = {
  216. require: function (name) {
  217. return makeRequire(name);
  218. },
  219. exports: function (name) {
  220. var e = defined[name];
  221. if (typeof e !== 'undefined') {
  222. return e;
  223. } else {
  224. return (defined[name] = {});
  225. }
  226. },
  227. module: function (name) {
  228. return {
  229. id: name,
  230. uri: '',
  231. exports: defined[name],
  232. config: makeConfig(name)
  233. };
  234. }
  235. };
  236. main = function (name, deps, callback, relName) {
  237. var cjsModule, depName, ret, map, i,
  238. args = [],
  239. callbackType = typeof callback,
  240. usingExports;
  241. //Use name if no relName
  242. relName = relName || name;
  243. //Call the callback to define the module, if necessary.
  244. if (callbackType === 'undefined' || callbackType === 'function') {
  245. //Pull out the defined dependencies and pass the ordered
  246. //values to the callback.
  247. //Default to [require, exports, module] if no deps
  248. deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
  249. for (i = 0; i < deps.length; i += 1) {
  250. map = makeMap(deps[i], relName);
  251. depName = map.f;
  252. //Fast path CommonJS standard dependencies.
  253. if (depName === "require") {
  254. args[i] = handlers.require(name);
  255. } else if (depName === "exports") {
  256. //CommonJS module spec 1.1
  257. args[i] = handlers.exports(name);
  258. usingExports = true;
  259. } else if (depName === "module") {
  260. //CommonJS module spec 1.1
  261. cjsModule = args[i] = handlers.module(name);
  262. } else if (hasProp(defined, depName) ||
  263. hasProp(waiting, depName) ||
  264. hasProp(defining, depName)) {
  265. args[i] = callDep(depName);
  266. } else if (map.p) {
  267. map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
  268. args[i] = defined[depName];
  269. } else {
  270. throw new Error(name + ' missing ' + depName);
  271. }
  272. }
  273. ret = callback ? callback.apply(defined[name], args) : undefined;
  274. if (name) {
  275. //If setting exports via "module" is in play,
  276. //favor that over return value and exports. After that,
  277. //favor a non-undefined return value over exports use.
  278. if (cjsModule && cjsModule.exports !== undef &&
  279. cjsModule.exports !== defined[name]) {
  280. defined[name] = cjsModule.exports;
  281. } else if (ret !== undef || !usingExports) {
  282. //Use the return value from the function.
  283. defined[name] = ret;
  284. }
  285. }
  286. } else if (name) {
  287. //May just be an object definition for the module. Only
  288. //worry about defining if have a module name.
  289. defined[name] = callback;
  290. }
  291. };
  292. requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
  293. if (typeof deps === "string") {
  294. if (handlers[deps]) {
  295. //callback in this case is really relName
  296. return handlers[deps](callback);
  297. }
  298. //Just return the module wanted. In this scenario, the
  299. //deps arg is the module name, and second arg (if passed)
  300. //is just the relName.
  301. //Normalize module name, if it contains . or ..
  302. return callDep(makeMap(deps, callback).f);
  303. } else if (!deps.splice) {
  304. //deps is a config object, not an array.
  305. config = deps;
  306. if (config.deps) {
  307. req(config.deps, config.callback);
  308. }
  309. if (!callback) {
  310. return;
  311. }
  312. if (callback.splice) {
  313. //callback is an array, which means it is a dependency list.
  314. //Adjust args if there are dependencies
  315. deps = callback;
  316. callback = relName;
  317. relName = null;
  318. } else {
  319. deps = undef;
  320. }
  321. }
  322. //Support require(['a'])
  323. callback = callback || function () {};
  324. //If relName is a function, it is an errback handler,
  325. //so remove it.
  326. if (typeof relName === 'function') {
  327. relName = forceSync;
  328. forceSync = alt;
  329. }
  330. //Simulate async callback;
  331. if (forceSync) {
  332. main(undef, deps, callback, relName);
  333. } else {
  334. //Using a non-zero value because of concern for what old browsers
  335. //do, and latest browsers "upgrade" to 4 if lower value is used:
  336. //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
  337. //If want a value immediately, use require('id') instead -- something
  338. //that works in almond on the global level, but not guaranteed and
  339. //unlikely to work in other AMD implementations.
  340. setTimeout(function () {
  341. main(undef, deps, callback, relName);
  342. }, 4);
  343. }
  344. return req;
  345. };
  346. /**
  347. * Just drops the config on the floor, but returns req in case
  348. * the config return value is used.
  349. */
  350. req.config = function (cfg) {
  351. return req(cfg);
  352. };
  353. /**
  354. * Expose module registry for debugging and tooling
  355. */
  356. requirejs._defined = defined;
  357. define = function (name, deps, callback) {
  358. //This module may not have dependencies
  359. if (!deps.splice) {
  360. //deps is not an array, so probably means
  361. //an object literal or factory function for
  362. //the value. Adjust args.
  363. callback = deps;
  364. deps = [];
  365. }
  366. if (!hasProp(defined, name) && !hasProp(waiting, name)) {
  367. waiting[name] = [name, deps, callback];
  368. }
  369. };
  370. define.amd = {
  371. jQuery: true
  372. };
  373. }());
  374. define("almond", function(){});
  375. define('jquery',[],function () {
  376. return jQuery;
  377. });
  378. define('select2/utils',[], function () {
  379. var Utils = {};
  380. Utils.Extend = function (ChildClass, SuperClass) {
  381. var __hasProp = {}.hasOwnProperty;
  382. function BaseConstructor () {
  383. this.constructor = ChildClass;
  384. }
  385. for (var key in SuperClass) {
  386. if (__hasProp.call(SuperClass, key)) {
  387. ChildClass[key] = SuperClass[key];
  388. }
  389. }
  390. BaseConstructor.prototype = SuperClass.prototype;
  391. ChildClass.prototype = new BaseConstructor();
  392. ChildClass.__super__ = SuperClass.prototype;
  393. return ChildClass;
  394. };
  395. function getMethods (theClass) {
  396. var proto = theClass.prototype;
  397. var methods = [];
  398. for (var methodName in proto) {
  399. var m = proto[methodName];
  400. if (typeof m !== 'function') {
  401. continue;
  402. }
  403. methods.push(methodName);
  404. }
  405. return methods;
  406. }
  407. Utils.Decorate = function (SuperClass, DecoratorClass) {
  408. var decoratedMethods = getMethods(DecoratorClass);
  409. var superMethods = getMethods(SuperClass);
  410. function DecoratedClass () {
  411. var unshift = Array.prototype.unshift;
  412. var argCount = DecoratorClass.prototype.constructor.length;
  413. var calledConstructor = SuperClass.prototype.constructor;
  414. if (argCount > 0) {
  415. unshift.call(arguments, SuperClass.prototype.constructor);
  416. calledConstructor = DecoratorClass.prototype.constructor;
  417. }
  418. calledConstructor.apply(this, arguments);
  419. }
  420. DecoratorClass.displayName = SuperClass.displayName;
  421. function ctr () {
  422. this.constructor = DecoratedClass;
  423. }
  424. DecoratedClass.prototype = new ctr();
  425. for (var m = 0; m < superMethods.length; m++) {
  426. var superMethod = superMethods[m];
  427. DecoratedClass.prototype[superMethod] =
  428. SuperClass.prototype[superMethod];
  429. }
  430. var calledMethod = function (methodName) {
  431. // Stub out the original method if it's not decorating an actual method
  432. var originalMethod = function () {};
  433. if (methodName in DecoratedClass.prototype) {
  434. originalMethod = DecoratedClass.prototype[methodName];
  435. }
  436. var decoratedMethod = DecoratorClass.prototype[methodName];
  437. return function () {
  438. var unshift = Array.prototype.unshift;
  439. unshift.call(arguments, originalMethod);
  440. return decoratedMethod.apply(this, arguments);
  441. };
  442. };
  443. for (var d = 0; d < decoratedMethods.length; d++) {
  444. var decoratedMethod = decoratedMethods[d];
  445. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  446. }
  447. return DecoratedClass;
  448. };
  449. var Observable = function () {
  450. this.listeners = {};
  451. };
  452. Observable.prototype.on = function (event, callback) {
  453. this.listeners = this.listeners || {};
  454. if (event in this.listeners) {
  455. this.listeners[event].push(callback);
  456. } else {
  457. this.listeners[event] = [callback];
  458. }
  459. };
  460. Observable.prototype.trigger = function (event) {
  461. var slice = Array.prototype.slice;
  462. this.listeners = this.listeners || {};
  463. if (event in this.listeners) {
  464. this.invoke(this.listeners[event], slice.call(arguments, 1));
  465. }
  466. if ('*' in this.listeners) {
  467. this.invoke(this.listeners['*'], arguments);
  468. }
  469. };
  470. Observable.prototype.invoke = function (listeners, params) {
  471. for (var i = 0, len = listeners.length; i < len; i++) {
  472. listeners[i].apply(this, params);
  473. }
  474. };
  475. Utils.Observable = Observable;
  476. Utils.generateChars = function (length) {
  477. var chars = '';
  478. for (var i = 0; i < length; i++) {
  479. var randomChar = Math.floor(Math.random() * 36);
  480. chars += randomChar.toString(36);
  481. }
  482. return chars;
  483. };
  484. return Utils;
  485. });
  486. define('select2/results',[
  487. './utils'
  488. ], function (Utils) {
  489. function Results ($element, options, dataAdapter) {
  490. this.$element = $element;
  491. this.data = dataAdapter;
  492. this.options = options;
  493. Results.__super__.constructor.call(this);
  494. }
  495. Utils.Extend(Results, Utils.Observable);
  496. Results.prototype.render = function () {
  497. var $results = $(
  498. '<ul class="options" role="tree"></ul>'
  499. );
  500. if (this.options.get('multiple')) {
  501. $results.attr('aria-multiselectable', 'true');
  502. }
  503. this.$results = $results;
  504. return $results;
  505. };
  506. Results.prototype.clear = function () {
  507. this.$results.empty();
  508. };
  509. Results.prototype.displayMessage = function (params) {
  510. this.clear();
  511. var $message = $('<li role="treeitem" class="option"></li>');
  512. var message = this.options.get('translations').get(params.message);
  513. $message.text(message(params.args));
  514. this.$results.append($message);
  515. };
  516. Results.prototype.append = function (data) {
  517. var $options = [];
  518. if (data.length === 0) {
  519. if (this.$results.children().length === 0) {
  520. this.trigger('results:message', {
  521. message: 'noResults'
  522. });
  523. }
  524. return;
  525. }
  526. data = this.sort(data);
  527. for (var d = 0; d < data.length; d++) {
  528. var item = data[d];
  529. var $option = this.option(item);
  530. $options.push($option);
  531. }
  532. this.$results.append($options);
  533. };
  534. Results.prototype.sort = function (data) {
  535. return data;
  536. };
  537. Results.prototype.setClasses = function () {
  538. var self = this;
  539. this.data.current(function (selected) {
  540. var selectedIds = $.map(selected, function (s) {
  541. return s.id.toString();
  542. });
  543. var $options = self.$results.find('.option[aria-selected]');
  544. $options.each(function () {
  545. var $option = $(this);
  546. var item = $option.data('data');
  547. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  548. $option.attr('aria-selected', 'true');
  549. } else {
  550. $option.attr('aria-selected', 'false');
  551. }
  552. });
  553. var $selected = $options.filter('[aria-selected=true]');
  554. // Check if there are any selected options
  555. if ($selected.length > 0) {
  556. // If there are selected options, highlight the first
  557. $selected.first().trigger('mouseenter');
  558. } else {
  559. // If there are no selected options, highlight the first option
  560. // in the dropdown
  561. $options.first().trigger('mouseenter');
  562. }
  563. });
  564. };
  565. Results.prototype.option = function (data) {
  566. var $option = $(
  567. '<li class="option" role="treeitem" aria-selected="false"></li>'
  568. );
  569. if (data.children) {
  570. $option
  571. .attr('role', 'group')
  572. .attr('aria-label', data.text)
  573. .removeAttr('aria-selected');
  574. var $label = $('<strong class="group-label"></strong>');
  575. this.template(data, $label);
  576. var $children = [];
  577. for (var c = 0; c < data.children.length; c++) {
  578. var child = data.children[c];
  579. var $child = this.option(child);
  580. $children.push($child);
  581. }
  582. var $childrenContainer = $('<ul class="options nested-options"></ul>');
  583. $childrenContainer.append($children);
  584. $option.append($label);
  585. $option.append($childrenContainer);
  586. } else {
  587. this.template(data, $option);
  588. }
  589. if (data.disabled) {
  590. $option
  591. .removeAttr('aria-selected')
  592. .attr('aria-disabled', 'true');
  593. }
  594. if (data.id == null) {
  595. $option.removeAttr('aria-selected');
  596. }
  597. if (data._resultId != null) {
  598. $option.attr('id', data._resultId);
  599. }
  600. $option.data('data', data);
  601. return $option;
  602. };
  603. Results.prototype.bind = function (container, $container) {
  604. var self = this;
  605. var id = container.id + '-results';
  606. this.$results.attr('id', id);
  607. container.on('results:all', function (params) {
  608. self.clear();
  609. self.append(params.data);
  610. if (container.isOpen()) {
  611. self.setClasses();
  612. }
  613. });
  614. container.on('results:append', function (params) {
  615. self.append(params.data);
  616. if (container.isOpen()) {
  617. self.setClasses();
  618. }
  619. });
  620. container.on('select', function () {
  621. if (!container.isOpen()) {
  622. return;
  623. }
  624. self.setClasses();
  625. });
  626. container.on('unselect', function () {
  627. if (!container.isOpen()) {
  628. return;
  629. }
  630. self.setClasses();
  631. });
  632. container.on('open', function () {
  633. // When the dropdown is open, aria-expended="true"
  634. self.$results.attr('aria-expanded', 'true');
  635. self.$results.attr('aria-hidden', 'false');
  636. self.setClasses();
  637. self.ensureHighlightVisible();
  638. });
  639. container.on('close', function () {
  640. // When the dropdown is closed, aria-expended="false"
  641. self.$results.attr('aria-expanded', 'false');
  642. self.$results.attr('aria-hidden', 'true');
  643. self.$results.removeAttr('aria-activedescendant');
  644. });
  645. container.on('results:select', function () {
  646. var $highlighted = self.$results.find('.highlighted');
  647. if ($highlighted.length === 0) {
  648. return;
  649. }
  650. var data = $highlighted.data('data');
  651. if ($highlighted.attr('aria-selected') == 'true') {
  652. self.trigger('unselected', {
  653. data: data
  654. });
  655. } else {
  656. self.trigger('selected', {
  657. data: data
  658. });
  659. }
  660. });
  661. container.on('results:previous', function () {
  662. var $highlighted = self.$results.find('.highlighted');
  663. var $options = self.$results.find('[aria-selected]');
  664. var currentIndex = $options.index($highlighted);
  665. // If we are already at te top, don't move further
  666. if (currentIndex === 0) {
  667. return;
  668. }
  669. var nextIndex = currentIndex - 1;
  670. // If none are highlighted, highlight the first
  671. if ($highlighted.length === 0) {
  672. nextIndex = 0;
  673. }
  674. var $next = $options.eq(nextIndex);
  675. $next.trigger('mouseenter');
  676. var currentOffset = self.$results.offset().top;
  677. var nextTop = $next.offset().top;
  678. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  679. if (nextIndex === 0) {
  680. self.$results.scrollTop(0);
  681. } else if (nextTop - currentOffset < 0) {
  682. self.$results.scrollTop(nextOffset);
  683. }
  684. });
  685. container.on('results:next', function () {
  686. var $highlighted = self.$results.find('.highlighted');
  687. var $options = self.$results.find('[aria-selected]');
  688. var currentIndex = $options.index($highlighted);
  689. var nextIndex = currentIndex + 1;
  690. // If we are at the last option, stay there
  691. if (nextIndex >= $options.length) {
  692. return;
  693. }
  694. var $next = $options.eq(nextIndex);
  695. $next.trigger('mouseenter');
  696. var currentOffset = self.$results.offset().top +
  697. self.$results.outerHeight(false);
  698. var nextBottom = $next.offset().top + $next.outerHeight(false);
  699. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  700. if (nextIndex === 0) {
  701. self.$results.scrollTop(0);
  702. } else if (nextBottom > currentOffset) {
  703. self.$results.scrollTop(nextOffset);
  704. }
  705. });
  706. container.on('results:focus', function (params) {
  707. params.element.addClass('highlighted');
  708. });
  709. container.on('results:message', function (params) {
  710. self.trigger('results:message', params);
  711. });
  712. this.on('results:message', function (params) {
  713. self.displayMessage(params);
  714. });
  715. this.$results.on('mouseup', '.option[aria-selected]', function (evt) {
  716. var $this = $(this);
  717. var data = $this.data('data');
  718. if ($this.attr('aria-selected') === 'true') {
  719. self.trigger('unselected', {
  720. originalEvent: evt,
  721. data: data
  722. });
  723. return;
  724. }
  725. self.trigger('selected', {
  726. originalEvent: evt,
  727. data: data
  728. });
  729. });
  730. this.$results.on('mouseenter', '.option[aria-selected]', function (evt) {
  731. var data = $(this).data('data');
  732. self.$results.find('.option.highlighted').removeClass('highlighted');
  733. self.trigger('results:focus', {
  734. data: data,
  735. element: $(this)
  736. });
  737. });
  738. this.$results.on('mouseleave', '.option', function (evt) {
  739. if ($(this).hasClass('highlighted')) {
  740. $(this).removeClass('highlighted');
  741. self.$results.removeAttr('aria-activedescendant');
  742. }
  743. });
  744. };
  745. Results.prototype.ensureHighlightVisible = function () {
  746. var $highlighted = this.$results.find('.highlighted');
  747. if ($highlighted.length === 0) {
  748. return;
  749. }
  750. var $options = this.$results.find('[aria-selected]');
  751. var currentIndex = $options.index($highlighted);
  752. var currentOffset = this.$results.offset().top;
  753. var nextTop = $highlighted.offset().top;
  754. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  755. var offsetDelta = nextTop - currentOffset;
  756. nextOffset -= $highlighted.outerHeight(false) * 2;
  757. if (currentIndex <= 2) {
  758. this.$results.scrollTop(0);
  759. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  760. this.$results.scrollTop(nextOffset);
  761. }
  762. };
  763. Results.prototype.template = function (result, $container) {
  764. var template = this.options.get('templateResult');
  765. $container.html(template(result));
  766. };
  767. return Results;
  768. });
  769. define('select2/selection/base',[
  770. '../utils'
  771. ], function (Utils) {
  772. function BaseSelection ($element, options) {
  773. this.$element = $element;
  774. this.options = options;
  775. BaseSelection.__super__.constructor.call(this);
  776. }
  777. Utils.Extend(BaseSelection, Utils.Observable);
  778. BaseSelection.prototype.render = function () {
  779. throw new Error('The `render` method must be defined in child classes.');
  780. };
  781. BaseSelection.prototype.bind = function (container, $container) {
  782. var self = this;
  783. container.on('selection:update', function (params) {
  784. self.update(params.data);
  785. });
  786. container.on('open', function () {
  787. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  788. var $target = $(e.target);
  789. var $select = $target.closest('.select2');
  790. var $all = $('.select2.open');
  791. $all.each(function () {
  792. var $this = $(this);
  793. if (this == $select[0]) {
  794. return;
  795. }
  796. var $element = $this.data('element');
  797. $element.select2('close');
  798. });
  799. });
  800. container.on('close', function () {
  801. $(document.body).off('mousedown.select2.' + container.id);
  802. });
  803. });
  804. };
  805. BaseSelection.prototype.update = function (data) {
  806. throw new Error('The `update` method must be defined in child classes.');
  807. };
  808. return BaseSelection;
  809. });
  810. define('select2/keys',[
  811. ], function () {
  812. var KEYS = {
  813. BACKSPACE: 8,
  814. TAB: 9,
  815. ENTER: 13,
  816. SHIFT: 16,
  817. CTRL: 17,
  818. ALT: 18,
  819. ESC: 27,
  820. SPACE: 32,
  821. PAGE_UP: 33,
  822. PAGE_DOWN: 34,
  823. END: 35,
  824. HOME: 36,
  825. LEFT: 37,
  826. UP: 38,
  827. RIGHT: 39,
  828. DOWN: 40,
  829. DELETE: 46,
  830. isArrow: function (k) {
  831. k = k.which ? k.which : k;
  832. switch (k) {
  833. case KEY.LEFT:
  834. case KEY.RIGHT:
  835. case KEY.UP:
  836. case KEY.DOWN:
  837. return true;
  838. }
  839. return false;
  840. }
  841. };
  842. return KEYS;
  843. });
  844. define('select2/selection/single',[
  845. './base',
  846. '../utils',
  847. '../keys'
  848. ], function (BaseSelection, Utils, KEYS) {
  849. function SingleSelection () {
  850. SingleSelection.__super__.constructor.apply(this, arguments);
  851. }
  852. Utils.Extend(SingleSelection, BaseSelection);
  853. SingleSelection.prototype.render = function () {
  854. var $selection = $(
  855. '<span class="single-select" tabindex="0" role="combobox" ' +
  856. 'aria-autocomplete="list" aria-haspopup="true" aria-expanded="false">' +
  857. '<span class="rendered-selection"></span>' +
  858. '</span>'
  859. );
  860. $selection.attr('title', this.$element.attr('title'));
  861. this.$selection = $selection;
  862. return $selection;
  863. };
  864. SingleSelection.prototype.bind = function (container, $container) {
  865. var self = this;
  866. SingleSelection.__super__.bind.apply(this, arguments);
  867. var id = container.id + '-container';
  868. var resultsId = container.id + '-results';
  869. this.$selection.find('.rendered-selection').attr('id', id);
  870. this.$selection.attr('aria-labelledby', id);
  871. this.$selection.attr('aria-owns', resultsId);
  872. this.$selection.on('mousedown', function (evt) {
  873. // Only respond to left clicks
  874. if (evt.which !== 1) {
  875. return;
  876. }
  877. self.trigger('toggle', {
  878. originalEvent: evt
  879. });
  880. });
  881. container.on('open', function () {
  882. // When the dropdown is open, aria-expanded="true"
  883. self.$selection.attr('aria-expanded', 'true');
  884. });
  885. container.on('close', function () {
  886. // When the dropdown is closed, aria-expanded="false"
  887. self.$selection.attr('aria-expanded', 'false');
  888. self.$selection.removeAttr('aria-activedescendant');
  889. self.$selection.focus();
  890. });
  891. this.$selection.on('focus', function (evt) {
  892. // User focuses on the container
  893. });
  894. this.$selection.on('blur', function (evt) {
  895. // User exits the container
  896. });
  897. this.$selection.on('keydown', function (evt) {
  898. self.trigger('keypress', evt);
  899. if (evt.which === KEYS.SPACE) {
  900. evt.preventDefault();
  901. }
  902. });
  903. container.on('results:focus', function (params) {
  904. self.$selection.attr('aria-activedescendant', params.data._resultId);
  905. });
  906. container.on('selection:update', function (params) {
  907. self.update(params.data);
  908. });
  909. };
  910. SingleSelection.prototype.clear = function () {
  911. this.$selection.find('.rendered-selection').empty();
  912. };
  913. SingleSelection.prototype.display = function (data) {
  914. var template = this.options.get('templateSelection');
  915. return template(data);
  916. };
  917. SingleSelection.prototype.selectionContainer = function () {
  918. return $('<span></span>');
  919. };
  920. SingleSelection.prototype.update = function (data) {
  921. if (data.length === 0) {
  922. this.clear();
  923. return;
  924. }
  925. var selection = data[0];
  926. var formatted = this.display(selection);
  927. this.$selection.find('.rendered-selection').html(formatted);
  928. };
  929. return SingleSelection;
  930. });
  931. define('select2/selection/multiple',[
  932. './base',
  933. '../utils'
  934. ], function (BaseSelection, Utils) {
  935. function MultipleSelection ($element, options) {
  936. MultipleSelection.__super__.constructor.apply(this, arguments);
  937. }
  938. Utils.Extend(MultipleSelection, BaseSelection);
  939. MultipleSelection.prototype.render = function () {
  940. var $selection = $(
  941. '<span class="multiple-select">' +
  942. '<ul class="rendered-selection"></ul>' +
  943. '</span>'
  944. );
  945. this.$selection = $selection;
  946. return $selection;
  947. };
  948. MultipleSelection.prototype.bind = function (container, $container) {
  949. var self = this;
  950. MultipleSelection.__super__.bind.apply(this, arguments);
  951. this.$selection.on('click', function (evt) {
  952. self.trigger('toggle', {
  953. originalEvent: evt
  954. });
  955. });
  956. this.$selection.on('click', '.remove', function (evt) {
  957. var $remove = $(this);
  958. var $selection = $remove.parent();
  959. var data = $selection.data('data');
  960. self.trigger('unselected', {
  961. originalEvent: evt,
  962. data: data
  963. });
  964. });
  965. };
  966. MultipleSelection.prototype.clear = function () {
  967. this.$selection.find('.rendered-selection').empty();
  968. };
  969. MultipleSelection.prototype.display = function (data) {
  970. var template = this.options.get('templateSelection');
  971. return template(data);
  972. };
  973. MultipleSelection.prototype.selectionContainer = function () {
  974. var $container = $(
  975. '<li class="choice">' +
  976. '<span class="remove" role="presentation">&times;</span>' +
  977. '</li>'
  978. );
  979. return $container;
  980. };
  981. MultipleSelection.prototype.update = function (data) {
  982. this.clear();
  983. if (data.length === 0) {
  984. return;
  985. }
  986. var $selections = [];
  987. for (var d = 0; d < data.length; d++) {
  988. var selection = data[d];
  989. var formatted = this.display(selection);
  990. var $selection = this.selectionContainer();
  991. $selection.append(formatted);
  992. $selection.data('data', selection);
  993. $selections.push($selection);
  994. }
  995. this.$selection.find('.rendered-selection').append($selections);
  996. };
  997. return MultipleSelection;
  998. });
  999. define('select2/selection/placeholder',[
  1000. '../utils'
  1001. ], function (Utils) {
  1002. function Placeholder (decorated, $element, options) {
  1003. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1004. decorated.call(this, $element, options);
  1005. }
  1006. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1007. if (typeof placeholder === 'string') {
  1008. placeholder = {
  1009. id: '',
  1010. text: placeholder
  1011. };
  1012. }
  1013. return placeholder;
  1014. };
  1015. Placeholder.prototype.update = function (decorated, data) {
  1016. var singlePlaceholder = (
  1017. data.length == 1 && data[0].id != this.placeholder.id
  1018. );
  1019. var multipleSelections = data.length > 1;
  1020. if (multipleSelections || singlePlaceholder) {
  1021. return decorated.call(this, data);
  1022. }
  1023. this.clear();
  1024. var $placeholder = this.selectionContainer();
  1025. $placeholder.html(this.display(this.placeholder));
  1026. $placeholder.addClass('placeholder').removeClass('choice');
  1027. this.$selection.find('.rendered-selection').append($placeholder);
  1028. };
  1029. return Placeholder;
  1030. });
  1031. define('select2/translation',[
  1032. ], function () {
  1033. function Translation (dict) {
  1034. this.dict = dict || {};
  1035. }
  1036. Translation.prototype.all = function () {
  1037. return this.dict;
  1038. };
  1039. Translation.prototype.get = function (key) {
  1040. return this.dict[key];
  1041. };
  1042. Translation.prototype.extend = function (translation) {
  1043. this.dict = $.extend({}, translation.all(), this.dict);
  1044. };
  1045. // Static functions
  1046. Translation._cache = {};
  1047. Translation.loadPath = function (path) {
  1048. if (!(path in Translation._cache)) {
  1049. var translations = require(path);
  1050. Translation._cache[path] = translations;
  1051. }
  1052. return new Translation(Translation._cache[path]);
  1053. };
  1054. return Translation;
  1055. });
  1056. define('select2/data/base',[
  1057. '../utils'
  1058. ], function (Utils) {
  1059. function BaseAdapter ($element, options) {
  1060. BaseAdapter.__super__.constructor.call(this);
  1061. }
  1062. Utils.Extend(BaseAdapter, Utils.Observable);
  1063. BaseAdapter.prototype.current = function (callback) {
  1064. throw new Error('The `current` method must be defined in child classes.');
  1065. };
  1066. BaseAdapter.prototype.query = function (params, callback) {
  1067. throw new Error('The `query` method must be defined in child classes.');
  1068. };
  1069. BaseAdapter.prototype.bind = function (container, $container) {
  1070. // Can be implemented in subclasses
  1071. };
  1072. BaseAdapter.prototype.generateResultId = function (container, data) {
  1073. var id = container.id + '-result-';
  1074. id += Utils.generateChars(4);
  1075. if (data.id != null) {
  1076. id += '-' + data.id.toString();
  1077. } else {
  1078. id += '-' + Utils.generateChars(4);
  1079. }
  1080. return id;
  1081. };
  1082. return BaseAdapter;
  1083. });
  1084. define('select2/data/select',[
  1085. './base',
  1086. '../utils',
  1087. 'jquery'
  1088. ], function (BaseAdapter, Utils, $) {
  1089. function SelectAdapter ($element, options) {
  1090. this.$element = $element;
  1091. this.options = options;
  1092. SelectAdapter.__super__.constructor.call(this);
  1093. }
  1094. Utils.Extend(SelectAdapter, BaseAdapter);
  1095. SelectAdapter.prototype.current = function (callback) {
  1096. var data = [];
  1097. var self = this;
  1098. this.$element.find(':selected').each(function () {
  1099. var $option = $(this);
  1100. var option = self.item($option);
  1101. data.push(option);
  1102. });
  1103. callback(data);
  1104. };
  1105. SelectAdapter.prototype.select = function (data) {
  1106. var self = this;
  1107. if (this.$element.prop('multiple')) {
  1108. this.current(function (currentData) {
  1109. var val = [];
  1110. data = [data];
  1111. data.push.apply(data, currentData);
  1112. for (var d = 0; d < data.length; d++) {
  1113. id = data[d].id;
  1114. if (val.indexOf(id) === -1) {
  1115. val.push(id);
  1116. }
  1117. }
  1118. self.$element.val(val);
  1119. self.$element.trigger('change');
  1120. });
  1121. } else {
  1122. var val = data.id;
  1123. this.$element.val(val);
  1124. this.$element.trigger('change');
  1125. }
  1126. };
  1127. SelectAdapter.prototype.unselect = function (data) {
  1128. var self = this;
  1129. if (!this.$element.prop('multiple')) {
  1130. return;
  1131. }
  1132. this.current(function (currentData) {
  1133. var val = [];
  1134. for (var d = 0; d < currentData.length; d++) {
  1135. id = currentData[d].id;
  1136. if (id !== data.id && val.indexOf(id) === -1) {
  1137. val.push(id);
  1138. }
  1139. }
  1140. self.$element.val(val);
  1141. self.$element.trigger('change');
  1142. });
  1143. };
  1144. SelectAdapter.prototype.bind = function (container, $container) {
  1145. var self = this;
  1146. this.container = container;
  1147. container.on('select', function (params) {
  1148. self.select(params.data);
  1149. });
  1150. container.on('unselect', function (params) {
  1151. self.unselect(params.data);
  1152. });
  1153. };
  1154. SelectAdapter.prototype.query = function (params, callback) {
  1155. var data = [];
  1156. var self = this;
  1157. var $options = this.$element.children();
  1158. $options.each(function () {
  1159. var $option = $(this);
  1160. if (!$option.is('option') && !$option.is('optgroup')) {
  1161. return;
  1162. }
  1163. var option = self.item($option);
  1164. var matches = self.matches(params, option);
  1165. if (matches !== null) {
  1166. data.push(matches);
  1167. }
  1168. });
  1169. callback(data);
  1170. };
  1171. SelectAdapter.prototype.option = function (data) {
  1172. var $option = $('<option></option>');
  1173. $option.text(data.text);
  1174. $option.val(data.id);
  1175. $option.prop('disabled', data.disabled || false);
  1176. // Get any automatically generated data values
  1177. var detectedData = this.item($option);
  1178. // Merge it with the already present data
  1179. var combinedData = $.extend({}, data, detectedData);
  1180. // Override the option's data with the combined data
  1181. $option.data('data', combinedData);
  1182. return $option;
  1183. };
  1184. SelectAdapter.prototype.item = function ($option) {
  1185. var data = $option.data('data');
  1186. // If the data has already be generated, use it
  1187. if (data == null) {
  1188. if ($option.is('option')) {
  1189. data = {
  1190. id: $option.val(),
  1191. text: $option.html(),
  1192. disabled: $option.prop('disabled')
  1193. };
  1194. } else if ($option.is('optgroup')) {
  1195. data = {
  1196. text: $option.attr('label'),
  1197. children: []
  1198. };
  1199. var $children = $option.children('option');
  1200. var children = [];
  1201. for (var c = 0; c < $children.length; c++) {
  1202. var $child = $($children[c]);
  1203. var child = this.item($child);
  1204. children.push(child);
  1205. }
  1206. data.children = children;
  1207. }
  1208. if (data.id && this.container != null) {
  1209. data._resultId = this.generateResultId(this.container, data);
  1210. }
  1211. $option.data('data', data);
  1212. }
  1213. return data;
  1214. };
  1215. SelectAdapter.prototype.matches = function (params, data) {
  1216. var matcher = this.options.get('matcher');
  1217. return matcher(params, data);
  1218. };
  1219. return SelectAdapter;
  1220. });
  1221. define('select2/data/array',[
  1222. './select',
  1223. '../utils',
  1224. 'jquery'
  1225. ], function (SelectAdapter, Utils, $) {
  1226. function ArrayAdapter ($element, options) {
  1227. this.data = options.get('data');
  1228. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1229. }
  1230. Utils.Extend(ArrayAdapter, SelectAdapter);
  1231. ArrayAdapter.prototype.select = function (data) {
  1232. var self = this;
  1233. this.$element.find('option').each(function () {
  1234. var $option = $(this);
  1235. var option = self.item($option);
  1236. if (option.id == data.id.toString()) {
  1237. $option.remove();
  1238. }
  1239. });
  1240. var $option = this.option(data);
  1241. this.$element.append($option);
  1242. ArrayAdapter.__super__.select.call(this, data);
  1243. };
  1244. ArrayAdapter.prototype.query = function (params, callback) {
  1245. var matches = [];
  1246. var self = this;
  1247. $.each(this.data, function () {
  1248. var option = this;
  1249. if (self.matches(params, option)) {
  1250. matches.push(option);
  1251. }
  1252. });
  1253. callback(matches);
  1254. };
  1255. return ArrayAdapter;
  1256. });
  1257. define('select2/data/ajax',[
  1258. './array',
  1259. '../utils',
  1260. 'jquery'
  1261. ], function (ArrayAdapter, Utils, $) {
  1262. function AjaxAdapter ($element, options) {
  1263. this.ajaxOptions = options.get('ajax');
  1264. if (this.ajaxOptions.processResults != null) {
  1265. this.processResults = this.ajaxOptions.processResults;
  1266. }
  1267. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1268. }
  1269. Utils.Extend(AjaxAdapter, ArrayAdapter);
  1270. AjaxAdapter.prototype.processResults = function (results) {
  1271. return results;
  1272. };
  1273. AjaxAdapter.prototype.query = function (params, callback) {
  1274. var matches = [];
  1275. var self = this;
  1276. var options = $.extend({
  1277. type: 'GET'
  1278. }, this.ajaxOptions);
  1279. if (typeof options.url === 'function') {
  1280. options.url = options.url(params);
  1281. }
  1282. if (typeof options.data === 'function') {
  1283. options.data = options.data(params);
  1284. }
  1285. function request () {
  1286. var $request = $.ajax(options);
  1287. $request.success(function (data) {
  1288. var results = self.processResults(data);
  1289. callback(results);
  1290. });
  1291. }
  1292. if (this.ajaxOptions.delay && params.term !== '') {
  1293. if (this._queryTimeout) {
  1294. window.clearTimeout(this._queryTimeout);
  1295. }
  1296. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  1297. } else {
  1298. request();
  1299. }
  1300. };
  1301. return AjaxAdapter;
  1302. });
  1303. define('select2/data/tags',[
  1304. ], function () {
  1305. function Tags (decorated, $element, options) {
  1306. var tags = options.get('tags');
  1307. decorated.call(this, $element, options);
  1308. }
  1309. Tags.prototype.query = function (decorated, params, callback) {
  1310. var self = this;
  1311. this._removeOldTags();
  1312. if (params.term == null || params.term === '' || params.page != null) {
  1313. decorated.call(this, params, callback);
  1314. return;
  1315. }
  1316. function wrapper (data, child) {
  1317. for (var i = 0; i < data.length; i++) {
  1318. var option = data[i];
  1319. var checkChildren = (
  1320. option.children != null && !wrapper(option.children, true)
  1321. );
  1322. var checkText = option.text === params.term;
  1323. if (checkText || checkChildren) {
  1324. if (child) {
  1325. return false;
  1326. }
  1327. callback(data);
  1328. return;
  1329. }
  1330. }
  1331. if (child) {
  1332. return true;
  1333. }
  1334. var tag = self.createTag(params);
  1335. var $option = self.option(tag);
  1336. $option.attr('data-select2-tag', true);
  1337. self.$element.append($option);
  1338. self.insertTag(data, tag);
  1339. callback(data);
  1340. }
  1341. decorated.call(this, params, wrapper);
  1342. };
  1343. Tags.prototype.createTag = function (decorated, params) {
  1344. return {
  1345. id: params.term,
  1346. text: params.term
  1347. };
  1348. };
  1349. Tags.prototype.insertTag = function (_, data, tag) {
  1350. data.unshift(tag);
  1351. };
  1352. Tags.prototype._removeOldTags = function (_) {
  1353. var tag = this._lastTag;
  1354. var $options = this.$element.find('option[data-select2-tag]');
  1355. $options.each(function () {
  1356. if (this.selected) {
  1357. return;
  1358. }
  1359. $(this).remove();
  1360. });
  1361. };
  1362. return Tags;
  1363. });
  1364. define('select2/data/minimumInputLength',[
  1365. ], function () {
  1366. function MinimumInputLength (decorated, $e, options) {
  1367. this.minimumInputLength = options.get('minimumInputLength');
  1368. decorated.call(this, $e, options);
  1369. }
  1370. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  1371. params.term = params.term || '';
  1372. if (params.term.length < this.minimumInputLength) {
  1373. this.trigger('results:message', {
  1374. message: 'inputTooShort',
  1375. args: {
  1376. minimum: this.minimumInputLength,
  1377. input: params.term,
  1378. params: params
  1379. }
  1380. });
  1381. return;
  1382. }
  1383. decorated.call(this, params, callback);
  1384. };
  1385. return MinimumInputLength;
  1386. });
  1387. define('select2/dropdown',[
  1388. './utils'
  1389. ], function (Utils) {
  1390. function Dropdown ($element, options) {
  1391. this.$element = $element;
  1392. }
  1393. Utils.Extend(Dropdown, Utils.Observable);
  1394. Dropdown.prototype.render = function () {
  1395. var $dropdown = $(
  1396. '<span class="dropdown">' +
  1397. '<span class="results"></span>' +
  1398. '</span>'
  1399. );
  1400. return $dropdown;
  1401. };
  1402. Dropdown.prototype.bind = function (container, $container) {
  1403. // Can be implemented in subclasses
  1404. };
  1405. return Dropdown;
  1406. });
  1407. define('select2/dropdown/search',[
  1408. '../utils'
  1409. ], function (Utils) {
  1410. function Search () { }
  1411. Search.prototype.render = function (decorated) {
  1412. var $rendered = decorated.call(this);
  1413. var $search = $(
  1414. '<span class="search">' +
  1415. '<input type="search" name="search" tabindex="-1" role="textbox" />' +
  1416. '</span>'
  1417. );
  1418. this.$searchContainer = $search;
  1419. this.$search = $search.find('input');
  1420. $rendered.prepend($search);
  1421. return $rendered;
  1422. };
  1423. Search.prototype.bind = function (decorated, container, $container) {
  1424. var self = this;
  1425. decorated.call(this, container, $container);
  1426. this.$search.on('keydown', function (evt) {
  1427. self.trigger('keypress', evt);
  1428. self._keyUpPrevented = evt.isDefaultPrevented();
  1429. });
  1430. this.$search.on('keyup', function (evt) {
  1431. self.handleSearch(evt);
  1432. });
  1433. container.on('open', function () {
  1434. self.$search.attr('tabindex', 0);
  1435. });
  1436. container.on('close', function () {
  1437. self.$search.attr('tabindex', -1);
  1438. self.$search.val('');
  1439. });
  1440. container.on('results:all', function (params) {
  1441. if (params.query.term == null || params.query.term === '') {
  1442. var showSearch = self.showSearch(params);
  1443. if (showSearch) {
  1444. self.$searchContainer.show();
  1445. } else {
  1446. self.$searchContainer.hide();
  1447. }
  1448. }
  1449. });
  1450. };
  1451. Search.prototype.handleSearch = function (evt) {
  1452. if (!this._keyUpPrevented) {
  1453. var input = this.$search.val();
  1454. this.trigger('query', {
  1455. term: input
  1456. });
  1457. }
  1458. this._keyUpPrevented = false;
  1459. };
  1460. Search.prototype.showSearch = function (_, params) {
  1461. return true;
  1462. };
  1463. return Search;
  1464. });
  1465. define('select2/dropdown/hidePlaceholder',[
  1466. ], function () {
  1467. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  1468. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1469. decorated.call(this, $element, options, dataAdapter);
  1470. }
  1471. HidePlaceholder.prototype.append = function (decorated, data) {
  1472. data = this.removePlaceholder(data);
  1473. decorated.call(this, data);
  1474. };
  1475. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1476. if (typeof placeholder === 'string') {
  1477. placeholder = {
  1478. id: '',
  1479. text: placeholder
  1480. };
  1481. }
  1482. return placeholder;
  1483. };
  1484. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  1485. var modifiedData = data.slice(0);
  1486. for (var d = data.length - 1; d >= 0; d--) {
  1487. var item = data[d];
  1488. if (this.placeholder.id === item.id) {
  1489. modifiedData.splice(d, 1);
  1490. }
  1491. }
  1492. return modifiedData;
  1493. };
  1494. return HidePlaceholder;
  1495. });
  1496. define('select2/dropdown/infiniteScroll',[
  1497. 'jquery'
  1498. ], function ($) {
  1499. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  1500. this.lastParams = {};
  1501. decorated.call(this, $element, options, dataAdapter);
  1502. this.$loadingMore = this.createLoadingMore();
  1503. this.loading = false;
  1504. }
  1505. InfiniteScroll.prototype.append = function (decorated, data) {
  1506. this.$loadingMore.remove();
  1507. decorated.call(this, data);
  1508. if (data.length > 0) {
  1509. this.$results.append(this.$loadingMore);
  1510. }
  1511. this.loading = false;
  1512. };
  1513. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  1514. var self = this;
  1515. decorated.call(this, container, $container);
  1516. container.on('query', function (params) {
  1517. self.lastParams = params;
  1518. self.loading = true;
  1519. });
  1520. container.on('query:append', function (params) {
  1521. self.lastParams = params;
  1522. self.loading = true;
  1523. });
  1524. this.$results.on('scroll', function () {
  1525. var loadMoreVisible = $.contains(
  1526. document.documentElement,
  1527. self.$loadingMore[0]
  1528. );
  1529. if (self.loading || !loadMoreVisible) {
  1530. return;
  1531. }
  1532. var currentOffset = self.$results.offset().top +
  1533. self.$results.outerHeight(false);
  1534. var loadingMoreOffset = self.$loadingMore.offset().top +
  1535. self.$loadingMore.outerHeight(false);
  1536. if (currentOffset + 50 >= loadingMoreOffset) {
  1537. self.loadMore();
  1538. }
  1539. });
  1540. };
  1541. InfiniteScroll.prototype.loadMore = function () {
  1542. this.loading = true;
  1543. var params = $.extend({}, {page: 1}, this.lastParams);
  1544. params.page++;
  1545. this.trigger('query:append', params);
  1546. };
  1547. InfiniteScroll.prototype.createLoadingMore = function () {
  1548. var $option = $(
  1549. '<li class="option load-more" role="treeitem"></li>'
  1550. );
  1551. var message = this.options.get('translations').get('loadingMore');
  1552. $option.html(message(this.lastParams));
  1553. return $option;
  1554. };
  1555. return InfiniteScroll;
  1556. });
  1557. define('select2/i18n/en',[],function () {
  1558. return {
  1559. inputTooShort: function (args) {
  1560. var remainingChars = args.minimum - args.input.length;
  1561. var message = 'Please enter ' + remainingChars + ' or more character';
  1562. if (remainingChars != 1) {
  1563. message += 's';
  1564. }
  1565. return message;
  1566. },
  1567. loadingMore: function () {
  1568. return 'Loading more results…';
  1569. },
  1570. noResults: function () {
  1571. return 'No results found';
  1572. }
  1573. };
  1574. });
  1575. define('select2/defaults',[
  1576. 'jquery',
  1577. './results',
  1578. './selection/single',
  1579. './selection/multiple',
  1580. './selection/placeholder',
  1581. './utils',
  1582. './translation',
  1583. './data/select',
  1584. './data/array',
  1585. './data/ajax',
  1586. './data/tags',
  1587. './data/minimumInputLength',
  1588. './dropdown',
  1589. './dropdown/search',
  1590. './dropdown/hidePlaceholder',
  1591. './dropdown/infiniteScroll',
  1592. './i18n/en'
  1593. ], function ($, ResultsList,
  1594. SingleSelection, MultipleSelection, Placeholder,
  1595. Utils, Translation,
  1596. SelectData, ArrayData, AjaxData, Tags, MinimumInputLength,
  1597. Dropdown, Search, HidePlaceholder, InfiniteScroll,
  1598. EnglishTranslation) {
  1599. function Defaults () {
  1600. this.reset();
  1601. }
  1602. Defaults.prototype.apply = function (options) {
  1603. options = $.extend({}, this.defaults, options);
  1604. if (options.dataAdapter == null) {
  1605. if (options.ajax != null) {
  1606. options.dataAdapter = AjaxData;
  1607. } else if (options.data != null) {
  1608. options.dataAdapter = ArrayData;
  1609. } else {
  1610. options.dataAdapter = SelectData;
  1611. }
  1612. }
  1613. if (options.minimumInputLength > 0) {
  1614. options.dataAdapter = Utils.Decorate(
  1615. options.dataAdapter,
  1616. MinimumInputLength
  1617. );
  1618. }
  1619. if (options.tags != null) {
  1620. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  1621. }
  1622. if (options.resultsAdapter == null) {
  1623. options.resultsAdapter = ResultsList;
  1624. if (options.ajax != null) {
  1625. options.resultsAdapter = Utils.Decorate(
  1626. options.resultsAdapter,
  1627. InfiniteScroll
  1628. );
  1629. }
  1630. if (options.placeholder != null) {
  1631. options.resultsAdapter = Utils.Decorate(
  1632. options.resultsAdapter,
  1633. HidePlaceholder
  1634. );
  1635. }
  1636. }
  1637. if (options.dropdownAdapter == null) {
  1638. var SearchableDropdown = Utils.Decorate(Dropdown, Search);
  1639. options.dropdownAdapter = SearchableDropdown;
  1640. }
  1641. if (options.selectionAdapter == null) {
  1642. if (options.multiple) {
  1643. options.selectionAdapter = MultipleSelection;
  1644. } else {
  1645. options.selectionAdapter = SingleSelection;
  1646. }
  1647. // Add the placeholder mixin if a placeholder was specified
  1648. if (options.placeholder != null) {
  1649. options.selectionAdapter = Utils.Decorate(
  1650. options.selectionAdapter,
  1651. Placeholder
  1652. );
  1653. }
  1654. }
  1655. if (typeof options.language === 'string') {
  1656. options.language = [options.language];
  1657. }
  1658. if ($.isArray(options.language)) {
  1659. var languages = new Translation();
  1660. var languageNames = options.language.concat(this.defaults.language);
  1661. for (var l = 0; l < languageNames.length; l++) {
  1662. var name = languageNames[l];
  1663. var language = {};
  1664. try {
  1665. // Try to load it with the original name
  1666. language = Translation.loadPath(name);
  1667. } catch (e) {
  1668. // If we couldn't load it, check if it wasn't the full path
  1669. name = 'select2/i18n/' + name;
  1670. language = Translation.loadPath(name);
  1671. }
  1672. languages.extend(language);
  1673. }
  1674. options.translations = languages;
  1675. } else {
  1676. options.translations = new Translations(options.language);
  1677. }
  1678. return options;
  1679. };
  1680. Defaults.prototype.reset = function () {
  1681. function matcher (params, data) {
  1682. var match = $.extend(true, {}, data);
  1683. if (data.children) {
  1684. for (var c = data.children.length - 1; c >= 0; c--) {
  1685. var child = data.children[c];
  1686. var matches = matcher(params, child);
  1687. // If there wasn't a match, remove the object in the array
  1688. if (matches === null) {
  1689. match.children.splice(c, 1);
  1690. }
  1691. }
  1692. if (match.children.length > 0) {
  1693. return match;
  1694. }
  1695. }
  1696. if ($.trim(params.term) === '') {
  1697. return match;
  1698. }
  1699. if (data.text.toUpperCase().indexOf(params.term.toUpperCase()) > -1) {
  1700. return match;
  1701. }
  1702. return null;
  1703. }
  1704. this.defaults = {
  1705. language: ['select2/i18n/en'],
  1706. matcher: matcher,
  1707. minimumInputLength: 0,
  1708. templateResult: function (result) {
  1709. return result.text;
  1710. },
  1711. templateSelection: function (selection) {
  1712. return selection.text;
  1713. }
  1714. };
  1715. };
  1716. var defaults = new Defaults();
  1717. return defaults;
  1718. });
  1719. define('select2/options',[
  1720. './defaults'
  1721. ], function (Defaults) {
  1722. function Options (options, $element) {
  1723. this.options = options;
  1724. if ($element != null) {
  1725. this.fromElement($element);
  1726. }
  1727. this.options = Defaults.apply(this.options);
  1728. }
  1729. Options.prototype.fromElement = function ($e) {
  1730. if (this.options.multiple == null) {
  1731. this.options.multiple = $e.prop('multiple');
  1732. }
  1733. return this;
  1734. };
  1735. Options.prototype.get = function (key) {
  1736. return this.options[key];
  1737. };
  1738. Options.prototype.set = function (key, val) {
  1739. this.options[key] = val;
  1740. };
  1741. return Options;
  1742. });
  1743. define('select2/core',[
  1744. 'jquery',
  1745. './options',
  1746. './utils',
  1747. './keys'
  1748. ], function ($, Options, Utils, KEYS) {
  1749. var Select2 = function ($element, options) {
  1750. this.$element = $element;
  1751. this.id = this._generateId($element);
  1752. options = options || {};
  1753. this.options = new Options(options, $element);
  1754. Select2.__super__.constructor.call(this);
  1755. // Set up containers and adapters
  1756. var DataAdapter = this.options.get('dataAdapter');
  1757. this.data = new DataAdapter($element, this.options);
  1758. var $container = this.render();
  1759. this._placeContainer($container);
  1760. var SelectionAdapter = this.options.get('selectionAdapter');
  1761. this.selection = new SelectionAdapter($element, this.options);
  1762. var $selection = this.selection.render();
  1763. this._placeSelection($selection);
  1764. var DropdownAdapter = this.options.get('dropdownAdapter');
  1765. this.dropdown = new DropdownAdapter($element, this.options);
  1766. var $dropdown = this.dropdown.render();
  1767. this._placeDropdown($dropdown);
  1768. var ResultsAdapter = this.options.get('resultsAdapter');
  1769. this.results = new ResultsAdapter($element, this.options, this.data);
  1770. var $results = this.results.render();
  1771. this._placeResults($results);
  1772. // Bind events
  1773. var self = this;
  1774. // Bind the container to all of the adapters
  1775. this._bindAdapters();
  1776. // Register any DOM event handlers
  1777. this._registerDomEvents();
  1778. // Register any internal event handlers
  1779. this._registerDataEvents();
  1780. this._registerSelectionEvents();
  1781. this._registerDropdownEvents();
  1782. this._registerResultsEvents();
  1783. this._registerEvents();
  1784. // Set the initial state
  1785. this.data.current(function (initialData) {
  1786. self.trigger('selection:update', {
  1787. data: initialData
  1788. });
  1789. });
  1790. // Hide the original select
  1791. $element.hide();
  1792. $element.attr('tabindex', '-1');
  1793. $element.data('select2', this);
  1794. };
  1795. Utils.Extend(Select2, Utils.Observable);
  1796. Select2.prototype._generateId = function ($element) {
  1797. var id = '';
  1798. if ($element.attr('id') != null) {
  1799. id = $element.attr('id');
  1800. } else if ($element.attr('name') != null) {
  1801. id = $element.attr('name') + '-' + Utils.generateChars(2);
  1802. } else {
  1803. id = Utils.generateChars(4);
  1804. }
  1805. id = 'select2-' + id;
  1806. return id;
  1807. };
  1808. Select2.prototype._placeContainer = function ($container) {
  1809. $container.insertAfter(this.$element);
  1810. $container.width(this.$element.outerWidth(false));
  1811. };
  1812. Select2.prototype._placeSelection = function ($selection) {
  1813. var $selectionContainer = this.$container.find('.selection');
  1814. $selectionContainer.append($selection);
  1815. };
  1816. Select2.prototype._placeDropdown = function ($dropdown) {
  1817. this.$dropdown = $dropdown;
  1818. var $dropdownContainer = this.$container.find('.dropdown-wrapper');
  1819. $dropdownContainer.append($dropdown);
  1820. };
  1821. Select2.prototype._placeResults = function ($results) {
  1822. var $resultsContainer = this.$dropdown.find('.results');
  1823. $resultsContainer.append($results);
  1824. };
  1825. Select2.prototype._bindAdapters = function () {
  1826. this.data.bind(this, this.$container);
  1827. this.selection.bind(this, this.$container);
  1828. this.dropdown.bind(this, this.$container);
  1829. this.results.bind(this, this.$container);
  1830. };
  1831. Select2.prototype._registerDomEvents = function () {
  1832. var self = this;
  1833. this.$element.on('change', function () {
  1834. self.data.current(function (data) {
  1835. self.trigger('selection:update', {
  1836. data: data
  1837. });
  1838. });
  1839. });
  1840. };
  1841. Select2.prototype._registerDataEvents = function () {
  1842. var self = this;
  1843. this.data.on('results:message', function (params) {
  1844. self.trigger('results:message', params);
  1845. });
  1846. };
  1847. Select2.prototype._registerSelectionEvents = function () {
  1848. var self = this;
  1849. this.selection.on('open', function () {
  1850. self.open();
  1851. });
  1852. this.selection.on('close', function () {
  1853. self.close();
  1854. });
  1855. this.selection.on('toggle', function () {
  1856. self.toggleDropdown();
  1857. });
  1858. this.selection.on('results:select', function () {
  1859. self.trigger('results:select');
  1860. });
  1861. this.selection.on('results:previous', function () {
  1862. self.trigger('results:previous');
  1863. });
  1864. this.selection.on('results:next', function () {
  1865. self.trigger('results:next');
  1866. });
  1867. this.selection.on('unselected', function (params) {
  1868. self.trigger('unselect', params);
  1869. self.close();
  1870. });
  1871. this.selection.on('keypress', function (e) {
  1872. self.trigger('keypress', e);
  1873. });
  1874. };
  1875. Select2.prototype._registerDropdownEvents = function () {
  1876. var self = this;
  1877. this.dropdown.on('query', function (params) {
  1878. self.trigger('query', params);
  1879. });
  1880. this.dropdown.on('keypress', function (e) {
  1881. self.trigger('keypress', e);
  1882. });
  1883. };
  1884. Select2.prototype._registerResultsEvents = function () {
  1885. var self = this;
  1886. this.results.on('query:append', function (params) {
  1887. self.trigger('query:append', params);
  1888. });
  1889. this.results.on('selected', function (params) {
  1890. self.trigger('select', params);
  1891. self.close();
  1892. });
  1893. this.results.on('unselected', function (params) {
  1894. self.trigger('unselect', params);
  1895. self.close();
  1896. });
  1897. this.results.on('results:focus', function (params) {
  1898. self.trigger('results:focus', params);
  1899. });
  1900. };
  1901. Select2.prototype._registerEvents = function () {
  1902. var self = this;
  1903. this.on('open', function () {
  1904. self.$container.addClass('open');
  1905. });
  1906. this.on('close', function () {
  1907. self.$container.removeClass('open');
  1908. });
  1909. this.on('query', function (params) {
  1910. this.data.query(params, function (data) {
  1911. self.trigger('results:all', {
  1912. data: data,
  1913. query: params
  1914. });
  1915. });
  1916. });
  1917. this.on('query:append', function (params) {
  1918. this.data.query(params, function (data) {
  1919. self.trigger('results:append', {
  1920. data: data,
  1921. query: params
  1922. });
  1923. });
  1924. });
  1925. this.on('keypress', function (evt) {
  1926. var key = evt.which;
  1927. if (self.isOpen()) {
  1928. if (key === KEYS.ENTER) {
  1929. self.trigger('results:select');
  1930. evt.preventDefault();
  1931. } else if (key === KEYS.UP) {
  1932. self.trigger('results:previous');
  1933. evt.preventDefault();
  1934. } else if (key === KEYS.DOWN) {
  1935. self.trigger('results:next');
  1936. evt.preventDefault();
  1937. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  1938. self.close();
  1939. evt.preventDefault();
  1940. }
  1941. } else {
  1942. if (key === KEYS.ENTER || key === KEYS.SPACE) {
  1943. self.open();
  1944. evt.preventDefault();
  1945. }
  1946. }
  1947. });
  1948. };
  1949. Select2.prototype.toggleDropdown = function () {
  1950. if (this.isOpen()) {
  1951. this.close();
  1952. } else {
  1953. this.open();
  1954. }
  1955. };
  1956. Select2.prototype.open = function () {
  1957. if (this.isOpen()) {
  1958. return;
  1959. }
  1960. this.trigger('query', {});
  1961. this.trigger('open');
  1962. };
  1963. Select2.prototype.close = function () {
  1964. if (!this.isOpen()) {
  1965. return;
  1966. }
  1967. this.trigger('close');
  1968. };
  1969. Select2.prototype.isOpen = function () {
  1970. return this.$container.hasClass('open');
  1971. };
  1972. Select2.prototype.render = function () {
  1973. var $container = $(
  1974. '<span class="select2 select2-container select2-theme-default">' +
  1975. '<span class="selection"></span>' +
  1976. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  1977. '</span>'
  1978. );
  1979. this.$container = $container;
  1980. $container.data('element', this.$element);
  1981. return $container;
  1982. };
  1983. return Select2;
  1984. });
  1985. define('jquery.select2',[
  1986. 'jquery',
  1987. 'select2/core'
  1988. ], function ($, Select2) {
  1989. if ($.fn.select2 == null) {
  1990. $.fn.select2 = function (options) {
  1991. options = options || {};
  1992. if (typeof options === 'object') {
  1993. this.each(function () {
  1994. var instance = new Select2($(this), options);
  1995. });
  1996. } else if (typeof options === 'string') {
  1997. var instance = this.data('select2');
  1998. var args = Array.prototype.slice.call(arguments, 1);
  1999. instance[options](args);
  2000. } else {
  2001. throw new Error('Invalid arguments for Select2: ' + options);
  2002. }
  2003. };
  2004. }
  2005. return Select2;
  2006. });
  2007. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());