select2.amd.full.js 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456
  1. window.$ = window.$ || {};(function() { if ($ && $.fn && $.fn.select2 && $.fn.select2.amd) { define = $.fn.select2.amd.define; require = $.fn.select2.amd.require; }define('select2/utils',[], function () {
  2. var Utils = {};
  3. Utils.Extend = function (ChildClass, SuperClass) {
  4. var __hasProp = {}.hasOwnProperty;
  5. function BaseConstructor () {
  6. this.constructor = ChildClass;
  7. }
  8. for (var key in SuperClass) {
  9. if (__hasProp.call(SuperClass, key)) {
  10. ChildClass[key] = SuperClass[key];
  11. }
  12. }
  13. BaseConstructor.prototype = SuperClass.prototype;
  14. ChildClass.prototype = new BaseConstructor();
  15. ChildClass.__super__ = SuperClass.prototype;
  16. return ChildClass;
  17. };
  18. function getMethods (theClass) {
  19. var proto = theClass.prototype;
  20. var methods = [];
  21. for (var methodName in proto) {
  22. var m = proto[methodName];
  23. if (typeof m !== 'function') {
  24. continue;
  25. }
  26. if (methodName === 'constructor') {
  27. continue;
  28. }
  29. methods.push(methodName);
  30. }
  31. return methods;
  32. }
  33. Utils.Decorate = function (SuperClass, DecoratorClass) {
  34. var decoratedMethods = getMethods(DecoratorClass);
  35. var superMethods = getMethods(SuperClass);
  36. function DecoratedClass () {
  37. var unshift = Array.prototype.unshift;
  38. var argCount = DecoratorClass.prototype.constructor.length;
  39. var calledConstructor = SuperClass.prototype.constructor;
  40. if (argCount > 0) {
  41. unshift.call(arguments, SuperClass.prototype.constructor);
  42. calledConstructor = DecoratorClass.prototype.constructor;
  43. }
  44. calledConstructor.apply(this, arguments);
  45. }
  46. DecoratorClass.displayName = SuperClass.displayName;
  47. function ctr () {
  48. this.constructor = DecoratedClass;
  49. }
  50. DecoratedClass.prototype = new ctr();
  51. for (var m = 0; m < superMethods.length; m++) {
  52. var superMethod = superMethods[m];
  53. DecoratedClass.prototype[superMethod] =
  54. SuperClass.prototype[superMethod];
  55. }
  56. var calledMethod = function (methodName) {
  57. // Stub out the original method if it's not decorating an actual method
  58. var originalMethod = function () {};
  59. if (methodName in DecoratedClass.prototype) {
  60. originalMethod = DecoratedClass.prototype[methodName];
  61. }
  62. var decoratedMethod = DecoratorClass.prototype[methodName];
  63. return function () {
  64. var unshift = Array.prototype.unshift;
  65. unshift.call(arguments, originalMethod);
  66. return decoratedMethod.apply(this, arguments);
  67. };
  68. };
  69. for (var d = 0; d < decoratedMethods.length; d++) {
  70. var decoratedMethod = decoratedMethods[d];
  71. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  72. }
  73. return DecoratedClass;
  74. };
  75. var Observable = function () {
  76. this.listeners = {};
  77. };
  78. Observable.prototype.on = function (event, callback) {
  79. this.listeners = this.listeners || {};
  80. if (event in this.listeners) {
  81. this.listeners[event].push(callback);
  82. } else {
  83. this.listeners[event] = [callback];
  84. }
  85. };
  86. Observable.prototype.trigger = function (event) {
  87. var slice = Array.prototype.slice;
  88. this.listeners = this.listeners || {};
  89. if (event in this.listeners) {
  90. this.invoke(this.listeners[event], slice.call(arguments, 1));
  91. }
  92. if ('*' in this.listeners) {
  93. this.invoke(this.listeners['*'], arguments);
  94. }
  95. };
  96. Observable.prototype.invoke = function (listeners, params) {
  97. for (var i = 0, len = listeners.length; i < len; i++) {
  98. listeners[i].apply(this, params);
  99. }
  100. };
  101. Utils.Observable = Observable;
  102. Utils.generateChars = function (length) {
  103. var chars = '';
  104. for (var i = 0; i < length; i++) {
  105. var randomChar = Math.floor(Math.random() * 36);
  106. chars += randomChar.toString(36);
  107. }
  108. return chars;
  109. };
  110. return Utils;
  111. });
  112. define('select2/results',[
  113. './utils'
  114. ], function (Utils) {
  115. function Results ($element, options, dataAdapter) {
  116. this.$element = $element;
  117. this.data = dataAdapter;
  118. this.options = options;
  119. Results.__super__.constructor.call(this);
  120. }
  121. Utils.Extend(Results, Utils.Observable);
  122. Results.prototype.render = function () {
  123. var $results = $(
  124. '<ul class="options" role="tree"></ul>'
  125. );
  126. if (this.options.get('multiple')) {
  127. $results.attr('aria-multiselectable', 'true');
  128. }
  129. this.$results = $results;
  130. return $results;
  131. };
  132. Results.prototype.clear = function () {
  133. this.$results.empty();
  134. };
  135. Results.prototype.displayMessage = function (params) {
  136. this.clear();
  137. this.hideLoading();
  138. var $message = $('<li role="treeitem" class="option"></li>');
  139. var message = this.options.get('translations').get(params.message);
  140. $message.text(message(params.args));
  141. this.$results.append($message);
  142. };
  143. Results.prototype.append = function (data) {
  144. this.hideLoading();
  145. var $options = [];
  146. if (data.length === 0) {
  147. if (this.$results.children().length === 0) {
  148. this.trigger('results:message', {
  149. message: 'noResults'
  150. });
  151. }
  152. return;
  153. }
  154. data = this.sort(data);
  155. for (var d = 0; d < data.length; d++) {
  156. var item = data[d];
  157. var $option = this.option(item);
  158. $options.push($option);
  159. }
  160. this.$results.append($options);
  161. };
  162. Results.prototype.sort = function (data) {
  163. return data;
  164. };
  165. Results.prototype.setClasses = function () {
  166. var self = this;
  167. this.data.current(function (selected) {
  168. var selectedIds = $.map(selected, function (s) {
  169. return s.id.toString();
  170. });
  171. var $options = self.$results.find('.option[aria-selected]');
  172. $options.each(function () {
  173. var $option = $(this);
  174. var item = $.data(this, 'data');
  175. if (item.id != null && selectedIds.indexOf(item.id.toString()) > -1) {
  176. $option.attr('aria-selected', 'true');
  177. } else {
  178. $option.attr('aria-selected', 'false');
  179. }
  180. });
  181. var $selected = $options.filter('[aria-selected=true]');
  182. // Check if there are any selected options
  183. if ($selected.length > 0) {
  184. // If there are selected options, highlight the first
  185. $selected.first().trigger('mouseenter');
  186. } else {
  187. // If there are no selected options, highlight the first option
  188. // in the dropdown
  189. $options.first().trigger('mouseenter');
  190. }
  191. });
  192. };
  193. Results.prototype.showLoading = function (params) {
  194. this.hideLoading();
  195. var loadingMore = this.options.get('translations').get('searching');
  196. var loading = {
  197. disabled: true,
  198. loading: true,
  199. text: loadingMore(params)
  200. };
  201. var $loading = this.option(loading);
  202. $loading.className += ' loading-results';
  203. this.$results.prepend($loading);
  204. };
  205. Results.prototype.hideLoading = function () {
  206. this.$results.find('.loading-results').remove();
  207. };
  208. Results.prototype.option = function (data) {
  209. var option = document.createElement('li');
  210. option.className = 'option';
  211. var attrs = {
  212. 'role': 'treeitem',
  213. 'aria-selected': 'false'
  214. };
  215. if (data.disabled) {
  216. delete attrs['aria-selected'];
  217. attrs['aria-disabled'] = 'true';
  218. }
  219. if (data.id == null) {
  220. delete attrs['aria-selected'];
  221. }
  222. if (data._resultId != null) {
  223. option.id = data._resultId;
  224. }
  225. if (data.children) {
  226. attrs.role = 'group';
  227. attrs['aria-label'] = data.text;
  228. delete attrs['aria-selected'];
  229. }
  230. for (var attr in attrs) {
  231. var val = attrs[attr];
  232. option.setAttribute(attr, val);
  233. }
  234. if (data.children) {
  235. var $option = $(option);
  236. var label = document.createElement('strong');
  237. label.className = 'group-label';
  238. var $label = $(label);
  239. this.template(data, label);
  240. var $children = [];
  241. for (var c = 0; c < data.children.length; c++) {
  242. var child = data.children[c];
  243. var $child = this.option(child);
  244. $children.push($child);
  245. }
  246. var $childrenContainer = $('<ul class="options nested-options"></ul>');
  247. $childrenContainer.append($children);
  248. $option.append(label);
  249. $option.append($childrenContainer);
  250. } else {
  251. this.template(data, option);
  252. }
  253. $.data(option, 'data', data);
  254. return option;
  255. };
  256. Results.prototype.bind = function (container, $container) {
  257. var self = this;
  258. var id = container.id + '-results';
  259. this.$results.attr('id', id);
  260. container.on('results:all', function (params) {
  261. self.clear();
  262. self.append(params.data);
  263. if (container.isOpen()) {
  264. self.setClasses();
  265. }
  266. });
  267. container.on('results:append', function (params) {
  268. self.append(params.data);
  269. if (container.isOpen()) {
  270. self.setClasses();
  271. }
  272. });
  273. container.on('query', function (params) {
  274. self.showLoading(params);
  275. });
  276. container.on('select', function () {
  277. if (!container.isOpen()) {
  278. return;
  279. }
  280. self.setClasses();
  281. });
  282. container.on('unselect', function () {
  283. if (!container.isOpen()) {
  284. return;
  285. }
  286. self.setClasses();
  287. });
  288. container.on('open', function () {
  289. // When the dropdown is open, aria-expended="true"
  290. self.$results.attr('aria-expanded', 'true');
  291. self.$results.attr('aria-hidden', 'false');
  292. self.setClasses();
  293. self.ensureHighlightVisible();
  294. });
  295. container.on('close', function () {
  296. // When the dropdown is closed, aria-expended="false"
  297. self.$results.attr('aria-expanded', 'false');
  298. self.$results.attr('aria-hidden', 'true');
  299. self.$results.removeAttr('aria-activedescendant');
  300. });
  301. container.on('results:select', function () {
  302. var $highlighted = self.$results.find('.highlighted');
  303. if ($highlighted.length === 0) {
  304. return;
  305. }
  306. var data = $highlighted.data('data');
  307. if ($highlighted.attr('aria-selected') == 'true') {
  308. self.trigger('unselected', {
  309. data: data
  310. });
  311. } else {
  312. self.trigger('selected', {
  313. data: data
  314. });
  315. }
  316. });
  317. container.on('results:previous', function () {
  318. var $highlighted = self.$results.find('.highlighted');
  319. var $options = self.$results.find('[aria-selected]');
  320. var currentIndex = $options.index($highlighted);
  321. // If we are already at te top, don't move further
  322. if (currentIndex === 0) {
  323. return;
  324. }
  325. var nextIndex = currentIndex - 1;
  326. // If none are highlighted, highlight the first
  327. if ($highlighted.length === 0) {
  328. nextIndex = 0;
  329. }
  330. var $next = $options.eq(nextIndex);
  331. $next.trigger('mouseenter');
  332. var currentOffset = self.$results.offset().top;
  333. var nextTop = $next.offset().top;
  334. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  335. if (nextIndex === 0) {
  336. self.$results.scrollTop(0);
  337. } else if (nextTop - currentOffset < 0) {
  338. self.$results.scrollTop(nextOffset);
  339. }
  340. });
  341. container.on('results:next', function () {
  342. var $highlighted = self.$results.find('.highlighted');
  343. var $options = self.$results.find('[aria-selected]');
  344. var currentIndex = $options.index($highlighted);
  345. var nextIndex = currentIndex + 1;
  346. // If we are at the last option, stay there
  347. if (nextIndex >= $options.length) {
  348. return;
  349. }
  350. var $next = $options.eq(nextIndex);
  351. $next.trigger('mouseenter');
  352. var currentOffset = self.$results.offset().top +
  353. self.$results.outerHeight(false);
  354. var nextBottom = $next.offset().top + $next.outerHeight(false);
  355. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  356. if (nextIndex === 0) {
  357. self.$results.scrollTop(0);
  358. } else if (nextBottom > currentOffset) {
  359. self.$results.scrollTop(nextOffset);
  360. }
  361. });
  362. container.on('results:focus', function (params) {
  363. params.element.addClass('highlighted');
  364. });
  365. container.on('results:message', function (params) {
  366. self.trigger('results:message', params);
  367. });
  368. this.on('results:message', function (params) {
  369. self.displayMessage(params);
  370. });
  371. this.$results.on('mouseup', '.option[aria-selected]', function (evt) {
  372. var $this = $(this);
  373. var data = $this.data('data');
  374. if ($this.attr('aria-selected') === 'true') {
  375. self.trigger('unselected', {
  376. originalEvent: evt,
  377. data: data
  378. });
  379. return;
  380. }
  381. self.trigger('selected', {
  382. originalEvent: evt,
  383. data: data
  384. });
  385. });
  386. this.$results.on('mouseenter', '.option[aria-selected]', function (evt) {
  387. var data = $(this).data('data');
  388. self.$results.find('.option.highlighted').removeClass('highlighted');
  389. self.trigger('results:focus', {
  390. data: data,
  391. element: $(this)
  392. });
  393. });
  394. };
  395. Results.prototype.destroy = function () {
  396. this.$results.remove();
  397. };
  398. Results.prototype.ensureHighlightVisible = function () {
  399. var $highlighted = this.$results.find('.highlighted');
  400. if ($highlighted.length === 0) {
  401. return;
  402. }
  403. var $options = this.$results.find('[aria-selected]');
  404. var currentIndex = $options.index($highlighted);
  405. var currentOffset = this.$results.offset().top;
  406. var nextTop = $highlighted.offset().top;
  407. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  408. var offsetDelta = nextTop - currentOffset;
  409. nextOffset -= $highlighted.outerHeight(false) * 2;
  410. if (currentIndex <= 2) {
  411. this.$results.scrollTop(0);
  412. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  413. this.$results.scrollTop(nextOffset);
  414. }
  415. };
  416. Results.prototype.template = function (result, container) {
  417. var template = this.options.get('templateResult');
  418. container.innerHTML = template(result);
  419. };
  420. return Results;
  421. });
  422. define('select2/keys',[
  423. ], function () {
  424. var KEYS = {
  425. BACKSPACE: 8,
  426. TAB: 9,
  427. ENTER: 13,
  428. SHIFT: 16,
  429. CTRL: 17,
  430. ALT: 18,
  431. ESC: 27,
  432. SPACE: 32,
  433. PAGE_UP: 33,
  434. PAGE_DOWN: 34,
  435. END: 35,
  436. HOME: 36,
  437. LEFT: 37,
  438. UP: 38,
  439. RIGHT: 39,
  440. DOWN: 40,
  441. DELETE: 46,
  442. isArrow: function (k) {
  443. k = k.which ? k.which : k;
  444. switch (k) {
  445. case KEY.LEFT:
  446. case KEY.RIGHT:
  447. case KEY.UP:
  448. case KEY.DOWN:
  449. return true;
  450. }
  451. return false;
  452. }
  453. };
  454. return KEYS;
  455. });
  456. define('select2/selection/base',[
  457. '../utils',
  458. '../keys'
  459. ], function (Utils, KEYS) {
  460. function BaseSelection ($element, options) {
  461. this.$element = $element;
  462. this.options = options;
  463. BaseSelection.__super__.constructor.call(this);
  464. }
  465. Utils.Extend(BaseSelection, Utils.Observable);
  466. BaseSelection.prototype.render = function () {
  467. throw new Error('The `render` method must be defined in child classes.');
  468. };
  469. BaseSelection.prototype.bind = function (container, $container) {
  470. var self = this;
  471. var id = container.id + '-container';
  472. var resultsId = container.id + '-results';
  473. this.$selection.attr('aria-owns', resultsId);
  474. this.$selection.on('keydown', function (evt) {
  475. self.trigger('keypress', evt);
  476. if (evt.which === KEYS.SPACE) {
  477. evt.preventDefault();
  478. }
  479. });
  480. container.on('results:focus', function (params) {
  481. self.$selection.attr('aria-activedescendant', params.data._resultId);
  482. });
  483. container.on('selection:update', function (params) {
  484. self.update(params.data);
  485. });
  486. container.on('open', function () {
  487. // When the dropdown is open, aria-expanded="true"
  488. self.$selection.attr('aria-expanded', 'true');
  489. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  490. var $target = $(e.target);
  491. var $select = $target.closest('.select2');
  492. var $all = $('.select2.open');
  493. $all.each(function () {
  494. var $this = $(this);
  495. if (this == $select[0]) {
  496. return;
  497. }
  498. var $element = $this.data('element');
  499. $element.select2('close');
  500. });
  501. });
  502. });
  503. container.on('close', function () {
  504. // When the dropdown is closed, aria-expanded="false"
  505. self.$selection.attr('aria-expanded', 'false');
  506. self.$selection.removeAttr('aria-activedescendant');
  507. self.$selection.focus();
  508. $(document.body).off('mousedown.select2.' + container.id);
  509. });
  510. };
  511. BaseSelection.prototype.destroy = function () {
  512. // Unbind the dropdown click handler if it exists
  513. $(document.body).off('.select2.' + container.id);
  514. };
  515. BaseSelection.prototype.update = function (data) {
  516. throw new Error('The `update` method must be defined in child classes.');
  517. };
  518. return BaseSelection;
  519. });
  520. define('select2/selection/single',[
  521. './base',
  522. '../utils',
  523. '../keys'
  524. ], function (BaseSelection, Utils, KEYS) {
  525. function SingleSelection () {
  526. SingleSelection.__super__.constructor.apply(this, arguments);
  527. }
  528. Utils.Extend(SingleSelection, BaseSelection);
  529. SingleSelection.prototype.render = function () {
  530. var $selection = $(
  531. '<span class="select2-selection select2-selection--single" tabindex="0"' +
  532. ' role="combobox" aria-autocomplete="list" aria-haspopup="true"' +
  533. ' aria-expanded="false">' +
  534. '<span class="select2-selection__rendered"></span>' +
  535. '</span>'
  536. );
  537. $selection.attr('title', this.$element.attr('title'));
  538. this.$selection = $selection;
  539. return $selection;
  540. };
  541. SingleSelection.prototype.bind = function (container, $container) {
  542. var self = this;
  543. SingleSelection.__super__.bind.apply(this, arguments);
  544. var id = container.id + '-container';
  545. this.$selection.find('.select2-selection__rendered').attr('id', id);
  546. this.$selection.attr('aria-labelledby', id);
  547. this.$selection.on('mousedown', function (evt) {
  548. // Only respond to left clicks
  549. if (evt.which !== 1) {
  550. return;
  551. }
  552. self.trigger('toggle', {
  553. originalEvent: evt
  554. });
  555. });
  556. this.$selection.on('focus', function (evt) {
  557. // User focuses on the container
  558. });
  559. this.$selection.on('blur', function (evt) {
  560. // User exits the container
  561. });
  562. container.on('selection:update', function (params) {
  563. self.update(params.data);
  564. });
  565. };
  566. SingleSelection.prototype.clear = function () {
  567. this.$selection.find('.select2-selection__rendered').empty();
  568. };
  569. SingleSelection.prototype.display = function (data) {
  570. var template = this.options.get('templateSelection');
  571. return template(data);
  572. };
  573. SingleSelection.prototype.selectionContainer = function () {
  574. return $('<span></span>');
  575. };
  576. SingleSelection.prototype.update = function (data) {
  577. if (data.length === 0) {
  578. this.clear();
  579. return;
  580. }
  581. var selection = data[0];
  582. var formatted = this.display(selection);
  583. this.$selection.find('.select2-selection__rendered').html(formatted);
  584. };
  585. return SingleSelection;
  586. });
  587. define('select2/selection/multiple',[
  588. './base',
  589. '../utils'
  590. ], function (BaseSelection, Utils) {
  591. function MultipleSelection ($element, options) {
  592. MultipleSelection.__super__.constructor.apply(this, arguments);
  593. }
  594. Utils.Extend(MultipleSelection, BaseSelection);
  595. MultipleSelection.prototype.render = function () {
  596. var $selection = $(
  597. '<span class="select2-selection select2-selection--multiple"' +
  598. ' tabindex="0" role="combobox" aria-autocomplete="list"' +
  599. ' aria-haspopup="true" aria-expanded="false">' +
  600. '<ul class="select2-selection__rendered"></ul>' +
  601. '</span>'
  602. );
  603. $selection.attr('title', this.$element.attr('title'));
  604. this.$selection = $selection;
  605. return $selection;
  606. };
  607. MultipleSelection.prototype.bind = function (container, $container) {
  608. var self = this;
  609. MultipleSelection.__super__.bind.apply(this, arguments);
  610. this.$selection.on('click', function (evt) {
  611. self.trigger('toggle', {
  612. originalEvent: evt
  613. });
  614. });
  615. this.$selection.on('click', '.remove', function (evt) {
  616. var $remove = $(this);
  617. var $selection = $remove.parent();
  618. var data = $selection.data('data');
  619. self.trigger('unselected', {
  620. originalEvent: evt,
  621. data: data
  622. });
  623. });
  624. };
  625. MultipleSelection.prototype.clear = function () {
  626. this.$selection.find('.select2-selection__rendered').empty();
  627. };
  628. MultipleSelection.prototype.display = function (data) {
  629. var template = this.options.get('templateSelection');
  630. return template(data);
  631. };
  632. MultipleSelection.prototype.selectionContainer = function () {
  633. var $container = $(
  634. '<li class="select2-selection__choice">' +
  635. '<span class="select2-selection__choice__remove" role="presentation">' +
  636. '&times;' +
  637. '</span>' +
  638. '</li>'
  639. );
  640. return $container;
  641. };
  642. MultipleSelection.prototype.update = function (data) {
  643. this.clear();
  644. if (data.length === 0) {
  645. return;
  646. }
  647. var $selections = [];
  648. for (var d = 0; d < data.length; d++) {
  649. var selection = data[d];
  650. var formatted = this.display(selection);
  651. var $selection = this.selectionContainer();
  652. $selection.append(formatted);
  653. $selection.data('data', selection);
  654. $selections.push($selection);
  655. }
  656. this.$selection.find('.select2-selection__rendered').append($selections);
  657. };
  658. return MultipleSelection;
  659. });
  660. define('select2/selection/placeholder',[
  661. '../utils'
  662. ], function (Utils) {
  663. function Placeholder (decorated, $element, options) {
  664. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  665. decorated.call(this, $element, options);
  666. }
  667. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  668. if (typeof placeholder === 'string') {
  669. placeholder = {
  670. id: '',
  671. text: placeholder
  672. };
  673. }
  674. return placeholder;
  675. };
  676. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  677. var $placeholder = this.selectionContainer();
  678. $placeholder.html(this.display(placeholder));
  679. $placeholder.addClass('select2-selection__placeholder')
  680. .removeClass('select2-selection__choice');
  681. return $placeholder;
  682. };
  683. Placeholder.prototype.update = function (decorated, data) {
  684. var singlePlaceholder = (
  685. data.length == 1 && data[0].id != this.placeholder.id
  686. );
  687. var multipleSelections = data.length > 1;
  688. if (multipleSelections || singlePlaceholder) {
  689. return decorated.call(this, data);
  690. }
  691. this.clear();
  692. var $placeholder = this.createPlaceholder(this.placeholder);
  693. this.$selection.find('.select2-selection__rendered').append($placeholder);
  694. };
  695. return Placeholder;
  696. });
  697. define('select2/selection/search',[
  698. '../utils'
  699. ], function (Utils) {
  700. function Search (decorated, $element, options) {
  701. decorated.call(this, $element, options);
  702. }
  703. Search.prototype.render = function (decorated) {
  704. var $search = $(
  705. '<li class="select2-search select2-search--inline">' +
  706. '<input class="select2-search__field" type="search" tabindex="-1"' +
  707. ' role="textbox" />' +
  708. '</li>'
  709. );
  710. this.$searchContainer = $search;
  711. this.$search = $search.find('input');
  712. var $rendered = decorated.call(this);
  713. return $rendered;
  714. };
  715. Search.prototype.bind = function (decorated, container, $container) {
  716. var self = this;
  717. decorated.call(this, container, $container);
  718. container.on('open', function () {
  719. self.$search.attr('tabindex', 0);
  720. self.$search.focus();
  721. });
  722. container.on('close', function () {
  723. self.$search.attr('tabindex', -1);
  724. self.$search.val('');
  725. });
  726. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  727. evt.stopPropagation();
  728. self.trigger('keypress', evt);
  729. self._keyUpPrevented = evt.isDefaultPrevented();
  730. });
  731. this.$selection.on('keyup', '.select2-search--inline', function (evt) {
  732. self.handleSearch(evt);
  733. });
  734. };
  735. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  736. this.$search.attr('placeholder', placeholder.text);
  737. };
  738. Search.prototype.update = function (decorated, data) {
  739. this.$search.attr('placeholder', '');
  740. decorated.call(this, data);
  741. this.$selection.find('.select2-selection__rendered')
  742. .append(this.$searchContainer);
  743. this.resizeSearch();
  744. };
  745. Search.prototype.handleSearch = function (evt) {
  746. this.resizeSearch();
  747. if (!this._keyUpPrevented) {
  748. var input = this.$search.val();
  749. this.trigger('query', {
  750. term: input
  751. });
  752. }
  753. this._keyUpPrevented = false;
  754. };
  755. Search.prototype.resizeSearch = function () {
  756. this.$search.css('width', '25px');
  757. var width = '';
  758. if (this.$search.attr('placeholder') !== '') {
  759. width = this.$selection.innerWidth();
  760. width -= this.$selection.find('.select2-selection__rendered')
  761. .innerWidth();
  762. width = width + 'px';
  763. } else {
  764. var minimumWidth = this.$search.val().length + 1;
  765. width = (minimumWidth * 0.75) + 'em';
  766. }
  767. this.$search.css('width', width);
  768. };
  769. Search.prototype.showSearch = function (_, params) {
  770. return true;
  771. };
  772. return Search;
  773. });
  774. define('select2/translation',[
  775. ], function () {
  776. function Translation (dict) {
  777. this.dict = dict || {};
  778. }
  779. Translation.prototype.all = function () {
  780. return this.dict;
  781. };
  782. Translation.prototype.get = function (key) {
  783. return this.dict[key];
  784. };
  785. Translation.prototype.extend = function (translation) {
  786. this.dict = $.extend({}, translation.all(), this.dict);
  787. };
  788. // Static functions
  789. Translation._cache = {};
  790. Translation.loadPath = function (path) {
  791. if (!(path in Translation._cache)) {
  792. var translations = require(path);
  793. Translation._cache[path] = translations;
  794. }
  795. return new Translation(Translation._cache[path]);
  796. };
  797. return Translation;
  798. });
  799. define('select2/diacritics',[
  800. ], function () {
  801. var diacritics = {
  802. '\u24B6': 'A',
  803. '\uFF21': 'A',
  804. '\u00C0': 'A',
  805. '\u00C1': 'A',
  806. '\u00C2': 'A',
  807. '\u1EA6': 'A',
  808. '\u1EA4': 'A',
  809. '\u1EAA': 'A',
  810. '\u1EA8': 'A',
  811. '\u00C3': 'A',
  812. '\u0100': 'A',
  813. '\u0102': 'A',
  814. '\u1EB0': 'A',
  815. '\u1EAE': 'A',
  816. '\u1EB4': 'A',
  817. '\u1EB2': 'A',
  818. '\u0226': 'A',
  819. '\u01E0': 'A',
  820. '\u00C4': 'A',
  821. '\u01DE': 'A',
  822. '\u1EA2': 'A',
  823. '\u00C5': 'A',
  824. '\u01FA': 'A',
  825. '\u01CD': 'A',
  826. '\u0200': 'A',
  827. '\u0202': 'A',
  828. '\u1EA0': 'A',
  829. '\u1EAC': 'A',
  830. '\u1EB6': 'A',
  831. '\u1E00': 'A',
  832. '\u0104': 'A',
  833. '\u023A': 'A',
  834. '\u2C6F': 'A',
  835. '\uA732': 'AA',
  836. '\u00C6': 'AE',
  837. '\u01FC': 'AE',
  838. '\u01E2': 'AE',
  839. '\uA734': 'AO',
  840. '\uA736': 'AU',
  841. '\uA738': 'AV',
  842. '\uA73A': 'AV',
  843. '\uA73C': 'AY',
  844. '\u24B7': 'B',
  845. '\uFF22': 'B',
  846. '\u1E02': 'B',
  847. '\u1E04': 'B',
  848. '\u1E06': 'B',
  849. '\u0243': 'B',
  850. '\u0182': 'B',
  851. '\u0181': 'B',
  852. '\u24B8': 'C',
  853. '\uFF23': 'C',
  854. '\u0106': 'C',
  855. '\u0108': 'C',
  856. '\u010A': 'C',
  857. '\u010C': 'C',
  858. '\u00C7': 'C',
  859. '\u1E08': 'C',
  860. '\u0187': 'C',
  861. '\u023B': 'C',
  862. '\uA73E': 'C',
  863. '\u24B9': 'D',
  864. '\uFF24': 'D',
  865. '\u1E0A': 'D',
  866. '\u010E': 'D',
  867. '\u1E0C': 'D',
  868. '\u1E10': 'D',
  869. '\u1E12': 'D',
  870. '\u1E0E': 'D',
  871. '\u0110': 'D',
  872. '\u018B': 'D',
  873. '\u018A': 'D',
  874. '\u0189': 'D',
  875. '\uA779': 'D',
  876. '\u01F1': 'DZ',
  877. '\u01C4': 'DZ',
  878. '\u01F2': 'Dz',
  879. '\u01C5': 'Dz',
  880. '\u24BA': 'E',
  881. '\uFF25': 'E',
  882. '\u00C8': 'E',
  883. '\u00C9': 'E',
  884. '\u00CA': 'E',
  885. '\u1EC0': 'E',
  886. '\u1EBE': 'E',
  887. '\u1EC4': 'E',
  888. '\u1EC2': 'E',
  889. '\u1EBC': 'E',
  890. '\u0112': 'E',
  891. '\u1E14': 'E',
  892. '\u1E16': 'E',
  893. '\u0114': 'E',
  894. '\u0116': 'E',
  895. '\u00CB': 'E',
  896. '\u1EBA': 'E',
  897. '\u011A': 'E',
  898. '\u0204': 'E',
  899. '\u0206': 'E',
  900. '\u1EB8': 'E',
  901. '\u1EC6': 'E',
  902. '\u0228': 'E',
  903. '\u1E1C': 'E',
  904. '\u0118': 'E',
  905. '\u1E18': 'E',
  906. '\u1E1A': 'E',
  907. '\u0190': 'E',
  908. '\u018E': 'E',
  909. '\u24BB': 'F',
  910. '\uFF26': 'F',
  911. '\u1E1E': 'F',
  912. '\u0191': 'F',
  913. '\uA77B': 'F',
  914. '\u24BC': 'G',
  915. '\uFF27': 'G',
  916. '\u01F4': 'G',
  917. '\u011C': 'G',
  918. '\u1E20': 'G',
  919. '\u011E': 'G',
  920. '\u0120': 'G',
  921. '\u01E6': 'G',
  922. '\u0122': 'G',
  923. '\u01E4': 'G',
  924. '\u0193': 'G',
  925. '\uA7A0': 'G',
  926. '\uA77D': 'G',
  927. '\uA77E': 'G',
  928. '\u24BD': 'H',
  929. '\uFF28': 'H',
  930. '\u0124': 'H',
  931. '\u1E22': 'H',
  932. '\u1E26': 'H',
  933. '\u021E': 'H',
  934. '\u1E24': 'H',
  935. '\u1E28': 'H',
  936. '\u1E2A': 'H',
  937. '\u0126': 'H',
  938. '\u2C67': 'H',
  939. '\u2C75': 'H',
  940. '\uA78D': 'H',
  941. '\u24BE': 'I',
  942. '\uFF29': 'I',
  943. '\u00CC': 'I',
  944. '\u00CD': 'I',
  945. '\u00CE': 'I',
  946. '\u0128': 'I',
  947. '\u012A': 'I',
  948. '\u012C': 'I',
  949. '\u0130': 'I',
  950. '\u00CF': 'I',
  951. '\u1E2E': 'I',
  952. '\u1EC8': 'I',
  953. '\u01CF': 'I',
  954. '\u0208': 'I',
  955. '\u020A': 'I',
  956. '\u1ECA': 'I',
  957. '\u012E': 'I',
  958. '\u1E2C': 'I',
  959. '\u0197': 'I',
  960. '\u24BF': 'J',
  961. '\uFF2A': 'J',
  962. '\u0134': 'J',
  963. '\u0248': 'J',
  964. '\u24C0': 'K',
  965. '\uFF2B': 'K',
  966. '\u1E30': 'K',
  967. '\u01E8': 'K',
  968. '\u1E32': 'K',
  969. '\u0136': 'K',
  970. '\u1E34': 'K',
  971. '\u0198': 'K',
  972. '\u2C69': 'K',
  973. '\uA740': 'K',
  974. '\uA742': 'K',
  975. '\uA744': 'K',
  976. '\uA7A2': 'K',
  977. '\u24C1': 'L',
  978. '\uFF2C': 'L',
  979. '\u013F': 'L',
  980. '\u0139': 'L',
  981. '\u013D': 'L',
  982. '\u1E36': 'L',
  983. '\u1E38': 'L',
  984. '\u013B': 'L',
  985. '\u1E3C': 'L',
  986. '\u1E3A': 'L',
  987. '\u0141': 'L',
  988. '\u023D': 'L',
  989. '\u2C62': 'L',
  990. '\u2C60': 'L',
  991. '\uA748': 'L',
  992. '\uA746': 'L',
  993. '\uA780': 'L',
  994. '\u01C7': 'LJ',
  995. '\u01C8': 'Lj',
  996. '\u24C2': 'M',
  997. '\uFF2D': 'M',
  998. '\u1E3E': 'M',
  999. '\u1E40': 'M',
  1000. '\u1E42': 'M',
  1001. '\u2C6E': 'M',
  1002. '\u019C': 'M',
  1003. '\u24C3': 'N',
  1004. '\uFF2E': 'N',
  1005. '\u01F8': 'N',
  1006. '\u0143': 'N',
  1007. '\u00D1': 'N',
  1008. '\u1E44': 'N',
  1009. '\u0147': 'N',
  1010. '\u1E46': 'N',
  1011. '\u0145': 'N',
  1012. '\u1E4A': 'N',
  1013. '\u1E48': 'N',
  1014. '\u0220': 'N',
  1015. '\u019D': 'N',
  1016. '\uA790': 'N',
  1017. '\uA7A4': 'N',
  1018. '\u01CA': 'NJ',
  1019. '\u01CB': 'Nj',
  1020. '\u24C4': 'O',
  1021. '\uFF2F': 'O',
  1022. '\u00D2': 'O',
  1023. '\u00D3': 'O',
  1024. '\u00D4': 'O',
  1025. '\u1ED2': 'O',
  1026. '\u1ED0': 'O',
  1027. '\u1ED6': 'O',
  1028. '\u1ED4': 'O',
  1029. '\u00D5': 'O',
  1030. '\u1E4C': 'O',
  1031. '\u022C': 'O',
  1032. '\u1E4E': 'O',
  1033. '\u014C': 'O',
  1034. '\u1E50': 'O',
  1035. '\u1E52': 'O',
  1036. '\u014E': 'O',
  1037. '\u022E': 'O',
  1038. '\u0230': 'O',
  1039. '\u00D6': 'O',
  1040. '\u022A': 'O',
  1041. '\u1ECE': 'O',
  1042. '\u0150': 'O',
  1043. '\u01D1': 'O',
  1044. '\u020C': 'O',
  1045. '\u020E': 'O',
  1046. '\u01A0': 'O',
  1047. '\u1EDC': 'O',
  1048. '\u1EDA': 'O',
  1049. '\u1EE0': 'O',
  1050. '\u1EDE': 'O',
  1051. '\u1EE2': 'O',
  1052. '\u1ECC': 'O',
  1053. '\u1ED8': 'O',
  1054. '\u01EA': 'O',
  1055. '\u01EC': 'O',
  1056. '\u00D8': 'O',
  1057. '\u01FE': 'O',
  1058. '\u0186': 'O',
  1059. '\u019F': 'O',
  1060. '\uA74A': 'O',
  1061. '\uA74C': 'O',
  1062. '\u01A2': 'OI',
  1063. '\uA74E': 'OO',
  1064. '\u0222': 'OU',
  1065. '\u24C5': 'P',
  1066. '\uFF30': 'P',
  1067. '\u1E54': 'P',
  1068. '\u1E56': 'P',
  1069. '\u01A4': 'P',
  1070. '\u2C63': 'P',
  1071. '\uA750': 'P',
  1072. '\uA752': 'P',
  1073. '\uA754': 'P',
  1074. '\u24C6': 'Q',
  1075. '\uFF31': 'Q',
  1076. '\uA756': 'Q',
  1077. '\uA758': 'Q',
  1078. '\u024A': 'Q',
  1079. '\u24C7': 'R',
  1080. '\uFF32': 'R',
  1081. '\u0154': 'R',
  1082. '\u1E58': 'R',
  1083. '\u0158': 'R',
  1084. '\u0210': 'R',
  1085. '\u0212': 'R',
  1086. '\u1E5A': 'R',
  1087. '\u1E5C': 'R',
  1088. '\u0156': 'R',
  1089. '\u1E5E': 'R',
  1090. '\u024C': 'R',
  1091. '\u2C64': 'R',
  1092. '\uA75A': 'R',
  1093. '\uA7A6': 'R',
  1094. '\uA782': 'R',
  1095. '\u24C8': 'S',
  1096. '\uFF33': 'S',
  1097. '\u1E9E': 'S',
  1098. '\u015A': 'S',
  1099. '\u1E64': 'S',
  1100. '\u015C': 'S',
  1101. '\u1E60': 'S',
  1102. '\u0160': 'S',
  1103. '\u1E66': 'S',
  1104. '\u1E62': 'S',
  1105. '\u1E68': 'S',
  1106. '\u0218': 'S',
  1107. '\u015E': 'S',
  1108. '\u2C7E': 'S',
  1109. '\uA7A8': 'S',
  1110. '\uA784': 'S',
  1111. '\u24C9': 'T',
  1112. '\uFF34': 'T',
  1113. '\u1E6A': 'T',
  1114. '\u0164': 'T',
  1115. '\u1E6C': 'T',
  1116. '\u021A': 'T',
  1117. '\u0162': 'T',
  1118. '\u1E70': 'T',
  1119. '\u1E6E': 'T',
  1120. '\u0166': 'T',
  1121. '\u01AC': 'T',
  1122. '\u01AE': 'T',
  1123. '\u023E': 'T',
  1124. '\uA786': 'T',
  1125. '\uA728': 'TZ',
  1126. '\u24CA': 'U',
  1127. '\uFF35': 'U',
  1128. '\u00D9': 'U',
  1129. '\u00DA': 'U',
  1130. '\u00DB': 'U',
  1131. '\u0168': 'U',
  1132. '\u1E78': 'U',
  1133. '\u016A': 'U',
  1134. '\u1E7A': 'U',
  1135. '\u016C': 'U',
  1136. '\u00DC': 'U',
  1137. '\u01DB': 'U',
  1138. '\u01D7': 'U',
  1139. '\u01D5': 'U',
  1140. '\u01D9': 'U',
  1141. '\u1EE6': 'U',
  1142. '\u016E': 'U',
  1143. '\u0170': 'U',
  1144. '\u01D3': 'U',
  1145. '\u0214': 'U',
  1146. '\u0216': 'U',
  1147. '\u01AF': 'U',
  1148. '\u1EEA': 'U',
  1149. '\u1EE8': 'U',
  1150. '\u1EEE': 'U',
  1151. '\u1EEC': 'U',
  1152. '\u1EF0': 'U',
  1153. '\u1EE4': 'U',
  1154. '\u1E72': 'U',
  1155. '\u0172': 'U',
  1156. '\u1E76': 'U',
  1157. '\u1E74': 'U',
  1158. '\u0244': 'U',
  1159. '\u24CB': 'V',
  1160. '\uFF36': 'V',
  1161. '\u1E7C': 'V',
  1162. '\u1E7E': 'V',
  1163. '\u01B2': 'V',
  1164. '\uA75E': 'V',
  1165. '\u0245': 'V',
  1166. '\uA760': 'VY',
  1167. '\u24CC': 'W',
  1168. '\uFF37': 'W',
  1169. '\u1E80': 'W',
  1170. '\u1E82': 'W',
  1171. '\u0174': 'W',
  1172. '\u1E86': 'W',
  1173. '\u1E84': 'W',
  1174. '\u1E88': 'W',
  1175. '\u2C72': 'W',
  1176. '\u24CD': 'X',
  1177. '\uFF38': 'X',
  1178. '\u1E8A': 'X',
  1179. '\u1E8C': 'X',
  1180. '\u24CE': 'Y',
  1181. '\uFF39': 'Y',
  1182. '\u1EF2': 'Y',
  1183. '\u00DD': 'Y',
  1184. '\u0176': 'Y',
  1185. '\u1EF8': 'Y',
  1186. '\u0232': 'Y',
  1187. '\u1E8E': 'Y',
  1188. '\u0178': 'Y',
  1189. '\u1EF6': 'Y',
  1190. '\u1EF4': 'Y',
  1191. '\u01B3': 'Y',
  1192. '\u024E': 'Y',
  1193. '\u1EFE': 'Y',
  1194. '\u24CF': 'Z',
  1195. '\uFF3A': 'Z',
  1196. '\u0179': 'Z',
  1197. '\u1E90': 'Z',
  1198. '\u017B': 'Z',
  1199. '\u017D': 'Z',
  1200. '\u1E92': 'Z',
  1201. '\u1E94': 'Z',
  1202. '\u01B5': 'Z',
  1203. '\u0224': 'Z',
  1204. '\u2C7F': 'Z',
  1205. '\u2C6B': 'Z',
  1206. '\uA762': 'Z',
  1207. '\u24D0': 'a',
  1208. '\uFF41': 'a',
  1209. '\u1E9A': 'a',
  1210. '\u00E0': 'a',
  1211. '\u00E1': 'a',
  1212. '\u00E2': 'a',
  1213. '\u1EA7': 'a',
  1214. '\u1EA5': 'a',
  1215. '\u1EAB': 'a',
  1216. '\u1EA9': 'a',
  1217. '\u00E3': 'a',
  1218. '\u0101': 'a',
  1219. '\u0103': 'a',
  1220. '\u1EB1': 'a',
  1221. '\u1EAF': 'a',
  1222. '\u1EB5': 'a',
  1223. '\u1EB3': 'a',
  1224. '\u0227': 'a',
  1225. '\u01E1': 'a',
  1226. '\u00E4': 'a',
  1227. '\u01DF': 'a',
  1228. '\u1EA3': 'a',
  1229. '\u00E5': 'a',
  1230. '\u01FB': 'a',
  1231. '\u01CE': 'a',
  1232. '\u0201': 'a',
  1233. '\u0203': 'a',
  1234. '\u1EA1': 'a',
  1235. '\u1EAD': 'a',
  1236. '\u1EB7': 'a',
  1237. '\u1E01': 'a',
  1238. '\u0105': 'a',
  1239. '\u2C65': 'a',
  1240. '\u0250': 'a',
  1241. '\uA733': 'aa',
  1242. '\u00E6': 'ae',
  1243. '\u01FD': 'ae',
  1244. '\u01E3': 'ae',
  1245. '\uA735': 'ao',
  1246. '\uA737': 'au',
  1247. '\uA739': 'av',
  1248. '\uA73B': 'av',
  1249. '\uA73D': 'ay',
  1250. '\u24D1': 'b',
  1251. '\uFF42': 'b',
  1252. '\u1E03': 'b',
  1253. '\u1E05': 'b',
  1254. '\u1E07': 'b',
  1255. '\u0180': 'b',
  1256. '\u0183': 'b',
  1257. '\u0253': 'b',
  1258. '\u24D2': 'c',
  1259. '\uFF43': 'c',
  1260. '\u0107': 'c',
  1261. '\u0109': 'c',
  1262. '\u010B': 'c',
  1263. '\u010D': 'c',
  1264. '\u00E7': 'c',
  1265. '\u1E09': 'c',
  1266. '\u0188': 'c',
  1267. '\u023C': 'c',
  1268. '\uA73F': 'c',
  1269. '\u2184': 'c',
  1270. '\u24D3': 'd',
  1271. '\uFF44': 'd',
  1272. '\u1E0B': 'd',
  1273. '\u010F': 'd',
  1274. '\u1E0D': 'd',
  1275. '\u1E11': 'd',
  1276. '\u1E13': 'd',
  1277. '\u1E0F': 'd',
  1278. '\u0111': 'd',
  1279. '\u018C': 'd',
  1280. '\u0256': 'd',
  1281. '\u0257': 'd',
  1282. '\uA77A': 'd',
  1283. '\u01F3': 'dz',
  1284. '\u01C6': 'dz',
  1285. '\u24D4': 'e',
  1286. '\uFF45': 'e',
  1287. '\u00E8': 'e',
  1288. '\u00E9': 'e',
  1289. '\u00EA': 'e',
  1290. '\u1EC1': 'e',
  1291. '\u1EBF': 'e',
  1292. '\u1EC5': 'e',
  1293. '\u1EC3': 'e',
  1294. '\u1EBD': 'e',
  1295. '\u0113': 'e',
  1296. '\u1E15': 'e',
  1297. '\u1E17': 'e',
  1298. '\u0115': 'e',
  1299. '\u0117': 'e',
  1300. '\u00EB': 'e',
  1301. '\u1EBB': 'e',
  1302. '\u011B': 'e',
  1303. '\u0205': 'e',
  1304. '\u0207': 'e',
  1305. '\u1EB9': 'e',
  1306. '\u1EC7': 'e',
  1307. '\u0229': 'e',
  1308. '\u1E1D': 'e',
  1309. '\u0119': 'e',
  1310. '\u1E19': 'e',
  1311. '\u1E1B': 'e',
  1312. '\u0247': 'e',
  1313. '\u025B': 'e',
  1314. '\u01DD': 'e',
  1315. '\u24D5': 'f',
  1316. '\uFF46': 'f',
  1317. '\u1E1F': 'f',
  1318. '\u0192': 'f',
  1319. '\uA77C': 'f',
  1320. '\u24D6': 'g',
  1321. '\uFF47': 'g',
  1322. '\u01F5': 'g',
  1323. '\u011D': 'g',
  1324. '\u1E21': 'g',
  1325. '\u011F': 'g',
  1326. '\u0121': 'g',
  1327. '\u01E7': 'g',
  1328. '\u0123': 'g',
  1329. '\u01E5': 'g',
  1330. '\u0260': 'g',
  1331. '\uA7A1': 'g',
  1332. '\u1D79': 'g',
  1333. '\uA77F': 'g',
  1334. '\u24D7': 'h',
  1335. '\uFF48': 'h',
  1336. '\u0125': 'h',
  1337. '\u1E23': 'h',
  1338. '\u1E27': 'h',
  1339. '\u021F': 'h',
  1340. '\u1E25': 'h',
  1341. '\u1E29': 'h',
  1342. '\u1E2B': 'h',
  1343. '\u1E96': 'h',
  1344. '\u0127': 'h',
  1345. '\u2C68': 'h',
  1346. '\u2C76': 'h',
  1347. '\u0265': 'h',
  1348. '\u0195': 'hv',
  1349. '\u24D8': 'i',
  1350. '\uFF49': 'i',
  1351. '\u00EC': 'i',
  1352. '\u00ED': 'i',
  1353. '\u00EE': 'i',
  1354. '\u0129': 'i',
  1355. '\u012B': 'i',
  1356. '\u012D': 'i',
  1357. '\u00EF': 'i',
  1358. '\u1E2F': 'i',
  1359. '\u1EC9': 'i',
  1360. '\u01D0': 'i',
  1361. '\u0209': 'i',
  1362. '\u020B': 'i',
  1363. '\u1ECB': 'i',
  1364. '\u012F': 'i',
  1365. '\u1E2D': 'i',
  1366. '\u0268': 'i',
  1367. '\u0131': 'i',
  1368. '\u24D9': 'j',
  1369. '\uFF4A': 'j',
  1370. '\u0135': 'j',
  1371. '\u01F0': 'j',
  1372. '\u0249': 'j',
  1373. '\u24DA': 'k',
  1374. '\uFF4B': 'k',
  1375. '\u1E31': 'k',
  1376. '\u01E9': 'k',
  1377. '\u1E33': 'k',
  1378. '\u0137': 'k',
  1379. '\u1E35': 'k',
  1380. '\u0199': 'k',
  1381. '\u2C6A': 'k',
  1382. '\uA741': 'k',
  1383. '\uA743': 'k',
  1384. '\uA745': 'k',
  1385. '\uA7A3': 'k',
  1386. '\u24DB': 'l',
  1387. '\uFF4C': 'l',
  1388. '\u0140': 'l',
  1389. '\u013A': 'l',
  1390. '\u013E': 'l',
  1391. '\u1E37': 'l',
  1392. '\u1E39': 'l',
  1393. '\u013C': 'l',
  1394. '\u1E3D': 'l',
  1395. '\u1E3B': 'l',
  1396. '\u017F': 'l',
  1397. '\u0142': 'l',
  1398. '\u019A': 'l',
  1399. '\u026B': 'l',
  1400. '\u2C61': 'l',
  1401. '\uA749': 'l',
  1402. '\uA781': 'l',
  1403. '\uA747': 'l',
  1404. '\u01C9': 'lj',
  1405. '\u24DC': 'm',
  1406. '\uFF4D': 'm',
  1407. '\u1E3F': 'm',
  1408. '\u1E41': 'm',
  1409. '\u1E43': 'm',
  1410. '\u0271': 'm',
  1411. '\u026F': 'm',
  1412. '\u24DD': 'n',
  1413. '\uFF4E': 'n',
  1414. '\u01F9': 'n',
  1415. '\u0144': 'n',
  1416. '\u00F1': 'n',
  1417. '\u1E45': 'n',
  1418. '\u0148': 'n',
  1419. '\u1E47': 'n',
  1420. '\u0146': 'n',
  1421. '\u1E4B': 'n',
  1422. '\u1E49': 'n',
  1423. '\u019E': 'n',
  1424. '\u0272': 'n',
  1425. '\u0149': 'n',
  1426. '\uA791': 'n',
  1427. '\uA7A5': 'n',
  1428. '\u01CC': 'nj',
  1429. '\u24DE': 'o',
  1430. '\uFF4F': 'o',
  1431. '\u00F2': 'o',
  1432. '\u00F3': 'o',
  1433. '\u00F4': 'o',
  1434. '\u1ED3': 'o',
  1435. '\u1ED1': 'o',
  1436. '\u1ED7': 'o',
  1437. '\u1ED5': 'o',
  1438. '\u00F5': 'o',
  1439. '\u1E4D': 'o',
  1440. '\u022D': 'o',
  1441. '\u1E4F': 'o',
  1442. '\u014D': 'o',
  1443. '\u1E51': 'o',
  1444. '\u1E53': 'o',
  1445. '\u014F': 'o',
  1446. '\u022F': 'o',
  1447. '\u0231': 'o',
  1448. '\u00F6': 'o',
  1449. '\u022B': 'o',
  1450. '\u1ECF': 'o',
  1451. '\u0151': 'o',
  1452. '\u01D2': 'o',
  1453. '\u020D': 'o',
  1454. '\u020F': 'o',
  1455. '\u01A1': 'o',
  1456. '\u1EDD': 'o',
  1457. '\u1EDB': 'o',
  1458. '\u1EE1': 'o',
  1459. '\u1EDF': 'o',
  1460. '\u1EE3': 'o',
  1461. '\u1ECD': 'o',
  1462. '\u1ED9': 'o',
  1463. '\u01EB': 'o',
  1464. '\u01ED': 'o',
  1465. '\u00F8': 'o',
  1466. '\u01FF': 'o',
  1467. '\u0254': 'o',
  1468. '\uA74B': 'o',
  1469. '\uA74D': 'o',
  1470. '\u0275': 'o',
  1471. '\u01A3': 'oi',
  1472. '\u0223': 'ou',
  1473. '\uA74F': 'oo',
  1474. '\u24DF': 'p',
  1475. '\uFF50': 'p',
  1476. '\u1E55': 'p',
  1477. '\u1E57': 'p',
  1478. '\u01A5': 'p',
  1479. '\u1D7D': 'p',
  1480. '\uA751': 'p',
  1481. '\uA753': 'p',
  1482. '\uA755': 'p',
  1483. '\u24E0': 'q',
  1484. '\uFF51': 'q',
  1485. '\u024B': 'q',
  1486. '\uA757': 'q',
  1487. '\uA759': 'q',
  1488. '\u24E1': 'r',
  1489. '\uFF52': 'r',
  1490. '\u0155': 'r',
  1491. '\u1E59': 'r',
  1492. '\u0159': 'r',
  1493. '\u0211': 'r',
  1494. '\u0213': 'r',
  1495. '\u1E5B': 'r',
  1496. '\u1E5D': 'r',
  1497. '\u0157': 'r',
  1498. '\u1E5F': 'r',
  1499. '\u024D': 'r',
  1500. '\u027D': 'r',
  1501. '\uA75B': 'r',
  1502. '\uA7A7': 'r',
  1503. '\uA783': 'r',
  1504. '\u24E2': 's',
  1505. '\uFF53': 's',
  1506. '\u00DF': 's',
  1507. '\u015B': 's',
  1508. '\u1E65': 's',
  1509. '\u015D': 's',
  1510. '\u1E61': 's',
  1511. '\u0161': 's',
  1512. '\u1E67': 's',
  1513. '\u1E63': 's',
  1514. '\u1E69': 's',
  1515. '\u0219': 's',
  1516. '\u015F': 's',
  1517. '\u023F': 's',
  1518. '\uA7A9': 's',
  1519. '\uA785': 's',
  1520. '\u1E9B': 's',
  1521. '\u24E3': 't',
  1522. '\uFF54': 't',
  1523. '\u1E6B': 't',
  1524. '\u1E97': 't',
  1525. '\u0165': 't',
  1526. '\u1E6D': 't',
  1527. '\u021B': 't',
  1528. '\u0163': 't',
  1529. '\u1E71': 't',
  1530. '\u1E6F': 't',
  1531. '\u0167': 't',
  1532. '\u01AD': 't',
  1533. '\u0288': 't',
  1534. '\u2C66': 't',
  1535. '\uA787': 't',
  1536. '\uA729': 'tz',
  1537. '\u24E4': 'u',
  1538. '\uFF55': 'u',
  1539. '\u00F9': 'u',
  1540. '\u00FA': 'u',
  1541. '\u00FB': 'u',
  1542. '\u0169': 'u',
  1543. '\u1E79': 'u',
  1544. '\u016B': 'u',
  1545. '\u1E7B': 'u',
  1546. '\u016D': 'u',
  1547. '\u00FC': 'u',
  1548. '\u01DC': 'u',
  1549. '\u01D8': 'u',
  1550. '\u01D6': 'u',
  1551. '\u01DA': 'u',
  1552. '\u1EE7': 'u',
  1553. '\u016F': 'u',
  1554. '\u0171': 'u',
  1555. '\u01D4': 'u',
  1556. '\u0215': 'u',
  1557. '\u0217': 'u',
  1558. '\u01B0': 'u',
  1559. '\u1EEB': 'u',
  1560. '\u1EE9': 'u',
  1561. '\u1EEF': 'u',
  1562. '\u1EED': 'u',
  1563. '\u1EF1': 'u',
  1564. '\u1EE5': 'u',
  1565. '\u1E73': 'u',
  1566. '\u0173': 'u',
  1567. '\u1E77': 'u',
  1568. '\u1E75': 'u',
  1569. '\u0289': 'u',
  1570. '\u24E5': 'v',
  1571. '\uFF56': 'v',
  1572. '\u1E7D': 'v',
  1573. '\u1E7F': 'v',
  1574. '\u028B': 'v',
  1575. '\uA75F': 'v',
  1576. '\u028C': 'v',
  1577. '\uA761': 'vy',
  1578. '\u24E6': 'w',
  1579. '\uFF57': 'w',
  1580. '\u1E81': 'w',
  1581. '\u1E83': 'w',
  1582. '\u0175': 'w',
  1583. '\u1E87': 'w',
  1584. '\u1E85': 'w',
  1585. '\u1E98': 'w',
  1586. '\u1E89': 'w',
  1587. '\u2C73': 'w',
  1588. '\u24E7': 'x',
  1589. '\uFF58': 'x',
  1590. '\u1E8B': 'x',
  1591. '\u1E8D': 'x',
  1592. '\u24E8': 'y',
  1593. '\uFF59': 'y',
  1594. '\u1EF3': 'y',
  1595. '\u00FD': 'y',
  1596. '\u0177': 'y',
  1597. '\u1EF9': 'y',
  1598. '\u0233': 'y',
  1599. '\u1E8F': 'y',
  1600. '\u00FF': 'y',
  1601. '\u1EF7': 'y',
  1602. '\u1E99': 'y',
  1603. '\u1EF5': 'y',
  1604. '\u01B4': 'y',
  1605. '\u024F': 'y',
  1606. '\u1EFF': 'y',
  1607. '\u24E9': 'z',
  1608. '\uFF5A': 'z',
  1609. '\u017A': 'z',
  1610. '\u1E91': 'z',
  1611. '\u017C': 'z',
  1612. '\u017E': 'z',
  1613. '\u1E93': 'z',
  1614. '\u1E95': 'z',
  1615. '\u01B6': 'z',
  1616. '\u0225': 'z',
  1617. '\u0240': 'z',
  1618. '\u2C6C': 'z',
  1619. '\uA763': 'z',
  1620. '\u0386': '\u0391',
  1621. '\u0388': '\u0395',
  1622. '\u0389': '\u0397',
  1623. '\u038A': '\u0399',
  1624. '\u03AA': '\u0399',
  1625. '\u038C': '\u039F',
  1626. '\u038E': '\u03A5',
  1627. '\u03AB': '\u03A5',
  1628. '\u038F': '\u03A9',
  1629. '\u03AC': '\u03B1',
  1630. '\u03AD': '\u03B5',
  1631. '\u03AE': '\u03B7',
  1632. '\u03AF': '\u03B9',
  1633. '\u03CA': '\u03B9',
  1634. '\u0390': '\u03B9',
  1635. '\u03CC': '\u03BF',
  1636. '\u03CD': '\u03C5',
  1637. '\u03CB': '\u03C5',
  1638. '\u03B0': '\u03C5',
  1639. '\u03C9': '\u03C9',
  1640. '\u03C2': '\u03C3'
  1641. };
  1642. return diacritics;
  1643. });
  1644. define('select2/data/base',[
  1645. '../utils'
  1646. ], function (Utils) {
  1647. function BaseAdapter ($element, options) {
  1648. BaseAdapter.__super__.constructor.call(this);
  1649. }
  1650. Utils.Extend(BaseAdapter, Utils.Observable);
  1651. BaseAdapter.prototype.current = function (callback) {
  1652. throw new Error('The `current` method must be defined in child classes.');
  1653. };
  1654. BaseAdapter.prototype.query = function (params, callback) {
  1655. throw new Error('The `query` method must be defined in child classes.');
  1656. };
  1657. BaseAdapter.prototype.bind = function (container, $container) {
  1658. // Can be implemented in subclasses
  1659. };
  1660. BaseAdapter.prototype.destroy = function () {
  1661. // Can be implemented in subclasses
  1662. };
  1663. BaseAdapter.prototype.generateResultId = function (container, data) {
  1664. var id = container.id + '-result-';
  1665. id += Utils.generateChars(4);
  1666. if (data.id != null) {
  1667. id += '-' + data.id.toString();
  1668. } else {
  1669. id += '-' + Utils.generateChars(4);
  1670. }
  1671. return id;
  1672. };
  1673. return BaseAdapter;
  1674. });
  1675. define('select2/data/select',[
  1676. './base',
  1677. '../utils',
  1678. 'jquery'
  1679. ], function (BaseAdapter, Utils, $) {
  1680. function SelectAdapter ($element, options) {
  1681. this.$element = $element;
  1682. this.options = options;
  1683. SelectAdapter.__super__.constructor.call(this);
  1684. }
  1685. Utils.Extend(SelectAdapter, BaseAdapter);
  1686. SelectAdapter.prototype.current = function (callback) {
  1687. var data = [];
  1688. var self = this;
  1689. this.$element.find(':selected').each(function () {
  1690. var $option = $(this);
  1691. var option = self.item($option);
  1692. data.push(option);
  1693. });
  1694. callback(data);
  1695. };
  1696. SelectAdapter.prototype.select = function (data) {
  1697. var self = this;
  1698. if (this.$element.prop('multiple')) {
  1699. this.current(function (currentData) {
  1700. var val = [];
  1701. data = [data];
  1702. data.push.apply(data, currentData);
  1703. for (var d = 0; d < data.length; d++) {
  1704. id = data[d].id;
  1705. if (val.indexOf(id) === -1) {
  1706. val.push(id);
  1707. }
  1708. }
  1709. self.$element.val(val);
  1710. self.$element.trigger('change');
  1711. });
  1712. } else {
  1713. var val = data.id;
  1714. this.$element.val(val);
  1715. this.$element.trigger('change');
  1716. }
  1717. };
  1718. SelectAdapter.prototype.unselect = function (data) {
  1719. var self = this;
  1720. if (!this.$element.prop('multiple')) {
  1721. return;
  1722. }
  1723. this.current(function (currentData) {
  1724. var val = [];
  1725. for (var d = 0; d < currentData.length; d++) {
  1726. id = currentData[d].id;
  1727. if (id !== data.id && val.indexOf(id) === -1) {
  1728. val.push(id);
  1729. }
  1730. }
  1731. self.$element.val(val);
  1732. self.$element.trigger('change');
  1733. });
  1734. };
  1735. SelectAdapter.prototype.bind = function (container, $container) {
  1736. var self = this;
  1737. this.container = container;
  1738. container.on('select', function (params) {
  1739. self.select(params.data);
  1740. });
  1741. container.on('unselect', function (params) {
  1742. self.unselect(params.data);
  1743. });
  1744. };
  1745. SelectAdapter.prototype.destroy = function () {
  1746. // Remove anything added to child elements
  1747. this.$element.find('*').each(function () {
  1748. // Remove any custom data set by Select2
  1749. $.removeData(this, 'data');
  1750. });
  1751. };
  1752. SelectAdapter.prototype.query = function (params, callback) {
  1753. var data = [];
  1754. var self = this;
  1755. var $options = this.$element.children();
  1756. $options.each(function () {
  1757. var $option = $(this);
  1758. if (!$option.is('option') && !$option.is('optgroup')) {
  1759. return;
  1760. }
  1761. var option = self.item($option);
  1762. var matches = self.matches(params, option);
  1763. if (matches !== null) {
  1764. data.push(matches);
  1765. }
  1766. });
  1767. callback(data);
  1768. };
  1769. SelectAdapter.prototype.option = function (data) {
  1770. var option = document.createElement('option');
  1771. option.value = data.id;
  1772. if (data.disabled) {
  1773. option.disabled = true;
  1774. }
  1775. if (data.selected) {
  1776. option.selected = true;
  1777. }
  1778. option.innerText = data.text;
  1779. var $option = $(option);
  1780. var normalizedData = this._normalizeItem(data);
  1781. // Override the option's data with the combined data
  1782. $.data(option, 'data', normalizedData);
  1783. return $option;
  1784. };
  1785. SelectAdapter.prototype.item = function ($option) {
  1786. var data = {};
  1787. data = $.data($option[0], 'data');
  1788. if (data != null) {
  1789. return data;
  1790. }
  1791. if ($option.is('option')) {
  1792. data = {
  1793. id: $option.val(),
  1794. text: $option.html(),
  1795. disabled: $option.prop('disabled'),
  1796. selected: $option.prop('selected')
  1797. };
  1798. } else if ($option.is('optgroup')) {
  1799. data = {
  1800. text: $option.attr('label'),
  1801. children: []
  1802. };
  1803. var $children = $option.children('option');
  1804. var children = [];
  1805. for (var c = 0; c < $children.length; c++) {
  1806. var $child = $($children[c]);
  1807. var child = this.item($child);
  1808. children.push(child);
  1809. }
  1810. data.children = children;
  1811. }
  1812. data = this._normalizeItem(data);
  1813. $.data($option[0], 'data', data);
  1814. return data;
  1815. };
  1816. SelectAdapter.prototype._normalizeItem = function (item) {
  1817. if (item.text == null) {
  1818. item = {
  1819. id: item,
  1820. text: item
  1821. };
  1822. }
  1823. var defaults = {
  1824. selected: false,
  1825. disabled: false
  1826. };
  1827. if (item.id != null) {
  1828. item.id = item.id.toString();
  1829. }
  1830. if (item.text != null) {
  1831. item.text = item.text.toString();
  1832. }
  1833. if (item._resultId == null && item.id && this.container != null) {
  1834. item._resultId = this.generateResultId(this.container, item);
  1835. }
  1836. return $.extend({}, defaults, item);
  1837. };
  1838. SelectAdapter.prototype.matches = function (params, data) {
  1839. var matcher = this.options.get('matcher');
  1840. return matcher(params, data);
  1841. };
  1842. return SelectAdapter;
  1843. });
  1844. define('select2/data/array',[
  1845. './select',
  1846. '../utils',
  1847. 'jquery'
  1848. ], function (SelectAdapter, Utils, $) {
  1849. function ArrayAdapter ($element, options) {
  1850. var data = options.get('data');
  1851. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1852. this.convertToOptions(data);
  1853. }
  1854. Utils.Extend(ArrayAdapter, SelectAdapter);
  1855. ArrayAdapter.prototype.select = function (data) {
  1856. var $option = this.$element.find('option[value="' + data.id + '"]');
  1857. if ($option.length === 0) {
  1858. $option = this.option(data);
  1859. this.$element.append($option);
  1860. }
  1861. ArrayAdapter.__super__.select.call(this, data);
  1862. };
  1863. ArrayAdapter.prototype.convertToOptions = function (data) {
  1864. var self = this;
  1865. var $existing = this.$element.find('option');
  1866. var existingIds = $existing.map(function () {
  1867. return self.item($(this)).id;
  1868. }).get();
  1869. // Filter out all items except for the one passed in the argument
  1870. function onlyItem (item) {
  1871. return function () {
  1872. return $(this).val() == item.id;
  1873. };
  1874. }
  1875. for (var d = 0; d < data.length; d++) {
  1876. var item = data[d];
  1877. item.id = item.id.toString();
  1878. // Skip items which were pre-loaded, only merge the data
  1879. if (existingIds.indexOf(item.id) >= 0) {
  1880. var $existingOption = $existing.filter(onlyItem(item));
  1881. var existingData = this.item($existingOption);
  1882. var newData = $.extend(true, {}, existingData, item);
  1883. var $newOption = this.option(existingData);
  1884. $existingOption.replaceWith($newOption);
  1885. continue;
  1886. }
  1887. var $option = this.option(item);
  1888. this.$element.append($option);
  1889. }
  1890. };
  1891. return ArrayAdapter;
  1892. });
  1893. define('select2/data/ajax',[
  1894. './array',
  1895. '../utils',
  1896. 'jquery'
  1897. ], function (ArrayAdapter, Utils, $) {
  1898. function AjaxAdapter ($element, options) {
  1899. this.ajaxOptions = options.get('ajax');
  1900. if (this.ajaxOptions.processResults != null) {
  1901. this.processResults = this.ajaxOptions.processResults;
  1902. }
  1903. ArrayAdapter.__super__.constructor.call(this, $element, options);
  1904. }
  1905. Utils.Extend(AjaxAdapter, ArrayAdapter);
  1906. AjaxAdapter.prototype.processResults = function (results) {
  1907. return results;
  1908. };
  1909. AjaxAdapter.prototype.query = function (params, callback) {
  1910. var matches = [];
  1911. var self = this;
  1912. if (this._request) {
  1913. this._request.abort();
  1914. this._request = null;
  1915. }
  1916. var options = $.extend({
  1917. type: 'GET'
  1918. }, this.ajaxOptions);
  1919. if (typeof options.url === 'function') {
  1920. options.url = options.url(params);
  1921. }
  1922. if (typeof options.data === 'function') {
  1923. options.data = options.data(params);
  1924. }
  1925. function request () {
  1926. var $request = $.ajax(options);
  1927. $request.success(function (data) {
  1928. var results = self.processResults(data);
  1929. callback(results);
  1930. });
  1931. self._request = $request;
  1932. }
  1933. if (this.ajaxOptions.delay && params.term !== '') {
  1934. if (this._queryTimeout) {
  1935. window.clearTimeout(this._queryTimeout);
  1936. }
  1937. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  1938. } else {
  1939. request();
  1940. }
  1941. };
  1942. return AjaxAdapter;
  1943. });
  1944. define('select2/data/tags',[
  1945. ], function () {
  1946. function Tags (decorated, $element, options) {
  1947. var tags = options.get('tags');
  1948. decorated.call(this, $element, options);
  1949. if ($.isArray(tags)) {
  1950. for (var t = 0; t < tags.length; t++) {
  1951. var tag = tags[t];
  1952. var item = this._normalizeItem(tag);
  1953. var $option = this.option(item);
  1954. this.$element.append($option);
  1955. }
  1956. }
  1957. }
  1958. Tags.prototype.query = function (decorated, params, callback) {
  1959. var self = this;
  1960. this._removeOldTags();
  1961. if (params.term == null || params.term === '' || params.page != null) {
  1962. decorated.call(this, params, callback);
  1963. return;
  1964. }
  1965. function wrapper (data, child) {
  1966. for (var i = 0; i < data.length; i++) {
  1967. var option = data[i];
  1968. var checkChildren = (
  1969. option.children != null && !wrapper(option.children, true)
  1970. );
  1971. var checkText = option.text === params.term;
  1972. if (checkText || checkChildren) {
  1973. if (child) {
  1974. return false;
  1975. }
  1976. callback(data);
  1977. return;
  1978. }
  1979. }
  1980. if (child) {
  1981. return true;
  1982. }
  1983. var tag = self.createTag(params);
  1984. var $option = self.option(tag);
  1985. $option.attr('data-select2-tag', true);
  1986. self.$element.append($option);
  1987. self.insertTag(data, tag);
  1988. callback(data);
  1989. }
  1990. decorated.call(this, params, wrapper);
  1991. };
  1992. Tags.prototype.createTag = function (decorated, params) {
  1993. return {
  1994. id: params.term,
  1995. text: params.term
  1996. };
  1997. };
  1998. Tags.prototype.insertTag = function (_, data, tag) {
  1999. data.unshift(tag);
  2000. };
  2001. Tags.prototype._removeOldTags = function (_) {
  2002. var tag = this._lastTag;
  2003. var $options = this.$element.find('option[data-select2-tag]');
  2004. $options.each(function () {
  2005. if (this.selected) {
  2006. return;
  2007. }
  2008. $(this).remove();
  2009. });
  2010. };
  2011. return Tags;
  2012. });
  2013. define('select2/data/minimumInputLength',[
  2014. ], function () {
  2015. function MinimumInputLength (decorated, $e, options) {
  2016. this.minimumInputLength = options.get('minimumInputLength');
  2017. decorated.call(this, $e, options);
  2018. }
  2019. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  2020. params.term = params.term || '';
  2021. if (params.term.length < this.minimumInputLength) {
  2022. this.trigger('results:message', {
  2023. message: 'inputTooShort',
  2024. args: {
  2025. minimum: this.minimumInputLength,
  2026. input: params.term,
  2027. params: params
  2028. }
  2029. });
  2030. return;
  2031. }
  2032. decorated.call(this, params, callback);
  2033. };
  2034. return MinimumInputLength;
  2035. });
  2036. define('select2/dropdown',[
  2037. './utils'
  2038. ], function (Utils) {
  2039. function Dropdown ($element, options) {
  2040. this.$element = $element;
  2041. }
  2042. Utils.Extend(Dropdown, Utils.Observable);
  2043. Dropdown.prototype.render = function () {
  2044. var $dropdown = $(
  2045. '<span class="dropdown">' +
  2046. '<span class="results"></span>' +
  2047. '</span>'
  2048. );
  2049. this.$dropdown = $dropdown;
  2050. return $dropdown;
  2051. };
  2052. Dropdown.prototype.destroy = function () {
  2053. // Remove the dropdown from the DOM
  2054. this.$dropdown.remove();
  2055. };
  2056. Dropdown.prototype.bind = function (container, $container) {
  2057. // Can be implemented in subclasses
  2058. };
  2059. return Dropdown;
  2060. });
  2061. define('select2/dropdown/search',[
  2062. '../utils'
  2063. ], function (Utils) {
  2064. function Search () { }
  2065. Search.prototype.render = function (decorated) {
  2066. var $rendered = decorated.call(this);
  2067. var $search = $(
  2068. '<span class="select2-search">' +
  2069. '<input type="search" tabindex="-1" role="textbox" />' +
  2070. '</span>'
  2071. );
  2072. this.$searchContainer = $search;
  2073. this.$search = $search.find('input');
  2074. $rendered.prepend($search);
  2075. return $rendered;
  2076. };
  2077. Search.prototype.bind = function (decorated, container, $container) {
  2078. var self = this;
  2079. decorated.call(this, container, $container);
  2080. this.$search.on('keydown', function (evt) {
  2081. self.trigger('keypress', evt);
  2082. self._keyUpPrevented = evt.isDefaultPrevented();
  2083. });
  2084. this.$search.on('keyup', function (evt) {
  2085. self.handleSearch(evt);
  2086. });
  2087. container.on('open', function () {
  2088. self.$search.attr('tabindex', 0);
  2089. self.$search.focus();
  2090. });
  2091. container.on('close', function () {
  2092. self.$search.attr('tabindex', -1);
  2093. self.$search.val('');
  2094. });
  2095. container.on('results:all', function (params) {
  2096. if (params.query.term == null || params.query.term === '') {
  2097. var showSearch = self.showSearch(params);
  2098. if (showSearch) {
  2099. self.$searchContainer.show();
  2100. } else {
  2101. self.$searchContainer.hide();
  2102. }
  2103. }
  2104. });
  2105. };
  2106. Search.prototype.handleSearch = function (evt) {
  2107. if (!this._keyUpPrevented) {
  2108. var input = this.$search.val();
  2109. this.trigger('query', {
  2110. term: input
  2111. });
  2112. }
  2113. this._keyUpPrevented = false;
  2114. };
  2115. Search.prototype.showSearch = function (_, params) {
  2116. return true;
  2117. };
  2118. return Search;
  2119. });
  2120. define('select2/dropdown/hidePlaceholder',[
  2121. ], function () {
  2122. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  2123. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  2124. decorated.call(this, $element, options, dataAdapter);
  2125. }
  2126. HidePlaceholder.prototype.append = function (decorated, data) {
  2127. data = this.removePlaceholder(data);
  2128. decorated.call(this, data);
  2129. };
  2130. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  2131. if (typeof placeholder === 'string') {
  2132. placeholder = {
  2133. id: '',
  2134. text: placeholder
  2135. };
  2136. }
  2137. return placeholder;
  2138. };
  2139. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  2140. var modifiedData = data.slice(0);
  2141. for (var d = data.length - 1; d >= 0; d--) {
  2142. var item = data[d];
  2143. if (this.placeholder.id === item.id) {
  2144. modifiedData.splice(d, 1);
  2145. }
  2146. }
  2147. return modifiedData;
  2148. };
  2149. return HidePlaceholder;
  2150. });
  2151. define('select2/dropdown/infiniteScroll',[
  2152. 'jquery'
  2153. ], function ($) {
  2154. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  2155. this.lastParams = {};
  2156. decorated.call(this, $element, options, dataAdapter);
  2157. this.$loadingMore = this.createLoadingMore();
  2158. this.loading = false;
  2159. }
  2160. InfiniteScroll.prototype.append = function (decorated, data) {
  2161. this.$loadingMore.remove();
  2162. decorated.call(this, data);
  2163. if (data.length > 0) {
  2164. this.$results.append(this.$loadingMore);
  2165. }
  2166. this.loading = false;
  2167. };
  2168. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  2169. var self = this;
  2170. decorated.call(this, container, $container);
  2171. container.on('query', function (params) {
  2172. self.lastParams = params;
  2173. self.loading = true;
  2174. });
  2175. container.on('query:append', function (params) {
  2176. self.lastParams = params;
  2177. self.loading = true;
  2178. });
  2179. this.$results.on('scroll', function () {
  2180. var loadMoreVisible = $.contains(
  2181. document.documentElement,
  2182. self.$loadingMore[0]
  2183. );
  2184. if (self.loading || !loadMoreVisible) {
  2185. return;
  2186. }
  2187. var currentOffset = self.$results.offset().top +
  2188. self.$results.outerHeight(false);
  2189. var loadingMoreOffset = self.$loadingMore.offset().top +
  2190. self.$loadingMore.outerHeight(false);
  2191. if (currentOffset + 50 >= loadingMoreOffset) {
  2192. self.loadMore();
  2193. }
  2194. });
  2195. };
  2196. InfiniteScroll.prototype.loadMore = function () {
  2197. this.loading = true;
  2198. var params = $.extend({}, {page: 1}, this.lastParams);
  2199. params.page++;
  2200. this.trigger('query:append', params);
  2201. };
  2202. InfiniteScroll.prototype.createLoadingMore = function () {
  2203. var $option = $(
  2204. '<li class="option load-more" role="treeitem"></li>'
  2205. );
  2206. var message = this.options.get('translations').get('loadingMore');
  2207. $option.html(message(this.lastParams));
  2208. return $option;
  2209. };
  2210. return InfiniteScroll;
  2211. });
  2212. define('select2/i18n/en',[],function () {
  2213. return {
  2214. errorLoading: function () {
  2215. return 'The results could not be loaded.';
  2216. },
  2217. inputTooLong: function (args) {
  2218. var overChars = args.input.length - args.maximum;
  2219. var message = 'Please delete ' + overChars + ' character';
  2220. if (overChars != 1) {
  2221. message += 's';
  2222. }
  2223. return message;
  2224. },
  2225. inputTooShort: function (args) {
  2226. var remainingChars = args.minimum - args.input.length;
  2227. var message = 'Please enter ' + remainingChars + ' or more character';
  2228. if (remainingChars != 1) {
  2229. message += 's';
  2230. }
  2231. return message;
  2232. },
  2233. searching: function () {
  2234. return 'Searching…';
  2235. },
  2236. loadingMore: function () {
  2237. return 'Loading more results…';
  2238. },
  2239. maximumSelected: function (args) {
  2240. var message = 'You can only select' + args.maximum + ' item';
  2241. if (args.maximum != 1) {
  2242. message += 's';
  2243. }
  2244. return message;
  2245. },
  2246. noResults: function () {
  2247. return 'No results found';
  2248. }
  2249. };
  2250. });
  2251. define('select2/defaults',[
  2252. 'jquery',
  2253. './results',
  2254. './selection/single',
  2255. './selection/multiple',
  2256. './selection/placeholder',
  2257. './selection/search',
  2258. './utils',
  2259. './translation',
  2260. './diacritics',
  2261. './data/select',
  2262. './data/array',
  2263. './data/ajax',
  2264. './data/tags',
  2265. './data/minimumInputLength',
  2266. './dropdown',
  2267. './dropdown/search',
  2268. './dropdown/hidePlaceholder',
  2269. './dropdown/infiniteScroll',
  2270. './i18n/en'
  2271. ], function ($, ResultsList,
  2272. SingleSelection, MultipleSelection, Placeholder, SelectionSearch,
  2273. Utils, Translation, DIACRITICS,
  2274. SelectData, ArrayData, AjaxData, Tags, MinimumInputLength,
  2275. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  2276. EnglishTranslation) {
  2277. function Defaults () {
  2278. this.reset();
  2279. }
  2280. Defaults.prototype.apply = function (options) {
  2281. options = $.extend({}, this.defaults, options);
  2282. if (options.dataAdapter == null) {
  2283. if (options.ajax != null) {
  2284. options.dataAdapter = AjaxData;
  2285. } else if (options.data != null) {
  2286. options.dataAdapter = ArrayData;
  2287. } else {
  2288. options.dataAdapter = SelectData;
  2289. }
  2290. }
  2291. if (options.minimumInputLength > 0) {
  2292. options.dataAdapter = Utils.Decorate(
  2293. options.dataAdapter,
  2294. MinimumInputLength
  2295. );
  2296. }
  2297. if (options.tags != null) {
  2298. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  2299. }
  2300. if (options.resultsAdapter == null) {
  2301. options.resultsAdapter = ResultsList;
  2302. if (options.ajax != null) {
  2303. options.resultsAdapter = Utils.Decorate(
  2304. options.resultsAdapter,
  2305. InfiniteScroll
  2306. );
  2307. }
  2308. if (options.placeholder != null) {
  2309. options.resultsAdapter = Utils.Decorate(
  2310. options.resultsAdapter,
  2311. HidePlaceholder
  2312. );
  2313. }
  2314. }
  2315. if (options.dropdownAdapter == null) {
  2316. if (options.multiple) {
  2317. options.dropdownAdapter = Dropdown;
  2318. } else {
  2319. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  2320. options.dropdownAdapter = SearchableDropdown;
  2321. }
  2322. }
  2323. if (options.selectionAdapter == null) {
  2324. if (options.multiple) {
  2325. options.selectionAdapter = MultipleSelection;
  2326. } else {
  2327. options.selectionAdapter = SingleSelection;
  2328. }
  2329. // Add the placeholder mixin if a placeholder was specified
  2330. if (options.placeholder != null) {
  2331. options.selectionAdapter = Utils.Decorate(
  2332. options.selectionAdapter,
  2333. Placeholder
  2334. );
  2335. }
  2336. if (options.multiple) {
  2337. options.selectionAdapter = Utils.Decorate(
  2338. options.selectionAdapter,
  2339. SelectionSearch
  2340. );
  2341. }
  2342. }
  2343. if (typeof options.language === 'string') {
  2344. options.language = [options.language];
  2345. }
  2346. if ($.isArray(options.language)) {
  2347. var languages = new Translation();
  2348. var languageNames = options.language.concat(this.defaults.language);
  2349. for (var l = 0; l < languageNames.length; l++) {
  2350. var name = languageNames[l];
  2351. var language = {};
  2352. try {
  2353. // Try to load it with the original name
  2354. language = Translation.loadPath(name);
  2355. } catch (e) {
  2356. // If we couldn't load it, check if it wasn't the full path
  2357. name = 'select2/i18n/' + name;
  2358. language = Translation.loadPath(name);
  2359. }
  2360. languages.extend(language);
  2361. }
  2362. options.translations = languages;
  2363. } else {
  2364. options.translations = new Translations(options.language);
  2365. }
  2366. return options;
  2367. };
  2368. Defaults.prototype.reset = function () {
  2369. function stripDiacritics (text) {
  2370. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  2371. function match(a) {
  2372. return DIACRITICS[a] || a;
  2373. }
  2374. return text.replace(/[^\u0000-\u007E]/g, match);
  2375. }
  2376. function matcher (params, data) {
  2377. // Always return the object if there is nothing to compare
  2378. if ($.trim(params.term) === '') {
  2379. return data;
  2380. }
  2381. // Do a recursive check for options with children
  2382. if (data.children && data.children.length > 0) {
  2383. // Clone the data object if there are children
  2384. // This is required as we modify the object to remove any non-matches
  2385. var match = $.extend(true, {}, data);
  2386. // Check each child of the option
  2387. for (var c = data.children.length - 1; c >= 0; c--) {
  2388. var child = data.children[c];
  2389. var matches = matcher(params, child);
  2390. // If there wasn't a match, remove the object in the array
  2391. if (matches == null) {
  2392. match.children.splice(c, 1);
  2393. }
  2394. }
  2395. // If any children matched, return the new object
  2396. if (match.children.length > 0) {
  2397. return match;
  2398. }
  2399. // If there were no matching children, check just the plain object
  2400. return matcher(params, match);
  2401. }
  2402. var original = stripDiacritics(data.text).toUpperCase();
  2403. var term = stripDiacritics(params.term).toUpperCase();
  2404. // Check if the text contains the term
  2405. if (original.indexOf(term) > -1) {
  2406. return data;
  2407. }
  2408. // If it doesn't contain the term, don't return anything
  2409. return null;
  2410. }
  2411. this.defaults = {
  2412. language: ['select2/i18n/en'],
  2413. matcher: matcher,
  2414. minimumInputLength: 0,
  2415. theme: 'default',
  2416. templateResult: function (result) {
  2417. return result.text;
  2418. },
  2419. templateSelection: function (selection) {
  2420. return selection.text;
  2421. }
  2422. };
  2423. };
  2424. var defaults = new Defaults();
  2425. return defaults;
  2426. });
  2427. define('select2/options',[
  2428. './defaults'
  2429. ], function (Defaults) {
  2430. function Options (options, $element) {
  2431. this.options = options;
  2432. if ($element != null) {
  2433. this.fromElement($element);
  2434. }
  2435. this.options = Defaults.apply(this.options);
  2436. }
  2437. Options.prototype.fromElement = function ($e) {
  2438. if (this.options.multiple == null) {
  2439. this.options.multiple = $e.prop('multiple');
  2440. }
  2441. return this;
  2442. };
  2443. Options.prototype.get = function (key) {
  2444. return this.options[key];
  2445. };
  2446. Options.prototype.set = function (key, val) {
  2447. this.options[key] = val;
  2448. };
  2449. return Options;
  2450. });
  2451. define('select2/core',[
  2452. 'jquery',
  2453. './options',
  2454. './utils',
  2455. './keys'
  2456. ], function ($, Options, Utils, KEYS) {
  2457. var Select2 = function ($element, options) {
  2458. if ($element.data('select2') != null) {
  2459. return;
  2460. }
  2461. this.$element = $element;
  2462. this.id = this._generateId($element);
  2463. options = options || {};
  2464. this.options = new Options(options, $element);
  2465. Select2.__super__.constructor.call(this);
  2466. // Set up containers and adapters
  2467. var DataAdapter = this.options.get('dataAdapter');
  2468. this.data = new DataAdapter($element, this.options);
  2469. var $container = this.render();
  2470. this._placeContainer($container);
  2471. var SelectionAdapter = this.options.get('selectionAdapter');
  2472. this.selection = new SelectionAdapter($element, this.options);
  2473. var $selection = this.selection.render();
  2474. this._placeSelection($selection);
  2475. var DropdownAdapter = this.options.get('dropdownAdapter');
  2476. this.dropdown = new DropdownAdapter($element, this.options);
  2477. var $dropdown = this.dropdown.render();
  2478. this._placeDropdown($dropdown);
  2479. var ResultsAdapter = this.options.get('resultsAdapter');
  2480. this.results = new ResultsAdapter($element, this.options, this.data);
  2481. var $results = this.results.render();
  2482. this._placeResults($results);
  2483. // Bind events
  2484. var self = this;
  2485. // Bind the container to all of the adapters
  2486. this._bindAdapters();
  2487. // Register any DOM event handlers
  2488. this._registerDomEvents();
  2489. // Register any internal event handlers
  2490. this._registerDataEvents();
  2491. this._registerSelectionEvents();
  2492. this._registerDropdownEvents();
  2493. this._registerResultsEvents();
  2494. this._registerEvents();
  2495. // Set the initial state
  2496. this.data.current(function (initialData) {
  2497. self.trigger('selection:update', {
  2498. data: initialData
  2499. });
  2500. });
  2501. // Hide the original select
  2502. $element.hide();
  2503. this._tabindex = $element.attr('tabindex') || 0;
  2504. $element.attr('tabindex', '-1');
  2505. $element.data('select2', this);
  2506. };
  2507. Utils.Extend(Select2, Utils.Observable);
  2508. Select2.prototype._generateId = function ($element) {
  2509. var id = '';
  2510. if ($element.attr('id') != null) {
  2511. id = $element.attr('id');
  2512. } else if ($element.attr('name') != null) {
  2513. id = $element.attr('name') + '-' + Utils.generateChars(2);
  2514. } else {
  2515. id = Utils.generateChars(4);
  2516. }
  2517. id = 'select2-' + id;
  2518. return id;
  2519. };
  2520. Select2.prototype._placeContainer = function ($container) {
  2521. $container.insertAfter(this.$element);
  2522. $container.width(this.$element.outerWidth(false));
  2523. };
  2524. Select2.prototype._placeSelection = function ($selection) {
  2525. var $selectionContainer = this.$container.find('.selection');
  2526. $selectionContainer.append($selection);
  2527. };
  2528. Select2.prototype._placeDropdown = function ($dropdown) {
  2529. this.$dropdown = $dropdown;
  2530. var $dropdownContainer = this.$container.find('.dropdown-wrapper');
  2531. $dropdownContainer.append($dropdown);
  2532. };
  2533. Select2.prototype._placeResults = function ($results) {
  2534. var $resultsContainer = this.$dropdown.find('.results');
  2535. $resultsContainer.append($results);
  2536. };
  2537. Select2.prototype._bindAdapters = function () {
  2538. this.data.bind(this, this.$container);
  2539. this.selection.bind(this, this.$container);
  2540. this.dropdown.bind(this, this.$container);
  2541. this.results.bind(this, this.$container);
  2542. };
  2543. Select2.prototype._registerDomEvents = function () {
  2544. var self = this;
  2545. this.$element.on('change.select2', function () {
  2546. self.data.current(function (data) {
  2547. self.trigger('selection:update', {
  2548. data: data
  2549. });
  2550. });
  2551. });
  2552. };
  2553. Select2.prototype._registerDataEvents = function () {
  2554. var self = this;
  2555. this.data.on('results:message', function (params) {
  2556. self.trigger('results:message', params);
  2557. });
  2558. };
  2559. Select2.prototype._registerSelectionEvents = function () {
  2560. var self = this;
  2561. this.selection.on('open', function () {
  2562. self.open();
  2563. });
  2564. this.selection.on('close', function () {
  2565. self.close();
  2566. });
  2567. this.selection.on('toggle', function () {
  2568. self.toggleDropdown();
  2569. });
  2570. this.selection.on('results:select', function () {
  2571. self.trigger('results:select');
  2572. });
  2573. this.selection.on('results:previous', function () {
  2574. self.trigger('results:previous');
  2575. });
  2576. this.selection.on('results:next', function () {
  2577. self.trigger('results:next');
  2578. });
  2579. this.selection.on('unselected', function (params) {
  2580. self.trigger('unselect', params);
  2581. self.close();
  2582. });
  2583. this.selection.on('query', function (params) {
  2584. self.trigger('query', params);
  2585. });
  2586. this.selection.on('keypress', function (e) {
  2587. self.trigger('keypress', e);
  2588. });
  2589. };
  2590. Select2.prototype._registerDropdownEvents = function () {
  2591. var self = this;
  2592. this.dropdown.on('query', function (params) {
  2593. self.trigger('query', params);
  2594. });
  2595. this.dropdown.on('keypress', function (e) {
  2596. self.trigger('keypress', e);
  2597. });
  2598. };
  2599. Select2.prototype._registerResultsEvents = function () {
  2600. var self = this;
  2601. this.results.on('query:append', function (params) {
  2602. self.trigger('query:append', params);
  2603. });
  2604. this.results.on('selected', function (params) {
  2605. self.trigger('select', params);
  2606. self.close();
  2607. });
  2608. this.results.on('unselected', function (params) {
  2609. self.trigger('unselect', params);
  2610. self.close();
  2611. });
  2612. this.results.on('results:focus', function (params) {
  2613. self.trigger('results:focus', params);
  2614. });
  2615. };
  2616. Select2.prototype._registerEvents = function () {
  2617. var self = this;
  2618. this.on('open', function () {
  2619. self.$container.addClass('open');
  2620. });
  2621. this.on('close', function () {
  2622. self.$container.removeClass('open');
  2623. });
  2624. this.on('query', function (params) {
  2625. this.data.query(params, function (data) {
  2626. self.trigger('results:all', {
  2627. data: data,
  2628. query: params
  2629. });
  2630. });
  2631. });
  2632. this.on('query:append', function (params) {
  2633. this.data.query(params, function (data) {
  2634. self.trigger('results:append', {
  2635. data: data,
  2636. query: params
  2637. });
  2638. });
  2639. });
  2640. this.on('keypress', function (evt) {
  2641. var key = evt.which;
  2642. if (self.isOpen()) {
  2643. if (key === KEYS.ENTER) {
  2644. self.trigger('results:select');
  2645. evt.preventDefault();
  2646. } else if (key === KEYS.UP) {
  2647. self.trigger('results:previous');
  2648. evt.preventDefault();
  2649. } else if (key === KEYS.DOWN) {
  2650. self.trigger('results:next');
  2651. evt.preventDefault();
  2652. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  2653. self.close();
  2654. evt.preventDefault();
  2655. }
  2656. } else {
  2657. if (key === KEYS.ENTER || key === KEYS.SPACE) {
  2658. self.open();
  2659. evt.preventDefault();
  2660. }
  2661. }
  2662. });
  2663. };
  2664. Select2.prototype.toggleDropdown = function () {
  2665. if (this.isOpen()) {
  2666. this.close();
  2667. } else {
  2668. this.open();
  2669. }
  2670. };
  2671. Select2.prototype.open = function () {
  2672. if (this.isOpen()) {
  2673. return;
  2674. }
  2675. this.trigger('query', {});
  2676. this.trigger('open');
  2677. };
  2678. Select2.prototype.close = function () {
  2679. if (!this.isOpen()) {
  2680. return;
  2681. }
  2682. this.trigger('close');
  2683. };
  2684. Select2.prototype.isOpen = function () {
  2685. return this.$container.hasClass('open');
  2686. };
  2687. Select2.prototype.destroy = function () {
  2688. this.$container.remove();
  2689. this.$element.off('.select2');
  2690. this.$element.attr('tabindex', this._tabindex);
  2691. this.$element.show();
  2692. this.$element.removeData('select2');
  2693. this.data.destroy();
  2694. this.selection.destroy();
  2695. this.dropdown.destroy();
  2696. this.results.destroy();
  2697. this.data = null;
  2698. this.selection = null;
  2699. this.dropdown = null;
  2700. this.results = null;
  2701. };
  2702. Select2.prototype.render = function () {
  2703. var $container = $(
  2704. '<span class="select2 select2-container">' +
  2705. '<span class="selection"></span>' +
  2706. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  2707. '</span>'
  2708. );
  2709. this.$container = $container;
  2710. this.$container.addClass('select2-container--' + this.options.get('theme'));
  2711. $container.data('element', this.$element);
  2712. return $container;
  2713. };
  2714. return Select2;
  2715. });
  2716. define('select2/compat/matcher',[
  2717. ], function () {
  2718. function oldMatcher (matcher) {
  2719. function wrappedMatcher (params, data) {
  2720. var match = $.extend(true, {}, data);
  2721. if (params.term == null || $.trim(params.term) === '') {
  2722. return match;
  2723. }
  2724. if (data.children) {
  2725. for (var c = data.children.length - 1; c >= 0; c--) {
  2726. var child = data.children[c];
  2727. // Check if the child object matches
  2728. // The old matcher returned a boolean true or false
  2729. var doesMatch = matcher(params.term, child.text, child);
  2730. // If the child didn't match, pop it off
  2731. if (!doesMatch) {
  2732. match.children.splice(c, 1);
  2733. }
  2734. }
  2735. if (match.children.length > 0) {
  2736. return match;
  2737. }
  2738. }
  2739. if (matcher(params.term, data.text, data)) {
  2740. return match;
  2741. }
  2742. return null;
  2743. }
  2744. return wrappedMatcher;
  2745. }
  2746. return oldMatcher;
  2747. });
  2748. define('jquery.select2',[
  2749. 'jquery',
  2750. 'select2/core'
  2751. ], function ($, Select2) {
  2752. if ($.fn.select2 == null) {
  2753. $.fn.select2 = function (options) {
  2754. options = options || {};
  2755. if (typeof options === 'object') {
  2756. this.each(function () {
  2757. var instance = new Select2($(this), options);
  2758. });
  2759. } else if (typeof options === 'string') {
  2760. var instance = this.data('select2');
  2761. var args = Array.prototype.slice.call(arguments, 1);
  2762. instance[options](args);
  2763. } else {
  2764. throw new Error('Invalid arguments for Select2: ' + options);
  2765. }
  2766. };
  2767. }
  2768. return Select2;
  2769. });
  2770. require('jquery.select2'); $.fn.select2.amd = { define: define, require: require };}());