select2.amd.js 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773
  1. define(['jquery'], function ($) {define('select2/utils',[
  2. 'jquery'
  3. ], function ($) {
  4. var Utils = {};
  5. Utils.Extend = function (ChildClass, SuperClass) {
  6. var __hasProp = {}.hasOwnProperty;
  7. function BaseConstructor () {
  8. this.constructor = ChildClass;
  9. }
  10. for (var key in SuperClass) {
  11. if (__hasProp.call(SuperClass, key)) {
  12. ChildClass[key] = SuperClass[key];
  13. }
  14. }
  15. BaseConstructor.prototype = SuperClass.prototype;
  16. ChildClass.prototype = new BaseConstructor();
  17. ChildClass.__super__ = SuperClass.prototype;
  18. return ChildClass;
  19. };
  20. function getMethods (theClass) {
  21. var proto = theClass.prototype;
  22. var methods = [];
  23. for (var methodName in proto) {
  24. var m = proto[methodName];
  25. if (typeof m !== 'function') {
  26. continue;
  27. }
  28. if (methodName === 'constructor') {
  29. continue;
  30. }
  31. methods.push(methodName);
  32. }
  33. return methods;
  34. }
  35. Utils.Decorate = function (SuperClass, DecoratorClass) {
  36. var decoratedMethods = getMethods(DecoratorClass);
  37. var superMethods = getMethods(SuperClass);
  38. function DecoratedClass () {
  39. var unshift = Array.prototype.unshift;
  40. var argCount = DecoratorClass.prototype.constructor.length;
  41. var calledConstructor = SuperClass.prototype.constructor;
  42. if (argCount > 0) {
  43. unshift.call(arguments, SuperClass.prototype.constructor);
  44. calledConstructor = DecoratorClass.prototype.constructor;
  45. }
  46. calledConstructor.apply(this, arguments);
  47. }
  48. DecoratorClass.displayName = SuperClass.displayName;
  49. function ctr () {
  50. this.constructor = DecoratedClass;
  51. }
  52. DecoratedClass.prototype = new ctr();
  53. for (var m = 0; m < superMethods.length; m++) {
  54. var superMethod = superMethods[m];
  55. DecoratedClass.prototype[superMethod] =
  56. SuperClass.prototype[superMethod];
  57. }
  58. var calledMethod = function (methodName) {
  59. // Stub out the original method if it's not decorating an actual method
  60. var originalMethod = function () {};
  61. if (methodName in DecoratedClass.prototype) {
  62. originalMethod = DecoratedClass.prototype[methodName];
  63. }
  64. var decoratedMethod = DecoratorClass.prototype[methodName];
  65. return function () {
  66. var unshift = Array.prototype.unshift;
  67. unshift.call(arguments, originalMethod);
  68. return decoratedMethod.apply(this, arguments);
  69. };
  70. };
  71. for (var d = 0; d < decoratedMethods.length; d++) {
  72. var decoratedMethod = decoratedMethods[d];
  73. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  74. }
  75. return DecoratedClass;
  76. };
  77. var Observable = function () {
  78. this.listeners = {};
  79. };
  80. Observable.prototype.on = function (event, callback) {
  81. this.listeners = this.listeners || {};
  82. if (event in this.listeners) {
  83. this.listeners[event].push(callback);
  84. } else {
  85. this.listeners[event] = [callback];
  86. }
  87. };
  88. Observable.prototype.trigger = function (event) {
  89. var slice = Array.prototype.slice;
  90. this.listeners = this.listeners || {};
  91. if (event in this.listeners) {
  92. this.invoke(this.listeners[event], slice.call(arguments, 1));
  93. }
  94. if ('*' in this.listeners) {
  95. this.invoke(this.listeners['*'], arguments);
  96. }
  97. };
  98. Observable.prototype.invoke = function (listeners, params) {
  99. for (var i = 0, len = listeners.length; i < len; i++) {
  100. listeners[i].apply(this, params);
  101. }
  102. };
  103. Utils.Observable = Observable;
  104. Utils.generateChars = function (length) {
  105. var chars = '';
  106. for (var i = 0; i < length; i++) {
  107. var randomChar = Math.floor(Math.random() * 36);
  108. chars += randomChar.toString(36);
  109. }
  110. return chars;
  111. };
  112. Utils.bind = function (func, context) {
  113. return function () {
  114. func.apply(context, arguments);
  115. };
  116. };
  117. Utils._convertData = function (data) {
  118. for (var originalKey in data) {
  119. var keys = originalKey.split('-');
  120. var dataLevel = data;
  121. if (keys.length === 1) {
  122. continue;
  123. }
  124. for (var k = 0; k < keys.length; k++) {
  125. var key = keys[k];
  126. // Lowercase the first letter
  127. // By default, dash-separated becomes camelCase
  128. key = key.substring(0, 1).toLowerCase() + key.substring(1);
  129. if (!(key in dataLevel)) {
  130. dataLevel[key] = {};
  131. }
  132. if (k == keys.length - 1) {
  133. dataLevel[key] = data[originalKey];
  134. }
  135. dataLevel = dataLevel[key];
  136. }
  137. delete data[originalKey];
  138. }
  139. return data;
  140. };
  141. Utils.hasScroll = function (index, el) {
  142. // Adapted from the function created by @ShadowScripter
  143. // and adapted by @BillBarry on the Stack Exchange Code Review website.
  144. // The original code can be found at
  145. // http://codereview.stackexchange.com/q/13338
  146. // and was designed to be used with the Sizzle selector engine.
  147. var $el = $(el);
  148. var overflowX = el.style.overflowX;
  149. var overflowY = el.style.overflowY;
  150. //Check both x and y declarations
  151. if (overflowX === overflowY &&
  152. (overflowY === 'hidden' || overflowY === 'visible')) {
  153. return false;
  154. }
  155. if (overflowX === 'scroll' || overflowY === 'scroll') {
  156. return true;
  157. }
  158. return ($el.innerHeight() < el.scrollHeight ||
  159. $el.innerWidth() < el.scrollWidth);
  160. };
  161. Utils.escapeMarkup = function (markup) {
  162. var replaceMap = {
  163. '\\': '&#92;',
  164. '&': '&amp;',
  165. '<': '&lt;',
  166. '>': '&gt;',
  167. '"': '&quot;',
  168. '\'': '&#39;',
  169. '/': '&#47;'
  170. };
  171. // Do not try to escape the markup if it's not a string
  172. if (typeof markup !== 'string') {
  173. return markup;
  174. }
  175. return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
  176. return replaceMap[match];
  177. });
  178. };
  179. return Utils;
  180. });
  181. define('select2/results',[
  182. 'jquery',
  183. './utils'
  184. ], function ($, Utils) {
  185. function Results ($element, options, dataAdapter) {
  186. this.$element = $element;
  187. this.data = dataAdapter;
  188. this.options = options;
  189. Results.__super__.constructor.call(this);
  190. }
  191. Utils.Extend(Results, Utils.Observable);
  192. Results.prototype.render = function () {
  193. var $results = $(
  194. '<ul class="select2-results__options" role="tree"></ul>'
  195. );
  196. if (this.options.get('multiple')) {
  197. $results.attr('aria-multiselectable', 'true');
  198. }
  199. this.$results = $results;
  200. return $results;
  201. };
  202. Results.prototype.clear = function () {
  203. this.$results.empty();
  204. };
  205. Results.prototype.displayMessage = function (params) {
  206. var escapeMarkup = this.options.get('escapeMarkup');
  207. this.clear();
  208. this.hideLoading();
  209. var $message = $(
  210. '<li role="treeitem" class="select2-results__option"></li>'
  211. );
  212. var message = this.options.get('translations').get(params.message);
  213. $message.append(
  214. escapeMarkup(
  215. message(params.args)
  216. )
  217. );
  218. this.$results.append($message);
  219. };
  220. Results.prototype.append = function (data) {
  221. this.hideLoading();
  222. var $options = [];
  223. if (data.results == null || data.results.length === 0) {
  224. if (this.$results.children().length === 0) {
  225. this.trigger('results:message', {
  226. message: 'noResults'
  227. });
  228. }
  229. return;
  230. }
  231. data.results = this.sort(data.results);
  232. for (var d = 0; d < data.results.length; d++) {
  233. var item = data.results[d];
  234. var $option = this.option(item);
  235. $options.push($option);
  236. }
  237. this.$results.append($options);
  238. };
  239. Results.prototype.position = function ($results, $dropdown) {
  240. var $resultsContainer = $dropdown.find('.select2-results');
  241. $resultsContainer.append($results);
  242. };
  243. Results.prototype.sort = function (data) {
  244. var sorter = this.options.get('sorter');
  245. return sorter(data);
  246. };
  247. Results.prototype.setClasses = function () {
  248. var self = this;
  249. this.data.current(function (selected) {
  250. var selectedIds = $.map(selected, function (s) {
  251. return s.id.toString();
  252. });
  253. var $options = self.$results
  254. .find('.select2-results__option[aria-selected]');
  255. $options.each(function () {
  256. var $option = $(this);
  257. var item = $.data(this, 'data');
  258. if ($.inArray(item.id, selectedIds) > -1) {
  259. $option.attr('aria-selected', 'true');
  260. } else {
  261. $option.attr('aria-selected', 'false');
  262. }
  263. });
  264. var $selected = $options.filter('[aria-selected=true]');
  265. // Check if there are any selected options
  266. if ($selected.length > 0) {
  267. // If there are selected options, highlight the first
  268. $selected.first().trigger('mouseenter');
  269. } else {
  270. // If there are no selected options, highlight the first option
  271. // in the dropdown
  272. $options.first().trigger('mouseenter');
  273. }
  274. });
  275. };
  276. Results.prototype.showLoading = function (params) {
  277. this.hideLoading();
  278. var loadingMore = this.options.get('translations').get('searching');
  279. var loading = {
  280. disabled: true,
  281. loading: true,
  282. text: loadingMore(params)
  283. };
  284. var $loading = this.option(loading);
  285. $loading.className += ' loading-results';
  286. this.$results.prepend($loading);
  287. };
  288. Results.prototype.hideLoading = function () {
  289. this.$results.find('.loading-results').remove();
  290. };
  291. Results.prototype.option = function (data) {
  292. var option = document.createElement('li');
  293. option.className = 'select2-results__option';
  294. var attrs = {
  295. 'role': 'treeitem',
  296. 'aria-selected': 'false'
  297. };
  298. if (data.disabled) {
  299. delete attrs['aria-selected'];
  300. attrs['aria-disabled'] = 'true';
  301. }
  302. if (data.id == null) {
  303. delete attrs['aria-selected'];
  304. }
  305. if (data._resultId != null) {
  306. option.id = data._resultId;
  307. }
  308. if (data.title) {
  309. option.title = data.title;
  310. }
  311. if (data.children) {
  312. attrs.role = 'group';
  313. attrs['aria-label'] = data.text;
  314. delete attrs['aria-selected'];
  315. }
  316. for (var attr in attrs) {
  317. var val = attrs[attr];
  318. option.setAttribute(attr, val);
  319. }
  320. if (data.children) {
  321. var $option = $(option);
  322. var label = document.createElement('strong');
  323. label.className = 'select2-results__group';
  324. var $label = $(label);
  325. this.template(data, label);
  326. var $children = [];
  327. for (var c = 0; c < data.children.length; c++) {
  328. var child = data.children[c];
  329. var $child = this.option(child);
  330. $children.push($child);
  331. }
  332. var $childrenContainer = $('<ul></ul>', {
  333. 'class': 'select2-results__options select2-results__options--nested'
  334. });
  335. $childrenContainer.append($children);
  336. $option.append(label);
  337. $option.append($childrenContainer);
  338. } else {
  339. this.template(data, option);
  340. }
  341. $.data(option, 'data', data);
  342. return option;
  343. };
  344. Results.prototype.bind = function (container, $container) {
  345. var self = this;
  346. var id = container.id + '-results';
  347. this.$results.attr('id', id);
  348. container.on('results:all', function (params) {
  349. self.clear();
  350. self.append(params.data);
  351. if (container.isOpen()) {
  352. self.setClasses();
  353. }
  354. });
  355. container.on('results:append', function (params) {
  356. self.append(params.data);
  357. if (container.isOpen()) {
  358. self.setClasses();
  359. }
  360. });
  361. container.on('query', function (params) {
  362. self.showLoading(params);
  363. });
  364. container.on('select', function () {
  365. if (!container.isOpen()) {
  366. return;
  367. }
  368. self.setClasses();
  369. });
  370. container.on('unselect', function () {
  371. if (!container.isOpen()) {
  372. return;
  373. }
  374. self.setClasses();
  375. });
  376. container.on('open', function () {
  377. // When the dropdown is open, aria-expended="true"
  378. self.$results.attr('aria-expanded', 'true');
  379. self.$results.attr('aria-hidden', 'false');
  380. self.setClasses();
  381. self.ensureHighlightVisible();
  382. });
  383. container.on('close', function () {
  384. // When the dropdown is closed, aria-expended="false"
  385. self.$results.attr('aria-expanded', 'false');
  386. self.$results.attr('aria-hidden', 'true');
  387. self.$results.removeAttr('aria-activedescendant');
  388. });
  389. container.on('results:toggle', function () {
  390. var $highlighted = self.getHighlightedResults();
  391. if ($highlighted.length === 0) {
  392. return;
  393. }
  394. $highlighted.trigger('mouseup');
  395. });
  396. container.on('results:select', function () {
  397. var $highlighted = self.getHighlightedResults();
  398. if ($highlighted.length === 0) {
  399. return;
  400. }
  401. var data = $highlighted.data('data');
  402. if ($highlighted.attr('aria-selected') == 'true') {
  403. self.trigger('close');
  404. } else {
  405. self.trigger('select', {
  406. data: data
  407. });
  408. }
  409. });
  410. container.on('results:previous', function () {
  411. var $highlighted = self.getHighlightedResults();
  412. var $options = self.$results.find('[aria-selected]');
  413. var currentIndex = $options.index($highlighted);
  414. // If we are already at te top, don't move further
  415. if (currentIndex === 0) {
  416. return;
  417. }
  418. var nextIndex = currentIndex - 1;
  419. // If none are highlighted, highlight the first
  420. if ($highlighted.length === 0) {
  421. nextIndex = 0;
  422. }
  423. var $next = $options.eq(nextIndex);
  424. $next.trigger('mouseenter');
  425. var currentOffset = self.$results.offset().top;
  426. var nextTop = $next.offset().top;
  427. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  428. if (nextIndex === 0) {
  429. self.$results.scrollTop(0);
  430. } else if (nextTop - currentOffset < 0) {
  431. self.$results.scrollTop(nextOffset);
  432. }
  433. });
  434. container.on('results:next', function () {
  435. var $highlighted = self.getHighlightedResults();
  436. var $options = self.$results.find('[aria-selected]');
  437. var currentIndex = $options.index($highlighted);
  438. var nextIndex = currentIndex + 1;
  439. // If we are at the last option, stay there
  440. if (nextIndex >= $options.length) {
  441. return;
  442. }
  443. var $next = $options.eq(nextIndex);
  444. $next.trigger('mouseenter');
  445. var currentOffset = self.$results.offset().top +
  446. self.$results.outerHeight(false);
  447. var nextBottom = $next.offset().top + $next.outerHeight(false);
  448. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  449. if (nextIndex === 0) {
  450. self.$results.scrollTop(0);
  451. } else if (nextBottom > currentOffset) {
  452. self.$results.scrollTop(nextOffset);
  453. }
  454. });
  455. container.on('results:focus', function (params) {
  456. params.element.addClass('select2-results__option--highlighted');
  457. });
  458. container.on('results:message', function (params) {
  459. self.displayMessage(params);
  460. });
  461. if ($.fn.mousewheel) {
  462. this.$results.on('mousewheel', function (e) {
  463. var top = self.$results.scrollTop();
  464. var bottom = (
  465. self.$results.get(0).scrollHeight -
  466. self.$results.scrollTop() +
  467. e.deltaY
  468. );
  469. var isAtTop = e.deltaY > 0 && top - e.deltaY <= 0;
  470. var isAtBottom = e.deltaY < 0 && bottom <= self.$results.height();
  471. if (isAtTop) {
  472. self.$results.scrollTop(0);
  473. e.preventDefault();
  474. e.stopPropagation();
  475. } else if (isAtBottom) {
  476. self.$results.scrollTop(
  477. self.$results.get(0).scrollHeight - self.$results.height()
  478. );
  479. e.preventDefault();
  480. e.stopPropagation();
  481. }
  482. });
  483. }
  484. this.$results.on('mouseup', '.select2-results__option[aria-selected]',
  485. function (evt) {
  486. var $this = $(this);
  487. var data = $this.data('data');
  488. if ($this.attr('aria-selected') === 'true') {
  489. if (self.options.get('multiple')) {
  490. self.trigger('unselect', {
  491. originalEvent: evt,
  492. data: data
  493. });
  494. } else {
  495. self.trigger('close');
  496. }
  497. return;
  498. }
  499. self.trigger('select', {
  500. originalEvent: evt,
  501. data: data
  502. });
  503. });
  504. this.$results.on('mouseenter', '.select2-results__option[aria-selected]',
  505. function (evt) {
  506. var data = $(this).data('data');
  507. self.getHighlightedResults()
  508. .removeClass('select2-results__option--highlighted');
  509. self.trigger('results:focus', {
  510. data: data,
  511. element: $(this)
  512. });
  513. });
  514. };
  515. Results.prototype.getHighlightedResults = function () {
  516. var $highlighted = this.$results
  517. .find('.select2-results__option--highlighted');
  518. return $highlighted;
  519. };
  520. Results.prototype.destroy = function () {
  521. this.$results.remove();
  522. };
  523. Results.prototype.ensureHighlightVisible = function () {
  524. var $highlighted = this.getHighlightedResults();
  525. if ($highlighted.length === 0) {
  526. return;
  527. }
  528. var $options = this.$results.find('[aria-selected]');
  529. var currentIndex = $options.index($highlighted);
  530. var currentOffset = this.$results.offset().top;
  531. var nextTop = $highlighted.offset().top;
  532. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  533. var offsetDelta = nextTop - currentOffset;
  534. nextOffset -= $highlighted.outerHeight(false) * 2;
  535. if (currentIndex <= 2) {
  536. this.$results.scrollTop(0);
  537. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  538. this.$results.scrollTop(nextOffset);
  539. }
  540. };
  541. Results.prototype.template = function (result, container) {
  542. var template = this.options.get('templateResult');
  543. var escapeMarkup = this.options.get('escapeMarkup');
  544. var content = template(result);
  545. if (content == null) {
  546. container.style.display = 'none';
  547. } else if (typeof content === 'string') {
  548. container.innerHTML = escapeMarkup(content);
  549. } else {
  550. $(container).append(content);
  551. }
  552. };
  553. return Results;
  554. });
  555. define('select2/keys',[
  556. ], function () {
  557. var KEYS = {
  558. BACKSPACE: 8,
  559. TAB: 9,
  560. ENTER: 13,
  561. SHIFT: 16,
  562. CTRL: 17,
  563. ALT: 18,
  564. ESC: 27,
  565. SPACE: 32,
  566. PAGE_UP: 33,
  567. PAGE_DOWN: 34,
  568. END: 35,
  569. HOME: 36,
  570. LEFT: 37,
  571. UP: 38,
  572. RIGHT: 39,
  573. DOWN: 40,
  574. DELETE: 46
  575. };
  576. return KEYS;
  577. });
  578. define('select2/selection/base',[
  579. 'jquery',
  580. '../utils',
  581. '../keys'
  582. ], function ($, Utils, KEYS) {
  583. function BaseSelection ($element, options) {
  584. this.$element = $element;
  585. this.options = options;
  586. BaseSelection.__super__.constructor.call(this);
  587. }
  588. Utils.Extend(BaseSelection, Utils.Observable);
  589. BaseSelection.prototype.render = function () {
  590. var $selection = $(
  591. '<span class="select2-selection" role="combobox" ' +
  592. 'aria-autocomplete="list" aria-haspopup="true" aria-expanded="false">' +
  593. '</span>'
  594. );
  595. this._tabindex = 0;
  596. if (this.$element.data('old-tabindex') != null) {
  597. this._tabindex = this.$element.data('old-tabindex');
  598. } else if (this.$element.attr('tabindex') != null) {
  599. this._tabindex = this.$element.attr('tabindex');
  600. }
  601. $selection.attr('title', this.$element.attr('title'));
  602. $selection.attr('tabindex', this._tabindex);
  603. this.$selection = $selection;
  604. return $selection;
  605. };
  606. BaseSelection.prototype.bind = function (container, $container) {
  607. var self = this;
  608. var id = container.id + '-container';
  609. var resultsId = container.id + '-results';
  610. this.container = container;
  611. this.$selection.attr('aria-owns', resultsId);
  612. this.$selection.on('focus', function (evt) {
  613. self.trigger('focus', evt);
  614. });
  615. this.$selection.on('blur', function (evt) {
  616. self.trigger('blur', evt);
  617. });
  618. this.$selection.on('keydown', function (evt) {
  619. self.trigger('keypress', evt);
  620. if (evt.which === KEYS.SPACE) {
  621. evt.preventDefault();
  622. }
  623. });
  624. container.on('results:focus', function (params) {
  625. self.$selection.attr('aria-activedescendant', params.data._resultId);
  626. });
  627. container.on('selection:update', function (params) {
  628. self.update(params.data);
  629. });
  630. container.on('open', function () {
  631. // When the dropdown is open, aria-expanded="true"
  632. self.$selection.attr('aria-expanded', 'true');
  633. self._attachCloseHandler(container);
  634. });
  635. container.on('close', function () {
  636. // When the dropdown is closed, aria-expanded="false"
  637. self.$selection.attr('aria-expanded', 'false');
  638. self.$selection.removeAttr('aria-activedescendant');
  639. self.$selection.focus();
  640. self._detachCloseHandler(container);
  641. });
  642. container.on('enable', function () {
  643. self.$selection.attr('tabindex', self._tabindex);
  644. });
  645. container.on('disable', function () {
  646. self.$selection.attr('tabindex', '-1');
  647. });
  648. };
  649. BaseSelection.prototype._attachCloseHandler = function (container) {
  650. var self = this;
  651. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  652. var $target = $(e.target);
  653. var $select = $target.closest('.select2');
  654. var $all = $('.select2.select2-container--open');
  655. $all.each(function () {
  656. var $this = $(this);
  657. if (this == $select[0]) {
  658. return;
  659. }
  660. var $element = $this.data('element');
  661. $element.select2('close');
  662. });
  663. });
  664. };
  665. BaseSelection.prototype._detachCloseHandler = function (container) {
  666. $(document.body).off('mousedown.select2.' + container.id);
  667. };
  668. BaseSelection.prototype.position = function ($selection, $container) {
  669. var $selectionContainer = $container.find('.selection');
  670. $selectionContainer.append($selection);
  671. };
  672. BaseSelection.prototype.destroy = function () {
  673. this._detachCloseHandler(this.container);
  674. };
  675. BaseSelection.prototype.update = function (data) {
  676. throw new Error('The `update` method must be defined in child classes.');
  677. };
  678. return BaseSelection;
  679. });
  680. define('select2/selection/single',[
  681. 'jquery',
  682. './base',
  683. '../utils',
  684. '../keys'
  685. ], function ($, BaseSelection, Utils, KEYS) {
  686. function SingleSelection () {
  687. SingleSelection.__super__.constructor.apply(this, arguments);
  688. }
  689. Utils.Extend(SingleSelection, BaseSelection);
  690. SingleSelection.prototype.render = function () {
  691. var $selection = SingleSelection.__super__.render.call(this);
  692. $selection.addClass('select2-selection--single');
  693. $selection.html(
  694. '<span class="select2-selection__rendered"></span>' +
  695. '<span class="select2-selection__arrow" role="presentation">' +
  696. '<b role="presentation"></b>' +
  697. '</span>'
  698. );
  699. return $selection;
  700. };
  701. SingleSelection.prototype.bind = function (container, $container) {
  702. var self = this;
  703. SingleSelection.__super__.bind.apply(this, arguments);
  704. var id = container.id + '-container';
  705. this.$selection.find('.select2-selection__rendered').attr('id', id);
  706. this.$selection.attr('aria-labelledby', id);
  707. this.$selection.on('mousedown', function (evt) {
  708. // Only respond to left clicks
  709. if (evt.which !== 1) {
  710. return;
  711. }
  712. self.trigger('toggle', {
  713. originalEvent: evt
  714. });
  715. });
  716. this.$selection.on('focus', function (evt) {
  717. // User focuses on the container
  718. });
  719. this.$selection.on('blur', function (evt) {
  720. // User exits the container
  721. });
  722. container.on('selection:update', function (params) {
  723. self.update(params.data);
  724. });
  725. };
  726. SingleSelection.prototype.clear = function () {
  727. this.$selection.find('.select2-selection__rendered').empty();
  728. };
  729. SingleSelection.prototype.display = function (data) {
  730. var template = this.options.get('templateSelection');
  731. var escapeMarkup = this.options.get('escapeMarkup');
  732. return escapeMarkup(template(data));
  733. };
  734. SingleSelection.prototype.selectionContainer = function () {
  735. return $('<span></span>');
  736. };
  737. SingleSelection.prototype.update = function (data) {
  738. if (data.length === 0) {
  739. this.clear();
  740. return;
  741. }
  742. var selection = data[0];
  743. var formatted = this.display(selection);
  744. var $rendered = this.$selection.find('.select2-selection__rendered');
  745. $rendered.empty().append(formatted);
  746. $rendered.prop('title', selection.title || selection.text);
  747. };
  748. return SingleSelection;
  749. });
  750. define('select2/selection/multiple',[
  751. 'jquery',
  752. './base',
  753. '../utils'
  754. ], function ($, BaseSelection, Utils) {
  755. function MultipleSelection ($element, options) {
  756. MultipleSelection.__super__.constructor.apply(this, arguments);
  757. }
  758. Utils.Extend(MultipleSelection, BaseSelection);
  759. MultipleSelection.prototype.render = function () {
  760. var $selection = MultipleSelection.__super__.render.call(this);
  761. $selection.addClass('select2-selection--multiple');
  762. $selection.html(
  763. '<ul class="select2-selection__rendered"></ul>'
  764. );
  765. return $selection;
  766. };
  767. MultipleSelection.prototype.bind = function (container, $container) {
  768. var self = this;
  769. MultipleSelection.__super__.bind.apply(this, arguments);
  770. this.$selection.on('click', function (evt) {
  771. self.trigger('toggle', {
  772. originalEvent: evt
  773. });
  774. });
  775. this.$selection.on('click', '.select2-selection__choice__remove',
  776. function (evt) {
  777. var $remove = $(this);
  778. var $selection = $remove.parent();
  779. var data = $selection.data('data');
  780. self.trigger('unselect', {
  781. originalEvent: evt,
  782. data: data
  783. });
  784. });
  785. };
  786. MultipleSelection.prototype.clear = function () {
  787. this.$selection.find('.select2-selection__rendered').empty();
  788. };
  789. MultipleSelection.prototype.display = function (data) {
  790. var template = this.options.get('templateSelection');
  791. var escapeMarkup = this.options.get('escapeMarkup');
  792. return escapeMarkup(template(data));
  793. };
  794. MultipleSelection.prototype.selectionContainer = function () {
  795. var $container = $(
  796. '<li class="select2-selection__choice">' +
  797. '<span class="select2-selection__choice__remove" role="presentation">' +
  798. '&times;' +
  799. '</span>' +
  800. '</li>'
  801. );
  802. return $container;
  803. };
  804. MultipleSelection.prototype.update = function (data) {
  805. this.clear();
  806. if (data.length === 0) {
  807. return;
  808. }
  809. var $selections = $();
  810. for (var d = 0; d < data.length; d++) {
  811. var selection = data[d];
  812. var formatted = this.display(selection);
  813. var $selection = this.selectionContainer();
  814. $selection.append(formatted);
  815. $selection.prop('title', selection.title || selection.text);
  816. $selection.data('data', selection);
  817. $selections = $selections.add($selection);
  818. }
  819. this.$selection.find('.select2-selection__rendered').append($selections);
  820. };
  821. return MultipleSelection;
  822. });
  823. define('select2/selection/placeholder',[
  824. '../utils'
  825. ], function (Utils) {
  826. function Placeholder (decorated, $element, options) {
  827. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  828. decorated.call(this, $element, options);
  829. }
  830. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  831. if (typeof placeholder === 'string') {
  832. placeholder = {
  833. id: '',
  834. text: placeholder
  835. };
  836. }
  837. return placeholder;
  838. };
  839. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  840. var $placeholder = this.selectionContainer();
  841. $placeholder.html(this.display(placeholder));
  842. $placeholder.addClass('select2-selection__placeholder')
  843. .removeClass('select2-selection__choice');
  844. return $placeholder;
  845. };
  846. Placeholder.prototype.update = function (decorated, data) {
  847. var singlePlaceholder = (
  848. data.length == 1 && data[0].id != this.placeholder.id
  849. );
  850. var multipleSelections = data.length > 1;
  851. if (multipleSelections || singlePlaceholder) {
  852. return decorated.call(this, data);
  853. }
  854. this.clear();
  855. var $placeholder = this.createPlaceholder(this.placeholder);
  856. this.$selection.find('.select2-selection__rendered').append($placeholder);
  857. };
  858. return Placeholder;
  859. });
  860. define('select2/selection/allowClear',[
  861. 'jquery'
  862. ], function ($) {
  863. function AllowClear () { }
  864. AllowClear.prototype.bind = function (decorated, container, $container) {
  865. var self = this;
  866. decorated.call(this, container, $container);
  867. if (self.placeholder == null) {
  868. if (window.console && console.error) {
  869. console.error(
  870. 'Select2: The `allowClear` option should be used in combination ' +
  871. 'with the `placeholder` option.'
  872. );
  873. }
  874. }
  875. this.$selection.on('mousedown', '.select2-selection__clear',
  876. function (evt) {
  877. // Ignore the event if it is disabled
  878. if (self.options.get('disabled')) {
  879. return;
  880. }
  881. evt.stopPropagation();
  882. var data = $(this).data('data');
  883. for (var d = 0; d < data.length; d++) {
  884. var unselectData = {
  885. data: data[d]
  886. };
  887. // Trigger the `unselect` event, so people can prevent it from being
  888. // cleared.
  889. self.trigger('unselect', unselectData);
  890. // If the event was prevented, don't clear it out.
  891. if (unselectData.prevented) {
  892. return;
  893. }
  894. }
  895. self.$element.val(self.placeholder.id).trigger('change');
  896. self.trigger('toggle');
  897. });
  898. };
  899. AllowClear.prototype.update = function (decorated, data) {
  900. decorated.call(this, data);
  901. if (this.$selection.find('.select2-selection__placeholder').length > 0 ||
  902. data.length === 0) {
  903. return;
  904. }
  905. var $remove = $(
  906. '<span class="select2-selection__clear">' +
  907. '&times;' +
  908. '</span>'
  909. );
  910. $remove.data('data', data);
  911. this.$selection.find('.select2-selection__rendered').append($remove);
  912. };
  913. return AllowClear;
  914. });
  915. define('select2/selection/search',[
  916. 'jquery',
  917. '../utils',
  918. '../keys'
  919. ], function ($, Utils, KEYS) {
  920. function Search (decorated, $element, options) {
  921. decorated.call(this, $element, options);
  922. }
  923. Search.prototype.render = function (decorated) {
  924. var $search = $(
  925. '<li class="select2-search select2-search--inline">' +
  926. '<input class="select2-search__field" type="search" tabindex="-1"' +
  927. ' autocomplete="off" autocorrect="off" autocapitalize="off"' +
  928. ' spellcheck="false" role="textbox" />' +
  929. '</li>'
  930. );
  931. this.$searchContainer = $search;
  932. this.$search = $search.find('input');
  933. var $rendered = decorated.call(this);
  934. return $rendered;
  935. };
  936. Search.prototype.bind = function (decorated, container, $container) {
  937. var self = this;
  938. decorated.call(this, container, $container);
  939. container.on('open', function () {
  940. self.$search.attr('tabindex', 0);
  941. self.$search.focus();
  942. });
  943. container.on('close', function () {
  944. self.$search.attr('tabindex', -1);
  945. self.$search.val('');
  946. self.$search.focus();
  947. });
  948. container.on('enable', function () {
  949. self.$search.prop('disabled', false);
  950. });
  951. container.on('disable', function () {
  952. self.$search.prop('disabled', true);
  953. });
  954. this.$selection.on('focusin', '.select2-search--inline', function (evt) {
  955. self.trigger('focus', evt);
  956. });
  957. this.$selection.on('focusout', '.select2-search--inline', function (evt) {
  958. self.trigger('blur', evt);
  959. });
  960. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  961. evt.stopPropagation();
  962. self.trigger('keypress', evt);
  963. self._keyUpPrevented = evt.isDefaultPrevented();
  964. var key = evt.which;
  965. if (key === KEYS.BACKSPACE && self.$search.val() === '') {
  966. var $previousChoice = self.$searchContainer
  967. .prev('.select2-selection__choice');
  968. if ($previousChoice.length > 0) {
  969. var item = $previousChoice.data('data');
  970. self.searchRemoveChoice(item);
  971. }
  972. }
  973. });
  974. // Workaround for browsers which do not support the `input` event
  975. // This will prevent double-triggering of events for browsers which support
  976. // both the `keyup` and `input` events.
  977. this.$selection.on('input', '.select2-search--inline', function (evt) {
  978. // Unbind the duplicated `keyup` event
  979. self.$selection.off('keyup.search');
  980. });
  981. this.$selection.on('keyup.search input', '.select2-search--inline',
  982. function (evt) {
  983. self.handleSearch(evt);
  984. });
  985. };
  986. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  987. this.$search.attr('placeholder', placeholder.text);
  988. };
  989. Search.prototype.update = function (decorated, data) {
  990. this.$search.attr('placeholder', '');
  991. decorated.call(this, data);
  992. this.$selection.find('.select2-selection__rendered')
  993. .append(this.$searchContainer);
  994. this.resizeSearch();
  995. };
  996. Search.prototype.handleSearch = function () {
  997. this.resizeSearch();
  998. if (!this._keyUpPrevented) {
  999. var input = this.$search.val();
  1000. this.trigger('query', {
  1001. term: input
  1002. });
  1003. }
  1004. this._keyUpPrevented = false;
  1005. };
  1006. Search.prototype.searchRemoveChoice = function (decorated, item) {
  1007. this.trigger('unselect', {
  1008. data: item
  1009. });
  1010. this.trigger('open');
  1011. this.$search.val(item.text + ' ');
  1012. };
  1013. Search.prototype.resizeSearch = function () {
  1014. this.$search.css('width', '25px');
  1015. var width = '';
  1016. if (this.$search.attr('placeholder') !== '') {
  1017. width = this.$selection.find('.select2-selection__rendered').innerWidth();
  1018. } else {
  1019. var minimumWidth = this.$search.val().length + 1;
  1020. width = (minimumWidth * 0.75) + 'em';
  1021. }
  1022. this.$search.css('width', width);
  1023. };
  1024. return Search;
  1025. });
  1026. define('select2/selection/eventRelay',[
  1027. 'jquery'
  1028. ], function ($) {
  1029. function EventRelay () { }
  1030. EventRelay.prototype.bind = function (decorated, container, $container) {
  1031. var self = this;
  1032. var relayEvents = [
  1033. 'open', 'opening',
  1034. 'close', 'closing',
  1035. 'select', 'selecting',
  1036. 'unselect', 'unselecting'
  1037. ];
  1038. var preventableEvents = ['opening', 'closing', 'selecting', 'unselecting'];
  1039. decorated.call(this, container, $container);
  1040. container.on('*', function (name, params) {
  1041. // Ignore events that should not be relayed
  1042. if ($.inArray(name, relayEvents) === -1) {
  1043. return;
  1044. }
  1045. // The parameters should always be an object
  1046. params = params || {};
  1047. // Generate the jQuery event for the Select2 event
  1048. var evt = $.Event('select2:' + name, {
  1049. params: params
  1050. });
  1051. self.$element.trigger(evt);
  1052. // Only handle preventable events if it was one
  1053. if ($.inArray(name, preventableEvents) === -1) {
  1054. return;
  1055. }
  1056. params.prevented = evt.isDefaultPrevented();
  1057. });
  1058. };
  1059. return EventRelay;
  1060. });
  1061. define('select2/translation',[
  1062. 'jquery'
  1063. ], function ($) {
  1064. function Translation (dict) {
  1065. this.dict = dict || {};
  1066. }
  1067. Translation.prototype.all = function () {
  1068. return this.dict;
  1069. };
  1070. Translation.prototype.get = function (key) {
  1071. return this.dict[key];
  1072. };
  1073. Translation.prototype.extend = function (translation) {
  1074. this.dict = $.extend({}, translation.all(), this.dict);
  1075. };
  1076. // Static functions
  1077. Translation._cache = {};
  1078. Translation.loadPath = function (path) {
  1079. if (!(path in Translation._cache)) {
  1080. var translations = require(path);
  1081. Translation._cache[path] = translations;
  1082. }
  1083. return new Translation(Translation._cache[path]);
  1084. };
  1085. return Translation;
  1086. });
  1087. define('select2/diacritics',[
  1088. ], function () {
  1089. var diacritics = {
  1090. '\u24B6': 'A',
  1091. '\uFF21': 'A',
  1092. '\u00C0': 'A',
  1093. '\u00C1': 'A',
  1094. '\u00C2': 'A',
  1095. '\u1EA6': 'A',
  1096. '\u1EA4': 'A',
  1097. '\u1EAA': 'A',
  1098. '\u1EA8': 'A',
  1099. '\u00C3': 'A',
  1100. '\u0100': 'A',
  1101. '\u0102': 'A',
  1102. '\u1EB0': 'A',
  1103. '\u1EAE': 'A',
  1104. '\u1EB4': 'A',
  1105. '\u1EB2': 'A',
  1106. '\u0226': 'A',
  1107. '\u01E0': 'A',
  1108. '\u00C4': 'A',
  1109. '\u01DE': 'A',
  1110. '\u1EA2': 'A',
  1111. '\u00C5': 'A',
  1112. '\u01FA': 'A',
  1113. '\u01CD': 'A',
  1114. '\u0200': 'A',
  1115. '\u0202': 'A',
  1116. '\u1EA0': 'A',
  1117. '\u1EAC': 'A',
  1118. '\u1EB6': 'A',
  1119. '\u1E00': 'A',
  1120. '\u0104': 'A',
  1121. '\u023A': 'A',
  1122. '\u2C6F': 'A',
  1123. '\uA732': 'AA',
  1124. '\u00C6': 'AE',
  1125. '\u01FC': 'AE',
  1126. '\u01E2': 'AE',
  1127. '\uA734': 'AO',
  1128. '\uA736': 'AU',
  1129. '\uA738': 'AV',
  1130. '\uA73A': 'AV',
  1131. '\uA73C': 'AY',
  1132. '\u24B7': 'B',
  1133. '\uFF22': 'B',
  1134. '\u1E02': 'B',
  1135. '\u1E04': 'B',
  1136. '\u1E06': 'B',
  1137. '\u0243': 'B',
  1138. '\u0182': 'B',
  1139. '\u0181': 'B',
  1140. '\u24B8': 'C',
  1141. '\uFF23': 'C',
  1142. '\u0106': 'C',
  1143. '\u0108': 'C',
  1144. '\u010A': 'C',
  1145. '\u010C': 'C',
  1146. '\u00C7': 'C',
  1147. '\u1E08': 'C',
  1148. '\u0187': 'C',
  1149. '\u023B': 'C',
  1150. '\uA73E': 'C',
  1151. '\u24B9': 'D',
  1152. '\uFF24': 'D',
  1153. '\u1E0A': 'D',
  1154. '\u010E': 'D',
  1155. '\u1E0C': 'D',
  1156. '\u1E10': 'D',
  1157. '\u1E12': 'D',
  1158. '\u1E0E': 'D',
  1159. '\u0110': 'D',
  1160. '\u018B': 'D',
  1161. '\u018A': 'D',
  1162. '\u0189': 'D',
  1163. '\uA779': 'D',
  1164. '\u01F1': 'DZ',
  1165. '\u01C4': 'DZ',
  1166. '\u01F2': 'Dz',
  1167. '\u01C5': 'Dz',
  1168. '\u24BA': 'E',
  1169. '\uFF25': 'E',
  1170. '\u00C8': 'E',
  1171. '\u00C9': 'E',
  1172. '\u00CA': 'E',
  1173. '\u1EC0': 'E',
  1174. '\u1EBE': 'E',
  1175. '\u1EC4': 'E',
  1176. '\u1EC2': 'E',
  1177. '\u1EBC': 'E',
  1178. '\u0112': 'E',
  1179. '\u1E14': 'E',
  1180. '\u1E16': 'E',
  1181. '\u0114': 'E',
  1182. '\u0116': 'E',
  1183. '\u00CB': 'E',
  1184. '\u1EBA': 'E',
  1185. '\u011A': 'E',
  1186. '\u0204': 'E',
  1187. '\u0206': 'E',
  1188. '\u1EB8': 'E',
  1189. '\u1EC6': 'E',
  1190. '\u0228': 'E',
  1191. '\u1E1C': 'E',
  1192. '\u0118': 'E',
  1193. '\u1E18': 'E',
  1194. '\u1E1A': 'E',
  1195. '\u0190': 'E',
  1196. '\u018E': 'E',
  1197. '\u24BB': 'F',
  1198. '\uFF26': 'F',
  1199. '\u1E1E': 'F',
  1200. '\u0191': 'F',
  1201. '\uA77B': 'F',
  1202. '\u24BC': 'G',
  1203. '\uFF27': 'G',
  1204. '\u01F4': 'G',
  1205. '\u011C': 'G',
  1206. '\u1E20': 'G',
  1207. '\u011E': 'G',
  1208. '\u0120': 'G',
  1209. '\u01E6': 'G',
  1210. '\u0122': 'G',
  1211. '\u01E4': 'G',
  1212. '\u0193': 'G',
  1213. '\uA7A0': 'G',
  1214. '\uA77D': 'G',
  1215. '\uA77E': 'G',
  1216. '\u24BD': 'H',
  1217. '\uFF28': 'H',
  1218. '\u0124': 'H',
  1219. '\u1E22': 'H',
  1220. '\u1E26': 'H',
  1221. '\u021E': 'H',
  1222. '\u1E24': 'H',
  1223. '\u1E28': 'H',
  1224. '\u1E2A': 'H',
  1225. '\u0126': 'H',
  1226. '\u2C67': 'H',
  1227. '\u2C75': 'H',
  1228. '\uA78D': 'H',
  1229. '\u24BE': 'I',
  1230. '\uFF29': 'I',
  1231. '\u00CC': 'I',
  1232. '\u00CD': 'I',
  1233. '\u00CE': 'I',
  1234. '\u0128': 'I',
  1235. '\u012A': 'I',
  1236. '\u012C': 'I',
  1237. '\u0130': 'I',
  1238. '\u00CF': 'I',
  1239. '\u1E2E': 'I',
  1240. '\u1EC8': 'I',
  1241. '\u01CF': 'I',
  1242. '\u0208': 'I',
  1243. '\u020A': 'I',
  1244. '\u1ECA': 'I',
  1245. '\u012E': 'I',
  1246. '\u1E2C': 'I',
  1247. '\u0197': 'I',
  1248. '\u24BF': 'J',
  1249. '\uFF2A': 'J',
  1250. '\u0134': 'J',
  1251. '\u0248': 'J',
  1252. '\u24C0': 'K',
  1253. '\uFF2B': 'K',
  1254. '\u1E30': 'K',
  1255. '\u01E8': 'K',
  1256. '\u1E32': 'K',
  1257. '\u0136': 'K',
  1258. '\u1E34': 'K',
  1259. '\u0198': 'K',
  1260. '\u2C69': 'K',
  1261. '\uA740': 'K',
  1262. '\uA742': 'K',
  1263. '\uA744': 'K',
  1264. '\uA7A2': 'K',
  1265. '\u24C1': 'L',
  1266. '\uFF2C': 'L',
  1267. '\u013F': 'L',
  1268. '\u0139': 'L',
  1269. '\u013D': 'L',
  1270. '\u1E36': 'L',
  1271. '\u1E38': 'L',
  1272. '\u013B': 'L',
  1273. '\u1E3C': 'L',
  1274. '\u1E3A': 'L',
  1275. '\u0141': 'L',
  1276. '\u023D': 'L',
  1277. '\u2C62': 'L',
  1278. '\u2C60': 'L',
  1279. '\uA748': 'L',
  1280. '\uA746': 'L',
  1281. '\uA780': 'L',
  1282. '\u01C7': 'LJ',
  1283. '\u01C8': 'Lj',
  1284. '\u24C2': 'M',
  1285. '\uFF2D': 'M',
  1286. '\u1E3E': 'M',
  1287. '\u1E40': 'M',
  1288. '\u1E42': 'M',
  1289. '\u2C6E': 'M',
  1290. '\u019C': 'M',
  1291. '\u24C3': 'N',
  1292. '\uFF2E': 'N',
  1293. '\u01F8': 'N',
  1294. '\u0143': 'N',
  1295. '\u00D1': 'N',
  1296. '\u1E44': 'N',
  1297. '\u0147': 'N',
  1298. '\u1E46': 'N',
  1299. '\u0145': 'N',
  1300. '\u1E4A': 'N',
  1301. '\u1E48': 'N',
  1302. '\u0220': 'N',
  1303. '\u019D': 'N',
  1304. '\uA790': 'N',
  1305. '\uA7A4': 'N',
  1306. '\u01CA': 'NJ',
  1307. '\u01CB': 'Nj',
  1308. '\u24C4': 'O',
  1309. '\uFF2F': 'O',
  1310. '\u00D2': 'O',
  1311. '\u00D3': 'O',
  1312. '\u00D4': 'O',
  1313. '\u1ED2': 'O',
  1314. '\u1ED0': 'O',
  1315. '\u1ED6': 'O',
  1316. '\u1ED4': 'O',
  1317. '\u00D5': 'O',
  1318. '\u1E4C': 'O',
  1319. '\u022C': 'O',
  1320. '\u1E4E': 'O',
  1321. '\u014C': 'O',
  1322. '\u1E50': 'O',
  1323. '\u1E52': 'O',
  1324. '\u014E': 'O',
  1325. '\u022E': 'O',
  1326. '\u0230': 'O',
  1327. '\u00D6': 'O',
  1328. '\u022A': 'O',
  1329. '\u1ECE': 'O',
  1330. '\u0150': 'O',
  1331. '\u01D1': 'O',
  1332. '\u020C': 'O',
  1333. '\u020E': 'O',
  1334. '\u01A0': 'O',
  1335. '\u1EDC': 'O',
  1336. '\u1EDA': 'O',
  1337. '\u1EE0': 'O',
  1338. '\u1EDE': 'O',
  1339. '\u1EE2': 'O',
  1340. '\u1ECC': 'O',
  1341. '\u1ED8': 'O',
  1342. '\u01EA': 'O',
  1343. '\u01EC': 'O',
  1344. '\u00D8': 'O',
  1345. '\u01FE': 'O',
  1346. '\u0186': 'O',
  1347. '\u019F': 'O',
  1348. '\uA74A': 'O',
  1349. '\uA74C': 'O',
  1350. '\u01A2': 'OI',
  1351. '\uA74E': 'OO',
  1352. '\u0222': 'OU',
  1353. '\u24C5': 'P',
  1354. '\uFF30': 'P',
  1355. '\u1E54': 'P',
  1356. '\u1E56': 'P',
  1357. '\u01A4': 'P',
  1358. '\u2C63': 'P',
  1359. '\uA750': 'P',
  1360. '\uA752': 'P',
  1361. '\uA754': 'P',
  1362. '\u24C6': 'Q',
  1363. '\uFF31': 'Q',
  1364. '\uA756': 'Q',
  1365. '\uA758': 'Q',
  1366. '\u024A': 'Q',
  1367. '\u24C7': 'R',
  1368. '\uFF32': 'R',
  1369. '\u0154': 'R',
  1370. '\u1E58': 'R',
  1371. '\u0158': 'R',
  1372. '\u0210': 'R',
  1373. '\u0212': 'R',
  1374. '\u1E5A': 'R',
  1375. '\u1E5C': 'R',
  1376. '\u0156': 'R',
  1377. '\u1E5E': 'R',
  1378. '\u024C': 'R',
  1379. '\u2C64': 'R',
  1380. '\uA75A': 'R',
  1381. '\uA7A6': 'R',
  1382. '\uA782': 'R',
  1383. '\u24C8': 'S',
  1384. '\uFF33': 'S',
  1385. '\u1E9E': 'S',
  1386. '\u015A': 'S',
  1387. '\u1E64': 'S',
  1388. '\u015C': 'S',
  1389. '\u1E60': 'S',
  1390. '\u0160': 'S',
  1391. '\u1E66': 'S',
  1392. '\u1E62': 'S',
  1393. '\u1E68': 'S',
  1394. '\u0218': 'S',
  1395. '\u015E': 'S',
  1396. '\u2C7E': 'S',
  1397. '\uA7A8': 'S',
  1398. '\uA784': 'S',
  1399. '\u24C9': 'T',
  1400. '\uFF34': 'T',
  1401. '\u1E6A': 'T',
  1402. '\u0164': 'T',
  1403. '\u1E6C': 'T',
  1404. '\u021A': 'T',
  1405. '\u0162': 'T',
  1406. '\u1E70': 'T',
  1407. '\u1E6E': 'T',
  1408. '\u0166': 'T',
  1409. '\u01AC': 'T',
  1410. '\u01AE': 'T',
  1411. '\u023E': 'T',
  1412. '\uA786': 'T',
  1413. '\uA728': 'TZ',
  1414. '\u24CA': 'U',
  1415. '\uFF35': 'U',
  1416. '\u00D9': 'U',
  1417. '\u00DA': 'U',
  1418. '\u00DB': 'U',
  1419. '\u0168': 'U',
  1420. '\u1E78': 'U',
  1421. '\u016A': 'U',
  1422. '\u1E7A': 'U',
  1423. '\u016C': 'U',
  1424. '\u00DC': 'U',
  1425. '\u01DB': 'U',
  1426. '\u01D7': 'U',
  1427. '\u01D5': 'U',
  1428. '\u01D9': 'U',
  1429. '\u1EE6': 'U',
  1430. '\u016E': 'U',
  1431. '\u0170': 'U',
  1432. '\u01D3': 'U',
  1433. '\u0214': 'U',
  1434. '\u0216': 'U',
  1435. '\u01AF': 'U',
  1436. '\u1EEA': 'U',
  1437. '\u1EE8': 'U',
  1438. '\u1EEE': 'U',
  1439. '\u1EEC': 'U',
  1440. '\u1EF0': 'U',
  1441. '\u1EE4': 'U',
  1442. '\u1E72': 'U',
  1443. '\u0172': 'U',
  1444. '\u1E76': 'U',
  1445. '\u1E74': 'U',
  1446. '\u0244': 'U',
  1447. '\u24CB': 'V',
  1448. '\uFF36': 'V',
  1449. '\u1E7C': 'V',
  1450. '\u1E7E': 'V',
  1451. '\u01B2': 'V',
  1452. '\uA75E': 'V',
  1453. '\u0245': 'V',
  1454. '\uA760': 'VY',
  1455. '\u24CC': 'W',
  1456. '\uFF37': 'W',
  1457. '\u1E80': 'W',
  1458. '\u1E82': 'W',
  1459. '\u0174': 'W',
  1460. '\u1E86': 'W',
  1461. '\u1E84': 'W',
  1462. '\u1E88': 'W',
  1463. '\u2C72': 'W',
  1464. '\u24CD': 'X',
  1465. '\uFF38': 'X',
  1466. '\u1E8A': 'X',
  1467. '\u1E8C': 'X',
  1468. '\u24CE': 'Y',
  1469. '\uFF39': 'Y',
  1470. '\u1EF2': 'Y',
  1471. '\u00DD': 'Y',
  1472. '\u0176': 'Y',
  1473. '\u1EF8': 'Y',
  1474. '\u0232': 'Y',
  1475. '\u1E8E': 'Y',
  1476. '\u0178': 'Y',
  1477. '\u1EF6': 'Y',
  1478. '\u1EF4': 'Y',
  1479. '\u01B3': 'Y',
  1480. '\u024E': 'Y',
  1481. '\u1EFE': 'Y',
  1482. '\u24CF': 'Z',
  1483. '\uFF3A': 'Z',
  1484. '\u0179': 'Z',
  1485. '\u1E90': 'Z',
  1486. '\u017B': 'Z',
  1487. '\u017D': 'Z',
  1488. '\u1E92': 'Z',
  1489. '\u1E94': 'Z',
  1490. '\u01B5': 'Z',
  1491. '\u0224': 'Z',
  1492. '\u2C7F': 'Z',
  1493. '\u2C6B': 'Z',
  1494. '\uA762': 'Z',
  1495. '\u24D0': 'a',
  1496. '\uFF41': 'a',
  1497. '\u1E9A': 'a',
  1498. '\u00E0': 'a',
  1499. '\u00E1': 'a',
  1500. '\u00E2': 'a',
  1501. '\u1EA7': 'a',
  1502. '\u1EA5': 'a',
  1503. '\u1EAB': 'a',
  1504. '\u1EA9': 'a',
  1505. '\u00E3': 'a',
  1506. '\u0101': 'a',
  1507. '\u0103': 'a',
  1508. '\u1EB1': 'a',
  1509. '\u1EAF': 'a',
  1510. '\u1EB5': 'a',
  1511. '\u1EB3': 'a',
  1512. '\u0227': 'a',
  1513. '\u01E1': 'a',
  1514. '\u00E4': 'a',
  1515. '\u01DF': 'a',
  1516. '\u1EA3': 'a',
  1517. '\u00E5': 'a',
  1518. '\u01FB': 'a',
  1519. '\u01CE': 'a',
  1520. '\u0201': 'a',
  1521. '\u0203': 'a',
  1522. '\u1EA1': 'a',
  1523. '\u1EAD': 'a',
  1524. '\u1EB7': 'a',
  1525. '\u1E01': 'a',
  1526. '\u0105': 'a',
  1527. '\u2C65': 'a',
  1528. '\u0250': 'a',
  1529. '\uA733': 'aa',
  1530. '\u00E6': 'ae',
  1531. '\u01FD': 'ae',
  1532. '\u01E3': 'ae',
  1533. '\uA735': 'ao',
  1534. '\uA737': 'au',
  1535. '\uA739': 'av',
  1536. '\uA73B': 'av',
  1537. '\uA73D': 'ay',
  1538. '\u24D1': 'b',
  1539. '\uFF42': 'b',
  1540. '\u1E03': 'b',
  1541. '\u1E05': 'b',
  1542. '\u1E07': 'b',
  1543. '\u0180': 'b',
  1544. '\u0183': 'b',
  1545. '\u0253': 'b',
  1546. '\u24D2': 'c',
  1547. '\uFF43': 'c',
  1548. '\u0107': 'c',
  1549. '\u0109': 'c',
  1550. '\u010B': 'c',
  1551. '\u010D': 'c',
  1552. '\u00E7': 'c',
  1553. '\u1E09': 'c',
  1554. '\u0188': 'c',
  1555. '\u023C': 'c',
  1556. '\uA73F': 'c',
  1557. '\u2184': 'c',
  1558. '\u24D3': 'd',
  1559. '\uFF44': 'd',
  1560. '\u1E0B': 'd',
  1561. '\u010F': 'd',
  1562. '\u1E0D': 'd',
  1563. '\u1E11': 'd',
  1564. '\u1E13': 'd',
  1565. '\u1E0F': 'd',
  1566. '\u0111': 'd',
  1567. '\u018C': 'd',
  1568. '\u0256': 'd',
  1569. '\u0257': 'd',
  1570. '\uA77A': 'd',
  1571. '\u01F3': 'dz',
  1572. '\u01C6': 'dz',
  1573. '\u24D4': 'e',
  1574. '\uFF45': 'e',
  1575. '\u00E8': 'e',
  1576. '\u00E9': 'e',
  1577. '\u00EA': 'e',
  1578. '\u1EC1': 'e',
  1579. '\u1EBF': 'e',
  1580. '\u1EC5': 'e',
  1581. '\u1EC3': 'e',
  1582. '\u1EBD': 'e',
  1583. '\u0113': 'e',
  1584. '\u1E15': 'e',
  1585. '\u1E17': 'e',
  1586. '\u0115': 'e',
  1587. '\u0117': 'e',
  1588. '\u00EB': 'e',
  1589. '\u1EBB': 'e',
  1590. '\u011B': 'e',
  1591. '\u0205': 'e',
  1592. '\u0207': 'e',
  1593. '\u1EB9': 'e',
  1594. '\u1EC7': 'e',
  1595. '\u0229': 'e',
  1596. '\u1E1D': 'e',
  1597. '\u0119': 'e',
  1598. '\u1E19': 'e',
  1599. '\u1E1B': 'e',
  1600. '\u0247': 'e',
  1601. '\u025B': 'e',
  1602. '\u01DD': 'e',
  1603. '\u24D5': 'f',
  1604. '\uFF46': 'f',
  1605. '\u1E1F': 'f',
  1606. '\u0192': 'f',
  1607. '\uA77C': 'f',
  1608. '\u24D6': 'g',
  1609. '\uFF47': 'g',
  1610. '\u01F5': 'g',
  1611. '\u011D': 'g',
  1612. '\u1E21': 'g',
  1613. '\u011F': 'g',
  1614. '\u0121': 'g',
  1615. '\u01E7': 'g',
  1616. '\u0123': 'g',
  1617. '\u01E5': 'g',
  1618. '\u0260': 'g',
  1619. '\uA7A1': 'g',
  1620. '\u1D79': 'g',
  1621. '\uA77F': 'g',
  1622. '\u24D7': 'h',
  1623. '\uFF48': 'h',
  1624. '\u0125': 'h',
  1625. '\u1E23': 'h',
  1626. '\u1E27': 'h',
  1627. '\u021F': 'h',
  1628. '\u1E25': 'h',
  1629. '\u1E29': 'h',
  1630. '\u1E2B': 'h',
  1631. '\u1E96': 'h',
  1632. '\u0127': 'h',
  1633. '\u2C68': 'h',
  1634. '\u2C76': 'h',
  1635. '\u0265': 'h',
  1636. '\u0195': 'hv',
  1637. '\u24D8': 'i',
  1638. '\uFF49': 'i',
  1639. '\u00EC': 'i',
  1640. '\u00ED': 'i',
  1641. '\u00EE': 'i',
  1642. '\u0129': 'i',
  1643. '\u012B': 'i',
  1644. '\u012D': 'i',
  1645. '\u00EF': 'i',
  1646. '\u1E2F': 'i',
  1647. '\u1EC9': 'i',
  1648. '\u01D0': 'i',
  1649. '\u0209': 'i',
  1650. '\u020B': 'i',
  1651. '\u1ECB': 'i',
  1652. '\u012F': 'i',
  1653. '\u1E2D': 'i',
  1654. '\u0268': 'i',
  1655. '\u0131': 'i',
  1656. '\u24D9': 'j',
  1657. '\uFF4A': 'j',
  1658. '\u0135': 'j',
  1659. '\u01F0': 'j',
  1660. '\u0249': 'j',
  1661. '\u24DA': 'k',
  1662. '\uFF4B': 'k',
  1663. '\u1E31': 'k',
  1664. '\u01E9': 'k',
  1665. '\u1E33': 'k',
  1666. '\u0137': 'k',
  1667. '\u1E35': 'k',
  1668. '\u0199': 'k',
  1669. '\u2C6A': 'k',
  1670. '\uA741': 'k',
  1671. '\uA743': 'k',
  1672. '\uA745': 'k',
  1673. '\uA7A3': 'k',
  1674. '\u24DB': 'l',
  1675. '\uFF4C': 'l',
  1676. '\u0140': 'l',
  1677. '\u013A': 'l',
  1678. '\u013E': 'l',
  1679. '\u1E37': 'l',
  1680. '\u1E39': 'l',
  1681. '\u013C': 'l',
  1682. '\u1E3D': 'l',
  1683. '\u1E3B': 'l',
  1684. '\u017F': 'l',
  1685. '\u0142': 'l',
  1686. '\u019A': 'l',
  1687. '\u026B': 'l',
  1688. '\u2C61': 'l',
  1689. '\uA749': 'l',
  1690. '\uA781': 'l',
  1691. '\uA747': 'l',
  1692. '\u01C9': 'lj',
  1693. '\u24DC': 'm',
  1694. '\uFF4D': 'm',
  1695. '\u1E3F': 'm',
  1696. '\u1E41': 'm',
  1697. '\u1E43': 'm',
  1698. '\u0271': 'm',
  1699. '\u026F': 'm',
  1700. '\u24DD': 'n',
  1701. '\uFF4E': 'n',
  1702. '\u01F9': 'n',
  1703. '\u0144': 'n',
  1704. '\u00F1': 'n',
  1705. '\u1E45': 'n',
  1706. '\u0148': 'n',
  1707. '\u1E47': 'n',
  1708. '\u0146': 'n',
  1709. '\u1E4B': 'n',
  1710. '\u1E49': 'n',
  1711. '\u019E': 'n',
  1712. '\u0272': 'n',
  1713. '\u0149': 'n',
  1714. '\uA791': 'n',
  1715. '\uA7A5': 'n',
  1716. '\u01CC': 'nj',
  1717. '\u24DE': 'o',
  1718. '\uFF4F': 'o',
  1719. '\u00F2': 'o',
  1720. '\u00F3': 'o',
  1721. '\u00F4': 'o',
  1722. '\u1ED3': 'o',
  1723. '\u1ED1': 'o',
  1724. '\u1ED7': 'o',
  1725. '\u1ED5': 'o',
  1726. '\u00F5': 'o',
  1727. '\u1E4D': 'o',
  1728. '\u022D': 'o',
  1729. '\u1E4F': 'o',
  1730. '\u014D': 'o',
  1731. '\u1E51': 'o',
  1732. '\u1E53': 'o',
  1733. '\u014F': 'o',
  1734. '\u022F': 'o',
  1735. '\u0231': 'o',
  1736. '\u00F6': 'o',
  1737. '\u022B': 'o',
  1738. '\u1ECF': 'o',
  1739. '\u0151': 'o',
  1740. '\u01D2': 'o',
  1741. '\u020D': 'o',
  1742. '\u020F': 'o',
  1743. '\u01A1': 'o',
  1744. '\u1EDD': 'o',
  1745. '\u1EDB': 'o',
  1746. '\u1EE1': 'o',
  1747. '\u1EDF': 'o',
  1748. '\u1EE3': 'o',
  1749. '\u1ECD': 'o',
  1750. '\u1ED9': 'o',
  1751. '\u01EB': 'o',
  1752. '\u01ED': 'o',
  1753. '\u00F8': 'o',
  1754. '\u01FF': 'o',
  1755. '\u0254': 'o',
  1756. '\uA74B': 'o',
  1757. '\uA74D': 'o',
  1758. '\u0275': 'o',
  1759. '\u01A3': 'oi',
  1760. '\u0223': 'ou',
  1761. '\uA74F': 'oo',
  1762. '\u24DF': 'p',
  1763. '\uFF50': 'p',
  1764. '\u1E55': 'p',
  1765. '\u1E57': 'p',
  1766. '\u01A5': 'p',
  1767. '\u1D7D': 'p',
  1768. '\uA751': 'p',
  1769. '\uA753': 'p',
  1770. '\uA755': 'p',
  1771. '\u24E0': 'q',
  1772. '\uFF51': 'q',
  1773. '\u024B': 'q',
  1774. '\uA757': 'q',
  1775. '\uA759': 'q',
  1776. '\u24E1': 'r',
  1777. '\uFF52': 'r',
  1778. '\u0155': 'r',
  1779. '\u1E59': 'r',
  1780. '\u0159': 'r',
  1781. '\u0211': 'r',
  1782. '\u0213': 'r',
  1783. '\u1E5B': 'r',
  1784. '\u1E5D': 'r',
  1785. '\u0157': 'r',
  1786. '\u1E5F': 'r',
  1787. '\u024D': 'r',
  1788. '\u027D': 'r',
  1789. '\uA75B': 'r',
  1790. '\uA7A7': 'r',
  1791. '\uA783': 'r',
  1792. '\u24E2': 's',
  1793. '\uFF53': 's',
  1794. '\u00DF': 's',
  1795. '\u015B': 's',
  1796. '\u1E65': 's',
  1797. '\u015D': 's',
  1798. '\u1E61': 's',
  1799. '\u0161': 's',
  1800. '\u1E67': 's',
  1801. '\u1E63': 's',
  1802. '\u1E69': 's',
  1803. '\u0219': 's',
  1804. '\u015F': 's',
  1805. '\u023F': 's',
  1806. '\uA7A9': 's',
  1807. '\uA785': 's',
  1808. '\u1E9B': 's',
  1809. '\u24E3': 't',
  1810. '\uFF54': 't',
  1811. '\u1E6B': 't',
  1812. '\u1E97': 't',
  1813. '\u0165': 't',
  1814. '\u1E6D': 't',
  1815. '\u021B': 't',
  1816. '\u0163': 't',
  1817. '\u1E71': 't',
  1818. '\u1E6F': 't',
  1819. '\u0167': 't',
  1820. '\u01AD': 't',
  1821. '\u0288': 't',
  1822. '\u2C66': 't',
  1823. '\uA787': 't',
  1824. '\uA729': 'tz',
  1825. '\u24E4': 'u',
  1826. '\uFF55': 'u',
  1827. '\u00F9': 'u',
  1828. '\u00FA': 'u',
  1829. '\u00FB': 'u',
  1830. '\u0169': 'u',
  1831. '\u1E79': 'u',
  1832. '\u016B': 'u',
  1833. '\u1E7B': 'u',
  1834. '\u016D': 'u',
  1835. '\u00FC': 'u',
  1836. '\u01DC': 'u',
  1837. '\u01D8': 'u',
  1838. '\u01D6': 'u',
  1839. '\u01DA': 'u',
  1840. '\u1EE7': 'u',
  1841. '\u016F': 'u',
  1842. '\u0171': 'u',
  1843. '\u01D4': 'u',
  1844. '\u0215': 'u',
  1845. '\u0217': 'u',
  1846. '\u01B0': 'u',
  1847. '\u1EEB': 'u',
  1848. '\u1EE9': 'u',
  1849. '\u1EEF': 'u',
  1850. '\u1EED': 'u',
  1851. '\u1EF1': 'u',
  1852. '\u1EE5': 'u',
  1853. '\u1E73': 'u',
  1854. '\u0173': 'u',
  1855. '\u1E77': 'u',
  1856. '\u1E75': 'u',
  1857. '\u0289': 'u',
  1858. '\u24E5': 'v',
  1859. '\uFF56': 'v',
  1860. '\u1E7D': 'v',
  1861. '\u1E7F': 'v',
  1862. '\u028B': 'v',
  1863. '\uA75F': 'v',
  1864. '\u028C': 'v',
  1865. '\uA761': 'vy',
  1866. '\u24E6': 'w',
  1867. '\uFF57': 'w',
  1868. '\u1E81': 'w',
  1869. '\u1E83': 'w',
  1870. '\u0175': 'w',
  1871. '\u1E87': 'w',
  1872. '\u1E85': 'w',
  1873. '\u1E98': 'w',
  1874. '\u1E89': 'w',
  1875. '\u2C73': 'w',
  1876. '\u24E7': 'x',
  1877. '\uFF58': 'x',
  1878. '\u1E8B': 'x',
  1879. '\u1E8D': 'x',
  1880. '\u24E8': 'y',
  1881. '\uFF59': 'y',
  1882. '\u1EF3': 'y',
  1883. '\u00FD': 'y',
  1884. '\u0177': 'y',
  1885. '\u1EF9': 'y',
  1886. '\u0233': 'y',
  1887. '\u1E8F': 'y',
  1888. '\u00FF': 'y',
  1889. '\u1EF7': 'y',
  1890. '\u1E99': 'y',
  1891. '\u1EF5': 'y',
  1892. '\u01B4': 'y',
  1893. '\u024F': 'y',
  1894. '\u1EFF': 'y',
  1895. '\u24E9': 'z',
  1896. '\uFF5A': 'z',
  1897. '\u017A': 'z',
  1898. '\u1E91': 'z',
  1899. '\u017C': 'z',
  1900. '\u017E': 'z',
  1901. '\u1E93': 'z',
  1902. '\u1E95': 'z',
  1903. '\u01B6': 'z',
  1904. '\u0225': 'z',
  1905. '\u0240': 'z',
  1906. '\u2C6C': 'z',
  1907. '\uA763': 'z',
  1908. '\u0386': '\u0391',
  1909. '\u0388': '\u0395',
  1910. '\u0389': '\u0397',
  1911. '\u038A': '\u0399',
  1912. '\u03AA': '\u0399',
  1913. '\u038C': '\u039F',
  1914. '\u038E': '\u03A5',
  1915. '\u03AB': '\u03A5',
  1916. '\u038F': '\u03A9',
  1917. '\u03AC': '\u03B1',
  1918. '\u03AD': '\u03B5',
  1919. '\u03AE': '\u03B7',
  1920. '\u03AF': '\u03B9',
  1921. '\u03CA': '\u03B9',
  1922. '\u0390': '\u03B9',
  1923. '\u03CC': '\u03BF',
  1924. '\u03CD': '\u03C5',
  1925. '\u03CB': '\u03C5',
  1926. '\u03B0': '\u03C5',
  1927. '\u03C9': '\u03C9',
  1928. '\u03C2': '\u03C3'
  1929. };
  1930. return diacritics;
  1931. });
  1932. define('select2/data/base',[
  1933. '../utils'
  1934. ], function (Utils) {
  1935. function BaseAdapter ($element, options) {
  1936. BaseAdapter.__super__.constructor.call(this);
  1937. }
  1938. Utils.Extend(BaseAdapter, Utils.Observable);
  1939. BaseAdapter.prototype.current = function (callback) {
  1940. throw new Error('The `current` method must be defined in child classes.');
  1941. };
  1942. BaseAdapter.prototype.query = function (params, callback) {
  1943. throw new Error('The `query` method must be defined in child classes.');
  1944. };
  1945. BaseAdapter.prototype.bind = function (container, $container) {
  1946. // Can be implemented in subclasses
  1947. };
  1948. BaseAdapter.prototype.destroy = function () {
  1949. // Can be implemented in subclasses
  1950. };
  1951. BaseAdapter.prototype.generateResultId = function (container, data) {
  1952. var id = container.id + '-result-';
  1953. id += Utils.generateChars(4);
  1954. if (data.id != null) {
  1955. id += '-' + data.id.toString();
  1956. } else {
  1957. id += '-' + Utils.generateChars(4);
  1958. }
  1959. return id;
  1960. };
  1961. return BaseAdapter;
  1962. });
  1963. define('select2/data/select',[
  1964. './base',
  1965. '../utils',
  1966. 'jquery'
  1967. ], function (BaseAdapter, Utils, $) {
  1968. function SelectAdapter ($element, options) {
  1969. this.$element = $element;
  1970. this.options = options;
  1971. SelectAdapter.__super__.constructor.call(this);
  1972. }
  1973. Utils.Extend(SelectAdapter, BaseAdapter);
  1974. SelectAdapter.prototype.current = function (callback) {
  1975. var data = [];
  1976. var self = this;
  1977. this.$element.find(':selected').each(function () {
  1978. var $option = $(this);
  1979. var option = self.item($option);
  1980. data.push(option);
  1981. });
  1982. callback(data);
  1983. };
  1984. SelectAdapter.prototype.select = function (data) {
  1985. var self = this;
  1986. // If data.element is a DOM nose, use it instead
  1987. if ($(data.element).is('option')) {
  1988. data.element.selected = true;
  1989. this.$element.trigger('change');
  1990. return;
  1991. }
  1992. if (this.$element.prop('multiple')) {
  1993. this.current(function (currentData) {
  1994. var val = [];
  1995. data = [data];
  1996. data.push.apply(data, currentData);
  1997. for (var d = 0; d < data.length; d++) {
  1998. var id = data[d].id;
  1999. if ($.inArray(id, val) === -1) {
  2000. val.push(id);
  2001. }
  2002. }
  2003. self.$element.val(val);
  2004. self.$element.trigger('change');
  2005. });
  2006. } else {
  2007. var val = data.id;
  2008. this.$element.val(val);
  2009. this.$element.trigger('change');
  2010. }
  2011. };
  2012. SelectAdapter.prototype.unselect = function (data) {
  2013. var self = this;
  2014. if (!this.$element.prop('multiple')) {
  2015. return;
  2016. }
  2017. if ($(data.element).is('option')) {
  2018. data.element.selected = false;
  2019. this.$element.trigger('change');
  2020. return;
  2021. }
  2022. this.current(function (currentData) {
  2023. var val = [];
  2024. for (var d = 0; d < currentData.length; d++) {
  2025. var id = currentData[d].id;
  2026. if (id !== data.id && $.inArray(id, val) === -1) {
  2027. val.push(id);
  2028. }
  2029. }
  2030. self.$element.val(val);
  2031. self.$element.trigger('change');
  2032. });
  2033. };
  2034. SelectAdapter.prototype.bind = function (container, $container) {
  2035. var self = this;
  2036. this.container = container;
  2037. container.on('select', function (params) {
  2038. self.select(params.data);
  2039. });
  2040. container.on('unselect', function (params) {
  2041. self.unselect(params.data);
  2042. });
  2043. };
  2044. SelectAdapter.prototype.destroy = function () {
  2045. // Remove anything added to child elements
  2046. this.$element.find('*').each(function () {
  2047. // Remove any custom data set by Select2
  2048. $.removeData(this, 'data');
  2049. });
  2050. };
  2051. SelectAdapter.prototype.query = function (params, callback) {
  2052. var data = [];
  2053. var self = this;
  2054. var $options = this.$element.children();
  2055. $options.each(function () {
  2056. var $option = $(this);
  2057. if (!$option.is('option') && !$option.is('optgroup')) {
  2058. return;
  2059. }
  2060. var option = self.item($option);
  2061. var matches = self.matches(params, option);
  2062. if (matches !== null) {
  2063. data.push(matches);
  2064. }
  2065. });
  2066. callback({
  2067. results: data
  2068. });
  2069. };
  2070. SelectAdapter.prototype.addOptions = function ($options) {
  2071. this.$element.append($options);
  2072. };
  2073. SelectAdapter.prototype.option = function (data) {
  2074. var option;
  2075. if (data.children) {
  2076. option = document.createElement('optgroup');
  2077. option.label = data.text;
  2078. } else {
  2079. option = document.createElement('option');
  2080. if (option.textContent !== undefined) {
  2081. option.textContent = data.text;
  2082. } else {
  2083. option.innerText = data.text;
  2084. }
  2085. }
  2086. if (data.id) {
  2087. option.value = data.id;
  2088. }
  2089. if (data.disabled) {
  2090. option.disabled = true;
  2091. }
  2092. if (data.selected) {
  2093. option.selected = true;
  2094. }
  2095. if (data.title) {
  2096. option.title = data.title;
  2097. }
  2098. var $option = $(option);
  2099. var normalizedData = this._normalizeItem(data);
  2100. normalizedData.element = option;
  2101. // Override the option's data with the combined data
  2102. $.data(option, 'data', normalizedData);
  2103. return $option;
  2104. };
  2105. SelectAdapter.prototype.item = function ($option) {
  2106. var data = {};
  2107. data = $.data($option[0], 'data');
  2108. if (data != null) {
  2109. return data;
  2110. }
  2111. if ($option.is('option')) {
  2112. data = {
  2113. id: $option.val(),
  2114. text: $option.text(),
  2115. disabled: $option.prop('disabled'),
  2116. selected: $option.prop('selected'),
  2117. title: $option.prop('title')
  2118. };
  2119. } else if ($option.is('optgroup')) {
  2120. data = {
  2121. text: $option.prop('label'),
  2122. children: [],
  2123. title: $option.prop('title')
  2124. };
  2125. var $children = $option.children('option');
  2126. var children = [];
  2127. for (var c = 0; c < $children.length; c++) {
  2128. var $child = $($children[c]);
  2129. var child = this.item($child);
  2130. children.push(child);
  2131. }
  2132. data.children = children;
  2133. }
  2134. data = this._normalizeItem(data);
  2135. data.element = $option[0];
  2136. $.data($option[0], 'data', data);
  2137. return data;
  2138. };
  2139. SelectAdapter.prototype._normalizeItem = function (item) {
  2140. if (!$.isPlainObject(item)) {
  2141. item = {
  2142. id: item,
  2143. text: item
  2144. };
  2145. }
  2146. item = $.extend({}, {
  2147. text: ''
  2148. }, item);
  2149. var defaults = {
  2150. selected: false,
  2151. disabled: false
  2152. };
  2153. if (item.id != null) {
  2154. item.id = item.id.toString();
  2155. }
  2156. if (item.text != null) {
  2157. item.text = item.text.toString();
  2158. }
  2159. if (item._resultId == null && item.id && this.container != null) {
  2160. item._resultId = this.generateResultId(this.container, item);
  2161. }
  2162. return $.extend({}, defaults, item);
  2163. };
  2164. SelectAdapter.prototype.matches = function (params, data) {
  2165. var matcher = this.options.get('matcher');
  2166. return matcher(params, data);
  2167. };
  2168. return SelectAdapter;
  2169. });
  2170. define('select2/data/array',[
  2171. './select',
  2172. '../utils',
  2173. 'jquery'
  2174. ], function (SelectAdapter, Utils, $) {
  2175. function ArrayAdapter ($element, options) {
  2176. var data = options.get('data') || [];
  2177. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2178. this.addOptions(this.convertToOptions(data));
  2179. }
  2180. Utils.Extend(ArrayAdapter, SelectAdapter);
  2181. ArrayAdapter.prototype.select = function (data) {
  2182. var $option = this.$element.find('option[value="' + data.id + '"]');
  2183. if ($option.length === 0) {
  2184. $option = this.option(data);
  2185. this.addOptions($option);
  2186. }
  2187. ArrayAdapter.__super__.select.call(this, data);
  2188. };
  2189. ArrayAdapter.prototype.convertToOptions = function (data) {
  2190. var self = this;
  2191. var $existing = this.$element.find('option');
  2192. var existingIds = $existing.map(function () {
  2193. return self.item($(this)).id;
  2194. }).get();
  2195. var $options = $();
  2196. // Filter out all items except for the one passed in the argument
  2197. function onlyItem (item) {
  2198. return function () {
  2199. return $(this).val() == item.id;
  2200. };
  2201. }
  2202. for (var d = 0; d < data.length; d++) {
  2203. var item = this._normalizeItem(data[d]);
  2204. // Skip items which were pre-loaded, only merge the data
  2205. if ($.inArray(item.id, existingIds) >= 0) {
  2206. var $existingOption = $existing.filter(onlyItem(item));
  2207. var existingData = this.item($existingOption);
  2208. var newData = $.extend(true, {}, existingData, item);
  2209. var $newOption = this.option(existingData);
  2210. $existingOption.replaceWith($newOption);
  2211. continue;
  2212. }
  2213. var $option = this.option(item);
  2214. if (item.children) {
  2215. var $children = this.convertToOptions(item.children);
  2216. $option.append($children);
  2217. }
  2218. $options = $options.add($option);
  2219. }
  2220. return $options;
  2221. };
  2222. return ArrayAdapter;
  2223. });
  2224. define('select2/data/ajax',[
  2225. './array',
  2226. '../utils',
  2227. 'jquery'
  2228. ], function (ArrayAdapter, Utils, $) {
  2229. function AjaxAdapter ($element, options) {
  2230. this.ajaxOptions = this._applyDefaults(options.get('ajax'));
  2231. if (this.ajaxOptions.processResults != null) {
  2232. this.processResults = this.ajaxOptions.processResults;
  2233. }
  2234. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2235. }
  2236. Utils.Extend(AjaxAdapter, ArrayAdapter);
  2237. AjaxAdapter.prototype._applyDefaults = function (options) {
  2238. var defaults = {
  2239. data: function (params) {
  2240. return {
  2241. q: params.term
  2242. };
  2243. },
  2244. transport: function (params, success, failure) {
  2245. var $request = $.ajax(params);
  2246. $request.then(success);
  2247. $request.fail(failure);
  2248. return $request;
  2249. }
  2250. };
  2251. return $.extend({}, defaults, options, true);
  2252. };
  2253. AjaxAdapter.prototype.processResults = function (results) {
  2254. return results;
  2255. };
  2256. AjaxAdapter.prototype.query = function (params, callback) {
  2257. var matches = [];
  2258. var self = this;
  2259. if (this._request) {
  2260. this._request.abort();
  2261. this._request = null;
  2262. }
  2263. var options = $.extend({
  2264. type: 'GET'
  2265. }, this.ajaxOptions);
  2266. if (typeof options.url === 'function') {
  2267. options.url = options.url(params);
  2268. }
  2269. if (typeof options.data === 'function') {
  2270. options.data = options.data(params);
  2271. }
  2272. function request () {
  2273. var $request = options.transport(options, function (data) {
  2274. var results = self.processResults(data, params);
  2275. if (window.console && console.error) {
  2276. // Check to make sure that the response included a `results` key.
  2277. if (!results || !results.results || !$.isArray(results.results)) {
  2278. console.error(
  2279. 'Select2: The AJAX results did not return an array in the ' +
  2280. '`results` key of the response.'
  2281. );
  2282. }
  2283. }
  2284. callback(results);
  2285. }, function () {
  2286. // TODO: Handle AJAX errors
  2287. });
  2288. self._request = $request;
  2289. }
  2290. if (this.ajaxOptions.delay && params.term !== '') {
  2291. if (this._queryTimeout) {
  2292. window.clearTimeout(this._queryTimeout);
  2293. }
  2294. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  2295. } else {
  2296. request();
  2297. }
  2298. };
  2299. return AjaxAdapter;
  2300. });
  2301. define('select2/data/tags',[
  2302. 'jquery'
  2303. ], function ($) {
  2304. function Tags (decorated, $element, options) {
  2305. var tags = options.get('tags');
  2306. var createTag = options.get('createTag');
  2307. if (createTag !== undefined) {
  2308. this.createTag = createTag;
  2309. }
  2310. decorated.call(this, $element, options);
  2311. if ($.isArray(tags)) {
  2312. for (var t = 0; t < tags.length; t++) {
  2313. var tag = tags[t];
  2314. var item = this._normalizeItem(tag);
  2315. var $option = this.option(item);
  2316. this.$element.append($option);
  2317. }
  2318. }
  2319. }
  2320. Tags.prototype.query = function (decorated, params, callback) {
  2321. var self = this;
  2322. this._removeOldTags();
  2323. if (params.term == null || params.page != null) {
  2324. decorated.call(this, params, callback);
  2325. return;
  2326. }
  2327. function wrapper (obj, child) {
  2328. var data = obj.results;
  2329. for (var i = 0; i < data.length; i++) {
  2330. var option = data[i];
  2331. var checkChildren = (
  2332. option.children != null &&
  2333. !wrapper({
  2334. results: option.children
  2335. }, true)
  2336. );
  2337. var checkText = option.text === params.term;
  2338. if (checkText || checkChildren) {
  2339. if (child) {
  2340. return false;
  2341. }
  2342. obj.data = data;
  2343. callback(obj);
  2344. return;
  2345. }
  2346. }
  2347. if (child) {
  2348. return true;
  2349. }
  2350. var tag = self.createTag(params);
  2351. if (tag != null) {
  2352. var $option = self.option(tag);
  2353. $option.attr('data-select2-tag', true);
  2354. self.addOptions($option);
  2355. self.insertTag(data, tag);
  2356. }
  2357. obj.results = data;
  2358. callback(obj);
  2359. }
  2360. decorated.call(this, params, wrapper);
  2361. };
  2362. Tags.prototype.createTag = function (decorated, params) {
  2363. var term = $.trim(params.term);
  2364. if (term === '') {
  2365. return null;
  2366. }
  2367. return {
  2368. id: term,
  2369. text: term
  2370. };
  2371. };
  2372. Tags.prototype.insertTag = function (_, data, tag) {
  2373. data.unshift(tag);
  2374. };
  2375. Tags.prototype._removeOldTags = function (_) {
  2376. var tag = this._lastTag;
  2377. var $options = this.$element.find('option[data-select2-tag]');
  2378. $options.each(function () {
  2379. if (this.selected) {
  2380. return;
  2381. }
  2382. $(this).remove();
  2383. });
  2384. };
  2385. return Tags;
  2386. });
  2387. define('select2/data/tokenizer',[
  2388. 'jquery'
  2389. ], function ($) {
  2390. function Tokenizer (decorated, $element, options) {
  2391. var tokenizer = options.get('tokenizer');
  2392. if (tokenizer !== undefined) {
  2393. this.tokenizer = tokenizer;
  2394. }
  2395. decorated.call(this, $element, options);
  2396. }
  2397. Tokenizer.prototype.bind = function (decorated, container, $container) {
  2398. decorated.call(this, container, $container);
  2399. this.$search = container.dropdown.$search || container.selection.$search ||
  2400. $container.find('.select2-search__field');
  2401. };
  2402. Tokenizer.prototype.query = function (decorated, params, callback) {
  2403. var self = this;
  2404. function select (data) {
  2405. self.select(data);
  2406. }
  2407. params.term = params.term || '';
  2408. var tokenData = this.tokenizer(params, this.options, select);
  2409. if (tokenData.term !== params.term) {
  2410. // Replace the search term if we have the search box
  2411. if (this.$search.length) {
  2412. this.$search.val(tokenData.term);
  2413. this.$search.focus();
  2414. }
  2415. params.term = tokenData.term;
  2416. }
  2417. decorated.call(this, params, callback);
  2418. };
  2419. Tokenizer.prototype.tokenizer = function (_, params, options, callback) {
  2420. var separators = options.get('tokenSeparators') || [];
  2421. var term = params.term;
  2422. var i = 0;
  2423. var createTag = this.createTag || function (params) {
  2424. return {
  2425. id: params.term,
  2426. text: params.term
  2427. };
  2428. };
  2429. while (i < term.length) {
  2430. var termChar = term[i];
  2431. if ($.inArray(termChar, separators) === -1) {
  2432. i++;
  2433. continue;
  2434. }
  2435. var part = term.substr(0, i);
  2436. var partParams = $.extend({}, params, {
  2437. term: part
  2438. });
  2439. var data = createTag(partParams);
  2440. callback(data);
  2441. // Reset the term to not include the tokenized portion
  2442. term = term.substr(i + 1) || '';
  2443. i = 0;
  2444. }
  2445. return {
  2446. term: term
  2447. };
  2448. };
  2449. return Tokenizer;
  2450. });
  2451. define('select2/data/minimumInputLength',[
  2452. ], function () {
  2453. function MinimumInputLength (decorated, $e, options) {
  2454. this.minimumInputLength = options.get('minimumInputLength');
  2455. decorated.call(this, $e, options);
  2456. }
  2457. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  2458. params.term = params.term || '';
  2459. if (params.term.length < this.minimumInputLength) {
  2460. this.trigger('results:message', {
  2461. message: 'inputTooShort',
  2462. args: {
  2463. minimum: this.minimumInputLength,
  2464. input: params.term,
  2465. params: params
  2466. }
  2467. });
  2468. return;
  2469. }
  2470. decorated.call(this, params, callback);
  2471. };
  2472. return MinimumInputLength;
  2473. });
  2474. define('select2/data/maximumInputLength',[
  2475. ], function () {
  2476. function MaximumInputLength (decorated, $e, options) {
  2477. this.maximumInputLength = options.get('maximumInputLength');
  2478. decorated.call(this, $e, options);
  2479. }
  2480. MaximumInputLength.prototype.query = function (decorated, params, callback) {
  2481. params.term = params.term || '';
  2482. if (this.maximumInputLength > 0 &&
  2483. params.term.length > this.maximumInputLength) {
  2484. this.trigger('results:message', {
  2485. message: 'inputTooLong',
  2486. args: {
  2487. maximum: this.maximumInputLength,
  2488. input: params.term,
  2489. params: params
  2490. }
  2491. });
  2492. return;
  2493. }
  2494. decorated.call(this, params, callback);
  2495. };
  2496. return MaximumInputLength;
  2497. });
  2498. define('select2/data/maximumSelectionLength',[
  2499. ], function (){
  2500. function MaximumSelectionLength (decorated, $e, options) {
  2501. this.maximumSelectionLength = options.get('maximumSelectionLength');
  2502. decorated.call(this, $e, options);
  2503. }
  2504. MaximumSelectionLength.prototype.query =
  2505. function (decorated, params, callback) {
  2506. var self = this;
  2507. this.current(function (currentData) {
  2508. var count = currentData != null ? currentData.length : 0;
  2509. if (self.maximumSelectionLength > 0 &&
  2510. count >= self.maximumSelectionLength) {
  2511. self.trigger('results:message', {
  2512. message: 'maximumSelected',
  2513. args: {
  2514. maximum: self.maximumSelectionLength
  2515. }
  2516. });
  2517. return;
  2518. }
  2519. decorated.call(self, params, callback);
  2520. });
  2521. };
  2522. return MaximumSelectionLength;
  2523. });
  2524. define('select2/dropdown',[
  2525. 'jquery',
  2526. './utils'
  2527. ], function ($, Utils) {
  2528. function Dropdown ($element, options) {
  2529. this.$element = $element;
  2530. this.options = options;
  2531. Dropdown.__super__.constructor.call(this);
  2532. }
  2533. Utils.Extend(Dropdown, Utils.Observable);
  2534. Dropdown.prototype.render = function () {
  2535. var $dropdown = $(
  2536. '<span class="select2-dropdown">' +
  2537. '<span class="select2-results"></span>' +
  2538. '</span>'
  2539. );
  2540. $dropdown.attr('dir', this.options.get('dir'));
  2541. this.$dropdown = $dropdown;
  2542. return $dropdown;
  2543. };
  2544. Dropdown.prototype.position = function ($dropdown, $container) {
  2545. // Should be implmented in subclasses
  2546. };
  2547. Dropdown.prototype.destroy = function () {
  2548. // Remove the dropdown from the DOM
  2549. this.$dropdown.remove();
  2550. };
  2551. return Dropdown;
  2552. });
  2553. define('select2/dropdown/search',[
  2554. 'jquery',
  2555. '../utils'
  2556. ], function ($, Utils) {
  2557. function Search () { }
  2558. Search.prototype.render = function (decorated) {
  2559. var $rendered = decorated.call(this);
  2560. var $search = $(
  2561. '<span class="select2-search select2-search--dropdown">' +
  2562. '<input class="select2-search__field" type="search" tabindex="-1"' +
  2563. ' autocomplete="off" autocorrect="off" autocapitalize="off"' +
  2564. ' spellcheck="false" role="textbox" />' +
  2565. '</span>'
  2566. );
  2567. this.$searchContainer = $search;
  2568. this.$search = $search.find('input');
  2569. $rendered.prepend($search);
  2570. return $rendered;
  2571. };
  2572. Search.prototype.bind = function (decorated, container, $container) {
  2573. var self = this;
  2574. decorated.call(this, container, $container);
  2575. this.$search.on('keydown', function (evt) {
  2576. self.trigger('keypress', evt);
  2577. self._keyUpPrevented = evt.isDefaultPrevented();
  2578. });
  2579. // Workaround for browsers which do not support the `input` event
  2580. // This will prevent double-triggering of events for browsers which support
  2581. // both the `keyup` and `input` events.
  2582. this.$search.on('input', function (evt) {
  2583. // Unbind the duplicated `keyup` event
  2584. $(this).off('keyup');
  2585. });
  2586. this.$search.on('keyup input', function (evt) {
  2587. self.handleSearch(evt);
  2588. });
  2589. container.on('open', function () {
  2590. self.$search.attr('tabindex', 0);
  2591. self.$search.focus();
  2592. window.setTimeout(function () {
  2593. self.$search.focus();
  2594. }, 0);
  2595. });
  2596. container.on('close', function () {
  2597. self.$search.attr('tabindex', -1);
  2598. self.$search.val('');
  2599. });
  2600. container.on('results:all', function (params) {
  2601. if (params.query.term == null || params.query.term === '') {
  2602. var showSearch = self.showSearch(params);
  2603. if (showSearch) {
  2604. self.$searchContainer.removeClass('select2-search--hide');
  2605. } else {
  2606. self.$searchContainer.addClass('select2-search--hide');
  2607. }
  2608. }
  2609. });
  2610. };
  2611. Search.prototype.handleSearch = function (evt) {
  2612. if (!this._keyUpPrevented) {
  2613. var input = this.$search.val();
  2614. this.trigger('query', {
  2615. term: input
  2616. });
  2617. }
  2618. this._keyUpPrevented = false;
  2619. };
  2620. Search.prototype.showSearch = function (_, params) {
  2621. return true;
  2622. };
  2623. return Search;
  2624. });
  2625. define('select2/dropdown/hidePlaceholder',[
  2626. ], function () {
  2627. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  2628. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  2629. decorated.call(this, $element, options, dataAdapter);
  2630. }
  2631. HidePlaceholder.prototype.append = function (decorated, data) {
  2632. data.results = this.removePlaceholder(data.results);
  2633. decorated.call(this, data);
  2634. };
  2635. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  2636. if (typeof placeholder === 'string') {
  2637. placeholder = {
  2638. id: '',
  2639. text: placeholder
  2640. };
  2641. }
  2642. return placeholder;
  2643. };
  2644. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  2645. var modifiedData = data.slice(0);
  2646. for (var d = data.length - 1; d >= 0; d--) {
  2647. var item = data[d];
  2648. if (this.placeholder.id === item.id) {
  2649. modifiedData.splice(d, 1);
  2650. }
  2651. }
  2652. return modifiedData;
  2653. };
  2654. return HidePlaceholder;
  2655. });
  2656. define('select2/dropdown/infiniteScroll',[
  2657. 'jquery'
  2658. ], function ($) {
  2659. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  2660. this.lastParams = {};
  2661. decorated.call(this, $element, options, dataAdapter);
  2662. this.$loadingMore = this.createLoadingMore();
  2663. this.loading = false;
  2664. }
  2665. InfiniteScroll.prototype.append = function (decorated, data) {
  2666. this.$loadingMore.remove();
  2667. this.loading = false;
  2668. decorated.call(this, data);
  2669. if (this.showLoadingMore(data)) {
  2670. this.$results.append(this.$loadingMore);
  2671. }
  2672. };
  2673. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  2674. var self = this;
  2675. decorated.call(this, container, $container);
  2676. container.on('query', function (params) {
  2677. self.lastParams = params;
  2678. self.loading = true;
  2679. });
  2680. container.on('query:append', function (params) {
  2681. self.lastParams = params;
  2682. self.loading = true;
  2683. });
  2684. this.$results.on('scroll', function () {
  2685. var isLoadMoreVisible = $.contains(
  2686. document.documentElement,
  2687. self.$loadingMore[0]
  2688. );
  2689. if (self.loading || !isLoadMoreVisible) {
  2690. return;
  2691. }
  2692. var currentOffset = self.$results.offset().top +
  2693. self.$results.outerHeight(false);
  2694. var loadingMoreOffset = self.$loadingMore.offset().top +
  2695. self.$loadingMore.outerHeight(false);
  2696. if (currentOffset + 50 >= loadingMoreOffset) {
  2697. self.loadMore();
  2698. }
  2699. });
  2700. };
  2701. InfiniteScroll.prototype.loadMore = function () {
  2702. this.loading = true;
  2703. var params = $.extend({}, {page: 1}, this.lastParams);
  2704. params.page++;
  2705. this.trigger('query:append', params);
  2706. };
  2707. InfiniteScroll.prototype.showLoadingMore = function (_, data) {
  2708. return data.pagination && data.pagination.more;
  2709. };
  2710. InfiniteScroll.prototype.createLoadingMore = function () {
  2711. var $option = $(
  2712. '<li class="option load-more" role="treeitem"></li>'
  2713. );
  2714. var message = this.options.get('translations').get('loadingMore');
  2715. $option.html(message(this.lastParams));
  2716. return $option;
  2717. };
  2718. return InfiniteScroll;
  2719. });
  2720. define('select2/dropdown/attachBody',[
  2721. 'jquery',
  2722. '../utils'
  2723. ], function ($, Utils) {
  2724. function AttachBody (decorated, $element, options) {
  2725. this.$dropdownParent = options.get('dropdownParent') || document.body;
  2726. decorated.call(this, $element, options);
  2727. }
  2728. AttachBody.prototype.bind = function (decorated, container, $container) {
  2729. var self = this;
  2730. var setupResultsEvents = false;
  2731. decorated.call(this, container, $container);
  2732. container.on('open', function () {
  2733. self._showDropdown();
  2734. self._attachPositioningHandler(container);
  2735. if (!setupResultsEvents) {
  2736. setupResultsEvents = true;
  2737. container.on('results:all', function () {
  2738. self._positionDropdown();
  2739. self._resizeDropdown();
  2740. });
  2741. container.on('results:append', function () {
  2742. self._positionDropdown();
  2743. self._resizeDropdown();
  2744. });
  2745. }
  2746. });
  2747. container.on('close', function () {
  2748. self._hideDropdown();
  2749. self._detachPositioningHandler(container);
  2750. });
  2751. this.$dropdownContainer.on('mousedown', function (evt) {
  2752. evt.stopPropagation();
  2753. });
  2754. };
  2755. AttachBody.prototype.position = function (decorated, $dropdown, $container) {
  2756. // Clone all of the container classes
  2757. $dropdown.attr('class', $container.attr('class'));
  2758. $dropdown.removeClass('select2');
  2759. $dropdown.addClass('select2-container--open');
  2760. $dropdown.css({
  2761. position: 'absolute',
  2762. top: -999999
  2763. });
  2764. this.$container = $container;
  2765. };
  2766. AttachBody.prototype.render = function (decorated) {
  2767. var $container = $('<span></span>');
  2768. var $dropdown = decorated.call(this);
  2769. $container.append($dropdown);
  2770. this.$dropdownContainer = $container;
  2771. return $container;
  2772. };
  2773. AttachBody.prototype._hideDropdown = function (decorated) {
  2774. this.$dropdownContainer.detach();
  2775. };
  2776. AttachBody.prototype._attachPositioningHandler = function (container) {
  2777. var self = this;
  2778. var scrollEvent = 'scroll.select2.' + container.id;
  2779. var resizeEvent = 'resize.select2.' + container.id;
  2780. var orientationEvent = 'orientationchange.select2.' + container.id;
  2781. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  2782. $watchers.each(function () {
  2783. $(this).data('select2-scroll-position', {
  2784. x: $(this).scrollLeft(),
  2785. y: $(this).scrollTop()
  2786. });
  2787. });
  2788. $watchers.on(scrollEvent, function (ev) {
  2789. var position = $(this).data('select2-scroll-position');
  2790. $(this).scrollTop(position.y);
  2791. });
  2792. $(window).on(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent,
  2793. function (e) {
  2794. self._positionDropdown();
  2795. self._resizeDropdown();
  2796. });
  2797. };
  2798. AttachBody.prototype._detachPositioningHandler = function (container) {
  2799. var scrollEvent = 'scroll.select2.' + container.id;
  2800. var resizeEvent = 'resize.select2.' + container.id;
  2801. var orientationEvent = 'orientationchange.select2.' + container.id;
  2802. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  2803. $watchers.off(scrollEvent);
  2804. $(window).off(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent);
  2805. };
  2806. AttachBody.prototype._positionDropdown = function () {
  2807. var $window = $(window);
  2808. var isCurrentlyAbove = this.$dropdown.hasClass('select2-dropdown--above');
  2809. var isCurrentlyBelow = this.$dropdown.hasClass('select2-dropdown--below');
  2810. var newDirection = null;
  2811. var position = this.$container.position();
  2812. var offset = this.$container.offset();
  2813. offset.bottom = offset.top + this.$container.outerHeight(false);
  2814. var container = {
  2815. height: this.$container.outerHeight(false)
  2816. };
  2817. container.top = offset.top;
  2818. container.bottom = offset.top + container.height;
  2819. var dropdown = {
  2820. height: this.$dropdown.outerHeight(false)
  2821. };
  2822. var viewport = {
  2823. top: $window.scrollTop(),
  2824. bottom: $window.scrollTop() + $window.height()
  2825. };
  2826. var enoughRoomAbove = viewport.top < (offset.top - dropdown.height);
  2827. var enoughRoomBelow = viewport.bottom > (offset.bottom + dropdown.height);
  2828. var css = {
  2829. left: offset.left,
  2830. top: container.bottom
  2831. };
  2832. if (!isCurrentlyAbove && !isCurrentlyBelow) {
  2833. newDirection = 'below';
  2834. }
  2835. if (!enoughRoomBelow && enoughRoomAbove && !isCurrentlyAbove) {
  2836. newDirection = 'above';
  2837. } else if (!enoughRoomAbove && enoughRoomBelow && isCurrentlyAbove) {
  2838. newDirection = 'below';
  2839. }
  2840. if (newDirection == 'above' ||
  2841. (isCurrentlyAbove && newDirection !== 'below')) {
  2842. css.top = container.top - dropdown.height;
  2843. }
  2844. if (newDirection != null) {
  2845. this.$dropdown
  2846. .removeClass('select2-dropdown--below select2-dropdown--above')
  2847. .addClass('select2-dropdown--' + newDirection);
  2848. this.$container
  2849. .removeClass('select2-container--below select2-container--above')
  2850. .addClass('select2-container--' + newDirection);
  2851. }
  2852. this.$dropdownContainer.css(css);
  2853. };
  2854. AttachBody.prototype._resizeDropdown = function () {
  2855. this.$dropdownContainer.width();
  2856. this.$dropdown.css({
  2857. width: this.$container.outerWidth(false) + 'px'
  2858. });
  2859. };
  2860. AttachBody.prototype._showDropdown = function (decorated) {
  2861. this.$dropdownContainer.appendTo(this.$dropdownParent);
  2862. this._positionDropdown();
  2863. this._resizeDropdown();
  2864. };
  2865. return AttachBody;
  2866. });
  2867. define('select2/dropdown/minimumResultsForSearch',[
  2868. ], function () {
  2869. function countResults (data) {
  2870. var count = 0;
  2871. for (var d = 0; d < data.length; d++) {
  2872. var item = data[d];
  2873. if (item.children) {
  2874. count += countResults(item.children);
  2875. } else {
  2876. count++;
  2877. }
  2878. }
  2879. return count;
  2880. }
  2881. function MinimumResultsForSearch (decorated, $element, options, dataAdapter) {
  2882. this.minimumResultsForSearch = options.get('minimumResultsForSearch');
  2883. if (this.minimumResultsForSearch < 0) {
  2884. this.minimumResultsForSearch = Infinity;
  2885. }
  2886. decorated.call(this, $element, options, dataAdapter);
  2887. }
  2888. MinimumResultsForSearch.prototype.showSearch = function (decorated, params) {
  2889. if (countResults(params.data.results) < this.minimumResultsForSearch) {
  2890. return false;
  2891. }
  2892. return decorated.call(this, params);
  2893. };
  2894. return MinimumResultsForSearch;
  2895. });
  2896. define('select2/dropdown/selectOnClose',[
  2897. ], function () {
  2898. function SelectOnClose () { }
  2899. SelectOnClose.prototype.bind = function (decorated, container, $container) {
  2900. var self = this;
  2901. decorated.call(this, container, $container);
  2902. container.on('close', function () {
  2903. self._handleSelectOnClose();
  2904. });
  2905. };
  2906. SelectOnClose.prototype._handleSelectOnClose = function () {
  2907. var $highlightedResults = this.getHighlightedResults();
  2908. if ($highlightedResults.length < 1) {
  2909. return;
  2910. }
  2911. $highlightedResults.trigger('mouseup');
  2912. };
  2913. return SelectOnClose;
  2914. });
  2915. define('select2/dropdown/closeOnSelect',[
  2916. ], function () {
  2917. function CloseOnSelect () { }
  2918. CloseOnSelect.prototype.bind = function (decorated, container, $container) {
  2919. var self = this;
  2920. decorated.call(this, container, $container);
  2921. container.on('select', function (evt) {
  2922. self._selectTriggered(evt);
  2923. });
  2924. container.on('unselect', function (evt) {
  2925. self._selectTriggered(evt);
  2926. });
  2927. };
  2928. CloseOnSelect.prototype._selectTriggered = function (_, evt) {
  2929. var originalEvent = evt.originalEvent;
  2930. // Don't close if the control key is being held
  2931. if (originalEvent && originalEvent.ctrlKey) {
  2932. return;
  2933. }
  2934. this.trigger('close');
  2935. };
  2936. return CloseOnSelect;
  2937. });
  2938. define('select2/i18n/en',[],function () {
  2939. // English
  2940. return {
  2941. errorLoading: function () {
  2942. return 'The results could not be loaded.';
  2943. },
  2944. inputTooLong: function (args) {
  2945. var overChars = args.input.length - args.maximum;
  2946. var message = 'Please delete ' + overChars + ' character';
  2947. if (overChars != 1) {
  2948. message += 's';
  2949. }
  2950. return message;
  2951. },
  2952. inputTooShort: function (args) {
  2953. var remainingChars = args.minimum - args.input.length;
  2954. var message = 'Please enter ' + remainingChars + ' or more characters';
  2955. return message;
  2956. },
  2957. loadingMore: function () {
  2958. return 'Loading more results…';
  2959. },
  2960. maximumSelected: function (args) {
  2961. var message = 'You can only select ' + args.maximum + ' item';
  2962. if (args.maximum != 1) {
  2963. message += 's';
  2964. }
  2965. return message;
  2966. },
  2967. noResults: function () {
  2968. return 'No results found';
  2969. },
  2970. searching: function () {
  2971. return 'Searching…';
  2972. }
  2973. };
  2974. });
  2975. define('select2/defaults',[
  2976. 'jquery',
  2977. './results',
  2978. './selection/single',
  2979. './selection/multiple',
  2980. './selection/placeholder',
  2981. './selection/allowClear',
  2982. './selection/search',
  2983. './selection/eventRelay',
  2984. './utils',
  2985. './translation',
  2986. './diacritics',
  2987. './data/select',
  2988. './data/array',
  2989. './data/ajax',
  2990. './data/tags',
  2991. './data/tokenizer',
  2992. './data/minimumInputLength',
  2993. './data/maximumInputLength',
  2994. './data/maximumSelectionLength',
  2995. './dropdown',
  2996. './dropdown/search',
  2997. './dropdown/hidePlaceholder',
  2998. './dropdown/infiniteScroll',
  2999. './dropdown/attachBody',
  3000. './dropdown/minimumResultsForSearch',
  3001. './dropdown/selectOnClose',
  3002. './dropdown/closeOnSelect',
  3003. './i18n/en'
  3004. ], function ($, ResultsList,
  3005. SingleSelection, MultipleSelection, Placeholder, AllowClear,
  3006. SelectionSearch, EventRelay,
  3007. Utils, Translation, DIACRITICS,
  3008. SelectData, ArrayData, AjaxData, Tags, Tokenizer,
  3009. MinimumInputLength, MaximumInputLength, MaximumSelectionLength,
  3010. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  3011. AttachBody, MinimumResultsForSearch, SelectOnClose, CloseOnSelect,
  3012. EnglishTranslation) {
  3013. function Defaults () {
  3014. this.reset();
  3015. }
  3016. Defaults.prototype.apply = function (options) {
  3017. options = $.extend({}, this.defaults, options);
  3018. if (options.dataAdapter == null) {
  3019. if (options.ajax != null) {
  3020. options.dataAdapter = AjaxData;
  3021. } else if (options.data != null) {
  3022. options.dataAdapter = ArrayData;
  3023. } else {
  3024. options.dataAdapter = SelectData;
  3025. }
  3026. if (options.minimumInputLength > 0) {
  3027. options.dataAdapter = Utils.Decorate(
  3028. options.dataAdapter,
  3029. MinimumInputLength
  3030. );
  3031. }
  3032. if (options.maximumInputLength > 0) {
  3033. options.dataAdapter = Utils.Decorate(
  3034. options.dataAdapter,
  3035. MaximumInputLength
  3036. );
  3037. }
  3038. if (options.maximumSelectionLength > 0) {
  3039. options.dataAdapter = Utils.Decorate(
  3040. options.dataAdapter,
  3041. MaximumSelectionLength
  3042. );
  3043. }
  3044. if (options.tags != null) {
  3045. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  3046. }
  3047. if (options.tokenSeparators != null || options.tokenizer != null) {
  3048. options.dataAdapter = Utils.Decorate(
  3049. options.dataAdapter,
  3050. Tokenizer
  3051. );
  3052. }
  3053. if (options.query != null) {
  3054. var Query = require(options.amdBase + 'compat/query');
  3055. options.dataAdapter = Utils.Decorate(
  3056. options.dataAdapter,
  3057. Query
  3058. );
  3059. }
  3060. if (options.initSelection != null) {
  3061. var InitSelection = require(options.amdBase + 'compat/initSelection');
  3062. options.dataAdapter = Utils.Decorate(
  3063. options.dataAdapter,
  3064. InitSelection
  3065. );
  3066. }
  3067. }
  3068. if (options.resultsAdapter == null) {
  3069. options.resultsAdapter = ResultsList;
  3070. if (options.ajax != null) {
  3071. options.resultsAdapter = Utils.Decorate(
  3072. options.resultsAdapter,
  3073. InfiniteScroll
  3074. );
  3075. }
  3076. if (options.placeholder != null) {
  3077. options.resultsAdapter = Utils.Decorate(
  3078. options.resultsAdapter,
  3079. HidePlaceholder
  3080. );
  3081. }
  3082. if (options.selectOnClose) {
  3083. options.resultsAdapter = Utils.Decorate(
  3084. options.resultsAdapter,
  3085. SelectOnClose
  3086. );
  3087. }
  3088. }
  3089. if (options.dropdownAdapter == null) {
  3090. if (options.multiple) {
  3091. options.dropdownAdapter = Dropdown;
  3092. } else {
  3093. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  3094. options.dropdownAdapter = SearchableDropdown;
  3095. }
  3096. if (options.minimumResultsForSearch !== 0) {
  3097. options.dropdownAdapter = Utils.Decorate(
  3098. options.dropdownAdapter,
  3099. MinimumResultsForSearch
  3100. );
  3101. }
  3102. if (options.closeOnSelect) {
  3103. options.dropdownAdapter = Utils.Decorate(
  3104. options.dropdownAdapter,
  3105. CloseOnSelect
  3106. );
  3107. }
  3108. options.dropdownAdapter = Utils.Decorate(
  3109. options.dropdownAdapter,
  3110. AttachBody
  3111. );
  3112. }
  3113. if (options.selectionAdapter == null) {
  3114. if (options.multiple) {
  3115. options.selectionAdapter = MultipleSelection;
  3116. } else {
  3117. options.selectionAdapter = SingleSelection;
  3118. }
  3119. // Add the placeholder mixin if a placeholder was specified
  3120. if (options.placeholder != null) {
  3121. options.selectionAdapter = Utils.Decorate(
  3122. options.selectionAdapter,
  3123. Placeholder
  3124. );
  3125. }
  3126. if (options.allowClear) {
  3127. options.selectionAdapter = Utils.Decorate(
  3128. options.selectionAdapter,
  3129. AllowClear
  3130. );
  3131. }
  3132. if (options.multiple) {
  3133. options.selectionAdapter = Utils.Decorate(
  3134. options.selectionAdapter,
  3135. SelectionSearch
  3136. );
  3137. }
  3138. options.selectionAdapter = Utils.Decorate(
  3139. options.selectionAdapter,
  3140. EventRelay
  3141. );
  3142. }
  3143. if (typeof options.language === 'string') {
  3144. // Check if the language is specified with a region
  3145. if (options.language.indexOf('-') > 0) {
  3146. // Extract the region information if it is included
  3147. var languageParts = options.language.split('-');
  3148. var baseLanguage = languageParts[0];
  3149. options.language = [options.language, baseLanguage];
  3150. } else {
  3151. options.language = [options.language];
  3152. }
  3153. }
  3154. if ($.isArray(options.language)) {
  3155. var languages = new Translation();
  3156. options.language.push('en');
  3157. var languageNames = options.language;
  3158. for (var l = 0; l < languageNames.length; l++) {
  3159. var name = languageNames[l];
  3160. var language = {};
  3161. try {
  3162. // Try to load it with the original name
  3163. language = Translation.loadPath(name);
  3164. } catch (e) {
  3165. try {
  3166. // If we couldn't load it, check if it wasn't the full path
  3167. name = this.defaults.amdLanguageBase + name;
  3168. language = Translation.loadPath(name);
  3169. } catch (ex) {
  3170. // The translation could not be loaded at all. Sometimes this is
  3171. // because of a configuration problem, other times this can be
  3172. // because of how Select2 helps load all possible translation files.
  3173. if (window.console && console.warn) {
  3174. console.warn(
  3175. 'Select2: The language file for "' + name + '" could not be ' +
  3176. 'automatically loaded. A fallback will be used instead.'
  3177. );
  3178. }
  3179. continue;
  3180. }
  3181. }
  3182. languages.extend(language);
  3183. }
  3184. options.translations = languages;
  3185. } else {
  3186. options.translations = new Translation(options.language);
  3187. }
  3188. return options;
  3189. };
  3190. Defaults.prototype.reset = function () {
  3191. function stripDiacritics (text) {
  3192. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  3193. function match(a) {
  3194. return DIACRITICS[a] || a;
  3195. }
  3196. return text.replace(/[^\u0000-\u007E]/g, match);
  3197. }
  3198. function matcher (params, data) {
  3199. // Always return the object if there is nothing to compare
  3200. if ($.trim(params.term) === '') {
  3201. return data;
  3202. }
  3203. // Do a recursive check for options with children
  3204. if (data.children && data.children.length > 0) {
  3205. // Clone the data object if there are children
  3206. // This is required as we modify the object to remove any non-matches
  3207. var match = $.extend(true, {}, data);
  3208. // Check each child of the option
  3209. for (var c = data.children.length - 1; c >= 0; c--) {
  3210. var child = data.children[c];
  3211. var matches = matcher(params, child);
  3212. // If there wasn't a match, remove the object in the array
  3213. if (matches == null) {
  3214. match.children.splice(c, 1);
  3215. }
  3216. }
  3217. // If any children matched, return the new object
  3218. if (match.children.length > 0) {
  3219. return match;
  3220. }
  3221. // If there were no matching children, check just the plain object
  3222. return matcher(params, match);
  3223. }
  3224. var original = stripDiacritics(data.text).toUpperCase();
  3225. var term = stripDiacritics(params.term).toUpperCase();
  3226. // Check if the text contains the term
  3227. if (original.indexOf(term) > -1) {
  3228. return data;
  3229. }
  3230. // If it doesn't contain the term, don't return anything
  3231. return null;
  3232. }
  3233. this.defaults = {
  3234. amdBase: 'select2/',
  3235. amdLanguageBase: 'select2/i18n/',
  3236. closeOnSelect: true,
  3237. escapeMarkup: Utils.escapeMarkup,
  3238. language: EnglishTranslation,
  3239. matcher: matcher,
  3240. minimumInputLength: 0,
  3241. maximumInputLength: 0,
  3242. maximumSelectionLength: 0,
  3243. minimumResultsForSearch: 0,
  3244. selectOnClose: false,
  3245. sorter: function (data) {
  3246. return data;
  3247. },
  3248. templateResult: function (result) {
  3249. return result.text;
  3250. },
  3251. templateSelection: function (selection) {
  3252. return selection.text;
  3253. },
  3254. theme: 'default',
  3255. width: 'resolve'
  3256. };
  3257. };
  3258. Defaults.prototype.set = function (key, value) {
  3259. var camelKey = $.camelCase(key);
  3260. var data = {};
  3261. data[camelKey] = value;
  3262. var convertedData = Utils._convertData(data);
  3263. $.extend(this.defaults, convertedData);
  3264. };
  3265. var defaults = new Defaults();
  3266. return defaults;
  3267. });
  3268. define('select2/options',[
  3269. 'jquery',
  3270. './defaults',
  3271. './utils'
  3272. ], function ($, Defaults, Utils) {
  3273. function Options (options, $element) {
  3274. this.options = options;
  3275. if ($element != null) {
  3276. this.fromElement($element);
  3277. }
  3278. this.options = Defaults.apply(this.options);
  3279. if ($element && $element.is('input')) {
  3280. var InputCompat = require(this.get('amdBase') + 'compat/inputData');
  3281. this.options.dataAdapter = Utils.Decorate(
  3282. this.options.dataAdapter,
  3283. InputCompat
  3284. );
  3285. }
  3286. }
  3287. Options.prototype.fromElement = function ($e) {
  3288. var excludedData = ['select2'];
  3289. if (this.options.multiple == null) {
  3290. this.options.multiple = $e.prop('multiple');
  3291. }
  3292. if (this.options.disabled == null) {
  3293. this.options.disabled = $e.prop('disabled');
  3294. }
  3295. if (this.options.language == null) {
  3296. if ($e.prop('lang')) {
  3297. this.options.language = $e.prop('lang').toLowerCase();
  3298. } else if ($e.closest('[lang]').prop('lang')) {
  3299. this.options.language = $e.closest('[lang]').prop('lang');
  3300. }
  3301. }
  3302. if (this.options.dir == null) {
  3303. if ($e.prop('dir')) {
  3304. this.options.dir = $e.prop('dir');
  3305. } else if ($e.closest('[dir]').prop('dir')) {
  3306. this.options.dir = $e.closest('[dir]').prop('dir');
  3307. } else {
  3308. this.options.dir = 'ltr';
  3309. }
  3310. }
  3311. $e.prop('disabled', this.options.disabled);
  3312. $e.prop('multiple', this.options.multiple);
  3313. if ($e.data('select2Tags')) {
  3314. if (window.console && console.warn) {
  3315. console.warn(
  3316. 'Select2: The `data-select2-tags` attribute has been changed to ' +
  3317. 'use the `data-data` and `data-tags="true"` attributes and will be ' +
  3318. 'removed in future versions of Select2.'
  3319. );
  3320. }
  3321. $e.data('data', $e.data('select2Tags'));
  3322. $e.data('tags', true);
  3323. }
  3324. if ($e.data('ajaxUrl')) {
  3325. if (window.console && console.warn) {
  3326. console.warn(
  3327. 'Select2: The `data-ajax-url` attribute has been changed to ' +
  3328. '`data-ajax--url` and support for the old attribute will be removed' +
  3329. ' in future versions of Select2.'
  3330. );
  3331. }
  3332. $e.attr('ajax--url', $e.data('ajaxUrl'));
  3333. $e.data('ajax--url', $e.data('ajaxUrl'));
  3334. }
  3335. var dataset = {};
  3336. // Prefer the element's `dataset` attribute if it exists
  3337. // jQuery 1.x does not correctly handle data attributes with multiple dashes
  3338. if ($.fn.jquery && $.fn.jquery.substr(0, 2) == '1.' && $e[0].dataset) {
  3339. dataset = $.extend(true, {}, $e[0].dataset, $e.data());
  3340. } else {
  3341. dataset = $e.data();
  3342. }
  3343. var data = $.extend(true, {}, dataset);
  3344. data = Utils._convertData(data);
  3345. for (var key in data) {
  3346. if ($.inArray(key, excludedData) > -1) {
  3347. continue;
  3348. }
  3349. if ($.isPlainObject(this.options[key])) {
  3350. $.extend(this.options[key], data[key]);
  3351. } else {
  3352. this.options[key] = data[key];
  3353. }
  3354. }
  3355. return this;
  3356. };
  3357. Options.prototype.get = function (key) {
  3358. return this.options[key];
  3359. };
  3360. Options.prototype.set = function (key, val) {
  3361. this.options[key] = val;
  3362. };
  3363. return Options;
  3364. });
  3365. define('select2/core',[
  3366. 'jquery',
  3367. './options',
  3368. './utils',
  3369. './keys'
  3370. ], function ($, Options, Utils, KEYS) {
  3371. var Select2 = function ($element, options) {
  3372. if ($element.data('select2') != null) {
  3373. $element.data('select2').destroy();
  3374. }
  3375. this.$element = $element;
  3376. this.id = this._generateId($element);
  3377. options = options || {};
  3378. this.options = new Options(options, $element);
  3379. Select2.__super__.constructor.call(this);
  3380. // Set up the tabindex
  3381. var tabindex = $element.attr('tabindex') || 0;
  3382. $element.data('old-tabindex', tabindex);
  3383. $element.attr('tabindex', '-1');
  3384. // Set up containers and adapters
  3385. var DataAdapter = this.options.get('dataAdapter');
  3386. this.dataAdapter = new DataAdapter($element, this.options);
  3387. var $container = this.render();
  3388. this._placeContainer($container);
  3389. var SelectionAdapter = this.options.get('selectionAdapter');
  3390. this.selection = new SelectionAdapter($element, this.options);
  3391. this.$selection = this.selection.render();
  3392. this.selection.position(this.$selection, $container);
  3393. var DropdownAdapter = this.options.get('dropdownAdapter');
  3394. this.dropdown = new DropdownAdapter($element, this.options);
  3395. this.$dropdown = this.dropdown.render();
  3396. this.dropdown.position(this.$dropdown, $container);
  3397. var ResultsAdapter = this.options.get('resultsAdapter');
  3398. this.results = new ResultsAdapter($element, this.options, this.dataAdapter);
  3399. this.$results = this.results.render();
  3400. this.results.position(this.$results, this.$dropdown);
  3401. // Bind events
  3402. var self = this;
  3403. // Bind the container to all of the adapters
  3404. this._bindAdapters();
  3405. // Register any DOM event handlers
  3406. this._registerDomEvents();
  3407. // Register any internal event handlers
  3408. this._registerDataEvents();
  3409. this._registerSelectionEvents();
  3410. this._registerDropdownEvents();
  3411. this._registerResultsEvents();
  3412. this._registerEvents();
  3413. // Set the initial state
  3414. this.dataAdapter.current(function (initialData) {
  3415. self.trigger('selection:update', {
  3416. data: initialData
  3417. });
  3418. });
  3419. // Hide the original select
  3420. $element.hide();
  3421. // Synchronize any monitored attributes
  3422. this._syncAttributes();
  3423. $element.data('select2', this);
  3424. };
  3425. Utils.Extend(Select2, Utils.Observable);
  3426. Select2.prototype._generateId = function ($element) {
  3427. var id = '';
  3428. if ($element.attr('id') != null) {
  3429. id = $element.attr('id');
  3430. } else if ($element.attr('name') != null) {
  3431. id = $element.attr('name') + '-' + Utils.generateChars(2);
  3432. } else {
  3433. id = Utils.generateChars(4);
  3434. }
  3435. id = 'select2-' + id;
  3436. return id;
  3437. };
  3438. Select2.prototype._placeContainer = function ($container) {
  3439. $container.insertAfter(this.$element);
  3440. var width = this._resolveWidth(this.$element, this.options.get('width'));
  3441. if (width != null) {
  3442. $container.css('width', width);
  3443. }
  3444. };
  3445. Select2.prototype._resolveWidth = function ($element, method) {
  3446. var WIDTH = /^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;
  3447. if (method == 'resolve') {
  3448. var styleWidth = this._resolveWidth($element, 'style');
  3449. if (styleWidth != null) {
  3450. return styleWidth;
  3451. }
  3452. return this._resolveWidth($element, 'element');
  3453. }
  3454. if (method == 'element') {
  3455. var elementWidth = $element.outerWidth(false);
  3456. if (elementWidth <= 0) {
  3457. return 'auto';
  3458. }
  3459. return elementWidth + 'px';
  3460. }
  3461. if (method == 'style') {
  3462. var style = $element.attr('style');
  3463. if (typeof(style) !== 'string') {
  3464. return null;
  3465. }
  3466. var attrs = style.split(';');
  3467. for (var i = 0, l = attrs.length; i < l; i = i + 1) {
  3468. var attr = attrs[i].replace(/\s/g, '');
  3469. var matches = attr.match(WIDTH);
  3470. if (matches !== null && matches.length >= 1) {
  3471. return matches[1];
  3472. }
  3473. }
  3474. return null;
  3475. }
  3476. return method;
  3477. };
  3478. Select2.prototype._bindAdapters = function () {
  3479. this.dataAdapter.bind(this, this.$container);
  3480. this.selection.bind(this, this.$container);
  3481. this.dropdown.bind(this, this.$container);
  3482. this.results.bind(this, this.$container);
  3483. };
  3484. Select2.prototype._registerDomEvents = function () {
  3485. var self = this;
  3486. this.$element.on('change.select2', function () {
  3487. self.dataAdapter.current(function (data) {
  3488. self.trigger('selection:update', {
  3489. data: data
  3490. });
  3491. });
  3492. });
  3493. this._sync = Utils.bind(this._syncAttributes, this);
  3494. if (this.$element[0].attachEvent) {
  3495. this.$element[0].attachEvent('onpropertychange', this._sync);
  3496. }
  3497. var observer = window.MutationObserver ||
  3498. window.WebKitMutationObserver ||
  3499. window.MozMutationObserver
  3500. ;
  3501. if (observer != null) {
  3502. this._observer = new observer(function (mutations) {
  3503. $.each(mutations, self._sync);
  3504. });
  3505. this._observer.observe(this.$element[0], {
  3506. attributes: true,
  3507. subtree: false
  3508. });
  3509. } else if (this.$element[0].addEventListener) {
  3510. this.$element[0].addEventListener('DOMAttrModified', self._sync, false);
  3511. }
  3512. };
  3513. Select2.prototype._registerDataEvents = function () {
  3514. var self = this;
  3515. this.dataAdapter.on('*', function (name, params) {
  3516. self.trigger(name, params);
  3517. });
  3518. };
  3519. Select2.prototype._registerSelectionEvents = function () {
  3520. var self = this;
  3521. var nonRelayEvents = ['toggle'];
  3522. this.selection.on('toggle', function () {
  3523. self.toggleDropdown();
  3524. });
  3525. this.selection.on('*', function (name, params) {
  3526. if ($.inArray(name, nonRelayEvents) !== -1) {
  3527. return;
  3528. }
  3529. self.trigger(name, params);
  3530. });
  3531. };
  3532. Select2.prototype._registerDropdownEvents = function () {
  3533. var self = this;
  3534. this.dropdown.on('*', function (name, params) {
  3535. self.trigger(name, params);
  3536. });
  3537. };
  3538. Select2.prototype._registerResultsEvents = function () {
  3539. var self = this;
  3540. this.results.on('*', function (name, params) {
  3541. self.trigger(name, params);
  3542. });
  3543. };
  3544. Select2.prototype._registerEvents = function () {
  3545. var self = this;
  3546. this.on('open', function () {
  3547. self.$container.addClass('select2-container--open');
  3548. });
  3549. this.on('close', function () {
  3550. self.$container.removeClass('select2-container--open');
  3551. });
  3552. this.on('enable', function () {
  3553. self.$container.removeClass('select2-container--disabled');
  3554. });
  3555. this.on('disable', function () {
  3556. self.$container.addClass('select2-container--disabled');
  3557. });
  3558. this.on('focus', function () {
  3559. self.$container.addClass('select2-container--focus');
  3560. });
  3561. this.on('blur', function () {
  3562. self.$container.removeClass('select2-container--focus');
  3563. });
  3564. this.on('query', function (params) {
  3565. if (!self.isOpen()) {
  3566. self.trigger('open');
  3567. }
  3568. this.dataAdapter.query(params, function (data) {
  3569. self.trigger('results:all', {
  3570. data: data,
  3571. query: params
  3572. });
  3573. });
  3574. });
  3575. this.on('query:append', function (params) {
  3576. this.dataAdapter.query(params, function (data) {
  3577. self.trigger('results:append', {
  3578. data: data,
  3579. query: params
  3580. });
  3581. });
  3582. });
  3583. this.on('keypress', function (evt) {
  3584. var key = evt.which;
  3585. if (self.isOpen()) {
  3586. if (key === KEYS.ENTER) {
  3587. self.trigger('results:select');
  3588. evt.preventDefault();
  3589. } else if ((key === KEYS.SPACE && evt.ctrlKey)) {
  3590. self.trigger('results:toggle');
  3591. evt.preventDefault();
  3592. } else if (key === KEYS.UP) {
  3593. self.trigger('results:previous');
  3594. evt.preventDefault();
  3595. } else if (key === KEYS.DOWN) {
  3596. self.trigger('results:next');
  3597. evt.preventDefault();
  3598. } else if (key === KEYS.ESC || key === KEYS.TAB) {
  3599. self.close();
  3600. evt.preventDefault();
  3601. }
  3602. } else {
  3603. if (key === KEYS.ENTER || key === KEYS.SPACE ||
  3604. ((key === KEYS.DOWN || key === KEYS.UP) && evt.altKey)) {
  3605. self.open();
  3606. evt.preventDefault();
  3607. }
  3608. }
  3609. });
  3610. };
  3611. Select2.prototype._syncAttributes = function () {
  3612. this.options.set('disabled', this.$element.prop('disabled'));
  3613. if (this.options.get('disabled')) {
  3614. if (this.isOpen()) {
  3615. this.close();
  3616. }
  3617. this.trigger('disable');
  3618. } else {
  3619. this.trigger('enable');
  3620. }
  3621. };
  3622. /**
  3623. * Override the trigger method to automatically trigger pre-events when
  3624. * there are events that can be prevented.
  3625. */
  3626. Select2.prototype.trigger = function (name, args) {
  3627. var actualTrigger = Select2.__super__.trigger;
  3628. var preTriggerMap = {
  3629. 'open': 'opening',
  3630. 'close': 'closing',
  3631. 'select': 'selecting',
  3632. 'unselect': 'unselecting'
  3633. };
  3634. if (name in preTriggerMap) {
  3635. var preTriggerName = preTriggerMap[name];
  3636. var preTriggerArgs = {
  3637. prevented: false,
  3638. name: name,
  3639. args: args
  3640. };
  3641. actualTrigger.call(this, preTriggerName, preTriggerArgs);
  3642. if (preTriggerArgs.prevented) {
  3643. args.prevented = true;
  3644. return;
  3645. }
  3646. }
  3647. actualTrigger.call(this, name, args);
  3648. };
  3649. Select2.prototype.toggleDropdown = function () {
  3650. if (this.options.get('disabled')) {
  3651. return;
  3652. }
  3653. if (this.isOpen()) {
  3654. this.close();
  3655. } else {
  3656. this.open();
  3657. }
  3658. };
  3659. Select2.prototype.open = function () {
  3660. if (this.isOpen()) {
  3661. return;
  3662. }
  3663. this.trigger('query', {});
  3664. this.trigger('open');
  3665. };
  3666. Select2.prototype.close = function () {
  3667. if (!this.isOpen()) {
  3668. return;
  3669. }
  3670. this.trigger('close');
  3671. };
  3672. Select2.prototype.isOpen = function () {
  3673. return this.$container.hasClass('select2-container--open');
  3674. };
  3675. Select2.prototype.enable = function (args) {
  3676. if (window.console && console.warn) {
  3677. console.warn(
  3678. 'Select2: The `select2("enable")` method has been deprecated and will' +
  3679. ' be removed in later Select2 versions. Use $element.prop("disabled")' +
  3680. ' instead.'
  3681. );
  3682. }
  3683. if (args.length === 0) {
  3684. args = [true];
  3685. }
  3686. var disabled = !args[0];
  3687. this.$element.prop('disabled', disabled);
  3688. };
  3689. Select2.prototype.data = function () {
  3690. if (arguments.length > 0 && window.console && console.warn) {
  3691. console.warn(
  3692. 'Select2: Data can no longer be set using `select2("data")`. You ' +
  3693. 'should consider setting the value instead using `$element.val()`.'
  3694. );
  3695. }
  3696. var data = [];
  3697. this.dataAdpater.current(function (currentData) {
  3698. data = currentData;
  3699. });
  3700. return data;
  3701. };
  3702. Select2.prototype.val = function (args) {
  3703. if (window.console && console.warn) {
  3704. console.warn(
  3705. 'Select2: The `select2("val")` method has been deprecated and will be' +
  3706. ' removed in later Select2 versions. Use $element.val() instead.'
  3707. );
  3708. }
  3709. if (args.length === 0) {
  3710. return this.$element.val();
  3711. }
  3712. var newVal = args[0];
  3713. if ($.isArray(newVal)) {
  3714. newVal = $.map(newVal, function (obj) {
  3715. return obj.toString();
  3716. });
  3717. }
  3718. this.$element.val(newVal).trigger('change');
  3719. };
  3720. Select2.prototype.destroy = function () {
  3721. this.$container.remove();
  3722. if (this.$element[0].detachEvent) {
  3723. this.$element[0].detachEvent('onpropertychange', this._sync);
  3724. }
  3725. if (this._observer != null) {
  3726. this._observer.disconnect();
  3727. this._observer = null;
  3728. } else if (this.$element[0].removeEventListener) {
  3729. this.$element[0]
  3730. .removeEventListener('DOMAttrModified', this._sync, false);
  3731. }
  3732. this._sync = null;
  3733. this.$element.off('.select2');
  3734. this.$element.attr('tabindex', this.$element.data('old-tabindex'));
  3735. this.$element.show();
  3736. this.$element.removeData('select2');
  3737. this.dataAdapter.destroy();
  3738. this.selection.destroy();
  3739. this.dropdown.destroy();
  3740. this.results.destroy();
  3741. this.dataAdapter = null;
  3742. this.selection = null;
  3743. this.dropdown = null;
  3744. this.results = null;
  3745. };
  3746. Select2.prototype.render = function () {
  3747. var $container = $(
  3748. '<span class="select2 select2-container">' +
  3749. '<span class="selection"></span>' +
  3750. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  3751. '</span>'
  3752. );
  3753. $container.attr('dir', this.options.get('dir'));
  3754. this.$container = $container;
  3755. this.$container.addClass('select2-container--' + this.options.get('theme'));
  3756. $container.data('element', this.$element);
  3757. return $container;
  3758. };
  3759. return Select2;
  3760. });
  3761. define('jquery.select2',[
  3762. 'jquery',
  3763. './select2/core',
  3764. './select2/defaults'
  3765. ], function ($, Select2, Defaults) {
  3766. // Force jQuery.mousewheel to be loaded if it hasn't already
  3767. try {
  3768. require('jquery.mousewheel');
  3769. } catch (Exception) { }
  3770. if ($.fn.select2 == null) {
  3771. $.fn.select2 = function (options) {
  3772. options = options || {};
  3773. if (typeof options === 'object') {
  3774. this.each(function () {
  3775. var instanceOptions = $.extend({}, options, true);
  3776. var instance = new Select2($(this), instanceOptions);
  3777. });
  3778. return this;
  3779. } else if (typeof options === 'string') {
  3780. var instance = this.data('select2');
  3781. var args = Array.prototype.slice.call(arguments, 1);
  3782. return instance[options](args);
  3783. } else {
  3784. throw new Error('Invalid arguments for Select2: ' + options);
  3785. }
  3786. };
  3787. }
  3788. if ($.fn.select2.defaults == null) {
  3789. $.fn.select2.defaults = Defaults;
  3790. }
  3791. return Select2;
  3792. });
  3793. return require('jquery.select2'); });