select2.amd.js 80 KB

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