select2.amd.js 76 KB

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