select2.amd.full.js 122 KB

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