select2.js 153 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209
  1. /*!
  2. * Select2 4.1.0-rc.0
  3. * https://select2.github.io
  4. *
  5. * Released under the MIT license
  6. * https://github.com/select2/select2/blob/master/LICENSE.md
  7. */
  8. ;(function (factory) {
  9. if (typeof define === 'function' && define.amd) {
  10. // AMD. Register as an anonymous module.
  11. define(['jquery'], factory);
  12. } else if (typeof module === 'object' && module.exports) {
  13. // Node/CommonJS
  14. module.exports = function (root, jQuery) {
  15. if (jQuery === undefined) {
  16. // require('jQuery') returns a factory that requires window to
  17. // build a jQuery instance, we normalize how we use modules
  18. // that require this pattern but the window provided is a noop
  19. // if it's defined (how jquery works)
  20. if (typeof window !== 'undefined') {
  21. jQuery = require('jquery');
  22. }
  23. else {
  24. jQuery = require('jquery')(root);
  25. }
  26. }
  27. factory(jQuery);
  28. return jQuery;
  29. };
  30. } else {
  31. // Browser globals
  32. factory(jQuery);
  33. }
  34. } (function (jQuery) {
  35. // This is needed so we can catch the AMD loader configuration and use it
  36. // The inner file should be wrapped (by `banner.start.js`) in a function that
  37. // returns the AMD loader references.
  38. var S2 =(function () {
  39. // Restore the Select2 AMD loader so it can be used
  40. // Needed mostly in the language files, where the loader is not inserted
  41. if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) {
  42. var S2 = jQuery.fn.select2.amd;
  43. }
  44. var S2;(function () { if (!S2 || !S2.requirejs) {
  45. if (!S2) { S2 = {}; } else { require = S2; }
  46. /**
  47. * @license almond 0.3.3 Copyright jQuery Foundation and other contributors.
  48. * Released under MIT license, http://github.com/requirejs/almond/LICENSE
  49. */
  50. //Going sloppy to avoid 'use strict' string cost, but strict practices should
  51. //be followed.
  52. /*global setTimeout: false */
  53. var requirejs, require, define;
  54. (function (undef) {
  55. var main, req, makeMap, handlers,
  56. defined = {},
  57. waiting = {},
  58. config = {},
  59. defining = {},
  60. hasOwn = Object.prototype.hasOwnProperty,
  61. aps = [].slice,
  62. jsSuffixRegExp = /\.js$/;
  63. function hasProp(obj, prop) {
  64. return hasOwn.call(obj, prop);
  65. }
  66. /**
  67. * Given a relative module name, like ./something, normalize it to
  68. * a real name that can be mapped to a path.
  69. * @param {String} name the relative name
  70. * @param {String} baseName a real name that the name arg is relative
  71. * to.
  72. * @returns {String} normalized name
  73. */
  74. function normalize(name, baseName) {
  75. var nameParts, nameSegment, mapValue, foundMap, lastIndex,
  76. foundI, foundStarMap, starI, i, j, part, normalizedBaseParts,
  77. baseParts = baseName && baseName.split("/"),
  78. map = config.map,
  79. starMap = (map && map['*']) || {};
  80. //Adjust any relative paths.
  81. if (name) {
  82. name = name.split('/');
  83. lastIndex = name.length - 1;
  84. // If wanting node ID compatibility, strip .js from end
  85. // of IDs. Have to do this here, and not in nameToUrl
  86. // because node allows either .js or non .js to map
  87. // to same file.
  88. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) {
  89. name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, '');
  90. }
  91. // Starts with a '.' so need the baseName
  92. if (name[0].charAt(0) === '.' && baseParts) {
  93. //Convert baseName to array, and lop off the last part,
  94. //so that . matches that 'directory' and not name of the baseName's
  95. //module. For instance, baseName of 'one/two/three', maps to
  96. //'one/two/three.js', but we want the directory, 'one/two' for
  97. //this normalization.
  98. normalizedBaseParts = baseParts.slice(0, baseParts.length - 1);
  99. name = normalizedBaseParts.concat(name);
  100. }
  101. //start trimDots
  102. for (i = 0; i < name.length; i++) {
  103. part = name[i];
  104. if (part === '.') {
  105. name.splice(i, 1);
  106. i -= 1;
  107. } else if (part === '..') {
  108. // If at the start, or previous value is still ..,
  109. // keep them so that when converted to a path it may
  110. // still work when converted to a path, even though
  111. // as an ID it is less than ideal. In larger point
  112. // releases, may be better to just kick out an error.
  113. if (i === 0 || (i === 1 && name[2] === '..') || name[i - 1] === '..') {
  114. continue;
  115. } else if (i > 0) {
  116. name.splice(i - 1, 2);
  117. i -= 2;
  118. }
  119. }
  120. }
  121. //end trimDots
  122. name = name.join('/');
  123. }
  124. //Apply map config if available.
  125. if ((baseParts || starMap) && map) {
  126. nameParts = name.split('/');
  127. for (i = nameParts.length; i > 0; i -= 1) {
  128. nameSegment = nameParts.slice(0, i).join("/");
  129. if (baseParts) {
  130. //Find the longest baseName segment match in the config.
  131. //So, do joins on the biggest to smallest lengths of baseParts.
  132. for (j = baseParts.length; j > 0; j -= 1) {
  133. mapValue = map[baseParts.slice(0, j).join('/')];
  134. //baseName segment has config, find if it has one for
  135. //this name.
  136. if (mapValue) {
  137. mapValue = mapValue[nameSegment];
  138. if (mapValue) {
  139. //Match, update name to the new value.
  140. foundMap = mapValue;
  141. foundI = i;
  142. break;
  143. }
  144. }
  145. }
  146. }
  147. if (foundMap) {
  148. break;
  149. }
  150. //Check for a star map match, but just hold on to it,
  151. //if there is a shorter segment match later in a matching
  152. //config, then favor over this star map.
  153. if (!foundStarMap && starMap && starMap[nameSegment]) {
  154. foundStarMap = starMap[nameSegment];
  155. starI = i;
  156. }
  157. }
  158. if (!foundMap && foundStarMap) {
  159. foundMap = foundStarMap;
  160. foundI = starI;
  161. }
  162. if (foundMap) {
  163. nameParts.splice(0, foundI, foundMap);
  164. name = nameParts.join('/');
  165. }
  166. }
  167. return name;
  168. }
  169. function makeRequire(relName, forceSync) {
  170. return function () {
  171. //A version of a require function that passes a moduleName
  172. //value for items that may need to
  173. //look up paths relative to the moduleName
  174. var args = aps.call(arguments, 0);
  175. //If first arg is not require('string'), and there is only
  176. //one arg, it is the array form without a callback. Insert
  177. //a null so that the following concat is correct.
  178. if (typeof args[0] !== 'string' && args.length === 1) {
  179. args.push(null);
  180. }
  181. return req.apply(undef, args.concat([relName, forceSync]));
  182. };
  183. }
  184. function makeNormalize(relName) {
  185. return function (name) {
  186. return normalize(name, relName);
  187. };
  188. }
  189. function makeLoad(depName) {
  190. return function (value) {
  191. defined[depName] = value;
  192. };
  193. }
  194. function callDep(name) {
  195. if (hasProp(waiting, name)) {
  196. var args = waiting[name];
  197. delete waiting[name];
  198. defining[name] = true;
  199. main.apply(undef, args);
  200. }
  201. if (!hasProp(defined, name) && !hasProp(defining, name)) {
  202. throw new Error('No ' + name);
  203. }
  204. return defined[name];
  205. }
  206. //Turns a plugin!resource to [plugin, resource]
  207. //with the plugin being undefined if the name
  208. //did not have a plugin prefix.
  209. function splitPrefix(name) {
  210. var prefix,
  211. index = name ? name.indexOf('!') : -1;
  212. if (index > -1) {
  213. prefix = name.substring(0, index);
  214. name = name.substring(index + 1, name.length);
  215. }
  216. return [prefix, name];
  217. }
  218. //Creates a parts array for a relName where first part is plugin ID,
  219. //second part is resource ID. Assumes relName has already been normalized.
  220. function makeRelParts(relName) {
  221. return relName ? splitPrefix(relName) : [];
  222. }
  223. /**
  224. * Makes a name map, normalizing the name, and using a plugin
  225. * for normalization if necessary. Grabs a ref to plugin
  226. * too, as an optimization.
  227. */
  228. makeMap = function (name, relParts) {
  229. var plugin,
  230. parts = splitPrefix(name),
  231. prefix = parts[0],
  232. relResourceName = relParts[1];
  233. name = parts[1];
  234. if (prefix) {
  235. prefix = normalize(prefix, relResourceName);
  236. plugin = callDep(prefix);
  237. }
  238. //Normalize according
  239. if (prefix) {
  240. if (plugin && plugin.normalize) {
  241. name = plugin.normalize(name, makeNormalize(relResourceName));
  242. } else {
  243. name = normalize(name, relResourceName);
  244. }
  245. } else {
  246. name = normalize(name, relResourceName);
  247. parts = splitPrefix(name);
  248. prefix = parts[0];
  249. name = parts[1];
  250. if (prefix) {
  251. plugin = callDep(prefix);
  252. }
  253. }
  254. //Using ridiculous property names for space reasons
  255. return {
  256. f: prefix ? prefix + '!' + name : name, //fullName
  257. n: name,
  258. pr: prefix,
  259. p: plugin
  260. };
  261. };
  262. function makeConfig(name) {
  263. return function () {
  264. return (config && config.config && config.config[name]) || {};
  265. };
  266. }
  267. handlers = {
  268. require: function (name) {
  269. return makeRequire(name);
  270. },
  271. exports: function (name) {
  272. var e = defined[name];
  273. if (typeof e !== 'undefined') {
  274. return e;
  275. } else {
  276. return (defined[name] = {});
  277. }
  278. },
  279. module: function (name) {
  280. return {
  281. id: name,
  282. uri: '',
  283. exports: defined[name],
  284. config: makeConfig(name)
  285. };
  286. }
  287. };
  288. main = function (name, deps, callback, relName) {
  289. var cjsModule, depName, ret, map, i, relParts,
  290. args = [],
  291. callbackType = typeof callback,
  292. usingExports;
  293. //Use name if no relName
  294. relName = relName || name;
  295. relParts = makeRelParts(relName);
  296. //Call the callback to define the module, if necessary.
  297. if (callbackType === 'undefined' || callbackType === 'function') {
  298. //Pull out the defined dependencies and pass the ordered
  299. //values to the callback.
  300. //Default to [require, exports, module] if no deps
  301. deps = !deps.length && callback.length ? ['require', 'exports', 'module'] : deps;
  302. for (i = 0; i < deps.length; i += 1) {
  303. map = makeMap(deps[i], relParts);
  304. depName = map.f;
  305. //Fast path CommonJS standard dependencies.
  306. if (depName === "require") {
  307. args[i] = handlers.require(name);
  308. } else if (depName === "exports") {
  309. //CommonJS module spec 1.1
  310. args[i] = handlers.exports(name);
  311. usingExports = true;
  312. } else if (depName === "module") {
  313. //CommonJS module spec 1.1
  314. cjsModule = args[i] = handlers.module(name);
  315. } else if (hasProp(defined, depName) ||
  316. hasProp(waiting, depName) ||
  317. hasProp(defining, depName)) {
  318. args[i] = callDep(depName);
  319. } else if (map.p) {
  320. map.p.load(map.n, makeRequire(relName, true), makeLoad(depName), {});
  321. args[i] = defined[depName];
  322. } else {
  323. throw new Error(name + ' missing ' + depName);
  324. }
  325. }
  326. ret = callback ? callback.apply(defined[name], args) : undefined;
  327. if (name) {
  328. //If setting exports via "module" is in play,
  329. //favor that over return value and exports. After that,
  330. //favor a non-undefined return value over exports use.
  331. if (cjsModule && cjsModule.exports !== undef &&
  332. cjsModule.exports !== defined[name]) {
  333. defined[name] = cjsModule.exports;
  334. } else if (ret !== undef || !usingExports) {
  335. //Use the return value from the function.
  336. defined[name] = ret;
  337. }
  338. }
  339. } else if (name) {
  340. //May just be an object definition for the module. Only
  341. //worry about defining if have a module name.
  342. defined[name] = callback;
  343. }
  344. };
  345. requirejs = require = req = function (deps, callback, relName, forceSync, alt) {
  346. if (typeof deps === "string") {
  347. if (handlers[deps]) {
  348. //callback in this case is really relName
  349. return handlers[deps](callback);
  350. }
  351. //Just return the module wanted. In this scenario, the
  352. //deps arg is the module name, and second arg (if passed)
  353. //is just the relName.
  354. //Normalize module name, if it contains . or ..
  355. return callDep(makeMap(deps, makeRelParts(callback)).f);
  356. } else if (!deps.splice) {
  357. //deps is a config object, not an array.
  358. config = deps;
  359. if (config.deps) {
  360. req(config.deps, config.callback);
  361. }
  362. if (!callback) {
  363. return;
  364. }
  365. if (callback.splice) {
  366. //callback is an array, which means it is a dependency list.
  367. //Adjust args if there are dependencies
  368. deps = callback;
  369. callback = relName;
  370. relName = null;
  371. } else {
  372. deps = undef;
  373. }
  374. }
  375. //Support require(['a'])
  376. callback = callback || function () {};
  377. //If relName is a function, it is an errback handler,
  378. //so remove it.
  379. if (typeof relName === 'function') {
  380. relName = forceSync;
  381. forceSync = alt;
  382. }
  383. //Simulate async callback;
  384. if (forceSync) {
  385. main(undef, deps, callback, relName);
  386. } else {
  387. //Using a non-zero value because of concern for what old browsers
  388. //do, and latest browsers "upgrade" to 4 if lower value is used:
  389. //http://www.whatwg.org/specs/web-apps/current-work/multipage/timers.html#dom-windowtimers-settimeout:
  390. //If want a value immediately, use require('id') instead -- something
  391. //that works in almond on the global level, but not guaranteed and
  392. //unlikely to work in other AMD implementations.
  393. setTimeout(function () {
  394. main(undef, deps, callback, relName);
  395. }, 4);
  396. }
  397. return req;
  398. };
  399. /**
  400. * Just drops the config on the floor, but returns req in case
  401. * the config return value is used.
  402. */
  403. req.config = function (cfg) {
  404. return req(cfg);
  405. };
  406. /**
  407. * Expose module registry for debugging and tooling
  408. */
  409. requirejs._defined = defined;
  410. define = function (name, deps, callback) {
  411. if (typeof name !== 'string') {
  412. throw new Error('See almond README: incorrect module build, no module name');
  413. }
  414. //This module may not have dependencies
  415. if (!deps.splice) {
  416. //deps is not an array, so probably means
  417. //an object literal or factory function for
  418. //the value. Adjust args.
  419. callback = deps;
  420. deps = [];
  421. }
  422. if (!hasProp(defined, name) && !hasProp(waiting, name)) {
  423. waiting[name] = [name, deps, callback];
  424. }
  425. };
  426. define.amd = {
  427. jQuery: true
  428. };
  429. }());
  430. S2.requirejs = requirejs;S2.require = require;S2.define = define;
  431. }
  432. }());
  433. S2.define("almond", function(){});
  434. /* global jQuery:false, $:false */
  435. S2.define('jquery',[],function () {
  436. var _$ = jQuery || $;
  437. if (_$ == null && console && console.error) {
  438. console.error(
  439. 'Select2: An instance of jQuery or a jQuery-compatible library was not ' +
  440. 'found. Make sure that you are including jQuery before Select2 on your ' +
  441. 'web page.'
  442. );
  443. }
  444. return _$;
  445. });
  446. S2.define('select2/utils',[
  447. 'jquery'
  448. ], function ($) {
  449. var Utils = {};
  450. Utils.Extend = function (ChildClass, SuperClass) {
  451. var __hasProp = {}.hasOwnProperty;
  452. function BaseConstructor () {
  453. this.constructor = ChildClass;
  454. }
  455. for (var key in SuperClass) {
  456. if (__hasProp.call(SuperClass, key)) {
  457. ChildClass[key] = SuperClass[key];
  458. }
  459. }
  460. BaseConstructor.prototype = SuperClass.prototype;
  461. ChildClass.prototype = new BaseConstructor();
  462. ChildClass.__super__ = SuperClass.prototype;
  463. return ChildClass;
  464. };
  465. function getMethods (theClass) {
  466. var proto = theClass.prototype;
  467. var methods = [];
  468. for (var methodName in proto) {
  469. var m = proto[methodName];
  470. if (typeof m !== 'function') {
  471. continue;
  472. }
  473. if (methodName === 'constructor') {
  474. continue;
  475. }
  476. methods.push(methodName);
  477. }
  478. return methods;
  479. }
  480. Utils.Decorate = function (SuperClass, DecoratorClass) {
  481. var decoratedMethods = getMethods(DecoratorClass);
  482. var superMethods = getMethods(SuperClass);
  483. function DecoratedClass () {
  484. var unshift = Array.prototype.unshift;
  485. var argCount = DecoratorClass.prototype.constructor.length;
  486. var calledConstructor = SuperClass.prototype.constructor;
  487. if (argCount > 0) {
  488. unshift.call(arguments, SuperClass.prototype.constructor);
  489. calledConstructor = DecoratorClass.prototype.constructor;
  490. }
  491. calledConstructor.apply(this, arguments);
  492. }
  493. DecoratorClass.displayName = SuperClass.displayName;
  494. function ctr () {
  495. this.constructor = DecoratedClass;
  496. }
  497. DecoratedClass.prototype = new ctr();
  498. for (var m = 0; m < superMethods.length; m++) {
  499. var superMethod = superMethods[m];
  500. DecoratedClass.prototype[superMethod] =
  501. SuperClass.prototype[superMethod];
  502. }
  503. var calledMethod = function (methodName) {
  504. // Stub out the original method if it's not decorating an actual method
  505. var originalMethod = function () {};
  506. if (methodName in DecoratedClass.prototype) {
  507. originalMethod = DecoratedClass.prototype[methodName];
  508. }
  509. var decoratedMethod = DecoratorClass.prototype[methodName];
  510. return function () {
  511. var unshift = Array.prototype.unshift;
  512. unshift.call(arguments, originalMethod);
  513. return decoratedMethod.apply(this, arguments);
  514. };
  515. };
  516. for (var d = 0; d < decoratedMethods.length; d++) {
  517. var decoratedMethod = decoratedMethods[d];
  518. DecoratedClass.prototype[decoratedMethod] = calledMethod(decoratedMethod);
  519. }
  520. return DecoratedClass;
  521. };
  522. var Observable = function () {
  523. this.listeners = {};
  524. };
  525. Observable.prototype.on = function (event, callback) {
  526. this.listeners = this.listeners || {};
  527. if (event in this.listeners) {
  528. this.listeners[event].push(callback);
  529. } else {
  530. this.listeners[event] = [callback];
  531. }
  532. };
  533. Observable.prototype.trigger = function (event) {
  534. var slice = Array.prototype.slice;
  535. var params = slice.call(arguments, 1);
  536. this.listeners = this.listeners || {};
  537. // Params should always come in as an array
  538. if (params == null) {
  539. params = [];
  540. }
  541. // If there are no arguments to the event, use a temporary object
  542. if (params.length === 0) {
  543. params.push({});
  544. }
  545. // Set the `_type` of the first object to the event
  546. params[0]._type = event;
  547. if (event in this.listeners) {
  548. this.invoke(this.listeners[event], slice.call(arguments, 1));
  549. }
  550. if ('*' in this.listeners) {
  551. this.invoke(this.listeners['*'], arguments);
  552. }
  553. };
  554. Observable.prototype.invoke = function (listeners, params) {
  555. for (var i = 0, len = listeners.length; i < len; i++) {
  556. listeners[i].apply(this, params);
  557. }
  558. };
  559. Utils.Observable = Observable;
  560. Utils.generateChars = function (length) {
  561. var chars = '';
  562. for (var i = 0; i < length; i++) {
  563. var randomChar = Math.floor(Math.random() * 36);
  564. chars += randomChar.toString(36);
  565. }
  566. return chars;
  567. };
  568. Utils.bind = function (func, context) {
  569. return function () {
  570. func.apply(context, arguments);
  571. };
  572. };
  573. Utils._convertData = function (data) {
  574. for (var originalKey in data) {
  575. var keys = originalKey.split('-');
  576. var dataLevel = data;
  577. if (keys.length === 1) {
  578. continue;
  579. }
  580. for (var k = 0; k < keys.length; k++) {
  581. var key = keys[k];
  582. // Lowercase the first letter
  583. // By default, dash-separated becomes camelCase
  584. key = key.substring(0, 1).toLowerCase() + key.substring(1);
  585. if (!(key in dataLevel)) {
  586. dataLevel[key] = {};
  587. }
  588. if (k == keys.length - 1) {
  589. dataLevel[key] = data[originalKey];
  590. }
  591. dataLevel = dataLevel[key];
  592. }
  593. delete data[originalKey];
  594. }
  595. return data;
  596. };
  597. Utils.hasScroll = function (index, el) {
  598. // Adapted from the function created by @ShadowScripter
  599. // and adapted by @BillBarry on the Stack Exchange Code Review website.
  600. // The original code can be found at
  601. // http://codereview.stackexchange.com/q/13338
  602. // and was designed to be used with the Sizzle selector engine.
  603. var $el = $(el);
  604. var overflowX = el.style.overflowX;
  605. var overflowY = el.style.overflowY;
  606. //Check both x and y declarations
  607. if (overflowX === overflowY &&
  608. (overflowY === 'hidden' || overflowY === 'visible')) {
  609. return false;
  610. }
  611. if (overflowX === 'scroll' || overflowY === 'scroll') {
  612. return true;
  613. }
  614. return ($el.innerHeight() < el.scrollHeight ||
  615. $el.innerWidth() < el.scrollWidth);
  616. };
  617. Utils.escapeMarkup = function (markup) {
  618. var replaceMap = {
  619. '\\': '&#92;',
  620. '&': '&amp;',
  621. '<': '&lt;',
  622. '>': '&gt;',
  623. '"': '&quot;',
  624. '\'': '&#39;',
  625. '/': '&#47;'
  626. };
  627. // Do not try to escape the markup if it's not a string
  628. if (typeof markup !== 'string') {
  629. return markup;
  630. }
  631. return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
  632. return replaceMap[match];
  633. });
  634. };
  635. // Cache objects in Utils.__cache instead of $.data (see #4346)
  636. Utils.__cache = {};
  637. var id = 0;
  638. Utils.GetUniqueElementId = function (element) {
  639. // Get a unique element Id. If element has no id,
  640. // creates a new unique number, stores it in the id
  641. // attribute and returns the new id with a prefix.
  642. // If an id already exists, it simply returns it with a prefix.
  643. var select2Id = element.getAttribute('data-select2-id');
  644. if (select2Id != null) {
  645. return select2Id;
  646. }
  647. // If element has id, use it.
  648. if (element.id) {
  649. select2Id = 'select2-data-' + element.id;
  650. } else {
  651. select2Id = 'select2-data-' + (++id).toString() +
  652. '-' + Utils.generateChars(4);
  653. }
  654. element.setAttribute('data-select2-id', select2Id);
  655. return select2Id;
  656. };
  657. Utils.StoreData = function (element, name, value) {
  658. // Stores an item in the cache for a specified element.
  659. // name is the cache key.
  660. var id = Utils.GetUniqueElementId(element);
  661. if (!Utils.__cache[id]) {
  662. Utils.__cache[id] = {};
  663. }
  664. Utils.__cache[id][name] = value;
  665. };
  666. Utils.GetData = function (element, name) {
  667. // Retrieves a value from the cache by its key (name)
  668. // name is optional. If no name specified, return
  669. // all cache items for the specified element.
  670. // and for a specified element.
  671. var id = Utils.GetUniqueElementId(element);
  672. if (name) {
  673. if (Utils.__cache[id]) {
  674. if (Utils.__cache[id][name] != null) {
  675. return Utils.__cache[id][name];
  676. }
  677. return $(element).data(name); // Fallback to HTML5 data attribs.
  678. }
  679. return $(element).data(name); // Fallback to HTML5 data attribs.
  680. } else {
  681. return Utils.__cache[id];
  682. }
  683. };
  684. Utils.RemoveData = function (element) {
  685. // Removes all cached items for a specified element.
  686. var id = Utils.GetUniqueElementId(element);
  687. if (Utils.__cache[id] != null) {
  688. delete Utils.__cache[id];
  689. }
  690. element.removeAttribute('data-select2-id');
  691. };
  692. Utils.copyNonInternalCssClasses = function (dest, src) {
  693. var classes;
  694. var destinationClasses = dest.getAttribute('class').trim().split(/\s+/);
  695. destinationClasses = destinationClasses.filter(function (clazz) {
  696. // Save all Select2 classes
  697. return clazz.indexOf('select2-') === 0;
  698. });
  699. var sourceClasses = src.getAttribute('class').trim().split(/\s+/);
  700. sourceClasses = sourceClasses.filter(function (clazz) {
  701. // Only copy non-Select2 classes
  702. return clazz.indexOf('select2-') !== 0;
  703. });
  704. var replacements = destinationClasses.concat(sourceClasses);
  705. dest.setAttribute('class', replacements.join(' '));
  706. };
  707. return Utils;
  708. });
  709. S2.define('select2/results',[
  710. 'jquery',
  711. './utils'
  712. ], function ($, Utils) {
  713. function Results ($element, options, dataAdapter) {
  714. this.$element = $element;
  715. this.data = dataAdapter;
  716. this.options = options;
  717. Results.__super__.constructor.call(this);
  718. }
  719. Utils.Extend(Results, Utils.Observable);
  720. Results.prototype.render = function () {
  721. var $results = $(
  722. '<ul class="select2-results__options" role="listbox"></ul>'
  723. );
  724. if (this.options.get('multiple')) {
  725. $results.attr('aria-multiselectable', 'true');
  726. }
  727. this.$results = $results;
  728. return $results;
  729. };
  730. Results.prototype.clear = function () {
  731. this.$results.empty();
  732. };
  733. Results.prototype.displayMessage = function (params) {
  734. var escapeMarkup = this.options.get('escapeMarkup');
  735. this.clear();
  736. this.hideLoading();
  737. var $message = $(
  738. '<li role="alert" aria-live="assertive"' +
  739. ' class="select2-results__option"></li>'
  740. );
  741. var message = this.options.get('translations').get(params.message);
  742. $message.append(
  743. escapeMarkup(
  744. message(params.args)
  745. )
  746. );
  747. $message[0].className += ' select2-results__message';
  748. this.$results.append($message);
  749. };
  750. Results.prototype.hideMessages = function () {
  751. this.$results.find('.select2-results__message').remove();
  752. };
  753. Results.prototype.append = function (data) {
  754. this.hideLoading();
  755. var $options = [];
  756. if (data.results == null || data.results.length === 0) {
  757. if (this.$results.children().length === 0) {
  758. this.trigger('results:message', {
  759. message: 'noResults'
  760. });
  761. }
  762. return;
  763. }
  764. data.results = this.sort(data.results);
  765. for (var d = 0; d < data.results.length; d++) {
  766. var item = data.results[d];
  767. var $option = this.option(item);
  768. $options.push($option);
  769. }
  770. this.$results.append($options);
  771. };
  772. Results.prototype.position = function ($results, $dropdown) {
  773. var $resultsContainer = $dropdown.find('.select2-results');
  774. $resultsContainer.append($results);
  775. };
  776. Results.prototype.sort = function (data) {
  777. var sorter = this.options.get('sorter');
  778. return sorter(data);
  779. };
  780. Results.prototype.highlightFirstItem = function () {
  781. var $options = this.$results
  782. .find('.select2-results__option--selectable');
  783. var $selected = $options.filter('.select2-results__option--selected');
  784. // Check if there are any selected options
  785. if ($selected.length > 0) {
  786. // If there are selected options, highlight the first
  787. $selected.first().trigger('mouseenter');
  788. } else {
  789. // If there are no selected options, highlight the first option
  790. // in the dropdown
  791. $options.first().trigger('mouseenter');
  792. }
  793. this.ensureHighlightVisible();
  794. };
  795. Results.prototype.setClasses = function () {
  796. var self = this;
  797. this.data.current(function (selected) {
  798. var selectedIds = selected.map(function (s) {
  799. return s.id.toString();
  800. });
  801. var $options = self.$results
  802. .find('.select2-results__option--selectable');
  803. $options.each(function () {
  804. var $option = $(this);
  805. var item = Utils.GetData(this, 'data');
  806. // id needs to be converted to a string when comparing
  807. var id = '' + item.id;
  808. if ((item.element != null && item.element.selected) ||
  809. (item.element == null && selectedIds.indexOf(id) > -1)) {
  810. this.classList.add('select2-results__option--selected');
  811. $option.attr('aria-selected', 'true');
  812. } else {
  813. this.classList.remove('select2-results__option--selected');
  814. $option.attr('aria-selected', 'false');
  815. }
  816. });
  817. });
  818. };
  819. Results.prototype.showLoading = function (params) {
  820. this.hideLoading();
  821. var loadingMore = this.options.get('translations').get('searching');
  822. var loading = {
  823. disabled: true,
  824. loading: true,
  825. text: loadingMore(params)
  826. };
  827. var $loading = this.option(loading);
  828. $loading.className += ' loading-results';
  829. this.$results.prepend($loading);
  830. };
  831. Results.prototype.hideLoading = function () {
  832. this.$results.find('.loading-results').remove();
  833. };
  834. Results.prototype.option = function (data) {
  835. var option = document.createElement('li');
  836. option.classList.add('select2-results__option');
  837. option.classList.add('select2-results__option--selectable');
  838. var attrs = {
  839. 'role': 'option'
  840. };
  841. var matches = window.Element.prototype.matches ||
  842. window.Element.prototype.msMatchesSelector ||
  843. window.Element.prototype.webkitMatchesSelector;
  844. if ((data.element != null && matches.call(data.element, ':disabled')) ||
  845. (data.element == null && data.disabled)) {
  846. attrs['aria-disabled'] = 'true';
  847. option.classList.remove('select2-results__option--selectable');
  848. option.classList.add('select2-results__option--disabled');
  849. }
  850. if (data.id == null) {
  851. option.classList.remove('select2-results__option--selectable');
  852. }
  853. if (data._resultId != null) {
  854. option.id = data._resultId;
  855. }
  856. if (data.title) {
  857. option.title = data.title;
  858. }
  859. if (data.children) {
  860. attrs.role = 'group';
  861. attrs['aria-label'] = data.text;
  862. option.classList.remove('select2-results__option--selectable');
  863. option.classList.add('select2-results__option--group');
  864. }
  865. for (var attr in attrs) {
  866. var val = attrs[attr];
  867. option.setAttribute(attr, val);
  868. }
  869. if (data.children) {
  870. var $option = $(option);
  871. var label = document.createElement('strong');
  872. label.className = 'select2-results__group';
  873. this.template(data, label);
  874. var $children = [];
  875. for (var c = 0; c < data.children.length; c++) {
  876. var child = data.children[c];
  877. var $child = this.option(child);
  878. $children.push($child);
  879. }
  880. var $childrenContainer = $('<ul></ul>', {
  881. 'class': 'select2-results__options select2-results__options--nested',
  882. 'role': 'none'
  883. });
  884. $childrenContainer.append($children);
  885. $option.append(label);
  886. $option.append($childrenContainer);
  887. } else {
  888. this.template(data, option);
  889. }
  890. Utils.StoreData(option, 'data', data);
  891. return option;
  892. };
  893. Results.prototype.bind = function (container, $container) {
  894. var self = this;
  895. var id = container.id + '-results';
  896. this.$results.attr('id', id);
  897. container.on('results:all', function (params) {
  898. self.clear();
  899. self.append(params.data);
  900. if (container.isOpen()) {
  901. self.setClasses();
  902. self.highlightFirstItem();
  903. }
  904. });
  905. container.on('results:append', function (params) {
  906. self.append(params.data);
  907. if (container.isOpen()) {
  908. self.setClasses();
  909. }
  910. });
  911. container.on('query', function (params) {
  912. self.hideMessages();
  913. self.showLoading(params);
  914. });
  915. container.on('select', function () {
  916. if (!container.isOpen()) {
  917. return;
  918. }
  919. self.setClasses();
  920. if (self.options.get('scrollAfterSelect')) {
  921. self.highlightFirstItem();
  922. }
  923. });
  924. container.on('unselect', function () {
  925. if (!container.isOpen()) {
  926. return;
  927. }
  928. self.setClasses();
  929. if (self.options.get('scrollAfterSelect')) {
  930. self.highlightFirstItem();
  931. }
  932. });
  933. container.on('open', function () {
  934. // When the dropdown is open, aria-expended="true"
  935. self.$results.attr('aria-expanded', 'true');
  936. self.$results.attr('aria-hidden', 'false');
  937. self.setClasses();
  938. self.ensureHighlightVisible();
  939. });
  940. container.on('close', function () {
  941. // When the dropdown is closed, aria-expended="false"
  942. self.$results.attr('aria-expanded', 'false');
  943. self.$results.attr('aria-hidden', 'true');
  944. self.$results.removeAttr('aria-activedescendant');
  945. });
  946. container.on('results:toggle', function () {
  947. var $highlighted = self.getHighlightedResults();
  948. if ($highlighted.length === 0) {
  949. return;
  950. }
  951. $highlighted.trigger('mouseup');
  952. });
  953. container.on('results:select', function () {
  954. var $highlighted = self.getHighlightedResults();
  955. if ($highlighted.length === 0) {
  956. return;
  957. }
  958. var data = Utils.GetData($highlighted[0], 'data');
  959. if ($highlighted.hasClass('select2-results__option--selected')) {
  960. self.trigger('close', {});
  961. } else {
  962. self.trigger('select', {
  963. data: data
  964. });
  965. }
  966. });
  967. container.on('results:previous', function () {
  968. var $highlighted = self.getHighlightedResults();
  969. var $options = self.$results.find('.select2-results__option--selectable');
  970. var currentIndex = $options.index($highlighted);
  971. // If we are already at the top, don't move further
  972. // If no options, currentIndex will be -1
  973. if (currentIndex <= 0) {
  974. return;
  975. }
  976. var nextIndex = currentIndex - 1;
  977. // If none are highlighted, highlight the first
  978. if ($highlighted.length === 0) {
  979. nextIndex = 0;
  980. }
  981. var $next = $options.eq(nextIndex);
  982. $next.trigger('mouseenter');
  983. var currentOffset = self.$results.offset().top;
  984. var nextTop = $next.offset().top;
  985. var nextOffset = self.$results.scrollTop() + (nextTop - currentOffset);
  986. if (nextIndex === 0) {
  987. self.$results.scrollTop(0);
  988. } else if (nextTop - currentOffset < 0) {
  989. self.$results.scrollTop(nextOffset);
  990. }
  991. });
  992. container.on('results:next', function () {
  993. var $highlighted = self.getHighlightedResults();
  994. var $options = self.$results.find('.select2-results__option--selectable');
  995. var currentIndex = $options.index($highlighted);
  996. var nextIndex = currentIndex + 1;
  997. // If we are at the last option, stay there
  998. if (nextIndex >= $options.length) {
  999. return;
  1000. }
  1001. var $next = $options.eq(nextIndex);
  1002. $next.trigger('mouseenter');
  1003. var currentOffset = self.$results.offset().top +
  1004. self.$results.outerHeight(false);
  1005. var nextBottom = $next.offset().top + $next.outerHeight(false);
  1006. var nextOffset = self.$results.scrollTop() + nextBottom - currentOffset;
  1007. if (nextIndex === 0) {
  1008. self.$results.scrollTop(0);
  1009. } else if (nextBottom > currentOffset) {
  1010. self.$results.scrollTop(nextOffset);
  1011. }
  1012. });
  1013. container.on('results:focus', function (params) {
  1014. params.element[0].classList.add('select2-results__option--highlighted');
  1015. params.element[0].setAttribute('aria-selected', 'true');
  1016. });
  1017. container.on('results:message', function (params) {
  1018. self.displayMessage(params);
  1019. });
  1020. if ($.fn.mousewheel) {
  1021. this.$results.on('mousewheel', function (e) {
  1022. var top = self.$results.scrollTop();
  1023. var bottom = self.$results.get(0).scrollHeight - top + e.deltaY;
  1024. var isAtTop = e.deltaY > 0 && top - e.deltaY <= 0;
  1025. var isAtBottom = e.deltaY < 0 && bottom <= self.$results.height();
  1026. if (isAtTop) {
  1027. self.$results.scrollTop(0);
  1028. e.preventDefault();
  1029. e.stopPropagation();
  1030. } else if (isAtBottom) {
  1031. self.$results.scrollTop(
  1032. self.$results.get(0).scrollHeight - self.$results.height()
  1033. );
  1034. e.preventDefault();
  1035. e.stopPropagation();
  1036. }
  1037. });
  1038. }
  1039. this.$results.on('mouseup', '.select2-results__option--selectable',
  1040. function (evt) {
  1041. var $this = $(this);
  1042. var data = Utils.GetData(this, 'data');
  1043. if ($this.hasClass('select2-results__option--selected')) {
  1044. if (self.options.get('multiple')) {
  1045. self.trigger('unselect', {
  1046. originalEvent: evt,
  1047. data: data
  1048. });
  1049. } else {
  1050. self.trigger('close', {});
  1051. }
  1052. return;
  1053. }
  1054. self.trigger('select', {
  1055. originalEvent: evt,
  1056. data: data
  1057. });
  1058. });
  1059. this.$results.on('mouseenter', '.select2-results__option--selectable',
  1060. function (evt) {
  1061. var data = Utils.GetData(this, 'data');
  1062. self.getHighlightedResults()
  1063. .removeClass('select2-results__option--highlighted')
  1064. .attr('aria-selected', 'false');
  1065. self.trigger('results:focus', {
  1066. data: data,
  1067. element: $(this)
  1068. });
  1069. });
  1070. };
  1071. Results.prototype.getHighlightedResults = function () {
  1072. var $highlighted = this.$results
  1073. .find('.select2-results__option--highlighted');
  1074. return $highlighted;
  1075. };
  1076. Results.prototype.destroy = function () {
  1077. this.$results.remove();
  1078. };
  1079. Results.prototype.ensureHighlightVisible = function () {
  1080. var $highlighted = this.getHighlightedResults();
  1081. if ($highlighted.length === 0) {
  1082. return;
  1083. }
  1084. var $options = this.$results.find('.select2-results__option--selectable');
  1085. var currentIndex = $options.index($highlighted);
  1086. var currentOffset = this.$results.offset().top;
  1087. var nextTop = $highlighted.offset().top;
  1088. var nextOffset = this.$results.scrollTop() + (nextTop - currentOffset);
  1089. var offsetDelta = nextTop - currentOffset;
  1090. nextOffset -= $highlighted.outerHeight(false) * 2;
  1091. if (currentIndex <= 2) {
  1092. this.$results.scrollTop(0);
  1093. } else if (offsetDelta > this.$results.outerHeight() || offsetDelta < 0) {
  1094. this.$results.scrollTop(nextOffset);
  1095. }
  1096. };
  1097. Results.prototype.template = function (result, container) {
  1098. var template = this.options.get('templateResult');
  1099. var escapeMarkup = this.options.get('escapeMarkup');
  1100. var content = template(result, container);
  1101. if (content == null) {
  1102. container.style.display = 'none';
  1103. } else if (typeof content === 'string') {
  1104. container.innerHTML = escapeMarkup(content);
  1105. } else {
  1106. $(container).append(content);
  1107. }
  1108. };
  1109. return Results;
  1110. });
  1111. S2.define('select2/keys',[
  1112. ], function () {
  1113. var KEYS = {
  1114. BACKSPACE: 8,
  1115. TAB: 9,
  1116. ENTER: 13,
  1117. SHIFT: 16,
  1118. CTRL: 17,
  1119. ALT: 18,
  1120. ESC: 27,
  1121. SPACE: 32,
  1122. PAGE_UP: 33,
  1123. PAGE_DOWN: 34,
  1124. END: 35,
  1125. HOME: 36,
  1126. LEFT: 37,
  1127. UP: 38,
  1128. RIGHT: 39,
  1129. DOWN: 40,
  1130. DELETE: 46
  1131. };
  1132. return KEYS;
  1133. });
  1134. S2.define('select2/selection/base',[
  1135. 'jquery',
  1136. '../utils',
  1137. '../keys'
  1138. ], function ($, Utils, KEYS) {
  1139. function BaseSelection ($element, options) {
  1140. this.$element = $element;
  1141. this.options = options;
  1142. BaseSelection.__super__.constructor.call(this);
  1143. }
  1144. Utils.Extend(BaseSelection, Utils.Observable);
  1145. BaseSelection.prototype.render = function () {
  1146. var $selection = $(
  1147. '<span class="select2-selection" role="combobox" ' +
  1148. ' aria-haspopup="true" aria-expanded="false">' +
  1149. '</span>'
  1150. );
  1151. this._tabindex = 0;
  1152. if (Utils.GetData(this.$element[0], 'old-tabindex') != null) {
  1153. this._tabindex = Utils.GetData(this.$element[0], 'old-tabindex');
  1154. } else if (this.$element.attr('tabindex') != null) {
  1155. this._tabindex = this.$element.attr('tabindex');
  1156. }
  1157. $selection.attr('title', this.$element.attr('title'));
  1158. $selection.attr('tabindex', this._tabindex);
  1159. $selection.attr('aria-disabled', 'false');
  1160. this.$selection = $selection;
  1161. return $selection;
  1162. };
  1163. BaseSelection.prototype.bind = function (container, $container) {
  1164. var self = this;
  1165. var resultsId = container.id + '-results';
  1166. this.container = container;
  1167. this.$selection.on('focus', function (evt) {
  1168. self.trigger('focus', evt);
  1169. });
  1170. this.$selection.on('blur', function (evt) {
  1171. self._handleBlur(evt);
  1172. });
  1173. this.$selection.on('keydown', function (evt) {
  1174. self.trigger('keypress', evt);
  1175. if (evt.which === KEYS.SPACE) {
  1176. evt.preventDefault();
  1177. }
  1178. });
  1179. container.on('results:focus', function (params) {
  1180. self.$selection.attr('aria-activedescendant', params.data._resultId);
  1181. });
  1182. container.on('selection:update', function (params) {
  1183. self.update(params.data);
  1184. });
  1185. container.on('open', function () {
  1186. // When the dropdown is open, aria-expanded="true"
  1187. self.$selection.attr('aria-expanded', 'true');
  1188. self.$selection.attr('aria-owns', resultsId);
  1189. self._attachCloseHandler(container);
  1190. });
  1191. container.on('close', function () {
  1192. // When the dropdown is closed, aria-expanded="false"
  1193. self.$selection.attr('aria-expanded', 'false');
  1194. self.$selection.removeAttr('aria-activedescendant');
  1195. self.$selection.removeAttr('aria-owns');
  1196. self.$selection.trigger('focus');
  1197. self._detachCloseHandler(container);
  1198. });
  1199. container.on('enable', function () {
  1200. self.$selection.attr('tabindex', self._tabindex);
  1201. self.$selection.attr('aria-disabled', 'false');
  1202. });
  1203. container.on('disable', function () {
  1204. self.$selection.attr('tabindex', '-1');
  1205. self.$selection.attr('aria-disabled', 'true');
  1206. });
  1207. };
  1208. BaseSelection.prototype._handleBlur = function (evt) {
  1209. var self = this;
  1210. // This needs to be delayed as the active element is the body when the tab
  1211. // key is pressed, possibly along with others.
  1212. window.setTimeout(function () {
  1213. // Don't trigger `blur` if the focus is still in the selection
  1214. if (
  1215. (document.activeElement == self.$selection[0]) ||
  1216. ($.contains(self.$selection[0], document.activeElement))
  1217. ) {
  1218. return;
  1219. }
  1220. self.trigger('blur', evt);
  1221. }, 1);
  1222. };
  1223. BaseSelection.prototype._attachCloseHandler = function (container) {
  1224. $(document.body).on('mousedown.select2.' + container.id, function (e) {
  1225. var $target = $(e.target);
  1226. var $select = $target.closest('.select2');
  1227. var $all = $('.select2.select2-container--open');
  1228. $all.each(function () {
  1229. if (this == $select[0]) {
  1230. return;
  1231. }
  1232. var $element = Utils.GetData(this, 'element');
  1233. $element.select2('close');
  1234. });
  1235. });
  1236. };
  1237. BaseSelection.prototype._detachCloseHandler = function (container) {
  1238. $(document.body).off('mousedown.select2.' + container.id);
  1239. };
  1240. BaseSelection.prototype.position = function ($selection, $container) {
  1241. var $selectionContainer = $container.find('.selection');
  1242. $selectionContainer.append($selection);
  1243. };
  1244. BaseSelection.prototype.destroy = function () {
  1245. this._detachCloseHandler(this.container);
  1246. };
  1247. BaseSelection.prototype.update = function (data) {
  1248. throw new Error('The `update` method must be defined in child classes.');
  1249. };
  1250. /**
  1251. * Helper method to abstract the "enabled" (not "disabled") state of this
  1252. * object.
  1253. *
  1254. * @return {true} if the instance is not disabled.
  1255. * @return {false} if the instance is disabled.
  1256. */
  1257. BaseSelection.prototype.isEnabled = function () {
  1258. return !this.isDisabled();
  1259. };
  1260. /**
  1261. * Helper method to abstract the "disabled" state of this object.
  1262. *
  1263. * @return {true} if the disabled option is true.
  1264. * @return {false} if the disabled option is false.
  1265. */
  1266. BaseSelection.prototype.isDisabled = function () {
  1267. return this.options.get('disabled');
  1268. };
  1269. return BaseSelection;
  1270. });
  1271. S2.define('select2/selection/single',[
  1272. 'jquery',
  1273. './base',
  1274. '../utils',
  1275. '../keys'
  1276. ], function ($, BaseSelection, Utils, KEYS) {
  1277. function SingleSelection () {
  1278. SingleSelection.__super__.constructor.apply(this, arguments);
  1279. }
  1280. Utils.Extend(SingleSelection, BaseSelection);
  1281. SingleSelection.prototype.render = function () {
  1282. var $selection = SingleSelection.__super__.render.call(this);
  1283. $selection[0].classList.add('select2-selection--single');
  1284. $selection.html(
  1285. '<span class="select2-selection__rendered"></span>' +
  1286. '<span class="select2-selection__arrow" role="presentation">' +
  1287. '<b role="presentation"></b>' +
  1288. '</span>'
  1289. );
  1290. return $selection;
  1291. };
  1292. SingleSelection.prototype.bind = function (container, $container) {
  1293. var self = this;
  1294. SingleSelection.__super__.bind.apply(this, arguments);
  1295. var id = container.id + '-container';
  1296. this.$selection.find('.select2-selection__rendered')
  1297. .attr('id', id)
  1298. .attr('role', 'textbox')
  1299. .attr('aria-readonly', 'true');
  1300. this.$selection.attr('aria-labelledby', id);
  1301. this.$selection.attr('aria-controls', id);
  1302. this.$selection.on('mousedown', function (evt) {
  1303. // Only respond to left clicks
  1304. if (evt.which !== 1) {
  1305. return;
  1306. }
  1307. self.trigger('toggle', {
  1308. originalEvent: evt
  1309. });
  1310. });
  1311. this.$selection.on('focus', function (evt) {
  1312. // User focuses on the container
  1313. });
  1314. this.$selection.on('blur', function (evt) {
  1315. // User exits the container
  1316. });
  1317. container.on('focus', function (evt) {
  1318. if (!container.isOpen()) {
  1319. self.$selection.trigger('focus');
  1320. }
  1321. });
  1322. };
  1323. SingleSelection.prototype.clear = function () {
  1324. var $rendered = this.$selection.find('.select2-selection__rendered');
  1325. $rendered.empty();
  1326. $rendered.removeAttr('title'); // clear tooltip on empty
  1327. };
  1328. SingleSelection.prototype.display = function (data, container) {
  1329. var template = this.options.get('templateSelection');
  1330. var escapeMarkup = this.options.get('escapeMarkup');
  1331. return escapeMarkup(template(data, container));
  1332. };
  1333. SingleSelection.prototype.selectionContainer = function () {
  1334. return $('<span></span>');
  1335. };
  1336. SingleSelection.prototype.update = function (data) {
  1337. if (data.length === 0) {
  1338. this.clear();
  1339. return;
  1340. }
  1341. var selection = data[0];
  1342. var $rendered = this.$selection.find('.select2-selection__rendered');
  1343. var formatted = this.display(selection, $rendered);
  1344. $rendered.empty().append(formatted);
  1345. var title = selection.title || selection.text;
  1346. if (title) {
  1347. $rendered.attr('title', title);
  1348. } else {
  1349. $rendered.removeAttr('title');
  1350. }
  1351. };
  1352. return SingleSelection;
  1353. });
  1354. S2.define('select2/selection/multiple',[
  1355. 'jquery',
  1356. './base',
  1357. '../utils'
  1358. ], function ($, BaseSelection, Utils) {
  1359. function MultipleSelection ($element, options) {
  1360. MultipleSelection.__super__.constructor.apply(this, arguments);
  1361. }
  1362. Utils.Extend(MultipleSelection, BaseSelection);
  1363. MultipleSelection.prototype.render = function () {
  1364. var $selection = MultipleSelection.__super__.render.call(this);
  1365. $selection[0].classList.add('select2-selection--multiple');
  1366. $selection.html(
  1367. '<ul class="select2-selection__rendered"></ul>'
  1368. );
  1369. return $selection;
  1370. };
  1371. MultipleSelection.prototype.bind = function (container, $container) {
  1372. var self = this;
  1373. MultipleSelection.__super__.bind.apply(this, arguments);
  1374. var id = container.id + '-container';
  1375. this.$selection.find('.select2-selection__rendered').attr('id', id);
  1376. this.$selection.on('click', function (evt) {
  1377. self.trigger('toggle', {
  1378. originalEvent: evt
  1379. });
  1380. });
  1381. this.$selection.on(
  1382. 'click',
  1383. '.select2-selection__choice__remove',
  1384. function (evt) {
  1385. // Ignore the event if it is disabled
  1386. if (self.isDisabled()) {
  1387. return;
  1388. }
  1389. var $remove = $(this);
  1390. var $selection = $remove.parent();
  1391. var data = Utils.GetData($selection[0], 'data');
  1392. self.trigger('unselect', {
  1393. originalEvent: evt,
  1394. data: data
  1395. });
  1396. }
  1397. );
  1398. this.$selection.on(
  1399. 'keydown',
  1400. '.select2-selection__choice__remove',
  1401. function (evt) {
  1402. // Ignore the event if it is disabled
  1403. if (self.isDisabled()) {
  1404. return;
  1405. }
  1406. evt.stopPropagation();
  1407. }
  1408. );
  1409. };
  1410. MultipleSelection.prototype.clear = function () {
  1411. var $rendered = this.$selection.find('.select2-selection__rendered');
  1412. $rendered.empty();
  1413. $rendered.removeAttr('title');
  1414. };
  1415. MultipleSelection.prototype.display = function (data, container) {
  1416. var template = this.options.get('templateSelection');
  1417. var escapeMarkup = this.options.get('escapeMarkup');
  1418. return escapeMarkup(template(data, container));
  1419. };
  1420. MultipleSelection.prototype.selectionContainer = function () {
  1421. var $container = $(
  1422. '<li class="select2-selection__choice">' +
  1423. '<button type="button" class="select2-selection__choice__remove" ' +
  1424. 'tabindex="-1">' +
  1425. '<span aria-hidden="true">&times;</span>' +
  1426. '</button>' +
  1427. '<span class="select2-selection__choice__display"></span>' +
  1428. '</li>'
  1429. );
  1430. return $container;
  1431. };
  1432. MultipleSelection.prototype.update = function (data) {
  1433. this.clear();
  1434. if (data.length === 0) {
  1435. return;
  1436. }
  1437. var $selections = [];
  1438. var selectionIdPrefix = this.$selection.find('.select2-selection__rendered')
  1439. .attr('id') + '-choice-';
  1440. for (var d = 0; d < data.length; d++) {
  1441. var selection = data[d];
  1442. var $selection = this.selectionContainer();
  1443. var formatted = this.display(selection, $selection);
  1444. var selectionId = selectionIdPrefix + Utils.generateChars(4) + '-';
  1445. if (selection.id) {
  1446. selectionId += selection.id;
  1447. } else {
  1448. selectionId += Utils.generateChars(4);
  1449. }
  1450. $selection.find('.select2-selection__choice__display')
  1451. .append(formatted)
  1452. .attr('id', selectionId);
  1453. var title = selection.title || selection.text;
  1454. if (title) {
  1455. $selection.attr('title', title);
  1456. }
  1457. var removeItem = this.options.get('translations').get('removeItem');
  1458. var $remove = $selection.find('.select2-selection__choice__remove');
  1459. $remove.attr('title', removeItem());
  1460. $remove.attr('aria-label', removeItem());
  1461. $remove.attr('aria-describedby', selectionId);
  1462. Utils.StoreData($selection[0], 'data', selection);
  1463. $selections.push($selection);
  1464. }
  1465. var $rendered = this.$selection.find('.select2-selection__rendered');
  1466. $rendered.append($selections);
  1467. };
  1468. return MultipleSelection;
  1469. });
  1470. S2.define('select2/selection/placeholder',[
  1471. ], function () {
  1472. function Placeholder (decorated, $element, options) {
  1473. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  1474. decorated.call(this, $element, options);
  1475. }
  1476. Placeholder.prototype.normalizePlaceholder = function (_, placeholder) {
  1477. if (typeof placeholder === 'string') {
  1478. placeholder = {
  1479. id: '',
  1480. text: placeholder
  1481. };
  1482. }
  1483. return placeholder;
  1484. };
  1485. Placeholder.prototype.createPlaceholder = function (decorated, placeholder) {
  1486. var $placeholder = this.selectionContainer();
  1487. $placeholder.html(this.display(placeholder));
  1488. $placeholder[0].classList.add('select2-selection__placeholder');
  1489. $placeholder[0].classList.remove('select2-selection__choice');
  1490. var placeholderTitle = placeholder.title ||
  1491. placeholder.text ||
  1492. $placeholder.text();
  1493. this.$selection.find('.select2-selection__rendered').attr(
  1494. 'title',
  1495. placeholderTitle
  1496. );
  1497. return $placeholder;
  1498. };
  1499. Placeholder.prototype.update = function (decorated, data) {
  1500. var singlePlaceholder = (
  1501. data.length == 1 && data[0].id != this.placeholder.id
  1502. );
  1503. var multipleSelections = data.length > 1;
  1504. if (multipleSelections || singlePlaceholder) {
  1505. return decorated.call(this, data);
  1506. }
  1507. this.clear();
  1508. var $placeholder = this.createPlaceholder(this.placeholder);
  1509. this.$selection.find('.select2-selection__rendered').append($placeholder);
  1510. };
  1511. return Placeholder;
  1512. });
  1513. S2.define('select2/selection/allowClear',[
  1514. 'jquery',
  1515. '../keys',
  1516. '../utils'
  1517. ], function ($, KEYS, Utils) {
  1518. function AllowClear () { }
  1519. AllowClear.prototype.bind = function (decorated, container, $container) {
  1520. var self = this;
  1521. decorated.call(this, container, $container);
  1522. if (this.placeholder == null) {
  1523. if (this.options.get('debug') && window.console && console.error) {
  1524. console.error(
  1525. 'Select2: The `allowClear` option should be used in combination ' +
  1526. 'with the `placeholder` option.'
  1527. );
  1528. }
  1529. }
  1530. this.$selection.on('mousedown', '.select2-selection__clear',
  1531. function (evt) {
  1532. self._handleClear(evt);
  1533. });
  1534. container.on('keypress', function (evt) {
  1535. self._handleKeyboardClear(evt, container);
  1536. });
  1537. };
  1538. AllowClear.prototype._handleClear = function (_, evt) {
  1539. // Ignore the event if it is disabled
  1540. if (this.isDisabled()) {
  1541. return;
  1542. }
  1543. var $clear = this.$selection.find('.select2-selection__clear');
  1544. // Ignore the event if nothing has been selected
  1545. if ($clear.length === 0) {
  1546. return;
  1547. }
  1548. evt.stopPropagation();
  1549. var data = Utils.GetData($clear[0], 'data');
  1550. var previousVal = this.$element.val();
  1551. this.$element.val(this.placeholder.id);
  1552. var unselectData = {
  1553. data: data
  1554. };
  1555. this.trigger('clear', unselectData);
  1556. if (unselectData.prevented) {
  1557. this.$element.val(previousVal);
  1558. return;
  1559. }
  1560. for (var d = 0; d < data.length; d++) {
  1561. unselectData = {
  1562. data: data[d]
  1563. };
  1564. // Trigger the `unselect` event, so people can prevent it from being
  1565. // cleared.
  1566. this.trigger('unselect', unselectData);
  1567. // If the event was prevented, don't clear it out.
  1568. if (unselectData.prevented) {
  1569. this.$element.val(previousVal);
  1570. return;
  1571. }
  1572. }
  1573. this.$element.trigger('input').trigger('change');
  1574. this.trigger('toggle', {});
  1575. };
  1576. AllowClear.prototype._handleKeyboardClear = function (_, evt, container) {
  1577. if (container.isOpen()) {
  1578. return;
  1579. }
  1580. if (evt.which == KEYS.DELETE || evt.which == KEYS.BACKSPACE) {
  1581. this._handleClear(evt);
  1582. }
  1583. };
  1584. AllowClear.prototype.update = function (decorated, data) {
  1585. decorated.call(this, data);
  1586. this.$selection.find('.select2-selection__clear').remove();
  1587. this.$selection[0].classList.remove('select2-selection--clearable');
  1588. if (this.$selection.find('.select2-selection__placeholder').length > 0 ||
  1589. data.length === 0) {
  1590. return;
  1591. }
  1592. var selectionId = this.$selection.find('.select2-selection__rendered')
  1593. .attr('id');
  1594. var removeAll = this.options.get('translations').get('removeAllItems');
  1595. var $remove = $(
  1596. '<button type="button" class="select2-selection__clear" tabindex="-1">' +
  1597. '<span aria-hidden="true">&times;</span>' +
  1598. '</button>'
  1599. );
  1600. $remove.attr('title', removeAll());
  1601. $remove.attr('aria-label', removeAll());
  1602. $remove.attr('aria-describedby', selectionId);
  1603. Utils.StoreData($remove[0], 'data', data);
  1604. this.$selection.prepend($remove);
  1605. this.$selection[0].classList.add('select2-selection--clearable');
  1606. };
  1607. return AllowClear;
  1608. });
  1609. S2.define('select2/selection/search',[
  1610. 'jquery',
  1611. '../utils',
  1612. '../keys'
  1613. ], function ($, Utils, KEYS) {
  1614. function Search (decorated, $element, options) {
  1615. decorated.call(this, $element, options);
  1616. }
  1617. Search.prototype.render = function (decorated) {
  1618. var searchLabel = this.options.get('translations').get('search');
  1619. var $search = $(
  1620. '<span class="select2-search select2-search--inline">' +
  1621. '<textarea class="select2-search__field"'+
  1622. ' type="search" tabindex="-1"' +
  1623. ' autocorrect="off" autocapitalize="none"' +
  1624. ' spellcheck="false" role="searchbox" aria-autocomplete="list" >' +
  1625. '</textarea>' +
  1626. '</span>'
  1627. );
  1628. this.$searchContainer = $search;
  1629. this.$search = $search.find('textarea');
  1630. this.$search.prop('autocomplete', this.options.get('autocomplete'));
  1631. this.$search.attr('aria-label', searchLabel());
  1632. var $rendered = decorated.call(this);
  1633. this._transferTabIndex();
  1634. $rendered.append(this.$searchContainer);
  1635. return $rendered;
  1636. };
  1637. Search.prototype.bind = function (decorated, container, $container) {
  1638. var self = this;
  1639. var resultsId = container.id + '-results';
  1640. var selectionId = container.id + '-container';
  1641. decorated.call(this, container, $container);
  1642. self.$search.attr('aria-describedby', selectionId);
  1643. container.on('open', function () {
  1644. self.$search.attr('aria-controls', resultsId);
  1645. self.$search.trigger('focus');
  1646. });
  1647. container.on('close', function () {
  1648. self.$search.val('');
  1649. self.resizeSearch();
  1650. self.$search.removeAttr('aria-controls');
  1651. self.$search.removeAttr('aria-activedescendant');
  1652. self.$search.trigger('focus');
  1653. });
  1654. container.on('enable', function () {
  1655. self.$search.prop('disabled', false);
  1656. self._transferTabIndex();
  1657. });
  1658. container.on('disable', function () {
  1659. self.$search.prop('disabled', true);
  1660. });
  1661. container.on('focus', function (evt) {
  1662. self.$search.trigger('focus');
  1663. });
  1664. container.on('results:focus', function (params) {
  1665. if (params.data._resultId) {
  1666. self.$search.attr('aria-activedescendant', params.data._resultId);
  1667. } else {
  1668. self.$search.removeAttr('aria-activedescendant');
  1669. }
  1670. });
  1671. this.$selection.on('focusin', '.select2-search--inline', function (evt) {
  1672. self.trigger('focus', evt);
  1673. });
  1674. this.$selection.on('focusout', '.select2-search--inline', function (evt) {
  1675. self._handleBlur(evt);
  1676. });
  1677. this.$selection.on('keydown', '.select2-search--inline', function (evt) {
  1678. evt.stopPropagation();
  1679. self.trigger('keypress', evt);
  1680. self._keyUpPrevented = evt.isDefaultPrevented();
  1681. var key = evt.which;
  1682. if (key === KEYS.BACKSPACE && self.$search.val() === '') {
  1683. var $previousChoice = self.$selection
  1684. .find('.select2-selection__choice').last();
  1685. if ($previousChoice.length > 0) {
  1686. var item = Utils.GetData($previousChoice[0], 'data');
  1687. self.searchRemoveChoice(item);
  1688. evt.preventDefault();
  1689. }
  1690. }
  1691. });
  1692. this.$selection.on('click', '.select2-search--inline', function (evt) {
  1693. if (self.$search.val()) {
  1694. evt.stopPropagation();
  1695. }
  1696. });
  1697. // Try to detect the IE version should the `documentMode` property that
  1698. // is stored on the document. This is only implemented in IE and is
  1699. // slightly cleaner than doing a user agent check.
  1700. // This property is not available in Edge, but Edge also doesn't have
  1701. // this bug.
  1702. var msie = document.documentMode;
  1703. var disableInputEvents = msie && msie <= 11;
  1704. // Workaround for browsers which do not support the `input` event
  1705. // This will prevent double-triggering of events for browsers which support
  1706. // both the `keyup` and `input` events.
  1707. this.$selection.on(
  1708. 'input.searchcheck',
  1709. '.select2-search--inline',
  1710. function (evt) {
  1711. // IE will trigger the `input` event when a placeholder is used on a
  1712. // search box. To get around this issue, we are forced to ignore all
  1713. // `input` events in IE and keep using `keyup`.
  1714. if (disableInputEvents) {
  1715. self.$selection.off('input.search input.searchcheck');
  1716. return;
  1717. }
  1718. // Unbind the duplicated `keyup` event
  1719. self.$selection.off('keyup.search');
  1720. }
  1721. );
  1722. this.$selection.on(
  1723. 'keyup.search input.search',
  1724. '.select2-search--inline',
  1725. function (evt) {
  1726. // IE will trigger the `input` event when a placeholder is used on a
  1727. // search box. To get around this issue, we are forced to ignore all
  1728. // `input` events in IE and keep using `keyup`.
  1729. if (disableInputEvents && evt.type === 'input') {
  1730. self.$selection.off('input.search input.searchcheck');
  1731. return;
  1732. }
  1733. var key = evt.which;
  1734. // We can freely ignore events from modifier keys
  1735. if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
  1736. return;
  1737. }
  1738. // Tabbing will be handled during the `keydown` phase
  1739. if (key == KEYS.TAB) {
  1740. return;
  1741. }
  1742. self.handleSearch(evt);
  1743. }
  1744. );
  1745. };
  1746. /**
  1747. * This method will transfer the tabindex attribute from the rendered
  1748. * selection to the search box. This allows for the search box to be used as
  1749. * the primary focus instead of the selection container.
  1750. *
  1751. * @private
  1752. */
  1753. Search.prototype._transferTabIndex = function (decorated) {
  1754. this.$search.attr('tabindex', this.$selection.attr('tabindex'));
  1755. this.$selection.attr('tabindex', '-1');
  1756. };
  1757. Search.prototype.createPlaceholder = function (decorated, placeholder) {
  1758. this.$search.attr('placeholder', placeholder.text);
  1759. };
  1760. Search.prototype.update = function (decorated, data) {
  1761. var searchHadFocus = this.$search[0] == document.activeElement;
  1762. this.$search.attr('placeholder', '');
  1763. decorated.call(this, data);
  1764. this.resizeSearch();
  1765. if (searchHadFocus) {
  1766. this.$search.trigger('focus');
  1767. }
  1768. };
  1769. Search.prototype.handleSearch = function () {
  1770. this.resizeSearch();
  1771. if (!this._keyUpPrevented) {
  1772. var input = this.$search.val();
  1773. this.trigger('query', {
  1774. term: input
  1775. });
  1776. }
  1777. this._keyUpPrevented = false;
  1778. };
  1779. Search.prototype.searchRemoveChoice = function (decorated, item) {
  1780. this.trigger('unselect', {
  1781. data: item
  1782. });
  1783. this.$search.val(item.text);
  1784. this.handleSearch();
  1785. };
  1786. Search.prototype.resizeSearch = function () {
  1787. this.$search.css('width', '25px');
  1788. var width = '100%';
  1789. if (this.$search.attr('placeholder') === '') {
  1790. var minimumWidth = this.$search.val().length + 1;
  1791. width = (minimumWidth * 0.75) + 'em';
  1792. }
  1793. this.$search.css('width', width);
  1794. };
  1795. return Search;
  1796. });
  1797. S2.define('select2/selection/selectionCss',[
  1798. '../utils'
  1799. ], function (Utils) {
  1800. function SelectionCSS () { }
  1801. SelectionCSS.prototype.render = function (decorated) {
  1802. var $selection = decorated.call(this);
  1803. var selectionCssClass = this.options.get('selectionCssClass') || '';
  1804. if (selectionCssClass.indexOf(':all:') !== -1) {
  1805. selectionCssClass = selectionCssClass.replace(':all:', '');
  1806. Utils.copyNonInternalCssClasses($selection[0], this.$element[0]);
  1807. }
  1808. $selection.addClass(selectionCssClass);
  1809. return $selection;
  1810. };
  1811. return SelectionCSS;
  1812. });
  1813. S2.define('select2/selection/eventRelay',[
  1814. 'jquery'
  1815. ], function ($) {
  1816. function EventRelay () { }
  1817. EventRelay.prototype.bind = function (decorated, container, $container) {
  1818. var self = this;
  1819. var relayEvents = [
  1820. 'open', 'opening',
  1821. 'close', 'closing',
  1822. 'select', 'selecting',
  1823. 'unselect', 'unselecting',
  1824. 'clear', 'clearing'
  1825. ];
  1826. var preventableEvents = [
  1827. 'opening', 'closing', 'selecting', 'unselecting', 'clearing'
  1828. ];
  1829. decorated.call(this, container, $container);
  1830. container.on('*', function (name, params) {
  1831. // Ignore events that should not be relayed
  1832. if (relayEvents.indexOf(name) === -1) {
  1833. return;
  1834. }
  1835. // The parameters should always be an object
  1836. params = params || {};
  1837. // Generate the jQuery event for the Select2 event
  1838. var evt = $.Event('select2:' + name, {
  1839. params: params
  1840. });
  1841. self.$element.trigger(evt);
  1842. // Only handle preventable events if it was one
  1843. if (preventableEvents.indexOf(name) === -1) {
  1844. return;
  1845. }
  1846. params.prevented = evt.isDefaultPrevented();
  1847. });
  1848. };
  1849. return EventRelay;
  1850. });
  1851. S2.define('select2/translation',[
  1852. 'jquery',
  1853. 'require'
  1854. ], function ($, require) {
  1855. function Translation (dict) {
  1856. this.dict = dict || {};
  1857. }
  1858. Translation.prototype.all = function () {
  1859. return this.dict;
  1860. };
  1861. Translation.prototype.get = function (key) {
  1862. return this.dict[key];
  1863. };
  1864. Translation.prototype.extend = function (translation) {
  1865. this.dict = $.extend({}, translation.all(), this.dict);
  1866. };
  1867. // Static functions
  1868. Translation._cache = {};
  1869. Translation.loadPath = function (path) {
  1870. if (!(path in Translation._cache)) {
  1871. var translations = require(path);
  1872. Translation._cache[path] = translations;
  1873. }
  1874. return new Translation(Translation._cache[path]);
  1875. };
  1876. return Translation;
  1877. });
  1878. S2.define('select2/diacritics',[
  1879. ], function () {
  1880. var diacritics = {
  1881. '\u24B6': 'A',
  1882. '\uFF21': 'A',
  1883. '\u00C0': 'A',
  1884. '\u00C1': 'A',
  1885. '\u00C2': 'A',
  1886. '\u1EA6': 'A',
  1887. '\u1EA4': 'A',
  1888. '\u1EAA': 'A',
  1889. '\u1EA8': 'A',
  1890. '\u00C3': 'A',
  1891. '\u0100': 'A',
  1892. '\u0102': 'A',
  1893. '\u1EB0': 'A',
  1894. '\u1EAE': 'A',
  1895. '\u1EB4': 'A',
  1896. '\u1EB2': 'A',
  1897. '\u0226': 'A',
  1898. '\u01E0': 'A',
  1899. '\u00C4': 'A',
  1900. '\u01DE': 'A',
  1901. '\u1EA2': 'A',
  1902. '\u00C5': 'A',
  1903. '\u01FA': 'A',
  1904. '\u01CD': 'A',
  1905. '\u0200': 'A',
  1906. '\u0202': 'A',
  1907. '\u1EA0': 'A',
  1908. '\u1EAC': 'A',
  1909. '\u1EB6': 'A',
  1910. '\u1E00': 'A',
  1911. '\u0104': 'A',
  1912. '\u023A': 'A',
  1913. '\u2C6F': 'A',
  1914. '\uA732': 'AA',
  1915. '\u00C6': 'AE',
  1916. '\u01FC': 'AE',
  1917. '\u01E2': 'AE',
  1918. '\uA734': 'AO',
  1919. '\uA736': 'AU',
  1920. '\uA738': 'AV',
  1921. '\uA73A': 'AV',
  1922. '\uA73C': 'AY',
  1923. '\u24B7': 'B',
  1924. '\uFF22': 'B',
  1925. '\u1E02': 'B',
  1926. '\u1E04': 'B',
  1927. '\u1E06': 'B',
  1928. '\u0243': 'B',
  1929. '\u0182': 'B',
  1930. '\u0181': 'B',
  1931. '\u24B8': 'C',
  1932. '\uFF23': 'C',
  1933. '\u0106': 'C',
  1934. '\u0108': 'C',
  1935. '\u010A': 'C',
  1936. '\u010C': 'C',
  1937. '\u00C7': 'C',
  1938. '\u1E08': 'C',
  1939. '\u0187': 'C',
  1940. '\u023B': 'C',
  1941. '\uA73E': 'C',
  1942. '\u24B9': 'D',
  1943. '\uFF24': 'D',
  1944. '\u1E0A': 'D',
  1945. '\u010E': 'D',
  1946. '\u1E0C': 'D',
  1947. '\u1E10': 'D',
  1948. '\u1E12': 'D',
  1949. '\u1E0E': 'D',
  1950. '\u0110': 'D',
  1951. '\u018B': 'D',
  1952. '\u018A': 'D',
  1953. '\u0189': 'D',
  1954. '\uA779': 'D',
  1955. '\u01F1': 'DZ',
  1956. '\u01C4': 'DZ',
  1957. '\u01F2': 'Dz',
  1958. '\u01C5': 'Dz',
  1959. '\u24BA': 'E',
  1960. '\uFF25': 'E',
  1961. '\u00C8': 'E',
  1962. '\u00C9': 'E',
  1963. '\u00CA': 'E',
  1964. '\u1EC0': 'E',
  1965. '\u1EBE': 'E',
  1966. '\u1EC4': 'E',
  1967. '\u1EC2': 'E',
  1968. '\u1EBC': 'E',
  1969. '\u0112': 'E',
  1970. '\u1E14': 'E',
  1971. '\u1E16': 'E',
  1972. '\u0114': 'E',
  1973. '\u0116': 'E',
  1974. '\u00CB': 'E',
  1975. '\u1EBA': 'E',
  1976. '\u011A': 'E',
  1977. '\u0204': 'E',
  1978. '\u0206': 'E',
  1979. '\u1EB8': 'E',
  1980. '\u1EC6': 'E',
  1981. '\u0228': 'E',
  1982. '\u1E1C': 'E',
  1983. '\u0118': 'E',
  1984. '\u1E18': 'E',
  1985. '\u1E1A': 'E',
  1986. '\u0190': 'E',
  1987. '\u018E': 'E',
  1988. '\u24BB': 'F',
  1989. '\uFF26': 'F',
  1990. '\u1E1E': 'F',
  1991. '\u0191': 'F',
  1992. '\uA77B': 'F',
  1993. '\u24BC': 'G',
  1994. '\uFF27': 'G',
  1995. '\u01F4': 'G',
  1996. '\u011C': 'G',
  1997. '\u1E20': 'G',
  1998. '\u011E': 'G',
  1999. '\u0120': 'G',
  2000. '\u01E6': 'G',
  2001. '\u0122': 'G',
  2002. '\u01E4': 'G',
  2003. '\u0193': 'G',
  2004. '\uA7A0': 'G',
  2005. '\uA77D': 'G',
  2006. '\uA77E': 'G',
  2007. '\u24BD': 'H',
  2008. '\uFF28': 'H',
  2009. '\u0124': 'H',
  2010. '\u1E22': 'H',
  2011. '\u1E26': 'H',
  2012. '\u021E': 'H',
  2013. '\u1E24': 'H',
  2014. '\u1E28': 'H',
  2015. '\u1E2A': 'H',
  2016. '\u0126': 'H',
  2017. '\u2C67': 'H',
  2018. '\u2C75': 'H',
  2019. '\uA78D': 'H',
  2020. '\u24BE': 'I',
  2021. '\uFF29': 'I',
  2022. '\u00CC': 'I',
  2023. '\u00CD': 'I',
  2024. '\u00CE': 'I',
  2025. '\u0128': 'I',
  2026. '\u012A': 'I',
  2027. '\u012C': 'I',
  2028. '\u0130': 'I',
  2029. '\u00CF': 'I',
  2030. '\u1E2E': 'I',
  2031. '\u1EC8': 'I',
  2032. '\u01CF': 'I',
  2033. '\u0208': 'I',
  2034. '\u020A': 'I',
  2035. '\u1ECA': 'I',
  2036. '\u012E': 'I',
  2037. '\u1E2C': 'I',
  2038. '\u0197': 'I',
  2039. '\u24BF': 'J',
  2040. '\uFF2A': 'J',
  2041. '\u0134': 'J',
  2042. '\u0248': 'J',
  2043. '\u24C0': 'K',
  2044. '\uFF2B': 'K',
  2045. '\u1E30': 'K',
  2046. '\u01E8': 'K',
  2047. '\u1E32': 'K',
  2048. '\u0136': 'K',
  2049. '\u1E34': 'K',
  2050. '\u0198': 'K',
  2051. '\u2C69': 'K',
  2052. '\uA740': 'K',
  2053. '\uA742': 'K',
  2054. '\uA744': 'K',
  2055. '\uA7A2': 'K',
  2056. '\u24C1': 'L',
  2057. '\uFF2C': 'L',
  2058. '\u013F': 'L',
  2059. '\u0139': 'L',
  2060. '\u013D': 'L',
  2061. '\u1E36': 'L',
  2062. '\u1E38': 'L',
  2063. '\u013B': 'L',
  2064. '\u1E3C': 'L',
  2065. '\u1E3A': 'L',
  2066. '\u0141': 'L',
  2067. '\u023D': 'L',
  2068. '\u2C62': 'L',
  2069. '\u2C60': 'L',
  2070. '\uA748': 'L',
  2071. '\uA746': 'L',
  2072. '\uA780': 'L',
  2073. '\u01C7': 'LJ',
  2074. '\u01C8': 'Lj',
  2075. '\u24C2': 'M',
  2076. '\uFF2D': 'M',
  2077. '\u1E3E': 'M',
  2078. '\u1E40': 'M',
  2079. '\u1E42': 'M',
  2080. '\u2C6E': 'M',
  2081. '\u019C': 'M',
  2082. '\u24C3': 'N',
  2083. '\uFF2E': 'N',
  2084. '\u01F8': 'N',
  2085. '\u0143': 'N',
  2086. '\u00D1': 'N',
  2087. '\u1E44': 'N',
  2088. '\u0147': 'N',
  2089. '\u1E46': 'N',
  2090. '\u0145': 'N',
  2091. '\u1E4A': 'N',
  2092. '\u1E48': 'N',
  2093. '\u0220': 'N',
  2094. '\u019D': 'N',
  2095. '\uA790': 'N',
  2096. '\uA7A4': 'N',
  2097. '\u01CA': 'NJ',
  2098. '\u01CB': 'Nj',
  2099. '\u24C4': 'O',
  2100. '\uFF2F': 'O',
  2101. '\u00D2': 'O',
  2102. '\u00D3': 'O',
  2103. '\u00D4': 'O',
  2104. '\u1ED2': 'O',
  2105. '\u1ED0': 'O',
  2106. '\u1ED6': 'O',
  2107. '\u1ED4': 'O',
  2108. '\u00D5': 'O',
  2109. '\u1E4C': 'O',
  2110. '\u022C': 'O',
  2111. '\u1E4E': 'O',
  2112. '\u014C': 'O',
  2113. '\u1E50': 'O',
  2114. '\u1E52': 'O',
  2115. '\u014E': 'O',
  2116. '\u022E': 'O',
  2117. '\u0230': 'O',
  2118. '\u00D6': 'O',
  2119. '\u022A': 'O',
  2120. '\u1ECE': 'O',
  2121. '\u0150': 'O',
  2122. '\u01D1': 'O',
  2123. '\u020C': 'O',
  2124. '\u020E': 'O',
  2125. '\u01A0': 'O',
  2126. '\u1EDC': 'O',
  2127. '\u1EDA': 'O',
  2128. '\u1EE0': 'O',
  2129. '\u1EDE': 'O',
  2130. '\u1EE2': 'O',
  2131. '\u1ECC': 'O',
  2132. '\u1ED8': 'O',
  2133. '\u01EA': 'O',
  2134. '\u01EC': 'O',
  2135. '\u00D8': 'O',
  2136. '\u01FE': 'O',
  2137. '\u0186': 'O',
  2138. '\u019F': 'O',
  2139. '\uA74A': 'O',
  2140. '\uA74C': 'O',
  2141. '\u0152': 'OE',
  2142. '\u01A2': 'OI',
  2143. '\uA74E': 'OO',
  2144. '\u0222': 'OU',
  2145. '\u24C5': 'P',
  2146. '\uFF30': 'P',
  2147. '\u1E54': 'P',
  2148. '\u1E56': 'P',
  2149. '\u01A4': 'P',
  2150. '\u2C63': 'P',
  2151. '\uA750': 'P',
  2152. '\uA752': 'P',
  2153. '\uA754': 'P',
  2154. '\u24C6': 'Q',
  2155. '\uFF31': 'Q',
  2156. '\uA756': 'Q',
  2157. '\uA758': 'Q',
  2158. '\u024A': 'Q',
  2159. '\u24C7': 'R',
  2160. '\uFF32': 'R',
  2161. '\u0154': 'R',
  2162. '\u1E58': 'R',
  2163. '\u0158': 'R',
  2164. '\u0210': 'R',
  2165. '\u0212': 'R',
  2166. '\u1E5A': 'R',
  2167. '\u1E5C': 'R',
  2168. '\u0156': 'R',
  2169. '\u1E5E': 'R',
  2170. '\u024C': 'R',
  2171. '\u2C64': 'R',
  2172. '\uA75A': 'R',
  2173. '\uA7A6': 'R',
  2174. '\uA782': 'R',
  2175. '\u24C8': 'S',
  2176. '\uFF33': 'S',
  2177. '\u1E9E': 'S',
  2178. '\u015A': 'S',
  2179. '\u1E64': 'S',
  2180. '\u015C': 'S',
  2181. '\u1E60': 'S',
  2182. '\u0160': 'S',
  2183. '\u1E66': 'S',
  2184. '\u1E62': 'S',
  2185. '\u1E68': 'S',
  2186. '\u0218': 'S',
  2187. '\u015E': 'S',
  2188. '\u2C7E': 'S',
  2189. '\uA7A8': 'S',
  2190. '\uA784': 'S',
  2191. '\u24C9': 'T',
  2192. '\uFF34': 'T',
  2193. '\u1E6A': 'T',
  2194. '\u0164': 'T',
  2195. '\u1E6C': 'T',
  2196. '\u021A': 'T',
  2197. '\u0162': 'T',
  2198. '\u1E70': 'T',
  2199. '\u1E6E': 'T',
  2200. '\u0166': 'T',
  2201. '\u01AC': 'T',
  2202. '\u01AE': 'T',
  2203. '\u023E': 'T',
  2204. '\uA786': 'T',
  2205. '\uA728': 'TZ',
  2206. '\u24CA': 'U',
  2207. '\uFF35': 'U',
  2208. '\u00D9': 'U',
  2209. '\u00DA': 'U',
  2210. '\u00DB': 'U',
  2211. '\u0168': 'U',
  2212. '\u1E78': 'U',
  2213. '\u016A': 'U',
  2214. '\u1E7A': 'U',
  2215. '\u016C': 'U',
  2216. '\u00DC': 'U',
  2217. '\u01DB': 'U',
  2218. '\u01D7': 'U',
  2219. '\u01D5': 'U',
  2220. '\u01D9': 'U',
  2221. '\u1EE6': 'U',
  2222. '\u016E': 'U',
  2223. '\u0170': 'U',
  2224. '\u01D3': 'U',
  2225. '\u0214': 'U',
  2226. '\u0216': 'U',
  2227. '\u01AF': 'U',
  2228. '\u1EEA': 'U',
  2229. '\u1EE8': 'U',
  2230. '\u1EEE': 'U',
  2231. '\u1EEC': 'U',
  2232. '\u1EF0': 'U',
  2233. '\u1EE4': 'U',
  2234. '\u1E72': 'U',
  2235. '\u0172': 'U',
  2236. '\u1E76': 'U',
  2237. '\u1E74': 'U',
  2238. '\u0244': 'U',
  2239. '\u24CB': 'V',
  2240. '\uFF36': 'V',
  2241. '\u1E7C': 'V',
  2242. '\u1E7E': 'V',
  2243. '\u01B2': 'V',
  2244. '\uA75E': 'V',
  2245. '\u0245': 'V',
  2246. '\uA760': 'VY',
  2247. '\u24CC': 'W',
  2248. '\uFF37': 'W',
  2249. '\u1E80': 'W',
  2250. '\u1E82': 'W',
  2251. '\u0174': 'W',
  2252. '\u1E86': 'W',
  2253. '\u1E84': 'W',
  2254. '\u1E88': 'W',
  2255. '\u2C72': 'W',
  2256. '\u24CD': 'X',
  2257. '\uFF38': 'X',
  2258. '\u1E8A': 'X',
  2259. '\u1E8C': 'X',
  2260. '\u24CE': 'Y',
  2261. '\uFF39': 'Y',
  2262. '\u1EF2': 'Y',
  2263. '\u00DD': 'Y',
  2264. '\u0176': 'Y',
  2265. '\u1EF8': 'Y',
  2266. '\u0232': 'Y',
  2267. '\u1E8E': 'Y',
  2268. '\u0178': 'Y',
  2269. '\u1EF6': 'Y',
  2270. '\u1EF4': 'Y',
  2271. '\u01B3': 'Y',
  2272. '\u024E': 'Y',
  2273. '\u1EFE': 'Y',
  2274. '\u24CF': 'Z',
  2275. '\uFF3A': 'Z',
  2276. '\u0179': 'Z',
  2277. '\u1E90': 'Z',
  2278. '\u017B': 'Z',
  2279. '\u017D': 'Z',
  2280. '\u1E92': 'Z',
  2281. '\u1E94': 'Z',
  2282. '\u01B5': 'Z',
  2283. '\u0224': 'Z',
  2284. '\u2C7F': 'Z',
  2285. '\u2C6B': 'Z',
  2286. '\uA762': 'Z',
  2287. '\u24D0': 'a',
  2288. '\uFF41': 'a',
  2289. '\u1E9A': 'a',
  2290. '\u00E0': 'a',
  2291. '\u00E1': 'a',
  2292. '\u00E2': 'a',
  2293. '\u1EA7': 'a',
  2294. '\u1EA5': 'a',
  2295. '\u1EAB': 'a',
  2296. '\u1EA9': 'a',
  2297. '\u00E3': 'a',
  2298. '\u0101': 'a',
  2299. '\u0103': 'a',
  2300. '\u1EB1': 'a',
  2301. '\u1EAF': 'a',
  2302. '\u1EB5': 'a',
  2303. '\u1EB3': 'a',
  2304. '\u0227': 'a',
  2305. '\u01E1': 'a',
  2306. '\u00E4': 'a',
  2307. '\u01DF': 'a',
  2308. '\u1EA3': 'a',
  2309. '\u00E5': 'a',
  2310. '\u01FB': 'a',
  2311. '\u01CE': 'a',
  2312. '\u0201': 'a',
  2313. '\u0203': 'a',
  2314. '\u1EA1': 'a',
  2315. '\u1EAD': 'a',
  2316. '\u1EB7': 'a',
  2317. '\u1E01': 'a',
  2318. '\u0105': 'a',
  2319. '\u2C65': 'a',
  2320. '\u0250': 'a',
  2321. '\uA733': 'aa',
  2322. '\u00E6': 'ae',
  2323. '\u01FD': 'ae',
  2324. '\u01E3': 'ae',
  2325. '\uA735': 'ao',
  2326. '\uA737': 'au',
  2327. '\uA739': 'av',
  2328. '\uA73B': 'av',
  2329. '\uA73D': 'ay',
  2330. '\u24D1': 'b',
  2331. '\uFF42': 'b',
  2332. '\u1E03': 'b',
  2333. '\u1E05': 'b',
  2334. '\u1E07': 'b',
  2335. '\u0180': 'b',
  2336. '\u0183': 'b',
  2337. '\u0253': 'b',
  2338. '\u24D2': 'c',
  2339. '\uFF43': 'c',
  2340. '\u0107': 'c',
  2341. '\u0109': 'c',
  2342. '\u010B': 'c',
  2343. '\u010D': 'c',
  2344. '\u00E7': 'c',
  2345. '\u1E09': 'c',
  2346. '\u0188': 'c',
  2347. '\u023C': 'c',
  2348. '\uA73F': 'c',
  2349. '\u2184': 'c',
  2350. '\u24D3': 'd',
  2351. '\uFF44': 'd',
  2352. '\u1E0B': 'd',
  2353. '\u010F': 'd',
  2354. '\u1E0D': 'd',
  2355. '\u1E11': 'd',
  2356. '\u1E13': 'd',
  2357. '\u1E0F': 'd',
  2358. '\u0111': 'd',
  2359. '\u018C': 'd',
  2360. '\u0256': 'd',
  2361. '\u0257': 'd',
  2362. '\uA77A': 'd',
  2363. '\u01F3': 'dz',
  2364. '\u01C6': 'dz',
  2365. '\u24D4': 'e',
  2366. '\uFF45': 'e',
  2367. '\u00E8': 'e',
  2368. '\u00E9': 'e',
  2369. '\u00EA': 'e',
  2370. '\u1EC1': 'e',
  2371. '\u1EBF': 'e',
  2372. '\u1EC5': 'e',
  2373. '\u1EC3': 'e',
  2374. '\u1EBD': 'e',
  2375. '\u0113': 'e',
  2376. '\u1E15': 'e',
  2377. '\u1E17': 'e',
  2378. '\u0115': 'e',
  2379. '\u0117': 'e',
  2380. '\u00EB': 'e',
  2381. '\u1EBB': 'e',
  2382. '\u011B': 'e',
  2383. '\u0205': 'e',
  2384. '\u0207': 'e',
  2385. '\u1EB9': 'e',
  2386. '\u1EC7': 'e',
  2387. '\u0229': 'e',
  2388. '\u1E1D': 'e',
  2389. '\u0119': 'e',
  2390. '\u1E19': 'e',
  2391. '\u1E1B': 'e',
  2392. '\u0247': 'e',
  2393. '\u025B': 'e',
  2394. '\u01DD': 'e',
  2395. '\u24D5': 'f',
  2396. '\uFF46': 'f',
  2397. '\u1E1F': 'f',
  2398. '\u0192': 'f',
  2399. '\uA77C': 'f',
  2400. '\u24D6': 'g',
  2401. '\uFF47': 'g',
  2402. '\u01F5': 'g',
  2403. '\u011D': 'g',
  2404. '\u1E21': 'g',
  2405. '\u011F': 'g',
  2406. '\u0121': 'g',
  2407. '\u01E7': 'g',
  2408. '\u0123': 'g',
  2409. '\u01E5': 'g',
  2410. '\u0260': 'g',
  2411. '\uA7A1': 'g',
  2412. '\u1D79': 'g',
  2413. '\uA77F': 'g',
  2414. '\u24D7': 'h',
  2415. '\uFF48': 'h',
  2416. '\u0125': 'h',
  2417. '\u1E23': 'h',
  2418. '\u1E27': 'h',
  2419. '\u021F': 'h',
  2420. '\u1E25': 'h',
  2421. '\u1E29': 'h',
  2422. '\u1E2B': 'h',
  2423. '\u1E96': 'h',
  2424. '\u0127': 'h',
  2425. '\u2C68': 'h',
  2426. '\u2C76': 'h',
  2427. '\u0265': 'h',
  2428. '\u0195': 'hv',
  2429. '\u24D8': 'i',
  2430. '\uFF49': 'i',
  2431. '\u00EC': 'i',
  2432. '\u00ED': 'i',
  2433. '\u00EE': 'i',
  2434. '\u0129': 'i',
  2435. '\u012B': 'i',
  2436. '\u012D': 'i',
  2437. '\u00EF': 'i',
  2438. '\u1E2F': 'i',
  2439. '\u1EC9': 'i',
  2440. '\u01D0': 'i',
  2441. '\u0209': 'i',
  2442. '\u020B': 'i',
  2443. '\u1ECB': 'i',
  2444. '\u012F': 'i',
  2445. '\u1E2D': 'i',
  2446. '\u0268': 'i',
  2447. '\u0131': 'i',
  2448. '\u24D9': 'j',
  2449. '\uFF4A': 'j',
  2450. '\u0135': 'j',
  2451. '\u01F0': 'j',
  2452. '\u0249': 'j',
  2453. '\u24DA': 'k',
  2454. '\uFF4B': 'k',
  2455. '\u1E31': 'k',
  2456. '\u01E9': 'k',
  2457. '\u1E33': 'k',
  2458. '\u0137': 'k',
  2459. '\u1E35': 'k',
  2460. '\u0199': 'k',
  2461. '\u2C6A': 'k',
  2462. '\uA741': 'k',
  2463. '\uA743': 'k',
  2464. '\uA745': 'k',
  2465. '\uA7A3': 'k',
  2466. '\u24DB': 'l',
  2467. '\uFF4C': 'l',
  2468. '\u0140': 'l',
  2469. '\u013A': 'l',
  2470. '\u013E': 'l',
  2471. '\u1E37': 'l',
  2472. '\u1E39': 'l',
  2473. '\u013C': 'l',
  2474. '\u1E3D': 'l',
  2475. '\u1E3B': 'l',
  2476. '\u017F': 'l',
  2477. '\u0142': 'l',
  2478. '\u019A': 'l',
  2479. '\u026B': 'l',
  2480. '\u2C61': 'l',
  2481. '\uA749': 'l',
  2482. '\uA781': 'l',
  2483. '\uA747': 'l',
  2484. '\u01C9': 'lj',
  2485. '\u24DC': 'm',
  2486. '\uFF4D': 'm',
  2487. '\u1E3F': 'm',
  2488. '\u1E41': 'm',
  2489. '\u1E43': 'm',
  2490. '\u0271': 'm',
  2491. '\u026F': 'm',
  2492. '\u24DD': 'n',
  2493. '\uFF4E': 'n',
  2494. '\u01F9': 'n',
  2495. '\u0144': 'n',
  2496. '\u00F1': 'n',
  2497. '\u1E45': 'n',
  2498. '\u0148': 'n',
  2499. '\u1E47': 'n',
  2500. '\u0146': 'n',
  2501. '\u1E4B': 'n',
  2502. '\u1E49': 'n',
  2503. '\u019E': 'n',
  2504. '\u0272': 'n',
  2505. '\u0149': 'n',
  2506. '\uA791': 'n',
  2507. '\uA7A5': 'n',
  2508. '\u01CC': 'nj',
  2509. '\u24DE': 'o',
  2510. '\uFF4F': 'o',
  2511. '\u00F2': 'o',
  2512. '\u00F3': 'o',
  2513. '\u00F4': 'o',
  2514. '\u1ED3': 'o',
  2515. '\u1ED1': 'o',
  2516. '\u1ED7': 'o',
  2517. '\u1ED5': 'o',
  2518. '\u00F5': 'o',
  2519. '\u1E4D': 'o',
  2520. '\u022D': 'o',
  2521. '\u1E4F': 'o',
  2522. '\u014D': 'o',
  2523. '\u1E51': 'o',
  2524. '\u1E53': 'o',
  2525. '\u014F': 'o',
  2526. '\u022F': 'o',
  2527. '\u0231': 'o',
  2528. '\u00F6': 'o',
  2529. '\u022B': 'o',
  2530. '\u1ECF': 'o',
  2531. '\u0151': 'o',
  2532. '\u01D2': 'o',
  2533. '\u020D': 'o',
  2534. '\u020F': 'o',
  2535. '\u01A1': 'o',
  2536. '\u1EDD': 'o',
  2537. '\u1EDB': 'o',
  2538. '\u1EE1': 'o',
  2539. '\u1EDF': 'o',
  2540. '\u1EE3': 'o',
  2541. '\u1ECD': 'o',
  2542. '\u1ED9': 'o',
  2543. '\u01EB': 'o',
  2544. '\u01ED': 'o',
  2545. '\u00F8': 'o',
  2546. '\u01FF': 'o',
  2547. '\u0254': 'o',
  2548. '\uA74B': 'o',
  2549. '\uA74D': 'o',
  2550. '\u0275': 'o',
  2551. '\u0153': 'oe',
  2552. '\u01A3': 'oi',
  2553. '\u0223': 'ou',
  2554. '\uA74F': 'oo',
  2555. '\u24DF': 'p',
  2556. '\uFF50': 'p',
  2557. '\u1E55': 'p',
  2558. '\u1E57': 'p',
  2559. '\u01A5': 'p',
  2560. '\u1D7D': 'p',
  2561. '\uA751': 'p',
  2562. '\uA753': 'p',
  2563. '\uA755': 'p',
  2564. '\u24E0': 'q',
  2565. '\uFF51': 'q',
  2566. '\u024B': 'q',
  2567. '\uA757': 'q',
  2568. '\uA759': 'q',
  2569. '\u24E1': 'r',
  2570. '\uFF52': 'r',
  2571. '\u0155': 'r',
  2572. '\u1E59': 'r',
  2573. '\u0159': 'r',
  2574. '\u0211': 'r',
  2575. '\u0213': 'r',
  2576. '\u1E5B': 'r',
  2577. '\u1E5D': 'r',
  2578. '\u0157': 'r',
  2579. '\u1E5F': 'r',
  2580. '\u024D': 'r',
  2581. '\u027D': 'r',
  2582. '\uA75B': 'r',
  2583. '\uA7A7': 'r',
  2584. '\uA783': 'r',
  2585. '\u24E2': 's',
  2586. '\uFF53': 's',
  2587. '\u00DF': 's',
  2588. '\u015B': 's',
  2589. '\u1E65': 's',
  2590. '\u015D': 's',
  2591. '\u1E61': 's',
  2592. '\u0161': 's',
  2593. '\u1E67': 's',
  2594. '\u1E63': 's',
  2595. '\u1E69': 's',
  2596. '\u0219': 's',
  2597. '\u015F': 's',
  2598. '\u023F': 's',
  2599. '\uA7A9': 's',
  2600. '\uA785': 's',
  2601. '\u1E9B': 's',
  2602. '\u24E3': 't',
  2603. '\uFF54': 't',
  2604. '\u1E6B': 't',
  2605. '\u1E97': 't',
  2606. '\u0165': 't',
  2607. '\u1E6D': 't',
  2608. '\u021B': 't',
  2609. '\u0163': 't',
  2610. '\u1E71': 't',
  2611. '\u1E6F': 't',
  2612. '\u0167': 't',
  2613. '\u01AD': 't',
  2614. '\u0288': 't',
  2615. '\u2C66': 't',
  2616. '\uA787': 't',
  2617. '\uA729': 'tz',
  2618. '\u24E4': 'u',
  2619. '\uFF55': 'u',
  2620. '\u00F9': 'u',
  2621. '\u00FA': 'u',
  2622. '\u00FB': 'u',
  2623. '\u0169': 'u',
  2624. '\u1E79': 'u',
  2625. '\u016B': 'u',
  2626. '\u1E7B': 'u',
  2627. '\u016D': 'u',
  2628. '\u00FC': 'u',
  2629. '\u01DC': 'u',
  2630. '\u01D8': 'u',
  2631. '\u01D6': 'u',
  2632. '\u01DA': 'u',
  2633. '\u1EE7': 'u',
  2634. '\u016F': 'u',
  2635. '\u0171': 'u',
  2636. '\u01D4': 'u',
  2637. '\u0215': 'u',
  2638. '\u0217': 'u',
  2639. '\u01B0': 'u',
  2640. '\u1EEB': 'u',
  2641. '\u1EE9': 'u',
  2642. '\u1EEF': 'u',
  2643. '\u1EED': 'u',
  2644. '\u1EF1': 'u',
  2645. '\u1EE5': 'u',
  2646. '\u1E73': 'u',
  2647. '\u0173': 'u',
  2648. '\u1E77': 'u',
  2649. '\u1E75': 'u',
  2650. '\u0289': 'u',
  2651. '\u24E5': 'v',
  2652. '\uFF56': 'v',
  2653. '\u1E7D': 'v',
  2654. '\u1E7F': 'v',
  2655. '\u028B': 'v',
  2656. '\uA75F': 'v',
  2657. '\u028C': 'v',
  2658. '\uA761': 'vy',
  2659. '\u24E6': 'w',
  2660. '\uFF57': 'w',
  2661. '\u1E81': 'w',
  2662. '\u1E83': 'w',
  2663. '\u0175': 'w',
  2664. '\u1E87': 'w',
  2665. '\u1E85': 'w',
  2666. '\u1E98': 'w',
  2667. '\u1E89': 'w',
  2668. '\u2C73': 'w',
  2669. '\u24E7': 'x',
  2670. '\uFF58': 'x',
  2671. '\u1E8B': 'x',
  2672. '\u1E8D': 'x',
  2673. '\u24E8': 'y',
  2674. '\uFF59': 'y',
  2675. '\u1EF3': 'y',
  2676. '\u00FD': 'y',
  2677. '\u0177': 'y',
  2678. '\u1EF9': 'y',
  2679. '\u0233': 'y',
  2680. '\u1E8F': 'y',
  2681. '\u00FF': 'y',
  2682. '\u1EF7': 'y',
  2683. '\u1E99': 'y',
  2684. '\u1EF5': 'y',
  2685. '\u01B4': 'y',
  2686. '\u024F': 'y',
  2687. '\u1EFF': 'y',
  2688. '\u24E9': 'z',
  2689. '\uFF5A': 'z',
  2690. '\u017A': 'z',
  2691. '\u1E91': 'z',
  2692. '\u017C': 'z',
  2693. '\u017E': 'z',
  2694. '\u1E93': 'z',
  2695. '\u1E95': 'z',
  2696. '\u01B6': 'z',
  2697. '\u0225': 'z',
  2698. '\u0240': 'z',
  2699. '\u2C6C': 'z',
  2700. '\uA763': 'z',
  2701. '\u0386': '\u0391',
  2702. '\u0388': '\u0395',
  2703. '\u0389': '\u0397',
  2704. '\u038A': '\u0399',
  2705. '\u03AA': '\u0399',
  2706. '\u038C': '\u039F',
  2707. '\u038E': '\u03A5',
  2708. '\u03AB': '\u03A5',
  2709. '\u038F': '\u03A9',
  2710. '\u03AC': '\u03B1',
  2711. '\u03AD': '\u03B5',
  2712. '\u03AE': '\u03B7',
  2713. '\u03AF': '\u03B9',
  2714. '\u03CA': '\u03B9',
  2715. '\u0390': '\u03B9',
  2716. '\u03CC': '\u03BF',
  2717. '\u03CD': '\u03C5',
  2718. '\u03CB': '\u03C5',
  2719. '\u03B0': '\u03C5',
  2720. '\u03CE': '\u03C9',
  2721. '\u03C2': '\u03C3',
  2722. '\u2019': '\''
  2723. };
  2724. return diacritics;
  2725. });
  2726. S2.define('select2/data/base',[
  2727. '../utils'
  2728. ], function (Utils) {
  2729. function BaseAdapter ($element, options) {
  2730. BaseAdapter.__super__.constructor.call(this);
  2731. }
  2732. Utils.Extend(BaseAdapter, Utils.Observable);
  2733. BaseAdapter.prototype.current = function (callback) {
  2734. throw new Error('The `current` method must be defined in child classes.');
  2735. };
  2736. BaseAdapter.prototype.query = function (params, callback) {
  2737. throw new Error('The `query` method must be defined in child classes.');
  2738. };
  2739. BaseAdapter.prototype.bind = function (container, $container) {
  2740. // Can be implemented in subclasses
  2741. };
  2742. BaseAdapter.prototype.destroy = function () {
  2743. // Can be implemented in subclasses
  2744. };
  2745. BaseAdapter.prototype.generateResultId = function (container, data) {
  2746. var id = container.id + '-result-';
  2747. id += Utils.generateChars(4);
  2748. if (data.id != null) {
  2749. id += '-' + data.id.toString();
  2750. } else {
  2751. id += '-' + Utils.generateChars(4);
  2752. }
  2753. return id;
  2754. };
  2755. return BaseAdapter;
  2756. });
  2757. S2.define('select2/data/select',[
  2758. './base',
  2759. '../utils',
  2760. 'jquery'
  2761. ], function (BaseAdapter, Utils, $) {
  2762. function SelectAdapter ($element, options) {
  2763. this.$element = $element;
  2764. this.options = options;
  2765. SelectAdapter.__super__.constructor.call(this);
  2766. }
  2767. Utils.Extend(SelectAdapter, BaseAdapter);
  2768. SelectAdapter.prototype.current = function (callback) {
  2769. var self = this;
  2770. var data = Array.prototype.map.call(
  2771. this.$element[0].querySelectorAll(':checked'),
  2772. function (selectedElement) {
  2773. return self.item($(selectedElement));
  2774. }
  2775. );
  2776. callback(data);
  2777. };
  2778. SelectAdapter.prototype.select = function (data) {
  2779. var self = this;
  2780. data.selected = true;
  2781. // If data.element is a DOM node, use it instead
  2782. if (
  2783. data.element != null && data.element.tagName.toLowerCase() === 'option'
  2784. ) {
  2785. data.element.selected = true;
  2786. this.$element.trigger('input').trigger('change');
  2787. return;
  2788. }
  2789. if (this.$element.prop('multiple')) {
  2790. this.current(function (currentData) {
  2791. var val = [];
  2792. data = [data];
  2793. data.push.apply(data, currentData);
  2794. for (var d = 0; d < data.length; d++) {
  2795. var id = data[d].id;
  2796. if (val.indexOf(id) === -1) {
  2797. val.push(id);
  2798. }
  2799. }
  2800. self.$element.val(val);
  2801. self.$element.trigger('input').trigger('change');
  2802. });
  2803. } else {
  2804. var val = data.id;
  2805. this.$element.val(val);
  2806. this.$element.trigger('input').trigger('change');
  2807. }
  2808. };
  2809. SelectAdapter.prototype.unselect = function (data) {
  2810. var self = this;
  2811. if (!this.$element.prop('multiple')) {
  2812. return;
  2813. }
  2814. data.selected = false;
  2815. if (
  2816. data.element != null &&
  2817. data.element.tagName.toLowerCase() === 'option'
  2818. ) {
  2819. data.element.selected = false;
  2820. this.$element.trigger('input').trigger('change');
  2821. return;
  2822. }
  2823. this.current(function (currentData) {
  2824. var val = [];
  2825. for (var d = 0; d < currentData.length; d++) {
  2826. var id = currentData[d].id;
  2827. if (id !== data.id && val.indexOf(id) === -1) {
  2828. val.push(id);
  2829. }
  2830. }
  2831. self.$element.val(val);
  2832. self.$element.trigger('input').trigger('change');
  2833. });
  2834. };
  2835. SelectAdapter.prototype.bind = function (container, $container) {
  2836. var self = this;
  2837. this.container = container;
  2838. container.on('select', function (params) {
  2839. self.select(params.data);
  2840. });
  2841. container.on('unselect', function (params) {
  2842. self.unselect(params.data);
  2843. });
  2844. };
  2845. SelectAdapter.prototype.destroy = function () {
  2846. // Remove anything added to child elements
  2847. this.$element.find('*').each(function () {
  2848. // Remove any custom data set by Select2
  2849. Utils.RemoveData(this);
  2850. });
  2851. };
  2852. SelectAdapter.prototype.query = function (params, callback) {
  2853. var data = [];
  2854. var self = this;
  2855. var $options = this.$element.children();
  2856. $options.each(function () {
  2857. if (
  2858. this.tagName.toLowerCase() !== 'option' &&
  2859. this.tagName.toLowerCase() !== 'optgroup'
  2860. ) {
  2861. return;
  2862. }
  2863. var $option = $(this);
  2864. var option = self.item($option);
  2865. var matches = self.matches(params, option);
  2866. if (matches !== null) {
  2867. data.push(matches);
  2868. }
  2869. });
  2870. callback({
  2871. results: data
  2872. });
  2873. };
  2874. SelectAdapter.prototype.addOptions = function ($options) {
  2875. this.$element.append($options);
  2876. };
  2877. SelectAdapter.prototype.option = function (data) {
  2878. var option;
  2879. if (data.children) {
  2880. option = document.createElement('optgroup');
  2881. option.label = data.text;
  2882. } else {
  2883. option = document.createElement('option');
  2884. if (option.textContent !== undefined) {
  2885. option.textContent = data.text;
  2886. } else {
  2887. option.innerText = data.text;
  2888. }
  2889. }
  2890. if (data.id !== undefined) {
  2891. option.value = data.id;
  2892. }
  2893. if (data.disabled) {
  2894. option.disabled = true;
  2895. }
  2896. if (data.selected) {
  2897. option.selected = true;
  2898. }
  2899. if (data.title) {
  2900. option.title = data.title;
  2901. }
  2902. var normalizedData = this._normalizeItem(data);
  2903. normalizedData.element = option;
  2904. // Override the option's data with the combined data
  2905. Utils.StoreData(option, 'data', normalizedData);
  2906. return $(option);
  2907. };
  2908. SelectAdapter.prototype.item = function ($option) {
  2909. var data = {};
  2910. data = Utils.GetData($option[0], 'data');
  2911. if (data != null) {
  2912. return data;
  2913. }
  2914. var option = $option[0];
  2915. if (option.tagName.toLowerCase() === 'option') {
  2916. data = {
  2917. id: $option.val(),
  2918. text: $option.text(),
  2919. disabled: $option.prop('disabled'),
  2920. selected: $option.prop('selected'),
  2921. title: $option.prop('title')
  2922. };
  2923. } else if (option.tagName.toLowerCase() === 'optgroup') {
  2924. data = {
  2925. text: $option.prop('label'),
  2926. children: [],
  2927. title: $option.prop('title')
  2928. };
  2929. var $children = $option.children('option');
  2930. var children = [];
  2931. for (var c = 0; c < $children.length; c++) {
  2932. var $child = $($children[c]);
  2933. var child = this.item($child);
  2934. children.push(child);
  2935. }
  2936. data.children = children;
  2937. }
  2938. data = this._normalizeItem(data);
  2939. data.element = $option[0];
  2940. Utils.StoreData($option[0], 'data', data);
  2941. return data;
  2942. };
  2943. SelectAdapter.prototype._normalizeItem = function (item) {
  2944. if (item !== Object(item)) {
  2945. item = {
  2946. id: item,
  2947. text: item
  2948. };
  2949. }
  2950. item = $.extend({}, {
  2951. text: ''
  2952. }, item);
  2953. var defaults = {
  2954. selected: false,
  2955. disabled: false
  2956. };
  2957. if (item.id != null) {
  2958. item.id = item.id.toString();
  2959. }
  2960. if (item.text != null) {
  2961. item.text = item.text.toString();
  2962. }
  2963. if (item._resultId == null && item.id && this.container != null) {
  2964. item._resultId = this.generateResultId(this.container, item);
  2965. }
  2966. return $.extend({}, defaults, item);
  2967. };
  2968. SelectAdapter.prototype.matches = function (params, data) {
  2969. var matcher = this.options.get('matcher');
  2970. return matcher(params, data);
  2971. };
  2972. return SelectAdapter;
  2973. });
  2974. S2.define('select2/data/array',[
  2975. './select',
  2976. '../utils',
  2977. 'jquery'
  2978. ], function (SelectAdapter, Utils, $) {
  2979. function ArrayAdapter ($element, options) {
  2980. this._dataToConvert = options.get('data') || [];
  2981. ArrayAdapter.__super__.constructor.call(this, $element, options);
  2982. }
  2983. Utils.Extend(ArrayAdapter, SelectAdapter);
  2984. ArrayAdapter.prototype.bind = function (container, $container) {
  2985. ArrayAdapter.__super__.bind.call(this, container, $container);
  2986. this.addOptions(this.convertToOptions(this._dataToConvert));
  2987. };
  2988. ArrayAdapter.prototype.select = function (data) {
  2989. var $option = this.$element.find('option').filter(function (i, elm) {
  2990. return elm.value == data.id.toString();
  2991. });
  2992. if ($option.length === 0) {
  2993. $option = this.option(data);
  2994. this.addOptions($option);
  2995. }
  2996. ArrayAdapter.__super__.select.call(this, data);
  2997. };
  2998. ArrayAdapter.prototype.convertToOptions = function (data) {
  2999. var self = this;
  3000. var $existing = this.$element.find('option');
  3001. var existingIds = $existing.map(function () {
  3002. return self.item($(this)).id;
  3003. }).get();
  3004. var $options = [];
  3005. // Filter out all items except for the one passed in the argument
  3006. function onlyItem (item) {
  3007. return function () {
  3008. return $(this).val() == item.id;
  3009. };
  3010. }
  3011. for (var d = 0; d < data.length; d++) {
  3012. var item = this._normalizeItem(data[d]);
  3013. // Skip items which were pre-loaded, only merge the data
  3014. if (existingIds.indexOf(item.id) >= 0) {
  3015. var $existingOption = $existing.filter(onlyItem(item));
  3016. var existingData = this.item($existingOption);
  3017. var newData = $.extend(true, {}, item, existingData);
  3018. var $newOption = this.option(newData);
  3019. $existingOption.replaceWith($newOption);
  3020. continue;
  3021. }
  3022. var $option = this.option(item);
  3023. if (item.children) {
  3024. var $children = this.convertToOptions(item.children);
  3025. $option.append($children);
  3026. }
  3027. $options.push($option);
  3028. }
  3029. return $options;
  3030. };
  3031. return ArrayAdapter;
  3032. });
  3033. S2.define('select2/data/ajax',[
  3034. './array',
  3035. '../utils',
  3036. 'jquery'
  3037. ], function (ArrayAdapter, Utils, $) {
  3038. function AjaxAdapter ($element, options) {
  3039. this.ajaxOptions = this._applyDefaults(options.get('ajax'));
  3040. if (this.ajaxOptions.processResults != null) {
  3041. this.processResults = this.ajaxOptions.processResults;
  3042. }
  3043. AjaxAdapter.__super__.constructor.call(this, $element, options);
  3044. }
  3045. Utils.Extend(AjaxAdapter, ArrayAdapter);
  3046. AjaxAdapter.prototype._applyDefaults = function (options) {
  3047. var defaults = {
  3048. data: function (params) {
  3049. return $.extend({}, params, {
  3050. q: params.term
  3051. });
  3052. },
  3053. transport: function (params, success, failure) {
  3054. var $request = $.ajax(params);
  3055. $request.then(success);
  3056. $request.fail(failure);
  3057. return $request;
  3058. }
  3059. };
  3060. return $.extend({}, defaults, options, true);
  3061. };
  3062. AjaxAdapter.prototype.processResults = function (results) {
  3063. return results;
  3064. };
  3065. AjaxAdapter.prototype.query = function (params, callback) {
  3066. var matches = [];
  3067. var self = this;
  3068. if (this._request != null) {
  3069. // JSONP requests cannot always be aborted
  3070. if (typeof this._request.abort === 'function') {
  3071. this._request.abort();
  3072. }
  3073. this._request = null;
  3074. }
  3075. var options = $.extend({
  3076. type: 'GET'
  3077. }, this.ajaxOptions);
  3078. if (typeof options.url === 'function') {
  3079. options.url = options.url.call(this.$element, params);
  3080. }
  3081. if (typeof options.data === 'function') {
  3082. options.data = options.data.call(this.$element, params);
  3083. }
  3084. function request () {
  3085. var $request = options.transport(options, function (data) {
  3086. var results = self.processResults(data, params);
  3087. if (self.options.get('debug') && window.console && console.error) {
  3088. // Check to make sure that the response included a `results` key.
  3089. if (!results || !results.results || !Array.isArray(results.results)) {
  3090. console.error(
  3091. 'Select2: The AJAX results did not return an array in the ' +
  3092. '`results` key of the response.'
  3093. );
  3094. }
  3095. }
  3096. callback(results);
  3097. }, function () {
  3098. // Attempt to detect if a request was aborted
  3099. // Only works if the transport exposes a status property
  3100. if ('status' in $request &&
  3101. ($request.status === 0 || $request.status === '0')) {
  3102. return;
  3103. }
  3104. self.trigger('results:message', {
  3105. message: 'errorLoading'
  3106. });
  3107. });
  3108. self._request = $request;
  3109. }
  3110. if (this.ajaxOptions.delay && params.term != null) {
  3111. if (this._queryTimeout) {
  3112. window.clearTimeout(this._queryTimeout);
  3113. }
  3114. this._queryTimeout = window.setTimeout(request, this.ajaxOptions.delay);
  3115. } else {
  3116. request();
  3117. }
  3118. };
  3119. return AjaxAdapter;
  3120. });
  3121. S2.define('select2/data/tags',[
  3122. 'jquery'
  3123. ], function ($) {
  3124. function Tags (decorated, $element, options) {
  3125. var tags = options.get('tags');
  3126. var createTag = options.get('createTag');
  3127. if (createTag !== undefined) {
  3128. this.createTag = createTag;
  3129. }
  3130. var insertTag = options.get('insertTag');
  3131. if (insertTag !== undefined) {
  3132. this.insertTag = insertTag;
  3133. }
  3134. decorated.call(this, $element, options);
  3135. if (Array.isArray(tags)) {
  3136. for (var t = 0; t < tags.length; t++) {
  3137. var tag = tags[t];
  3138. var item = this._normalizeItem(tag);
  3139. var $option = this.option(item);
  3140. this.$element.append($option);
  3141. }
  3142. }
  3143. }
  3144. Tags.prototype.query = function (decorated, params, callback) {
  3145. var self = this;
  3146. this._removeOldTags();
  3147. if (params.term == null || params.page != null) {
  3148. decorated.call(this, params, callback);
  3149. return;
  3150. }
  3151. function wrapper (obj, child) {
  3152. var data = obj.results;
  3153. for (var i = 0; i < data.length; i++) {
  3154. var option = data[i];
  3155. var checkChildren = (
  3156. option.children != null &&
  3157. !wrapper({
  3158. results: option.children
  3159. }, true)
  3160. );
  3161. var optionText = (option.text || '').toUpperCase();
  3162. var paramsTerm = (params.term || '').toUpperCase();
  3163. var checkText = optionText === paramsTerm;
  3164. if (checkText || checkChildren) {
  3165. if (child) {
  3166. return false;
  3167. }
  3168. obj.data = data;
  3169. callback(obj);
  3170. return;
  3171. }
  3172. }
  3173. if (child) {
  3174. return true;
  3175. }
  3176. var tag = self.createTag(params);
  3177. if (tag != null) {
  3178. var $option = self.option(tag);
  3179. $option.attr('data-select2-tag', 'true');
  3180. self.addOptions([$option]);
  3181. self.insertTag(data, tag);
  3182. }
  3183. obj.results = data;
  3184. callback(obj);
  3185. }
  3186. decorated.call(this, params, wrapper);
  3187. };
  3188. Tags.prototype.createTag = function (decorated, params) {
  3189. if (params.term == null) {
  3190. return null;
  3191. }
  3192. var term = params.term.trim();
  3193. if (term === '') {
  3194. return null;
  3195. }
  3196. return {
  3197. id: term,
  3198. text: term
  3199. };
  3200. };
  3201. Tags.prototype.insertTag = function (_, data, tag) {
  3202. data.unshift(tag);
  3203. };
  3204. Tags.prototype._removeOldTags = function (_) {
  3205. var $options = this.$element.find('option[data-select2-tag]');
  3206. $options.each(function () {
  3207. if (this.selected) {
  3208. return;
  3209. }
  3210. $(this).remove();
  3211. });
  3212. };
  3213. return Tags;
  3214. });
  3215. S2.define('select2/data/tokenizer',[
  3216. 'jquery'
  3217. ], function ($) {
  3218. function Tokenizer (decorated, $element, options) {
  3219. var tokenizer = options.get('tokenizer');
  3220. if (tokenizer !== undefined) {
  3221. this.tokenizer = tokenizer;
  3222. }
  3223. decorated.call(this, $element, options);
  3224. }
  3225. Tokenizer.prototype.bind = function (decorated, container, $container) {
  3226. decorated.call(this, container, $container);
  3227. this.$search = container.dropdown.$search || container.selection.$search ||
  3228. $container.find('.select2-search__field');
  3229. };
  3230. Tokenizer.prototype.query = function (decorated, params, callback) {
  3231. var self = this;
  3232. function createAndSelect (data) {
  3233. // Normalize the data object so we can use it for checks
  3234. var item = self._normalizeItem(data);
  3235. // Check if the data object already exists as a tag
  3236. // Select it if it doesn't
  3237. var $existingOptions = self.$element.find('option').filter(function () {
  3238. return $(this).val() === item.id;
  3239. });
  3240. // If an existing option wasn't found for it, create the option
  3241. if (!$existingOptions.length) {
  3242. var $option = self.option(item);
  3243. $option.attr('data-select2-tag', true);
  3244. self._removeOldTags();
  3245. self.addOptions([$option]);
  3246. }
  3247. // Select the item, now that we know there is an option for it
  3248. select(item);
  3249. }
  3250. function select (data) {
  3251. self.trigger('select', {
  3252. data: data
  3253. });
  3254. }
  3255. params.term = params.term || '';
  3256. var tokenData = this.tokenizer(params, this.options, createAndSelect);
  3257. if (tokenData.term !== params.term) {
  3258. // Replace the search term if we have the search box
  3259. if (this.$search.length) {
  3260. this.$search.val(tokenData.term);
  3261. this.$search.trigger('focus');
  3262. }
  3263. params.term = tokenData.term;
  3264. }
  3265. decorated.call(this, params, callback);
  3266. };
  3267. Tokenizer.prototype.tokenizer = function (_, params, options, callback) {
  3268. var separators = options.get('tokenSeparators') || [];
  3269. var term = params.term;
  3270. var i = 0;
  3271. var createTag = this.createTag || function (params) {
  3272. return {
  3273. id: params.term,
  3274. text: params.term
  3275. };
  3276. };
  3277. while (i < term.length) {
  3278. var termChar = term[i];
  3279. if (separators.indexOf(termChar) === -1) {
  3280. i++;
  3281. continue;
  3282. }
  3283. var part = term.substr(0, i);
  3284. var partParams = $.extend({}, params, {
  3285. term: part
  3286. });
  3287. var data = createTag(partParams);
  3288. if (data == null) {
  3289. i++;
  3290. continue;
  3291. }
  3292. callback(data);
  3293. // Reset the term to not include the tokenized portion
  3294. term = term.substr(i + 1) || '';
  3295. i = 0;
  3296. }
  3297. return {
  3298. term: term
  3299. };
  3300. };
  3301. return Tokenizer;
  3302. });
  3303. S2.define('select2/data/minimumInputLength',[
  3304. ], function () {
  3305. function MinimumInputLength (decorated, $e, options) {
  3306. this.minimumInputLength = options.get('minimumInputLength');
  3307. decorated.call(this, $e, options);
  3308. }
  3309. MinimumInputLength.prototype.query = function (decorated, params, callback) {
  3310. params.term = params.term || '';
  3311. if (params.term.length < this.minimumInputLength) {
  3312. this.trigger('results:message', {
  3313. message: 'inputTooShort',
  3314. args: {
  3315. minimum: this.minimumInputLength,
  3316. input: params.term,
  3317. params: params
  3318. }
  3319. });
  3320. return;
  3321. }
  3322. decorated.call(this, params, callback);
  3323. };
  3324. return MinimumInputLength;
  3325. });
  3326. S2.define('select2/data/maximumInputLength',[
  3327. ], function () {
  3328. function MaximumInputLength (decorated, $e, options) {
  3329. this.maximumInputLength = options.get('maximumInputLength');
  3330. decorated.call(this, $e, options);
  3331. }
  3332. MaximumInputLength.prototype.query = function (decorated, params, callback) {
  3333. params.term = params.term || '';
  3334. if (this.maximumInputLength > 0 &&
  3335. params.term.length > this.maximumInputLength) {
  3336. this.trigger('results:message', {
  3337. message: 'inputTooLong',
  3338. args: {
  3339. maximum: this.maximumInputLength,
  3340. input: params.term,
  3341. params: params
  3342. }
  3343. });
  3344. return;
  3345. }
  3346. decorated.call(this, params, callback);
  3347. };
  3348. return MaximumInputLength;
  3349. });
  3350. S2.define('select2/data/maximumSelectionLength',[
  3351. ], function (){
  3352. function MaximumSelectionLength (decorated, $e, options) {
  3353. this.maximumSelectionLength = options.get('maximumSelectionLength');
  3354. decorated.call(this, $e, options);
  3355. }
  3356. MaximumSelectionLength.prototype.bind =
  3357. function (decorated, container, $container) {
  3358. var self = this;
  3359. decorated.call(this, container, $container);
  3360. container.on('select', function () {
  3361. self._checkIfMaximumSelected();
  3362. });
  3363. };
  3364. MaximumSelectionLength.prototype.query =
  3365. function (decorated, params, callback) {
  3366. var self = this;
  3367. this._checkIfMaximumSelected(function () {
  3368. decorated.call(self, params, callback);
  3369. });
  3370. };
  3371. MaximumSelectionLength.prototype._checkIfMaximumSelected =
  3372. function (_, successCallback) {
  3373. var self = this;
  3374. this.current(function (currentData) {
  3375. var count = currentData != null ? currentData.length : 0;
  3376. if (self.maximumSelectionLength > 0 &&
  3377. count >= self.maximumSelectionLength) {
  3378. self.trigger('results:message', {
  3379. message: 'maximumSelected',
  3380. args: {
  3381. maximum: self.maximumSelectionLength
  3382. }
  3383. });
  3384. return;
  3385. }
  3386. if (successCallback) {
  3387. successCallback();
  3388. }
  3389. });
  3390. };
  3391. return MaximumSelectionLength;
  3392. });
  3393. S2.define('select2/dropdown',[
  3394. 'jquery',
  3395. './utils'
  3396. ], function ($, Utils) {
  3397. function Dropdown ($element, options) {
  3398. this.$element = $element;
  3399. this.options = options;
  3400. Dropdown.__super__.constructor.call(this);
  3401. }
  3402. Utils.Extend(Dropdown, Utils.Observable);
  3403. Dropdown.prototype.render = function () {
  3404. var $dropdown = $(
  3405. '<span class="select2-dropdown">' +
  3406. '<span class="select2-results"></span>' +
  3407. '</span>'
  3408. );
  3409. $dropdown.attr('dir', this.options.get('dir'));
  3410. this.$dropdown = $dropdown;
  3411. return $dropdown;
  3412. };
  3413. Dropdown.prototype.bind = function () {
  3414. // Should be implemented in subclasses
  3415. };
  3416. Dropdown.prototype.position = function ($dropdown, $container) {
  3417. // Should be implemented in subclasses
  3418. };
  3419. Dropdown.prototype.destroy = function () {
  3420. // Remove the dropdown from the DOM
  3421. this.$dropdown.remove();
  3422. };
  3423. return Dropdown;
  3424. });
  3425. S2.define('select2/dropdown/search',[
  3426. 'jquery'
  3427. ], function ($) {
  3428. function Search () { }
  3429. Search.prototype.render = function (decorated) {
  3430. var $rendered = decorated.call(this);
  3431. var searchLabel = this.options.get('translations').get('search');
  3432. var $search = $(
  3433. '<span class="select2-search select2-search--dropdown">' +
  3434. '<input class="select2-search__field" type="search" tabindex="-1"' +
  3435. ' autocorrect="off" autocapitalize="none"' +
  3436. ' spellcheck="false" role="searchbox" aria-autocomplete="list" />' +
  3437. '</span>'
  3438. );
  3439. this.$searchContainer = $search;
  3440. this.$search = $search.find('input');
  3441. this.$search.prop('autocomplete', this.options.get('autocomplete'));
  3442. this.$search.attr('aria-label', searchLabel());
  3443. $rendered.prepend($search);
  3444. return $rendered;
  3445. };
  3446. Search.prototype.bind = function (decorated, container, $container) {
  3447. var self = this;
  3448. var resultsId = container.id + '-results';
  3449. decorated.call(this, container, $container);
  3450. this.$search.on('keydown', function (evt) {
  3451. self.trigger('keypress', evt);
  3452. self._keyUpPrevented = evt.isDefaultPrevented();
  3453. });
  3454. // Workaround for browsers which do not support the `input` event
  3455. // This will prevent double-triggering of events for browsers which support
  3456. // both the `keyup` and `input` events.
  3457. this.$search.on('input', function (evt) {
  3458. // Unbind the duplicated `keyup` event
  3459. $(this).off('keyup');
  3460. });
  3461. this.$search.on('keyup input', function (evt) {
  3462. self.handleSearch(evt);
  3463. });
  3464. container.on('open', function () {
  3465. self.$search.attr('tabindex', 0);
  3466. self.$search.attr('aria-controls', resultsId);
  3467. self.$search.trigger('focus');
  3468. window.setTimeout(function () {
  3469. self.$search.trigger('focus');
  3470. }, 0);
  3471. });
  3472. container.on('close', function () {
  3473. self.$search.attr('tabindex', -1);
  3474. self.$search.removeAttr('aria-controls');
  3475. self.$search.removeAttr('aria-activedescendant');
  3476. self.$search.val('');
  3477. self.$search.trigger('blur');
  3478. });
  3479. container.on('focus', function () {
  3480. if (!container.isOpen()) {
  3481. self.$search.trigger('focus');
  3482. }
  3483. });
  3484. container.on('results:all', function (params) {
  3485. if (params.query.term == null || params.query.term === '') {
  3486. var showSearch = self.showSearch(params);
  3487. if (showSearch) {
  3488. self.$searchContainer[0].classList.remove('select2-search--hide');
  3489. } else {
  3490. self.$searchContainer[0].classList.add('select2-search--hide');
  3491. }
  3492. }
  3493. });
  3494. container.on('results:focus', function (params) {
  3495. if (params.data._resultId) {
  3496. self.$search.attr('aria-activedescendant', params.data._resultId);
  3497. } else {
  3498. self.$search.removeAttr('aria-activedescendant');
  3499. }
  3500. });
  3501. };
  3502. Search.prototype.handleSearch = function (evt) {
  3503. if (!this._keyUpPrevented) {
  3504. var input = this.$search.val();
  3505. this.trigger('query', {
  3506. term: input
  3507. });
  3508. }
  3509. this._keyUpPrevented = false;
  3510. };
  3511. Search.prototype.showSearch = function (_, params) {
  3512. return true;
  3513. };
  3514. return Search;
  3515. });
  3516. S2.define('select2/dropdown/hidePlaceholder',[
  3517. ], function () {
  3518. function HidePlaceholder (decorated, $element, options, dataAdapter) {
  3519. this.placeholder = this.normalizePlaceholder(options.get('placeholder'));
  3520. decorated.call(this, $element, options, dataAdapter);
  3521. }
  3522. HidePlaceholder.prototype.append = function (decorated, data) {
  3523. data.results = this.removePlaceholder(data.results);
  3524. decorated.call(this, data);
  3525. };
  3526. HidePlaceholder.prototype.normalizePlaceholder = function (_, placeholder) {
  3527. if (typeof placeholder === 'string') {
  3528. placeholder = {
  3529. id: '',
  3530. text: placeholder
  3531. };
  3532. }
  3533. return placeholder;
  3534. };
  3535. HidePlaceholder.prototype.removePlaceholder = function (_, data) {
  3536. var modifiedData = data.slice(0);
  3537. for (var d = data.length - 1; d >= 0; d--) {
  3538. var item = data[d];
  3539. if (this.placeholder.id === item.id) {
  3540. modifiedData.splice(d, 1);
  3541. }
  3542. }
  3543. return modifiedData;
  3544. };
  3545. return HidePlaceholder;
  3546. });
  3547. S2.define('select2/dropdown/infiniteScroll',[
  3548. 'jquery'
  3549. ], function ($) {
  3550. function InfiniteScroll (decorated, $element, options, dataAdapter) {
  3551. this.lastParams = {};
  3552. decorated.call(this, $element, options, dataAdapter);
  3553. this.$loadingMore = this.createLoadingMore();
  3554. this.loading = false;
  3555. }
  3556. InfiniteScroll.prototype.append = function (decorated, data) {
  3557. this.$loadingMore.remove();
  3558. this.loading = false;
  3559. decorated.call(this, data);
  3560. if (this.showLoadingMore(data)) {
  3561. this.$results.append(this.$loadingMore);
  3562. this.loadMoreIfNeeded();
  3563. }
  3564. };
  3565. InfiniteScroll.prototype.bind = function (decorated, container, $container) {
  3566. var self = this;
  3567. decorated.call(this, container, $container);
  3568. container.on('query', function (params) {
  3569. self.lastParams = params;
  3570. self.loading = true;
  3571. });
  3572. container.on('query:append', function (params) {
  3573. self.lastParams = params;
  3574. self.loading = true;
  3575. });
  3576. this.$results.on('scroll', this.loadMoreIfNeeded.bind(this));
  3577. };
  3578. InfiniteScroll.prototype.loadMoreIfNeeded = function () {
  3579. var isLoadMoreVisible = $.contains(
  3580. document.documentElement,
  3581. this.$loadingMore[0]
  3582. );
  3583. if (this.loading || !isLoadMoreVisible) {
  3584. return;
  3585. }
  3586. var currentOffset = this.$results.offset().top +
  3587. this.$results.outerHeight(false);
  3588. var loadingMoreOffset = this.$loadingMore.offset().top +
  3589. this.$loadingMore.outerHeight(false);
  3590. if (currentOffset + 50 >= loadingMoreOffset) {
  3591. this.loadMore();
  3592. }
  3593. };
  3594. InfiniteScroll.prototype.loadMore = function () {
  3595. this.loading = true;
  3596. var params = $.extend({}, {page: 1}, this.lastParams);
  3597. params.page++;
  3598. this.trigger('query:append', params);
  3599. };
  3600. InfiniteScroll.prototype.showLoadingMore = function (_, data) {
  3601. return data.pagination && data.pagination.more;
  3602. };
  3603. InfiniteScroll.prototype.createLoadingMore = function () {
  3604. var $option = $(
  3605. '<li ' +
  3606. 'class="select2-results__option select2-results__option--load-more"' +
  3607. 'role="option" aria-disabled="true"></li>'
  3608. );
  3609. var message = this.options.get('translations').get('loadingMore');
  3610. $option.html(message(this.lastParams));
  3611. return $option;
  3612. };
  3613. return InfiniteScroll;
  3614. });
  3615. S2.define('select2/dropdown/attachBody',[
  3616. 'jquery',
  3617. '../utils'
  3618. ], function ($, Utils) {
  3619. function AttachBody (decorated, $element, options) {
  3620. this.$dropdownParent = $(options.get('dropdownParent') || document.body);
  3621. decorated.call(this, $element, options);
  3622. }
  3623. AttachBody.prototype.bind = function (decorated, container, $container) {
  3624. var self = this;
  3625. decorated.call(this, container, $container);
  3626. container.on('open', function () {
  3627. self._showDropdown();
  3628. self._attachPositioningHandler(container);
  3629. // Must bind after the results handlers to ensure correct sizing
  3630. self._bindContainerResultHandlers(container);
  3631. });
  3632. container.on('close', function () {
  3633. self._hideDropdown();
  3634. self._detachPositioningHandler(container);
  3635. });
  3636. this.$dropdownContainer.on('mousedown', function (evt) {
  3637. evt.stopPropagation();
  3638. });
  3639. };
  3640. AttachBody.prototype.destroy = function (decorated) {
  3641. decorated.call(this);
  3642. this.$dropdownContainer.remove();
  3643. };
  3644. AttachBody.prototype.position = function (decorated, $dropdown, $container) {
  3645. // Clone all of the container classes
  3646. $dropdown.attr('class', $container.attr('class'));
  3647. $dropdown[0].classList.remove('select2');
  3648. $dropdown[0].classList.add('select2-container--open');
  3649. $dropdown.css({
  3650. position: 'absolute',
  3651. top: -999999
  3652. });
  3653. this.$container = $container;
  3654. };
  3655. AttachBody.prototype.render = function (decorated) {
  3656. var $container = $('<span></span>');
  3657. var $dropdown = decorated.call(this);
  3658. $container.append($dropdown);
  3659. this.$dropdownContainer = $container;
  3660. return $container;
  3661. };
  3662. AttachBody.prototype._hideDropdown = function (decorated) {
  3663. this.$dropdownContainer.detach();
  3664. };
  3665. AttachBody.prototype._bindContainerResultHandlers =
  3666. function (decorated, container) {
  3667. // These should only be bound once
  3668. if (this._containerResultsHandlersBound) {
  3669. return;
  3670. }
  3671. var self = this;
  3672. container.on('results:all', function () {
  3673. self._positionDropdown();
  3674. self._resizeDropdown();
  3675. });
  3676. container.on('results:append', function () {
  3677. self._positionDropdown();
  3678. self._resizeDropdown();
  3679. });
  3680. container.on('results:message', function () {
  3681. self._positionDropdown();
  3682. self._resizeDropdown();
  3683. });
  3684. container.on('select', function () {
  3685. self._positionDropdown();
  3686. self._resizeDropdown();
  3687. });
  3688. container.on('unselect', function () {
  3689. self._positionDropdown();
  3690. self._resizeDropdown();
  3691. });
  3692. this._containerResultsHandlersBound = true;
  3693. };
  3694. AttachBody.prototype._attachPositioningHandler =
  3695. function (decorated, container) {
  3696. var self = this;
  3697. var scrollEvent = 'scroll.select2.' + container.id;
  3698. var resizeEvent = 'resize.select2.' + container.id;
  3699. var orientationEvent = 'orientationchange.select2.' + container.id;
  3700. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  3701. $watchers.each(function () {
  3702. Utils.StoreData(this, 'select2-scroll-position', {
  3703. x: $(this).scrollLeft(),
  3704. y: $(this).scrollTop()
  3705. });
  3706. });
  3707. $watchers.on(scrollEvent, function (ev) {
  3708. var position = Utils.GetData(this, 'select2-scroll-position');
  3709. $(this).scrollTop(position.y);
  3710. });
  3711. $(window).on(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent,
  3712. function (e) {
  3713. self._positionDropdown();
  3714. self._resizeDropdown();
  3715. });
  3716. };
  3717. AttachBody.prototype._detachPositioningHandler =
  3718. function (decorated, container) {
  3719. var scrollEvent = 'scroll.select2.' + container.id;
  3720. var resizeEvent = 'resize.select2.' + container.id;
  3721. var orientationEvent = 'orientationchange.select2.' + container.id;
  3722. var $watchers = this.$container.parents().filter(Utils.hasScroll);
  3723. $watchers.off(scrollEvent);
  3724. $(window).off(scrollEvent + ' ' + resizeEvent + ' ' + orientationEvent);
  3725. };
  3726. AttachBody.prototype._positionDropdown = function () {
  3727. var $window = $(window);
  3728. var isCurrentlyAbove = this.$dropdown[0].classList
  3729. .contains('select2-dropdown--above');
  3730. var isCurrentlyBelow = this.$dropdown[0].classList
  3731. .contains('select2-dropdown--below');
  3732. var newDirection = null;
  3733. var offset = this.$container.offset();
  3734. offset.bottom = offset.top + this.$container.outerHeight(false);
  3735. var container = {
  3736. height: this.$container.outerHeight(false)
  3737. };
  3738. container.top = offset.top;
  3739. container.bottom = offset.top + container.height;
  3740. var dropdown = {
  3741. height: this.$dropdown.outerHeight(false)
  3742. };
  3743. var viewport = {
  3744. top: $window.scrollTop(),
  3745. bottom: $window.scrollTop() + $window.height()
  3746. };
  3747. var enoughRoomAbove = viewport.top < (offset.top - dropdown.height);
  3748. var enoughRoomBelow = viewport.bottom > (offset.bottom + dropdown.height);
  3749. var css = {
  3750. left: offset.left,
  3751. top: container.bottom
  3752. };
  3753. // Determine what the parent element is to use for calculating the offset
  3754. var $offsetParent = this.$dropdownParent;
  3755. // For statically positioned elements, we need to get the element
  3756. // that is determining the offset
  3757. if ($offsetParent.css('position') === 'static') {
  3758. $offsetParent = $offsetParent.offsetParent();
  3759. }
  3760. var parentOffset = {
  3761. top: 0,
  3762. left: 0
  3763. };
  3764. if (
  3765. $.contains(document.body, $offsetParent[0]) ||
  3766. $offsetParent[0].isConnected
  3767. ) {
  3768. parentOffset = $offsetParent.offset();
  3769. }
  3770. css.top -= parentOffset.top;
  3771. css.left -= parentOffset.left;
  3772. if (!isCurrentlyAbove && !isCurrentlyBelow) {
  3773. newDirection = 'below';
  3774. }
  3775. if (!enoughRoomBelow && enoughRoomAbove && !isCurrentlyAbove) {
  3776. newDirection = 'above';
  3777. } else if (!enoughRoomAbove && enoughRoomBelow && isCurrentlyAbove) {
  3778. newDirection = 'below';
  3779. }
  3780. if (newDirection == 'above' ||
  3781. (isCurrentlyAbove && newDirection !== 'below')) {
  3782. css.top = container.top - parentOffset.top - dropdown.height;
  3783. }
  3784. if (newDirection != null) {
  3785. this.$dropdown[0].classList.remove('select2-dropdown--below');
  3786. this.$dropdown[0].classList.remove('select2-dropdown--above');
  3787. this.$dropdown[0].classList.add('select2-dropdown--' + newDirection);
  3788. this.$container[0].classList.remove('select2-container--below');
  3789. this.$container[0].classList.remove('select2-container--above');
  3790. this.$container[0].classList.add('select2-container--' + newDirection);
  3791. }
  3792. this.$dropdownContainer.css(css);
  3793. };
  3794. AttachBody.prototype._resizeDropdown = function () {
  3795. var css = {
  3796. width: this.$container.outerWidth(false) + 'px'
  3797. };
  3798. if (this.options.get('dropdownAutoWidth')) {
  3799. css.minWidth = css.width;
  3800. css.position = 'relative';
  3801. css.width = 'auto';
  3802. }
  3803. this.$dropdown.css(css);
  3804. };
  3805. AttachBody.prototype._showDropdown = function (decorated) {
  3806. this.$dropdownContainer.appendTo(this.$dropdownParent);
  3807. this._positionDropdown();
  3808. this._resizeDropdown();
  3809. };
  3810. return AttachBody;
  3811. });
  3812. S2.define('select2/dropdown/minimumResultsForSearch',[
  3813. ], function () {
  3814. function countResults (data) {
  3815. var count = 0;
  3816. for (var d = 0; d < data.length; d++) {
  3817. var item = data[d];
  3818. if (item.children) {
  3819. count += countResults(item.children);
  3820. } else {
  3821. count++;
  3822. }
  3823. }
  3824. return count;
  3825. }
  3826. function MinimumResultsForSearch (decorated, $element, options, dataAdapter) {
  3827. this.minimumResultsForSearch = options.get('minimumResultsForSearch');
  3828. if (this.minimumResultsForSearch < 0) {
  3829. this.minimumResultsForSearch = Infinity;
  3830. }
  3831. decorated.call(this, $element, options, dataAdapter);
  3832. }
  3833. MinimumResultsForSearch.prototype.showSearch = function (decorated, params) {
  3834. if (countResults(params.data.results) < this.minimumResultsForSearch) {
  3835. return false;
  3836. }
  3837. return decorated.call(this, params);
  3838. };
  3839. return MinimumResultsForSearch;
  3840. });
  3841. S2.define('select2/dropdown/selectOnClose',[
  3842. '../utils'
  3843. ], function (Utils) {
  3844. function SelectOnClose () { }
  3845. SelectOnClose.prototype.bind = function (decorated, container, $container) {
  3846. var self = this;
  3847. decorated.call(this, container, $container);
  3848. container.on('close', function (params) {
  3849. self._handleSelectOnClose(params);
  3850. });
  3851. };
  3852. SelectOnClose.prototype._handleSelectOnClose = function (_, params) {
  3853. if (params && params.originalSelect2Event != null) {
  3854. var event = params.originalSelect2Event;
  3855. // Don't select an item if the close event was triggered from a select or
  3856. // unselect event
  3857. if (event._type === 'select' || event._type === 'unselect') {
  3858. return;
  3859. }
  3860. }
  3861. var $highlightedResults = this.getHighlightedResults();
  3862. // Only select highlighted results
  3863. if ($highlightedResults.length < 1) {
  3864. return;
  3865. }
  3866. var data = Utils.GetData($highlightedResults[0], 'data');
  3867. // Don't re-select already selected resulte
  3868. if (
  3869. (data.element != null && data.element.selected) ||
  3870. (data.element == null && data.selected)
  3871. ) {
  3872. return;
  3873. }
  3874. this.trigger('select', {
  3875. data: data
  3876. });
  3877. };
  3878. return SelectOnClose;
  3879. });
  3880. S2.define('select2/dropdown/closeOnSelect',[
  3881. ], function () {
  3882. function CloseOnSelect () { }
  3883. CloseOnSelect.prototype.bind = function (decorated, container, $container) {
  3884. var self = this;
  3885. decorated.call(this, container, $container);
  3886. container.on('select', function (evt) {
  3887. self._selectTriggered(evt);
  3888. });
  3889. container.on('unselect', function (evt) {
  3890. self._selectTriggered(evt);
  3891. });
  3892. };
  3893. CloseOnSelect.prototype._selectTriggered = function (_, evt) {
  3894. var originalEvent = evt.originalEvent;
  3895. // Don't close if the control key is being held
  3896. if (originalEvent && (originalEvent.ctrlKey || originalEvent.metaKey)) {
  3897. return;
  3898. }
  3899. this.trigger('close', {
  3900. originalEvent: originalEvent,
  3901. originalSelect2Event: evt
  3902. });
  3903. };
  3904. return CloseOnSelect;
  3905. });
  3906. S2.define('select2/dropdown/dropdownCss',[
  3907. '../utils'
  3908. ], function (Utils) {
  3909. function DropdownCSS () { }
  3910. DropdownCSS.prototype.render = function (decorated) {
  3911. var $dropdown = decorated.call(this);
  3912. var dropdownCssClass = this.options.get('dropdownCssClass') || '';
  3913. if (dropdownCssClass.indexOf(':all:') !== -1) {
  3914. dropdownCssClass = dropdownCssClass.replace(':all:', '');
  3915. Utils.copyNonInternalCssClasses($dropdown[0], this.$element[0]);
  3916. }
  3917. $dropdown.addClass(dropdownCssClass);
  3918. return $dropdown;
  3919. };
  3920. return DropdownCSS;
  3921. });
  3922. S2.define('select2/dropdown/tagsSearchHighlight',[
  3923. '../utils'
  3924. ], function (Utils) {
  3925. function TagsSearchHighlight () { }
  3926. TagsSearchHighlight.prototype.highlightFirstItem = function (decorated) {
  3927. var $options = this.$results
  3928. .find(
  3929. '.select2-results__option--selectable' +
  3930. ':not(.select2-results__option--selected)'
  3931. );
  3932. if ($options.length > 0) {
  3933. var $firstOption = $options.first();
  3934. var data = Utils.GetData($firstOption[0], 'data');
  3935. var firstElement = data.element;
  3936. if (firstElement && firstElement.getAttribute) {
  3937. if (firstElement.getAttribute('data-select2-tag') === 'true') {
  3938. $firstOption.trigger('mouseenter');
  3939. return;
  3940. }
  3941. }
  3942. }
  3943. decorated.call(this);
  3944. };
  3945. return TagsSearchHighlight;
  3946. });
  3947. S2.define('select2/i18n/en',[],function () {
  3948. // English
  3949. return {
  3950. errorLoading: function () {
  3951. return 'The results could not be loaded.';
  3952. },
  3953. inputTooLong: function (args) {
  3954. var overChars = args.input.length - args.maximum;
  3955. var message = 'Please delete ' + overChars + ' character';
  3956. if (overChars != 1) {
  3957. message += 's';
  3958. }
  3959. return message;
  3960. },
  3961. inputTooShort: function (args) {
  3962. var remainingChars = args.minimum - args.input.length;
  3963. var message = 'Please enter ' + remainingChars + ' or more characters';
  3964. return message;
  3965. },
  3966. loadingMore: function () {
  3967. return 'Loading more results…';
  3968. },
  3969. maximumSelected: function (args) {
  3970. var message = 'You can only select ' + args.maximum + ' item';
  3971. if (args.maximum != 1) {
  3972. message += 's';
  3973. }
  3974. return message;
  3975. },
  3976. noResults: function () {
  3977. return 'No results found';
  3978. },
  3979. searching: function () {
  3980. return 'Searching…';
  3981. },
  3982. removeAllItems: function () {
  3983. return 'Remove all items';
  3984. },
  3985. removeItem: function () {
  3986. return 'Remove item';
  3987. },
  3988. search: function() {
  3989. return 'Search';
  3990. }
  3991. };
  3992. });
  3993. S2.define('select2/defaults',[
  3994. 'jquery',
  3995. './results',
  3996. './selection/single',
  3997. './selection/multiple',
  3998. './selection/placeholder',
  3999. './selection/allowClear',
  4000. './selection/search',
  4001. './selection/selectionCss',
  4002. './selection/eventRelay',
  4003. './utils',
  4004. './translation',
  4005. './diacritics',
  4006. './data/select',
  4007. './data/array',
  4008. './data/ajax',
  4009. './data/tags',
  4010. './data/tokenizer',
  4011. './data/minimumInputLength',
  4012. './data/maximumInputLength',
  4013. './data/maximumSelectionLength',
  4014. './dropdown',
  4015. './dropdown/search',
  4016. './dropdown/hidePlaceholder',
  4017. './dropdown/infiniteScroll',
  4018. './dropdown/attachBody',
  4019. './dropdown/minimumResultsForSearch',
  4020. './dropdown/selectOnClose',
  4021. './dropdown/closeOnSelect',
  4022. './dropdown/dropdownCss',
  4023. './dropdown/tagsSearchHighlight',
  4024. './i18n/en'
  4025. ], function ($,
  4026. ResultsList,
  4027. SingleSelection, MultipleSelection, Placeholder, AllowClear,
  4028. SelectionSearch, SelectionCSS, EventRelay,
  4029. Utils, Translation, DIACRITICS,
  4030. SelectData, ArrayData, AjaxData, Tags, Tokenizer,
  4031. MinimumInputLength, MaximumInputLength, MaximumSelectionLength,
  4032. Dropdown, DropdownSearch, HidePlaceholder, InfiniteScroll,
  4033. AttachBody, MinimumResultsForSearch, SelectOnClose, CloseOnSelect,
  4034. DropdownCSS, TagsSearchHighlight,
  4035. EnglishTranslation) {
  4036. function Defaults () {
  4037. this.reset();
  4038. }
  4039. Defaults.prototype.apply = function (options) {
  4040. options = $.extend(true, {}, this.defaults, options);
  4041. if (options.dataAdapter == null) {
  4042. if (options.ajax != null) {
  4043. options.dataAdapter = AjaxData;
  4044. } else if (options.data != null) {
  4045. options.dataAdapter = ArrayData;
  4046. } else {
  4047. options.dataAdapter = SelectData;
  4048. }
  4049. if (options.minimumInputLength > 0) {
  4050. options.dataAdapter = Utils.Decorate(
  4051. options.dataAdapter,
  4052. MinimumInputLength
  4053. );
  4054. }
  4055. if (options.maximumInputLength > 0) {
  4056. options.dataAdapter = Utils.Decorate(
  4057. options.dataAdapter,
  4058. MaximumInputLength
  4059. );
  4060. }
  4061. if (options.maximumSelectionLength > 0) {
  4062. options.dataAdapter = Utils.Decorate(
  4063. options.dataAdapter,
  4064. MaximumSelectionLength
  4065. );
  4066. }
  4067. if (options.tags) {
  4068. options.dataAdapter = Utils.Decorate(options.dataAdapter, Tags);
  4069. }
  4070. if (options.tokenSeparators != null || options.tokenizer != null) {
  4071. options.dataAdapter = Utils.Decorate(
  4072. options.dataAdapter,
  4073. Tokenizer
  4074. );
  4075. }
  4076. }
  4077. if (options.resultsAdapter == null) {
  4078. options.resultsAdapter = ResultsList;
  4079. if (options.ajax != null) {
  4080. options.resultsAdapter = Utils.Decorate(
  4081. options.resultsAdapter,
  4082. InfiniteScroll
  4083. );
  4084. }
  4085. if (options.placeholder != null) {
  4086. options.resultsAdapter = Utils.Decorate(
  4087. options.resultsAdapter,
  4088. HidePlaceholder
  4089. );
  4090. }
  4091. if (options.selectOnClose) {
  4092. options.resultsAdapter = Utils.Decorate(
  4093. options.resultsAdapter,
  4094. SelectOnClose
  4095. );
  4096. }
  4097. if (options.tags) {
  4098. options.resultsAdapter = Utils.Decorate(
  4099. options.resultsAdapter,
  4100. TagsSearchHighlight
  4101. );
  4102. }
  4103. }
  4104. if (options.dropdownAdapter == null) {
  4105. if (options.multiple) {
  4106. options.dropdownAdapter = Dropdown;
  4107. } else {
  4108. var SearchableDropdown = Utils.Decorate(Dropdown, DropdownSearch);
  4109. options.dropdownAdapter = SearchableDropdown;
  4110. }
  4111. if (options.minimumResultsForSearch !== 0) {
  4112. options.dropdownAdapter = Utils.Decorate(
  4113. options.dropdownAdapter,
  4114. MinimumResultsForSearch
  4115. );
  4116. }
  4117. if (options.closeOnSelect) {
  4118. options.dropdownAdapter = Utils.Decorate(
  4119. options.dropdownAdapter,
  4120. CloseOnSelect
  4121. );
  4122. }
  4123. if (options.dropdownCssClass != null) {
  4124. options.dropdownAdapter = Utils.Decorate(
  4125. options.dropdownAdapter,
  4126. DropdownCSS
  4127. );
  4128. }
  4129. options.dropdownAdapter = Utils.Decorate(
  4130. options.dropdownAdapter,
  4131. AttachBody
  4132. );
  4133. }
  4134. if (options.selectionAdapter == null) {
  4135. if (options.multiple) {
  4136. options.selectionAdapter = MultipleSelection;
  4137. } else {
  4138. options.selectionAdapter = SingleSelection;
  4139. }
  4140. // Add the placeholder mixin if a placeholder was specified
  4141. if (options.placeholder != null) {
  4142. options.selectionAdapter = Utils.Decorate(
  4143. options.selectionAdapter,
  4144. Placeholder
  4145. );
  4146. }
  4147. if (options.allowClear) {
  4148. options.selectionAdapter = Utils.Decorate(
  4149. options.selectionAdapter,
  4150. AllowClear
  4151. );
  4152. }
  4153. if (options.multiple) {
  4154. options.selectionAdapter = Utils.Decorate(
  4155. options.selectionAdapter,
  4156. SelectionSearch
  4157. );
  4158. }
  4159. if (options.selectionCssClass != null) {
  4160. options.selectionAdapter = Utils.Decorate(
  4161. options.selectionAdapter,
  4162. SelectionCSS
  4163. );
  4164. }
  4165. options.selectionAdapter = Utils.Decorate(
  4166. options.selectionAdapter,
  4167. EventRelay
  4168. );
  4169. }
  4170. // If the defaults were not previously applied from an element, it is
  4171. // possible for the language option to have not been resolved
  4172. options.language = this._resolveLanguage(options.language);
  4173. // Always fall back to English since it will always be complete
  4174. options.language.push('en');
  4175. var uniqueLanguages = [];
  4176. for (var l = 0; l < options.language.length; l++) {
  4177. var language = options.language[l];
  4178. if (uniqueLanguages.indexOf(language) === -1) {
  4179. uniqueLanguages.push(language);
  4180. }
  4181. }
  4182. options.language = uniqueLanguages;
  4183. options.translations = this._processTranslations(
  4184. options.language,
  4185. options.debug
  4186. );
  4187. return options;
  4188. };
  4189. Defaults.prototype.reset = function () {
  4190. function stripDiacritics (text) {
  4191. // Used 'uni range + named function' from http://jsperf.com/diacritics/18
  4192. function match(a) {
  4193. return DIACRITICS[a] || a;
  4194. }
  4195. return text.replace(/[^\u0000-\u007E]/g, match);
  4196. }
  4197. function matcher (params, data) {
  4198. // Always return the object if there is nothing to compare
  4199. if (params.term == null || params.term.trim() === '') {
  4200. return data;
  4201. }
  4202. // Do a recursive check for options with children
  4203. if (data.children && data.children.length > 0) {
  4204. // Clone the data object if there are children
  4205. // This is required as we modify the object to remove any non-matches
  4206. var match = $.extend(true, {}, data);
  4207. // Check each child of the option
  4208. for (var c = data.children.length - 1; c >= 0; c--) {
  4209. var child = data.children[c];
  4210. var matches = matcher(params, child);
  4211. // If there wasn't a match, remove the object in the array
  4212. if (matches == null) {
  4213. match.children.splice(c, 1);
  4214. }
  4215. }
  4216. // If any children matched, return the new object
  4217. if (match.children.length > 0) {
  4218. return match;
  4219. }
  4220. // If there were no matching children, check just the plain object
  4221. return matcher(params, match);
  4222. }
  4223. var original = stripDiacritics(data.text).toUpperCase();
  4224. var term = stripDiacritics(params.term).toUpperCase();
  4225. // Check if the text contains the term
  4226. if (original.indexOf(term) > -1) {
  4227. return data;
  4228. }
  4229. // If it doesn't contain the term, don't return anything
  4230. return null;
  4231. }
  4232. this.defaults = {
  4233. amdLanguageBase: './i18n/',
  4234. autocomplete: 'off',
  4235. closeOnSelect: true,
  4236. debug: false,
  4237. dropdownAutoWidth: false,
  4238. escapeMarkup: Utils.escapeMarkup,
  4239. language: {},
  4240. matcher: matcher,
  4241. minimumInputLength: 0,
  4242. maximumInputLength: 0,
  4243. maximumSelectionLength: 0,
  4244. minimumResultsForSearch: 0,
  4245. selectOnClose: false,
  4246. scrollAfterSelect: false,
  4247. sorter: function (data) {
  4248. return data;
  4249. },
  4250. templateResult: function (result) {
  4251. return result.text;
  4252. },
  4253. templateSelection: function (selection) {
  4254. return selection.text;
  4255. },
  4256. theme: 'default',
  4257. width: 'resolve'
  4258. };
  4259. };
  4260. Defaults.prototype.applyFromElement = function (options, $element) {
  4261. var optionLanguage = options.language;
  4262. var defaultLanguage = this.defaults.language;
  4263. var elementLanguage = $element.prop('lang');
  4264. var parentLanguage = $element.closest('[lang]').prop('lang');
  4265. var languages = Array.prototype.concat.call(
  4266. this._resolveLanguage(elementLanguage),
  4267. this._resolveLanguage(optionLanguage),
  4268. this._resolveLanguage(defaultLanguage),
  4269. this._resolveLanguage(parentLanguage)
  4270. );
  4271. options.language = languages;
  4272. return options;
  4273. };
  4274. Defaults.prototype._resolveLanguage = function (language) {
  4275. if (!language) {
  4276. return [];
  4277. }
  4278. if ($.isEmptyObject(language)) {
  4279. return [];
  4280. }
  4281. if ($.isPlainObject(language)) {
  4282. return [language];
  4283. }
  4284. var languages;
  4285. if (!Array.isArray(language)) {
  4286. languages = [language];
  4287. } else {
  4288. languages = language;
  4289. }
  4290. var resolvedLanguages = [];
  4291. for (var l = 0; l < languages.length; l++) {
  4292. resolvedLanguages.push(languages[l]);
  4293. if (typeof languages[l] === 'string' && languages[l].indexOf('-') > 0) {
  4294. // Extract the region information if it is included
  4295. var languageParts = languages[l].split('-');
  4296. var baseLanguage = languageParts[0];
  4297. resolvedLanguages.push(baseLanguage);
  4298. }
  4299. }
  4300. return resolvedLanguages;
  4301. };
  4302. Defaults.prototype._processTranslations = function (languages, debug) {
  4303. var translations = new Translation();
  4304. for (var l = 0; l < languages.length; l++) {
  4305. var languageData = new Translation();
  4306. var language = languages[l];
  4307. if (typeof language === 'string') {
  4308. try {
  4309. // Try to load it with the original name
  4310. languageData = Translation.loadPath(language);
  4311. } catch (e) {
  4312. try {
  4313. // If we couldn't load it, check if it wasn't the full path
  4314. language = this.defaults.amdLanguageBase + language;
  4315. languageData = Translation.loadPath(language);
  4316. } catch (ex) {
  4317. // The translation could not be loaded at all. Sometimes this is
  4318. // because of a configuration problem, other times this can be
  4319. // because of how Select2 helps load all possible translation files
  4320. if (debug && window.console && console.warn) {
  4321. console.warn(
  4322. 'Select2: The language file for "' + language + '" could ' +
  4323. 'not be automatically loaded. A fallback will be used instead.'
  4324. );
  4325. }
  4326. }
  4327. }
  4328. } else if ($.isPlainObject(language)) {
  4329. languageData = new Translation(language);
  4330. } else {
  4331. languageData = language;
  4332. }
  4333. translations.extend(languageData);
  4334. }
  4335. return translations;
  4336. };
  4337. Defaults.prototype.set = function (key, value) {
  4338. var camelKey = $.camelCase(key);
  4339. var data = {};
  4340. data[camelKey] = value;
  4341. var convertedData = Utils._convertData(data);
  4342. $.extend(true, this.defaults, convertedData);
  4343. };
  4344. var defaults = new Defaults();
  4345. return defaults;
  4346. });
  4347. S2.define('select2/options',[
  4348. 'jquery',
  4349. './defaults',
  4350. './utils'
  4351. ], function ($, Defaults, Utils) {
  4352. function Options (options, $element) {
  4353. this.options = options;
  4354. if ($element != null) {
  4355. this.fromElement($element);
  4356. }
  4357. if ($element != null) {
  4358. this.options = Defaults.applyFromElement(this.options, $element);
  4359. }
  4360. this.options = Defaults.apply(this.options);
  4361. }
  4362. Options.prototype.fromElement = function ($e) {
  4363. var excludedData = ['select2'];
  4364. if (this.options.multiple == null) {
  4365. this.options.multiple = $e.prop('multiple');
  4366. }
  4367. if (this.options.disabled == null) {
  4368. this.options.disabled = $e.prop('disabled');
  4369. }
  4370. if (this.options.autocomplete == null && $e.prop('autocomplete')) {
  4371. this.options.autocomplete = $e.prop('autocomplete');
  4372. }
  4373. if (this.options.dir == null) {
  4374. if ($e.prop('dir')) {
  4375. this.options.dir = $e.prop('dir');
  4376. } else if ($e.closest('[dir]').prop('dir')) {
  4377. this.options.dir = $e.closest('[dir]').prop('dir');
  4378. } else {
  4379. this.options.dir = 'ltr';
  4380. }
  4381. }
  4382. $e.prop('disabled', this.options.disabled);
  4383. $e.prop('multiple', this.options.multiple);
  4384. if (Utils.GetData($e[0], 'select2Tags')) {
  4385. if (this.options.debug && window.console && console.warn) {
  4386. console.warn(
  4387. 'Select2: The `data-select2-tags` attribute has been changed to ' +
  4388. 'use the `data-data` and `data-tags="true"` attributes and will be ' +
  4389. 'removed in future versions of Select2.'
  4390. );
  4391. }
  4392. Utils.StoreData($e[0], 'data', Utils.GetData($e[0], 'select2Tags'));
  4393. Utils.StoreData($e[0], 'tags', true);
  4394. }
  4395. if (Utils.GetData($e[0], 'ajaxUrl')) {
  4396. if (this.options.debug && window.console && console.warn) {
  4397. console.warn(
  4398. 'Select2: The `data-ajax-url` attribute has been changed to ' +
  4399. '`data-ajax--url` and support for the old attribute will be removed' +
  4400. ' in future versions of Select2.'
  4401. );
  4402. }
  4403. $e.attr('ajax--url', Utils.GetData($e[0], 'ajaxUrl'));
  4404. Utils.StoreData($e[0], 'ajax-Url', Utils.GetData($e[0], 'ajaxUrl'));
  4405. }
  4406. var dataset = {};
  4407. function upperCaseLetter(_, letter) {
  4408. return letter.toUpperCase();
  4409. }
  4410. // Pre-load all of the attributes which are prefixed with `data-`
  4411. for (var attr = 0; attr < $e[0].attributes.length; attr++) {
  4412. var attributeName = $e[0].attributes[attr].name;
  4413. var prefix = 'data-';
  4414. if (attributeName.substr(0, prefix.length) == prefix) {
  4415. // Get the contents of the attribute after `data-`
  4416. var dataName = attributeName.substring(prefix.length);
  4417. // Get the data contents from the consistent source
  4418. // This is more than likely the jQuery data helper
  4419. var dataValue = Utils.GetData($e[0], dataName);
  4420. // camelCase the attribute name to match the spec
  4421. var camelDataName = dataName.replace(/-([a-z])/g, upperCaseLetter);
  4422. // Store the data attribute contents into the dataset since
  4423. dataset[camelDataName] = dataValue;
  4424. }
  4425. }
  4426. // Prefer the element's `dataset` attribute if it exists
  4427. // jQuery 1.x does not correctly handle data attributes with multiple dashes
  4428. if ($.fn.jquery && $.fn.jquery.substr(0, 2) == '1.' && $e[0].dataset) {
  4429. dataset = $.extend(true, {}, $e[0].dataset, dataset);
  4430. }
  4431. // Prefer our internal data cache if it exists
  4432. var data = $.extend(true, {}, Utils.GetData($e[0]), dataset);
  4433. data = Utils._convertData(data);
  4434. for (var key in data) {
  4435. if (excludedData.indexOf(key) > -1) {
  4436. continue;
  4437. }
  4438. if ($.isPlainObject(this.options[key])) {
  4439. $.extend(this.options[key], data[key]);
  4440. } else {
  4441. this.options[key] = data[key];
  4442. }
  4443. }
  4444. return this;
  4445. };
  4446. Options.prototype.get = function (key) {
  4447. return this.options[key];
  4448. };
  4449. Options.prototype.set = function (key, val) {
  4450. this.options[key] = val;
  4451. };
  4452. return Options;
  4453. });
  4454. S2.define('select2/core',[
  4455. 'jquery',
  4456. './options',
  4457. './utils',
  4458. './keys'
  4459. ], function ($, Options, Utils, KEYS) {
  4460. var Select2 = function ($element, options) {
  4461. if (Utils.GetData($element[0], 'select2') != null) {
  4462. Utils.GetData($element[0], 'select2').destroy();
  4463. }
  4464. this.$element = $element;
  4465. this.id = this._generateId($element);
  4466. options = options || {};
  4467. this.options = new Options(options, $element);
  4468. Select2.__super__.constructor.call(this);
  4469. // Set up the tabindex
  4470. var tabindex = $element.attr('tabindex') || 0;
  4471. Utils.StoreData($element[0], 'old-tabindex', tabindex);
  4472. $element.attr('tabindex', '-1');
  4473. // Set up containers and adapters
  4474. var DataAdapter = this.options.get('dataAdapter');
  4475. this.dataAdapter = new DataAdapter($element, this.options);
  4476. var $container = this.render();
  4477. this._placeContainer($container);
  4478. var SelectionAdapter = this.options.get('selectionAdapter');
  4479. this.selection = new SelectionAdapter($element, this.options);
  4480. this.$selection = this.selection.render();
  4481. this.selection.position(this.$selection, $container);
  4482. var DropdownAdapter = this.options.get('dropdownAdapter');
  4483. this.dropdown = new DropdownAdapter($element, this.options);
  4484. this.$dropdown = this.dropdown.render();
  4485. this.dropdown.position(this.$dropdown, $container);
  4486. var ResultsAdapter = this.options.get('resultsAdapter');
  4487. this.results = new ResultsAdapter($element, this.options, this.dataAdapter);
  4488. this.$results = this.results.render();
  4489. this.results.position(this.$results, this.$dropdown);
  4490. // Bind events
  4491. var self = this;
  4492. // Bind the container to all of the adapters
  4493. this._bindAdapters();
  4494. // Register any DOM event handlers
  4495. this._registerDomEvents();
  4496. // Register any internal event handlers
  4497. this._registerDataEvents();
  4498. this._registerSelectionEvents();
  4499. this._registerDropdownEvents();
  4500. this._registerResultsEvents();
  4501. this._registerEvents();
  4502. // Set the initial state
  4503. this.dataAdapter.current(function (initialData) {
  4504. self.trigger('selection:update', {
  4505. data: initialData
  4506. });
  4507. });
  4508. // Hide the original select
  4509. $element[0].classList.add('select2-hidden-accessible');
  4510. $element.attr('aria-hidden', 'true');
  4511. // Synchronize any monitored attributes
  4512. this._syncAttributes();
  4513. Utils.StoreData($element[0], 'select2', this);
  4514. // Ensure backwards compatibility with $element.data('select2').
  4515. $element.data('select2', this);
  4516. };
  4517. Utils.Extend(Select2, Utils.Observable);
  4518. Select2.prototype._generateId = function ($element) {
  4519. var id = '';
  4520. if ($element.attr('id') != null) {
  4521. id = $element.attr('id');
  4522. } else if ($element.attr('name') != null) {
  4523. id = $element.attr('name') + '-' + Utils.generateChars(2);
  4524. } else {
  4525. id = Utils.generateChars(4);
  4526. }
  4527. id = id.replace(/(:|\.|\[|\]|,)/g, '');
  4528. id = 'select2-' + id;
  4529. return id;
  4530. };
  4531. Select2.prototype._placeContainer = function ($container) {
  4532. $container.insertAfter(this.$element);
  4533. var width = this._resolveWidth(this.$element, this.options.get('width'));
  4534. if (width != null) {
  4535. $container.css('width', width);
  4536. }
  4537. };
  4538. Select2.prototype._resolveWidth = function ($element, method) {
  4539. var WIDTH = /^width:(([-+]?([0-9]*\.)?[0-9]+)(px|em|ex|%|in|cm|mm|pt|pc))/i;
  4540. if (method == 'resolve') {
  4541. var styleWidth = this._resolveWidth($element, 'style');
  4542. if (styleWidth != null) {
  4543. return styleWidth;
  4544. }
  4545. return this._resolveWidth($element, 'element');
  4546. }
  4547. if (method == 'element') {
  4548. var elementWidth = $element.outerWidth(false);
  4549. if (elementWidth <= 0) {
  4550. return 'auto';
  4551. }
  4552. return elementWidth + 'px';
  4553. }
  4554. if (method == 'style') {
  4555. var style = $element.attr('style');
  4556. if (typeof(style) !== 'string') {
  4557. return null;
  4558. }
  4559. var attrs = style.split(';');
  4560. for (var i = 0, l = attrs.length; i < l; i = i + 1) {
  4561. var attr = attrs[i].replace(/\s/g, '');
  4562. var matches = attr.match(WIDTH);
  4563. if (matches !== null && matches.length >= 1) {
  4564. return matches[1];
  4565. }
  4566. }
  4567. return null;
  4568. }
  4569. if (method == 'computedstyle') {
  4570. var computedStyle = window.getComputedStyle($element[0]);
  4571. return computedStyle.width;
  4572. }
  4573. return method;
  4574. };
  4575. Select2.prototype._bindAdapters = function () {
  4576. this.dataAdapter.bind(this, this.$container);
  4577. this.selection.bind(this, this.$container);
  4578. this.dropdown.bind(this, this.$container);
  4579. this.results.bind(this, this.$container);
  4580. };
  4581. Select2.prototype._registerDomEvents = function () {
  4582. var self = this;
  4583. this.$element.on('change.select2', function () {
  4584. self.dataAdapter.current(function (data) {
  4585. self.trigger('selection:update', {
  4586. data: data
  4587. });
  4588. });
  4589. });
  4590. this.$element.on('focus.select2', function (evt) {
  4591. self.trigger('focus', evt);
  4592. });
  4593. this._syncA = Utils.bind(this._syncAttributes, this);
  4594. this._syncS = Utils.bind(this._syncSubtree, this);
  4595. this._observer = new window.MutationObserver(function (mutations) {
  4596. self._syncA();
  4597. self._syncS(mutations);
  4598. });
  4599. this._observer.observe(this.$element[0], {
  4600. attributes: true,
  4601. childList: true,
  4602. subtree: false
  4603. });
  4604. };
  4605. Select2.prototype._registerDataEvents = function () {
  4606. var self = this;
  4607. this.dataAdapter.on('*', function (name, params) {
  4608. self.trigger(name, params);
  4609. });
  4610. };
  4611. Select2.prototype._registerSelectionEvents = function () {
  4612. var self = this;
  4613. var nonRelayEvents = ['toggle', 'focus'];
  4614. this.selection.on('toggle', function () {
  4615. self.toggleDropdown();
  4616. });
  4617. this.selection.on('focus', function (params) {
  4618. self.focus(params);
  4619. });
  4620. this.selection.on('*', function (name, params) {
  4621. if (nonRelayEvents.indexOf(name) !== -1) {
  4622. return;
  4623. }
  4624. self.trigger(name, params);
  4625. });
  4626. };
  4627. Select2.prototype._registerDropdownEvents = function () {
  4628. var self = this;
  4629. this.dropdown.on('*', function (name, params) {
  4630. self.trigger(name, params);
  4631. });
  4632. };
  4633. Select2.prototype._registerResultsEvents = function () {
  4634. var self = this;
  4635. this.results.on('*', function (name, params) {
  4636. self.trigger(name, params);
  4637. });
  4638. };
  4639. Select2.prototype._registerEvents = function () {
  4640. var self = this;
  4641. this.on('open', function () {
  4642. self.$container[0].classList.add('select2-container--open');
  4643. });
  4644. this.on('close', function () {
  4645. self.$container[0].classList.remove('select2-container--open');
  4646. });
  4647. this.on('enable', function () {
  4648. self.$container[0].classList.remove('select2-container--disabled');
  4649. });
  4650. this.on('disable', function () {
  4651. self.$container[0].classList.add('select2-container--disabled');
  4652. });
  4653. this.on('blur', function () {
  4654. self.$container[0].classList.remove('select2-container--focus');
  4655. });
  4656. this.on('query', function (params) {
  4657. if (!self.isOpen()) {
  4658. self.trigger('open', {});
  4659. }
  4660. this.dataAdapter.query(params, function (data) {
  4661. self.trigger('results:all', {
  4662. data: data,
  4663. query: params
  4664. });
  4665. });
  4666. });
  4667. this.on('query:append', function (params) {
  4668. this.dataAdapter.query(params, function (data) {
  4669. self.trigger('results:append', {
  4670. data: data,
  4671. query: params
  4672. });
  4673. });
  4674. });
  4675. this.on('keypress', function (evt) {
  4676. var key = evt.which;
  4677. if (self.isOpen()) {
  4678. if (key === KEYS.ESC || (key === KEYS.UP && evt.altKey)) {
  4679. self.close(evt);
  4680. evt.preventDefault();
  4681. } else if (key === KEYS.ENTER || key === KEYS.TAB) {
  4682. self.trigger('results:select', {});
  4683. evt.preventDefault();
  4684. } else if ((key === KEYS.SPACE && evt.ctrlKey)) {
  4685. self.trigger('results:toggle', {});
  4686. evt.preventDefault();
  4687. } else if (key === KEYS.UP) {
  4688. self.trigger('results:previous', {});
  4689. evt.preventDefault();
  4690. } else if (key === KEYS.DOWN) {
  4691. self.trigger('results:next', {});
  4692. evt.preventDefault();
  4693. }
  4694. } else {
  4695. if (key === KEYS.ENTER || key === KEYS.SPACE ||
  4696. (key === KEYS.DOWN && evt.altKey)) {
  4697. self.open();
  4698. evt.preventDefault();
  4699. }
  4700. }
  4701. });
  4702. };
  4703. Select2.prototype._syncAttributes = function () {
  4704. this.options.set('disabled', this.$element.prop('disabled'));
  4705. if (this.isDisabled()) {
  4706. if (this.isOpen()) {
  4707. this.close();
  4708. }
  4709. this.trigger('disable', {});
  4710. } else {
  4711. this.trigger('enable', {});
  4712. }
  4713. };
  4714. Select2.prototype._isChangeMutation = function (mutations) {
  4715. var self = this;
  4716. if (mutations.addedNodes && mutations.addedNodes.length > 0) {
  4717. for (var n = 0; n < mutations.addedNodes.length; n++) {
  4718. var node = mutations.addedNodes[n];
  4719. if (node.selected) {
  4720. return true;
  4721. }
  4722. }
  4723. } else if (mutations.removedNodes && mutations.removedNodes.length > 0) {
  4724. return true;
  4725. } else if (Array.isArray(mutations)) {
  4726. return mutations.some(function (mutation) {
  4727. return self._isChangeMutation(mutation);
  4728. });
  4729. }
  4730. return false;
  4731. };
  4732. Select2.prototype._syncSubtree = function (mutations) {
  4733. var changed = this._isChangeMutation(mutations);
  4734. var self = this;
  4735. // Only re-pull the data if we think there is a change
  4736. if (changed) {
  4737. this.dataAdapter.current(function (currentData) {
  4738. self.trigger('selection:update', {
  4739. data: currentData
  4740. });
  4741. });
  4742. }
  4743. };
  4744. /**
  4745. * Override the trigger method to automatically trigger pre-events when
  4746. * there are events that can be prevented.
  4747. */
  4748. Select2.prototype.trigger = function (name, args) {
  4749. var actualTrigger = Select2.__super__.trigger;
  4750. var preTriggerMap = {
  4751. 'open': 'opening',
  4752. 'close': 'closing',
  4753. 'select': 'selecting',
  4754. 'unselect': 'unselecting',
  4755. 'clear': 'clearing'
  4756. };
  4757. if (args === undefined) {
  4758. args = {};
  4759. }
  4760. if (name in preTriggerMap) {
  4761. var preTriggerName = preTriggerMap[name];
  4762. var preTriggerArgs = {
  4763. prevented: false,
  4764. name: name,
  4765. args: args
  4766. };
  4767. actualTrigger.call(this, preTriggerName, preTriggerArgs);
  4768. if (preTriggerArgs.prevented) {
  4769. args.prevented = true;
  4770. return;
  4771. }
  4772. }
  4773. actualTrigger.call(this, name, args);
  4774. };
  4775. Select2.prototype.toggleDropdown = function () {
  4776. if (this.isDisabled()) {
  4777. return;
  4778. }
  4779. if (this.isOpen()) {
  4780. this.close();
  4781. } else {
  4782. this.open();
  4783. }
  4784. };
  4785. Select2.prototype.open = function () {
  4786. if (this.isOpen()) {
  4787. return;
  4788. }
  4789. if (this.isDisabled()) {
  4790. return;
  4791. }
  4792. this.trigger('query', {});
  4793. };
  4794. Select2.prototype.close = function (evt) {
  4795. if (!this.isOpen()) {
  4796. return;
  4797. }
  4798. this.trigger('close', { originalEvent : evt });
  4799. };
  4800. /**
  4801. * Helper method to abstract the "enabled" (not "disabled") state of this
  4802. * object.
  4803. *
  4804. * @return {true} if the instance is not disabled.
  4805. * @return {false} if the instance is disabled.
  4806. */
  4807. Select2.prototype.isEnabled = function () {
  4808. return !this.isDisabled();
  4809. };
  4810. /**
  4811. * Helper method to abstract the "disabled" state of this object.
  4812. *
  4813. * @return {true} if the disabled option is true.
  4814. * @return {false} if the disabled option is false.
  4815. */
  4816. Select2.prototype.isDisabled = function () {
  4817. return this.options.get('disabled');
  4818. };
  4819. Select2.prototype.isOpen = function () {
  4820. return this.$container[0].classList.contains('select2-container--open');
  4821. };
  4822. Select2.prototype.hasFocus = function () {
  4823. return this.$container[0].classList.contains('select2-container--focus');
  4824. };
  4825. Select2.prototype.focus = function (data) {
  4826. // No need to re-trigger focus events if we are already focused
  4827. if (this.hasFocus()) {
  4828. return;
  4829. }
  4830. this.$container[0].classList.add('select2-container--focus');
  4831. this.trigger('focus', {});
  4832. };
  4833. Select2.prototype.enable = function (args) {
  4834. if (this.options.get('debug') && window.console && console.warn) {
  4835. console.warn(
  4836. 'Select2: The `select2("enable")` method has been deprecated and will' +
  4837. ' be removed in later Select2 versions. Use $element.prop("disabled")' +
  4838. ' instead.'
  4839. );
  4840. }
  4841. if (args == null || args.length === 0) {
  4842. args = [true];
  4843. }
  4844. var disabled = !args[0];
  4845. this.$element.prop('disabled', disabled);
  4846. };
  4847. Select2.prototype.data = function () {
  4848. if (this.options.get('debug') &&
  4849. arguments.length > 0 && window.console && console.warn) {
  4850. console.warn(
  4851. 'Select2: Data can no longer be set using `select2("data")`. You ' +
  4852. 'should consider setting the value instead using `$element.val()`.'
  4853. );
  4854. }
  4855. var data = [];
  4856. this.dataAdapter.current(function (currentData) {
  4857. data = currentData;
  4858. });
  4859. return data;
  4860. };
  4861. Select2.prototype.val = function (args) {
  4862. if (this.options.get('debug') && window.console && console.warn) {
  4863. console.warn(
  4864. 'Select2: The `select2("val")` method has been deprecated and will be' +
  4865. ' removed in later Select2 versions. Use $element.val() instead.'
  4866. );
  4867. }
  4868. if (args == null || args.length === 0) {
  4869. return this.$element.val();
  4870. }
  4871. var newVal = args[0];
  4872. if (Array.isArray(newVal)) {
  4873. newVal = newVal.map(function (obj) {
  4874. return obj.toString();
  4875. });
  4876. }
  4877. this.$element.val(newVal).trigger('input').trigger('change');
  4878. };
  4879. Select2.prototype.destroy = function () {
  4880. Utils.RemoveData(this.$container[0]);
  4881. this.$container.remove();
  4882. this._observer.disconnect();
  4883. this._observer = null;
  4884. this._syncA = null;
  4885. this._syncS = null;
  4886. this.$element.off('.select2');
  4887. this.$element.attr('tabindex',
  4888. Utils.GetData(this.$element[0], 'old-tabindex'));
  4889. this.$element[0].classList.remove('select2-hidden-accessible');
  4890. this.$element.attr('aria-hidden', 'false');
  4891. Utils.RemoveData(this.$element[0]);
  4892. this.$element.removeData('select2');
  4893. this.dataAdapter.destroy();
  4894. this.selection.destroy();
  4895. this.dropdown.destroy();
  4896. this.results.destroy();
  4897. this.dataAdapter = null;
  4898. this.selection = null;
  4899. this.dropdown = null;
  4900. this.results = null;
  4901. };
  4902. Select2.prototype.render = function () {
  4903. var $container = $(
  4904. '<span class="select2 select2-container">' +
  4905. '<span class="selection"></span>' +
  4906. '<span class="dropdown-wrapper" aria-hidden="true"></span>' +
  4907. '</span>'
  4908. );
  4909. $container.attr('dir', this.options.get('dir'));
  4910. this.$container = $container;
  4911. this.$container[0].classList
  4912. .add('select2-container--' + this.options.get('theme'));
  4913. Utils.StoreData($container[0], 'element', this.$element);
  4914. return $container;
  4915. };
  4916. return Select2;
  4917. });
  4918. S2.define('jquery-mousewheel',[
  4919. 'jquery'
  4920. ], function ($) {
  4921. // Used to shim jQuery.mousewheel for non-full builds.
  4922. return $;
  4923. });
  4924. S2.define('jquery.select2',[
  4925. 'jquery',
  4926. 'jquery-mousewheel',
  4927. './select2/core',
  4928. './select2/defaults',
  4929. './select2/utils'
  4930. ], function ($, _, Select2, Defaults, Utils) {
  4931. if ($.fn.select2 == null) {
  4932. // All methods that should return the element
  4933. var thisMethods = ['open', 'close', 'destroy'];
  4934. $.fn.select2 = function (options) {
  4935. options = options || {};
  4936. if (typeof options === 'object') {
  4937. this.each(function () {
  4938. var instanceOptions = $.extend(true, {}, options);
  4939. var instance = new Select2($(this), instanceOptions);
  4940. });
  4941. return this;
  4942. } else if (typeof options === 'string') {
  4943. var ret;
  4944. var args = Array.prototype.slice.call(arguments, 1);
  4945. this.each(function () {
  4946. var instance = Utils.GetData(this, 'select2');
  4947. if (instance == null && window.console && console.error) {
  4948. console.error(
  4949. 'The select2(\'' + options + '\') method was called on an ' +
  4950. 'element that is not using Select2.'
  4951. );
  4952. }
  4953. ret = instance[options].apply(instance, args);
  4954. });
  4955. // Check if we should be returning `this`
  4956. if (thisMethods.indexOf(options) > -1) {
  4957. return this;
  4958. }
  4959. return ret;
  4960. } else {
  4961. throw new Error('Invalid arguments for Select2: ' + options);
  4962. }
  4963. };
  4964. }
  4965. if ($.fn.select2.defaults == null) {
  4966. $.fn.select2.defaults = Defaults;
  4967. }
  4968. return Select2;
  4969. });
  4970. // Return the AMD loader configuration so it can be used outside of this file
  4971. return {
  4972. define: S2.define,
  4973. require: S2.require
  4974. };
  4975. }());
  4976. // Autoload the jQuery bindings
  4977. // We know that all of the modules exist above this, so we're safe
  4978. var select2 = S2.require('jquery.select2');
  4979. // Hold the AMD module references on the jQuery function that was just loaded
  4980. // This allows Select2 to use the internal loader outside of this file, such
  4981. // as in the language files.
  4982. jQuery.fn.select2.amd = S2;
  4983. // Return the Select2 instance for anyone who is importing it.
  4984. return select2;
  4985. }));