select2.amd.js 78 KB

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