select2.js 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  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. if (event in this.listeners) {
  454. this.listeners[event].push(callback);
  455. } else {
  456. this.listeners[event] = [callback];
  457. }
  458. };
  459. Observable.prototype.trigger = function (event) {
  460. var slice = Array.prototype.slice;
  461. if (event in this.listeners) {
  462. this.invoke(this.listeners[event], slice.call(arguments, 1));
  463. }
  464. if ('*' in this.listeners) {
  465. this.invoke(this.listeners['*'], arguments);
  466. }
  467. };
  468. Observable.prototype.invoke = function (listeners, params) {
  469. for (var i = 0, len = listeners.length; i < len; i++) {
  470. listeners[i].apply(this, params);
  471. }
  472. };
  473. Utils.Observable = Observable;
  474. Utils.generateChars = function (length) {
  475. var chars = '';
  476. for (var i = 0; i < length; i++) {
  477. var randomChar = Math.floor(Math.random() * 36);
  478. chars += randomChar.toString(36);
  479. }
  480. return chars;
  481. };
  482. return Utils;
  483. });
  484. define('select2/results',[
  485. './utils'
  486. ], function (Utils) {
  487. function Results ($element, options, dataAdapter) {
  488. this.$element = $element;
  489. this.data = dataAdapter;
  490. this.options = options;
  491. Results.__super__.constructor.call(this);
  492. }
  493. Utils.Extend(Results, Utils.Observable);
  494. Results.prototype.render = function () {
  495. var $results = $(
  496. '<ul class="options" role="tree"></ul>'
  497. );
  498. if (this.options.get('multiple')) {
  499. $results.attr('aria-multiselectable', 'true');
  500. }
  501. this.$results = $results;
  502. return $results;
  503. };
  504. Results.prototype.clear = function () {
  505. this.$results.empty();
  506. };
  507. Results.prototype.append = function (data) {
  508. var $options = [];
  509. data = this.sort(data);
  510. for (var d = 0; d < data.length; d++) {
  511. var item = data[d];
  512. var $option = this.option(item);
  513. $options.push($option);
  514. }
  515. this.$results.append($options);
  516. };
  517. Results.prototype.sort = function (data) {
  518. return data;
  519. };
  520. Results.prototype.setClasses = function () {
  521. var self = this;
  522. this.data.current(function (selected) {
  523. var selectedIds = $.map(selected, function (s) {
  524. return s.id.toString();
  525. });
  526. var $options = self.$results.find('.option[aria-selected]');
  527. $options.each(function () {
  528. var $option = $(this);
  529. var item = $option.data('data');
  530. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  531. $option.attr('aria-selected', 'true');
  532. } else {
  533. $option.attr('aria-selected', 'false');
  534. }
  535. });
  536. var $selected = $options.filter('[aria-selected=true]');
  537. // Check if there are any selected options
  538. if ($selected.length > 0) {
  539. // If there are selected options, highlight the first
  540. $selected.first().trigger('mouseenter');
  541. } else {
  542. // If there are no selected options, highlight the first option
  543. // in the dropdown
  544. $options.first().trigger('mouseenter');
  545. }
  546. });
  547. };
  548. Results.prototype.option = function (data) {
  549. var $option = $(
  550. '<li class="option" role="treeitem" aria-selected="false"></li>'
  551. );
  552. if (data.children) {
  553. $option
  554. .attr('role', 'group')
  555. .attr('aria-label', data.text)
  556. .removeAttr('aria-selected');
  557. var $label = $('<strong class="group-label"></strong>');
  558. $label.html(data.text);
  559. var $children = [];
  560. for (var c = 0; c < data.children.length; c++) {
  561. var child = data.children[c];
  562. var $child = this.option(child);
  563. $children.push($child);
  564. }
  565. var $childrenContainer = $('<ul class="options nested-options"></ul>');
  566. $childrenContainer.append($children);
  567. $option.append($label);
  568. $option.append($childrenContainer);
  569. } else {
  570. $option.html(data.text);
  571. }
  572. if (data.disabled) {
  573. $option
  574. .removeAttr('aria-selected')
  575. .attr('aria-disabled', 'true');
  576. }
  577. if (data.id == null) {
  578. $option.removeAttr('aria-selected');
  579. }
  580. if (data._resultId != null) {
  581. $option.attr('id', data._resultId);
  582. }
  583. $option.data('data', data);
  584. return $option;
  585. };
  586. Results.prototype.bind = function (container, $container) {
  587. var self = this;
  588. var id = container.id + '-results';
  589. this.$results.attr('id', id);
  590. container.on('results:all', function (params) {
  591. self.clear();
  592. self.append(params.data);
  593. if (container.isOpen()) {
  594. self.setClasses();
  595. }
  596. });
  597. container.on('results:append', function (params) {
  598. self.append(params.data);
  599. if (container.isOpen()) {
  600. self.setClasses();
  601. }
  602. });
  603. container.on('select', function () {
  604. if (!container.isOpen()) {
  605. return;
  606. }
  607. self.setClasses();
  608. });
  609. container.on('unselect', function () {
  610. if (!container.isOpen()) {
  611. return;
  612. }
  613. self.setClasses();
  614. });
  615. container.on('open', function () {
  616. // When the dropdown is open, aria-expended="true"
  617. self.$results.attr('aria-expanded', 'true');
  618. self.$results.attr('aria-hidden', 'false');
  619. self.setClasses();
  620. self.ensureHighlightVisible();
  621. });
  622. container.on('close', function () {
  623. // When the dropdown is closed, aria-expended="false"
  624. self.$results.attr('aria-expanded', 'false');
  625. self.$results.attr('aria-hidden', 'true');
  626. self.$results.removeAttr('aria-activedescendant');
  627. });
  628. container.on('results:select', function () {
  629. var $highlighted = self.$results.find('.highlighted');
  630. if ($highlighted.length === 0) {
  631. return;
  632. }
  633. var data = $highlighted.data('data');
  634. if ($highlighted.attr('aria-selected') == 'true') {
  635. self.trigger('unselected', {
  636. data: data
  637. });
  638. } else {
  639. self.trigger('selected', {
  640. data: data
  641. });
  642. }
  643. });
  644. container.on('results:previous', function () {
  645. var $highlighted = self.$results.find('.highlighted');
  646. var $options = self.$results.find('[aria-selected]');
  647. var currentIndex = $options.index($highlighted);
  648. // If we are already at te top, don't move further
  649. if (currentIndex === 0) {
  650. return;
  651. }
  652. var nextIndex = currentIndex - 1;
  653. // If none are highlighted, highlight the first
  654. if ($highlighted.length === 0) {
  655. nextIndex = 0;
  656. }
  657. var $next = $options.eq(nextIndex);
  658. $next.trigger('mouseenter');
  659. var currentOffset = self.$results.offset().top;
  660. var nextTop = $next.offset().top;
  661. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  662. if (nextIndex === 0) {
  663. self.$results.scrollTop(0);
  664. } else if (nextTop - currentOffset < 0) {
  665. self.$results.scrollTop(nextOffset);
  666. }
  667. });
  668. container.on('results:next', function () {
  669. var $highlighted = self.$results.find('.highlighted');
  670. var $options = self.$results.find('[aria-selected]');
  671. var currentIndex = $options.index($highlighted);
  672. var nextIndex = currentIndex + 1;
  673. // If we are at the last option, stay there
  674. if (nextIndex >= $options.length) {
  675. return;
  676. }
  677. var $next = $options.eq(nextIndex);
  678. $next.trigger('mouseenter');
  679. var currentOffset = self.$results.offset().top +
  680. self.$results.outerHeight(false);
  681. var nextBottom = $next.offset().top + $next.outerHeight(false);
  682. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  683. if (nextIndex === 0) {
  684. self.$results.scrollTop(0);
  685. } else if (nextBottom > currentOffset) {
  686. self.$results.scrollTop(nextOffset);
  687. }
  688. });
  689. container.on('results:focus', function (params) {
  690. params.element.addClass('highlighted');
  691. });
  692. this.$results.on('mouseup', '.option[aria-selected]', function (evt) {
  693. var $this = $(this);
  694. var data = $this.data('data');
  695. if ($this.attr('aria-selected') === 'true') {
  696. self.trigger('unselected', {
  697. originalEvent: evt,
  698. data: data
  699. });
  700. return;
  701. }
  702. self.trigger('selected', {
  703. originalEvent: evt,
  704. data: data
  705. });
  706. });
  707. this.$results.on('mouseenter', '.option[aria-selected]', function (evt) {
  708. var data = $(this).data('data');
  709. self.$results.find('.option.highlighted').removeClass('highlighted');
  710. self.trigger('results:focus', {
  711. data: data,
  712. element: $(this)
  713. });
  714. });
  715. this.$results.on('mouseleave', '.option', function (evt) {
  716. if ($(this).hasClass('highlighted')) {
  717. $(this).removeClass('highlighted');
  718. self.$results.removeAttr('aria-activedescendant');
  719. }
  720. });
  721. };
  722. Results.prototype.ensureHighlightVisible = function () {
  723. var $highlighted = this.$results.find('.highlighted');
  724. if ($highlighted.length === 0) {
  725. return;
  726. }
  727. var $options = this.$results.find('[aria-selected]');
  728. var currentIndex = $options.index($highlighted);
  729. var currentOffset = this.$results.offset().top;
  730. var nextTop = $highlighted.offset().top;
  731. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  732. var offsetDelta = nextTop - currentOffset;
  733. nextOffset -= $highlighted.outerHeight(false) * 2;
  734. if (currentIndex <= 2) {
  735. this.$results.scrollTop(0);
  736. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  737. this.$results.scrollTop(nextOffset);
  738. }
  739. };
  740. return Results;
  741. });
  742. define('select2/selection/base',[
  743. '../utils'
  744. ], function (Utils) {
  745. function BaseSelection ($element, options) {
  746. this.$element = $element;
  747. this.options = options;
  748. BaseSelection.__super__.constructor.call(this);
  749. }
  750. Utils.Extend(BaseSelection, Utils.Observable);
  751. BaseSelection.prototype.render = function () {
  752. throw new Error('The `render` method must be defined in child classes.');
  753. };
  754. BaseSelection.prototype.bind = function (container, $container) {
  755. var self = this;
  756. container.on('selection:update', function (params) {
  757. self.update(params.data);
  758. });
  759. };
  760. BaseSelection.prototype.update = function (data) {
  761. throw new Error('The `update` method must be defined in child classes.');
  762. };
  763. return BaseSelection;
  764. });
  765. define('select2/keys',[
  766. ], function () {
  767. var KEYS = {
  768. BACKSPACE: 8,
  769. TAB: 9,
  770. ENTER: 13,
  771. SHIFT: 16,
  772. CTRL: 17,
  773. ALT: 18,
  774. ESC: 27,
  775. SPACE: 32,
  776. PAGE_UP: 33,
  777. PAGE_DOWN: 34,
  778. END: 35,
  779. HOME: 36,
  780. LEFT: 37,
  781. UP: 38,
  782. RIGHT: 39,
  783. DOWN: 40,
  784. DELETE: 46,
  785. isArrow: function (k) {
  786. k = k.which ? k.which : k;
  787. switch (k) {
  788. case KEY.LEFT:
  789. case KEY.RIGHT:
  790. case KEY.UP:
  791. case KEY.DOWN:
  792. return true;
  793. }
  794. return false;
  795. }
  796. };
  797. return KEYS;
  798. });
  799. define('select2/selection/single',[
  800. './base',
  801. '../utils',
  802. '../keys'
  803. ], function (BaseSelection, Utils, KEYS) {
  804. function SingleSelection () {
  805. SingleSelection.__super__.constructor.apply(this, arguments);
  806. }
  807. Utils.Extend(SingleSelection, BaseSelection);
  808. SingleSelection.prototype.render = function () {
  809. var $selection = $(
  810. '<span class="single-select" tabindex="0" role="combobox" ' +
  811. 'aria-autocomplete="list" aria-haspopup="true" aria-expanded="false">' +
  812. '<span class="rendered-selection"></span>' +
  813. '</span>'
  814. );
  815. $selection.attr('title', this.$element.attr('title'));
  816. this.$selection = $selection;
  817. return $selection;
  818. };
  819. SingleSelection.prototype.bind = function (container, $container) {
  820. var self = this;
  821. SingleSelection.__super__.bind.apply(this, arguments);
  822. var id = container.id + '-container';
  823. var resultsId = container.id + '-results';
  824. this.$selection.find('.rendered-selection').attr('id', id);
  825. this.$selection.attr('aria-labelledby', id);
  826. this.$selection.attr('aria-owns', resultsId);
  827. this.$selection.on('mousedown', function (evt) {
  828. // Only respond to left clicks
  829. if (evt.which !== 1) {
  830. return;
  831. }
  832. self.trigger('toggle', {
  833. originalEvent: evt
  834. });
  835. });
  836. container.on('open', function () {
  837. // When the dropdown is open, aria-expanded="true"
  838. self.$selection.attr('aria-expanded', 'true');
  839. });
  840. container.on('close', function () {
  841. // When the dropdown is closed, aria-expanded="false"
  842. self.$selection.attr('aria-expanded', 'false');
  843. self.$selection.removeAttr('aria-activedescendant');
  844. });
  845. this.$selection.on('focus', function (evt) {
  846. // User focuses on the container
  847. });
  848. this.$selection.on('blur', function (evt) {
  849. // User exits the container
  850. });
  851. this.$selection.on('keydown', function (evt) {
  852. var key = evt.which;
  853. if (container.isOpen()) {
  854. if (key == KEYS.ENTER) {
  855. self.trigger('results:select');
  856. evt.preventDefault();
  857. } else if (key == KEYS.UP) {
  858. self.trigger('results:previous');
  859. evt.preventDefault();
  860. } else if (key == KEYS.DOWN) {
  861. self.trigger('results:next');
  862. evt.preventDefault();
  863. }
  864. } else {
  865. if (key == KEYS.ENTER || key == KEYS.SPACE) {
  866. self.trigger('open');
  867. evt.preventDefault();
  868. }
  869. }
  870. });
  871. container.on('results:focus', function (params) {
  872. self.$selection.attr('aria-activedescendant', params.data._resultId);
  873. });
  874. container.on('selection:update', function (params) {
  875. self.update(params.data);
  876. });
  877. };
  878. SingleSelection.prototype.clear = function () {
  879. this.$selection.find('.rendered-selection').empty();
  880. };
  881. SingleSelection.prototype.display = function (data) {
  882. return data.text;
  883. };
  884. SingleSelection.prototype.selectionContainer = function () {
  885. return $('<span></span>');
  886. };
  887. SingleSelection.prototype.update = function (data) {
  888. if (data.length === 0) {
  889. this.clear();
  890. return;
  891. }
  892. var selection = data[0];
  893. var formatted = this.display(selection);
  894. this.$selection.find('.rendered-selection').html(formatted);
  895. };
  896. return SingleSelection;
  897. });
  898. define('select2/selection/multiple',[
  899. './base',
  900. '../utils'
  901. ], function (BaseSelection, Utils) {
  902. function MultipleSelection ($element, options) {
  903. this.$element = $element;
  904. this.options = options;
  905. MultipleSelection.__super__.constructor.call(this);
  906. }
  907. Utils.Extend(MultipleSelection, BaseSelection);
  908. MultipleSelection.prototype.render = function () {
  909. var $selection = $(
  910. '<span class="multiple-select">' +
  911. '<ul class="rendered-selection"></ul>' +
  912. '</span>'
  913. );
  914. this.$selection = $selection;
  915. return $selection;
  916. };
  917. MultipleSelection.prototype.bind = function (container, $container) {
  918. var self = this;
  919. MultipleSelection.__super__.bind.apply(this, arguments);
  920. this.$selection.on('click', function (evt) {
  921. self.trigger('toggle', {
  922. originalEvent: evt
  923. });
  924. });
  925. this.$selection.on('click', '.remove', function (evt) {
  926. var $remove = $(this);
  927. var $selection = $remove.parent();
  928. var data = $selection.data('data');
  929. self.trigger('unselected', {
  930. originalEvent: evt,
  931. data: data
  932. });
  933. });
  934. };
  935. MultipleSelection.prototype.clear = function () {
  936. this.$selection.find('.rendered-selection').empty();
  937. };
  938. MultipleSelection.prototype.display = function (data) {
  939. return data.text;
  940. };
  941. MultipleSelection.prototype.selectionContainer = function () {
  942. var $container = $(
  943. '<li class="choice">' +
  944. '<span class="remove" role="presentation">&times;</span>' +
  945. '</li>'
  946. );
  947. return $container;
  948. };
  949. MultipleSelection.prototype.update = function (data) {
  950. this.clear();
  951. if (data.length === 0) {
  952. return;
  953. }
  954. var $selections = [];
  955. for (var d = 0; d < data.length; d++) {
  956. var selection = data[d];
  957. var formatted = this.display(selection);
  958. var $selection = this.selectionContainer();
  959. $selection.append(formatted);
  960. $selection.data('data', selection);
  961. $selections.push($selection);
  962. }
  963. this.$selection.find('.rendered-selection').append($selections);
  964. };
  965. return MultipleSelection;
  966. });
  967. define('select2/selection/placeholder',[
  968. '../utils'
  969. ], function (Utils) {
  970. function Placeholder (decorated, $element, options) {
  971. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  972. decorated.call(this, $element, options);
  973. }
  974. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  975. if (typeof placeholder === 'string') {
  976. placeholder = {
  977. id: '',
  978. text: placeholder
  979. };
  980. }
  981. return placeholder;
  982. };
  983. Placeholder.prototype.update = function (decorated, data) {
  984. var singlePlaceholder = (
  985. data.length == 1 && data[0].id != this.placeholder.id
  986. );
  987. var multipleSelections = data.length > 1;
  988. if (multipleSelections || singlePlaceholder) {
  989. return decorated.call(this, data);
  990. }
  991. this.clear();
  992. var $placeholder = this.selectionContainer();
  993. $placeholder.html(this.display(this.placeholder));
  994. $placeholder.addClass('placeholder').removeClass('choice');
  995. this.$selection.find('.rendered-selection').append($placeholder);
  996. };
  997. return Placeholder;
  998. });
  999. define('select2/translation',[
  1000. ], function () {
  1001. function Translation (dict) {
  1002. this.dict = dict || {};
  1003. }
  1004. Translation.prototype.all = function () {
  1005. return this.dict;
  1006. };
  1007. Translation.prototype.get = function (key) {
  1008. return this.dict[key];
  1009. };
  1010. Translation.prototype.extend = function (translation) {
  1011. this.dict = $.extend({}, translation.all(), this.dict);
  1012. };
  1013. // Static functions
  1014. Translation._cache = {};
  1015. Translation.loadPath = function (path) {
  1016. if (!(path in Translation._cache)) {
  1017. var translations = require(path);
  1018. Translation._cache[path] = translations;
  1019. }
  1020. return new Translation(Translation._cache[path]);
  1021. };
  1022. return Translation;
  1023. });
  1024. define('select2/data/base',[
  1025. '../utils'
  1026. ], function (Utils) {
  1027. function BaseAdapter ($element, options) {
  1028. BaseAdapter.__super__.constructor.call(this);
  1029. }
  1030. Utils.Extend(BaseAdapter, Utils.Observable);
  1031. BaseAdapter.prototype.current = function (callback) {
  1032. throw new Error('The `current` method must be defined in child classes.');
  1033. };
  1034. BaseAdapter.prototype.query = function (params, callback) {
  1035. throw new Error('The `query` method must be defined in child classes.');
  1036. };
  1037. BaseAdapter.prototype.bind = function (container, $container) {
  1038. // Can be implemented in subclasses
  1039. };
  1040. BaseAdapter.prototype.generateResultId = function (container, data) {
  1041. var id = container.id + '-result-';
  1042. id += Utils.generateChars(4);
  1043. if (data.id != null) {
  1044. id += '-' + data.id.toString();
  1045. } else {
  1046. id += '-' + Utils.generateChars(4);
  1047. }
  1048. return id;
  1049. };
  1050. return BaseAdapter;
  1051. });
  1052. define('select2/data/select',[
  1053. './base',
  1054. '../utils',
  1055. 'jquery'
  1056. ], function (BaseAdapter, Utils, $) {
  1057. function SelectAdapter ($element, options) {
  1058. this.$element = $element;
  1059. SelectAdapter.__super__.constructor.call(this);
  1060. }
  1061. Utils.Extend(SelectAdapter, BaseAdapter);
  1062. SelectAdapter.prototype.current = function (callback) {
  1063. var data = [];
  1064. var self = this;
  1065. this.$element.find(':selected').each(function () {
  1066. var $option = $(this);
  1067. var option = self.item($option);
  1068. data.push(option);
  1069. });
  1070. callback(data);
  1071. };
  1072. SelectAdapter.prototype.select = function (data) {
  1073. var self = this;
  1074. // Create items marked as tags
  1075. if (data._tag === true) {
  1076. // Clear the tag flag from it
  1077. delete data._tag;
  1078. // Create and add the option
  1079. var $option = this.option(data);
  1080. this.$element.append($option);
  1081. }
  1082. if (this.$element.prop('multiple')) {
  1083. this.current(function (currentData) {
  1084. var val = [];
  1085. data = [data];
  1086. data.push.apply(data, currentData);
  1087. for (var d = 0; d < data.length; d++) {
  1088. id = data[d].id;
  1089. if (val.indexOf(id) === -1) {
  1090. val.push(id);
  1091. }
  1092. }
  1093. self.$element.val(val);
  1094. self.$element.trigger('change');
  1095. });
  1096. } else {
  1097. var val = data.id;
  1098. this.$element.val(val);
  1099. this.$element.trigger('change');
  1100. }
  1101. };
  1102. SelectAdapter.prototype.unselect = function (data) {
  1103. var self = this;
  1104. if (!this.$element.prop('multiple')) {
  1105. return;
  1106. }
  1107. this.current(function (currentData) {
  1108. var val = [];
  1109. for (var d = 0; d < currentData.length; d++) {
  1110. id = currentData[d].id;
  1111. if (id !== data.id && val.indexOf(id) === -1) {
  1112. val.push(id);
  1113. }
  1114. }
  1115. self.$element.val(val);
  1116. self.$element.trigger('change');
  1117. });
  1118. };
  1119. SelectAdapter.prototype.bind = function (container, $container) {
  1120. var self = this;
  1121. this.container = container;
  1122. container.on('select', function (params) {
  1123. self.select(params.data);
  1124. });
  1125. container.on('unselect', function (params) {
  1126. self.unselect(params.data);
  1127. });
  1128. };
  1129. SelectAdapter.prototype.query = function (params, callback) {
  1130. var data = [];
  1131. var self = this;
  1132. var $options = this.$element.children();
  1133. $options.each(function () {
  1134. var $option = $(this);
  1135. if (!$option.is('option') && !$option.is('optgroup')) {
  1136. return;
  1137. }
  1138. var option = self.item($option);
  1139. var matches = self.matches(params, option);
  1140. if (matches !== null) {
  1141. data.push(matches);
  1142. }
  1143. });
  1144. callback(data);
  1145. };
  1146. SelectAdapter.prototype.option = function (data) {
  1147. var $option = $('<option></option>');
  1148. $option.text(data.text);
  1149. $option.val(data.id);
  1150. $option.prop('disabled', data.disabled || false);
  1151. // Get any automatically generated data values
  1152. var detectedData = this.item($option);
  1153. // Merge it with the already present data
  1154. var combinedData = $.extend({}, data, detectedData);
  1155. // Override the option's data with the combined data
  1156. $option.data('data', combinedData);
  1157. return $option;
  1158. };
  1159. SelectAdapter.prototype.item = function ($option) {
  1160. var data = $option.data('data');
  1161. // If the data has already be generated, use it
  1162. if (data == null) {
  1163. if ($option.is('option')) {
  1164. data = {
  1165. id: $option.val(),
  1166. text: $option.html(),
  1167. disabled: $option.prop('disabled')
  1168. };
  1169. } else if ($option.is('optgroup')) {
  1170. data = {
  1171. text: $option.attr('label'),
  1172. children: []
  1173. };
  1174. var $children = $option.children('option');
  1175. var children = [];
  1176. for (var c = 0; c < $children.length; c++) {
  1177. var $child = $($children[c]);
  1178. var child = this.item($child);
  1179. children.push(child);
  1180. }
  1181. data.children = children;
  1182. }
  1183. if (data.id && this.container != null) {
  1184. data._resultId = this.generateResultId(this.container, data);
  1185. }
  1186. $option.data('data', data);
  1187. }
  1188. return data;
  1189. };
  1190. SelectAdapter.prototype.matches = function (params, data) {
  1191. var match = $.extend(true, {}, data);
  1192. if (data.children) {
  1193. for (var c = data.children.length - 1; c >= 0; c--) {
  1194. var child = data.children[c];
  1195. var matches = this.matches(params, child);
  1196. // If there wasn't a match, remove the object in the array
  1197. if (matches === null) {
  1198. match.children.splice(c, 1);
  1199. }
  1200. }
  1201. if (match.children.length > 0) {
  1202. return match;
  1203. }
  1204. }
  1205. if ($.trim(params.term) === '') {
  1206. return match;
  1207. }
  1208. if (data.text.toUpperCase().indexOf(params.term.toUpperCase()) > -1) {
  1209. return match;
  1210. }
  1211. return null;
  1212. };
  1213. return SelectAdapter;
  1214. });
  1215. define('select2/data/array',[
  1216. './select',
  1217. '../utils',
  1218. 'jquery'
  1219. ], function (SelectAdapter, Utils, $) {
  1220. function ArrayAdapter ($element, options) {
  1221. this.data = options.get('data');
  1222. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1223. }
  1224. Utils.Extend(ArrayAdapter, SelectAdapter);
  1225. ArrayAdapter.prototype.select = function (data) {
  1226. var self = this;
  1227. this.$element.find('option').each(function () {
  1228. var $option = $(this);
  1229. var option = self.item($option);
  1230. if (option.id == data.id.toString()) {
  1231. $option.remove();
  1232. }
  1233. });
  1234. var $option = this.option(data);
  1235. this.$element.append($option);
  1236. ArrayAdapter.__super__.select.call(this, data);
  1237. };
  1238. ArrayAdapter.prototype.query = function (params, callback) {
  1239. var matches = [];
  1240. var self = this;
  1241. $.each(this.data, function () {
  1242. var option = this;
  1243. if (self.matches(params, option)) {
  1244. matches.push(option);
  1245. }
  1246. });
  1247. callback(matches);
  1248. };
  1249. return ArrayAdapter;
  1250. });
  1251. define('select2/data/ajax',[
  1252. './array',
  1253. '../utils',
  1254. 'jquery'
  1255. ], function (ArrayAdapter, Utils, $) {
  1256. function AjaxAdapter ($element, options) {
  1257. this.ajaxOptions = options.get('ajax');
  1258. this.processResults = this.ajaxOptions.processResults ||
  1259. function (results) {
  1260. return results;
  1261. };
  1262. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1263. }
  1264. Utils.Extend(AjaxAdapter, ArrayAdapter);
  1265. AjaxAdapter.prototype.query = function (params, callback) {
  1266. var matches = [];
  1267. var self = this;
  1268. var options = $.extend({
  1269. type: 'GET'
  1270. }, this.ajaxOptions);
  1271. if (typeof options.url === 'function') {
  1272. options.url = options.url(params);
  1273. }
  1274. if (typeof options.data === 'function') {
  1275. options.data = options.data(params);
  1276. }
  1277. var $request = $.ajax(options);
  1278. $request.success(function (data) {
  1279. var results = self.processResults(data);
  1280. callback(results);
  1281. });
  1282. };
  1283. return AjaxAdapter;
  1284. });
  1285. define('select2/data/tags',[
  1286. ], function () {
  1287. function Tags (decorated, $element, options) {
  1288. var tags = options.get('tags');
  1289. decorated.call(this, $element, options);
  1290. }
  1291. Tags.prototype.query = function (decorated, params, callback) {
  1292. var self = this;
  1293. if (params.term == null || params.term === '' || params.page != null) {
  1294. decorated.call(this, params, callback);
  1295. return;
  1296. }
  1297. function wrapper (data, child) {
  1298. for (var i = 0; i < data.length; i++) {
  1299. var option = data[i];
  1300. var checkChildren = (
  1301. option.children != null && !wrapper(option.children, true)
  1302. );
  1303. var checkText = option.text === params.term;
  1304. if (checkText || checkChildren) {
  1305. if (child) {
  1306. return false;
  1307. }
  1308. callback(data);
  1309. return;
  1310. }
  1311. }
  1312. if (child) {
  1313. return true;
  1314. }
  1315. var tag = self.createTag(params);
  1316. tag._tag = true;
  1317. data.unshift(tag);
  1318. callback(data);
  1319. }
  1320. decorated.call(this, params, wrapper);
  1321. };
  1322. Tags.prototype.createTag = function (decorated, params) {
  1323. return {
  1324. id: params.term,
  1325. text: params.term
  1326. };
  1327. };
  1328. return Tags;
  1329. });
  1330. define('select2/dropdown',[
  1331. './utils'
  1332. ], function (Utils) {
  1333. function Dropdown ($element, options) {
  1334. this.$element = $element;
  1335. }
  1336. Utils.Extend(Dropdown, Utils.Observable);
  1337. Dropdown.prototype.render = function () {
  1338. var $dropdown = $(
  1339. '<span class="dropdown">' +
  1340. '<span class="results"></span>' +
  1341. '</span>'
  1342. );
  1343. return $dropdown;
  1344. };
  1345. Dropdown.prototype.bind = function (container, $container) {
  1346. // Can be implemented in subclasses
  1347. };
  1348. return Dropdown;
  1349. });
  1350. define('select2/dropdown/search',[
  1351. ], function () {
  1352. function Search () { }
  1353. Search.prototype.render = function (decorated) {
  1354. var $rendered = decorated.call(this);
  1355. var $search = $(
  1356. '<span class="search">' +
  1357. '<input type="search" name="search" tabindex="-1" role="textbox" />' +
  1358. '</span>'
  1359. );
  1360. this.$searchContainer = $search;
  1361. this.$search = $search.find('input');
  1362. $rendered.prepend($search);
  1363. return $rendered;
  1364. };
  1365. Search.prototype.bind = function (decorated, container, $container) {
  1366. var self = this;
  1367. decorated.call(this, container, $container);
  1368. this.$search.on('keyup', function () {
  1369. container.trigger('query', {
  1370. term: $(this).val()
  1371. });
  1372. });
  1373. container.on('open', function () {
  1374. self.$search.attr('tabindex', 0);
  1375. });
  1376. container.on('close', function () {
  1377. self.$search.attr('tabindex', -1);
  1378. });
  1379. container.on('results:all', function (params) {
  1380. if (params.query.term == null || params.query.term === '') {
  1381. var showSearch = self.showSearch(params);
  1382. if (showSearch) {
  1383. self.$searchContainer.show();
  1384. } else {
  1385. self.$searchContainer.hide();
  1386. }
  1387. }
  1388. });
  1389. };
  1390. Search.prototype.showSearch = function (params) {
  1391. return true;
  1392. };
  1393. return Search;
  1394. });
  1395. define('select2/i18n/en',[],function () {
  1396. return {
  1397. 'no_results': function () {
  1398. return 'No results found';
  1399. }
  1400. };
  1401. });
  1402. define('select2/defaults',[
  1403. 'jquery',
  1404. './results',
  1405. './selection/single',
  1406. './selection/multiple',
  1407. './selection/placeholder',
  1408. './utils',
  1409. './translation',
  1410. './data/select',
  1411. './data/array',
  1412. './data/ajax',
  1413. './data/tags',
  1414. './dropdown',
  1415. './dropdown/search',
  1416. './i18n/en'
  1417. ], function ($, ResultsList,
  1418. SingleSelection, MultipleSelection, Placeholder,
  1419. Utils, Translation,
  1420. SelectData, ArrayData, AjaxData, Tags,
  1421. Dropdown, Search, EnglishTranslation) {
  1422. function Defaults () {
  1423. this.reset();
  1424. }
  1425. Defaults.prototype.apply = function (options) {
  1426. options = $.extend({}, this.defaults, options);
  1427. if (options.dataAdapter == null) {
  1428. if (options.ajax) {
  1429. options.dataAdapter = AjaxData;
  1430. } else if (options.data) {
  1431. options.dataAdapter = ArrayData;
  1432. } else {
  1433. options.dataAdapter = SelectData;
  1434. }
  1435. }
  1436. if (options.tags != null) {
  1437. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  1438. }
  1439. if (options.resultsAdapter == null) {
  1440. options.resultsAdapter = ResultsList;
  1441. }
  1442. if (options.dropdownAdapter == null) {
  1443. var SearchableDropdown = Utils.Decorate(Dropdown, Search);
  1444. options.dropdownAdapter = SearchableDropdown;
  1445. }
  1446. if (options.selectionAdapter == null) {
  1447. if (options.multiple) {
  1448. options.selectionAdapter = MultipleSelection;
  1449. } else {
  1450. options.selectionAdapter = SingleSelection;
  1451. }
  1452. // Add the placeholder mixin if a placeholder was specified
  1453. if (options.placeholder != null) {
  1454. options.selectionAdapter = Utils.Decorate(
  1455. options.selectionAdapter,
  1456. Placeholder
  1457. );
  1458. }
  1459. }
  1460. if (typeof options.language === 'string') {
  1461. options.language = [options.language];
  1462. }
  1463. if ($.isArray(options.language)) {
  1464. var languages = new Translation();
  1465. var languageNames = options.language.concat(this.defaults.language);
  1466. for (var l = 0; l < languageNames.length; l++) {
  1467. var name = languageNames[l];
  1468. var language = {};
  1469. try {
  1470. // Try to load it with the original name
  1471. language = Translation.loadPath(name);
  1472. } catch (e) {
  1473. // If we couldn't load it, check if it wasn't the full path
  1474. name = 'select2/i18n/' + name;
  1475. language = Translation.loadPath(name);
  1476. }
  1477. languages.extend(language);
  1478. }
  1479. options.translations = languages;
  1480. } else {
  1481. options.translations = new Translations(options.language);
  1482. }
  1483. return options;
  1484. };
  1485. Defaults.prototype.reset = function () {
  1486. this.defaults = {
  1487. language: ['select2/i18n/en']
  1488. };
  1489. };
  1490. var defaults = new Defaults();
  1491. return defaults;
  1492. });
  1493. define('select2/options',[
  1494. './defaults'
  1495. ], function (Defaults) {
  1496. function Options (options) {
  1497. this.options = Defaults.apply(options);
  1498. }
  1499. Options.prototype.fromElement = function ($e) {
  1500. return this;
  1501. };
  1502. Options.prototype.get = function (key) {
  1503. return this.options[key];
  1504. };
  1505. Options.prototype.set = function (key, val) {
  1506. this.options[key] = val;
  1507. };
  1508. return Options;
  1509. });
  1510. define('select2/core',[
  1511. 'jquery',
  1512. './options',
  1513. './utils'
  1514. ], function ($, Options, Utils) {
  1515. var Select2 = function ($element, options) {
  1516. this.$element = $element;
  1517. if ($element.attr('id') != null) {
  1518. this.id = $element.attr('id');
  1519. } else if ($element.attr('name') != null) {
  1520. this.id = $element.attr('name') + '-' + Utils.generateChars(2);
  1521. } else {
  1522. this.id = Utils.generateChars(4);
  1523. }
  1524. this.id = 'select2-' + this.id;
  1525. options = options || {};
  1526. options.multiple = options.multiple || $element.prop('multiple');
  1527. this.options = new Options(options);
  1528. Select2.__super__.constructor.call(this);
  1529. // Set up containers and adapters
  1530. var DataAdapter = this.options.get('dataAdapter');
  1531. this.data = new DataAdapter($element, this.options);
  1532. var $container = this.render();
  1533. this.$container = $container;
  1534. $container.insertAfter(this.$element);
  1535. $container.width($element.outerWidth(false));
  1536. var SelectionAdapter = this.options.get('selectionAdapter');
  1537. this.selection = new SelectionAdapter($element, this.options);
  1538. var $selectionContainer = $container.find('.selection');
  1539. var $selection = this.selection.render();
  1540. $selectionContainer.append($selection);
  1541. var DropdownAdapter = this.options.get('dropdownAdapter');
  1542. this.dropdown = new DropdownAdapter($element, this.options);
  1543. var $dropdownContainer = $container.find('.dropdown-wrapper');
  1544. var $dropdown = this.dropdown.render();
  1545. $dropdownContainer.append($dropdown);
  1546. var ResultsAdapter = this.options.get('resultsAdapter');
  1547. this.results = new ResultsAdapter($element, this.options, this.data);
  1548. var $resultsContainer = $dropdown.find('.results');
  1549. var $results = this.results.render();
  1550. $resultsContainer.append($results);
  1551. // Bind events
  1552. var self = this;
  1553. this.data.bind(this, $container);
  1554. this.selection.bind(this, $container);
  1555. this.dropdown.bind(this, $container);
  1556. this.results.bind(this, $container);
  1557. this.$element.on('change', function () {
  1558. self.data.current(function (data) {
  1559. self.trigger('selection:update', {
  1560. data: data
  1561. });
  1562. });
  1563. });
  1564. this.selection.on('open', function () {
  1565. self.open();
  1566. });
  1567. this.selection.on('close', function () {
  1568. self.close();
  1569. });
  1570. this.selection.on('toggle', function () {
  1571. self.toggleDropdown();
  1572. });
  1573. this.selection.on('results:select', function () {
  1574. self.trigger('results:select');
  1575. });
  1576. this.selection.on('results:previous', function () {
  1577. self.trigger('results:previous');
  1578. });
  1579. this.selection.on('results:next', function () {
  1580. self.trigger('results:next');
  1581. });
  1582. this.selection.on('unselected', function (params) {
  1583. self.trigger('unselect', params);
  1584. self.close();
  1585. });
  1586. this.results.on('selected', function (params) {
  1587. self.trigger('select', params);
  1588. self.close();
  1589. });
  1590. this.results.on('unselected', function (params) {
  1591. self.trigger('unselect', params);
  1592. self.close();
  1593. });
  1594. this.results.on('results:focus', function (params) {
  1595. self.trigger('results:focus', params);
  1596. });
  1597. this.on('open', function () {
  1598. $container.addClass('open');
  1599. });
  1600. this.on('close', function () {
  1601. $container.removeClass('open');
  1602. });
  1603. // Set the initial state
  1604. this.data.current(function (initialData) {
  1605. self.trigger('selection:update', {
  1606. data: initialData
  1607. });
  1608. });
  1609. this.on('query', function (params) {
  1610. this.data.query(params, function (data) {
  1611. self.trigger('results:all', {
  1612. data: data,
  1613. query: params
  1614. });
  1615. });
  1616. });
  1617. this.trigger('query', {});
  1618. // Hide the original select
  1619. $element.hide();
  1620. $element.attr('tabindex', '-1');
  1621. $element.data('select2', this);
  1622. };
  1623. Utils.Extend(Select2, Utils.Observable);
  1624. Select2.prototype.toggleDropdown = function () {
  1625. if (this.isOpen()) {
  1626. this.close();
  1627. } else {
  1628. this.open();
  1629. }
  1630. };
  1631. Select2.prototype.open = function () {
  1632. if (this.isOpen()) {
  1633. return;
  1634. }
  1635. this.trigger('open');
  1636. };
  1637. Select2.prototype.close = function () {
  1638. if (!this.isOpen()) {
  1639. return;
  1640. }
  1641. this.trigger('close');
  1642. };
  1643. Select2.prototype.isOpen = function () {
  1644. return this.$container.hasClass('open');
  1645. };
  1646. Select2.prototype.render = function () {
  1647. var $container = $(
  1648. '<span class="select2 select2-container select2-theme-default">' +
  1649. '<span class="selection"></span>' +
  1650. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  1651. '</span>'
  1652. );
  1653. return $container;
  1654. };
  1655. return Select2;
  1656. });
  1657. define('jquery.select2',[
  1658. 'jquery',
  1659. 'select2/core'
  1660. ], function ($, Select2) {
  1661. if ($.fn.select2 == null) {
  1662. $.fn.select2 = function (options) {
  1663. options = options || {};
  1664. if (typeof options === 'object') {
  1665. this.each(function () {
  1666. var instance = new Select2($(this), options);
  1667. });
  1668. } else if (typeof options === 'string') {
  1669. var instance = this.data('select2');
  1670. var args = Array.prototype.slice.call(arguments, 1);
  1671. instance[options](args);
  1672. } else {
  1673. throw new Error('Invalid arguments for Select2: ' + options);
  1674. }
  1675. };
  1676. }
  1677. return Select2;
  1678. });
  1679. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());