splide.esm.js 135 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879
  1. /*!
  2. * Splide.js
  3. * Version : 2.4.21
  4. * License : MIT
  5. * Copyright: 2020 Naotoshi Fujita
  6. */
  7. (function webpackUniversalModuleDefinition(root, factory) {
  8. if(typeof exports === 'object' && typeof module === 'object')
  9. module.exports = factory();
  10. else if(typeof define === 'function' && define.amd)
  11. define([], factory);
  12. else if(typeof exports === 'object')
  13. exports["Splide"] = factory();
  14. else
  15. root["Splide"] = factory();
  16. })(self, function() {
  17. return /******/ (() => { // webpackBootstrap
  18. /******/ "use strict";
  19. /******/ // The require scope
  20. /******/ var __webpack_require__ = {};
  21. /******/
  22. /************************************************************************/
  23. /******/ /* webpack/runtime/define property getters */
  24. /******/ (() => {
  25. /******/ // define getter functions for harmony exports
  26. /******/ __webpack_require__.d = (exports, definition) => {
  27. /******/ for(var key in definition) {
  28. /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
  29. /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
  30. /******/ }
  31. /******/ }
  32. /******/ };
  33. /******/ })();
  34. /******/
  35. /******/ /* webpack/runtime/hasOwnProperty shorthand */
  36. /******/ (() => {
  37. /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
  38. /******/ })();
  39. /******/
  40. /******/ /* webpack/runtime/make namespace object */
  41. /******/ (() => {
  42. /******/ // define __esModule on exports
  43. /******/ __webpack_require__.r = (exports) => {
  44. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  45. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  46. /******/ }
  47. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  48. /******/ };
  49. /******/ })();
  50. /******/
  51. /************************************************************************/
  52. var __webpack_exports__ = {};
  53. // ESM COMPAT FLAG
  54. __webpack_require__.r(__webpack_exports__);
  55. // EXPORTS
  56. __webpack_require__.d(__webpack_exports__, {
  57. "default": () => (/* binding */ module_Splide)
  58. });
  59. // NAMESPACE OBJECT: ./src/js/constants/states.js
  60. var states_namespaceObject = {};
  61. __webpack_require__.r(states_namespaceObject);
  62. __webpack_require__.d(states_namespaceObject, {
  63. "CREATED": () => (CREATED),
  64. "DESTROYED": () => (DESTROYED),
  65. "IDLE": () => (IDLE),
  66. "MOUNTED": () => (MOUNTED),
  67. "MOVING": () => (MOVING)
  68. });
  69. ;// CONCATENATED MODULE: ./src/js/core/event.js
  70. /**
  71. * The function for providing an Event object simply managing events.
  72. *
  73. * @author Naotoshi Fujita
  74. * @copyright Naotoshi Fujita. All rights reserved.
  75. */
  76. /**
  77. * The function for providing an Event object simply managing events.
  78. */
  79. /* harmony default export */ const core_event = (function () {
  80. /**
  81. * Store all event data.
  82. *
  83. * @type {Array}
  84. */
  85. var data = [];
  86. var Event = {
  87. /**
  88. * Subscribe the given event(s).
  89. *
  90. * @param {string} events - An event name. Use space to separate multiple events.
  91. * Also, namespace is accepted by dot, such as 'resize.{namespace}'.
  92. * @param {function} handler - A callback function.
  93. * @param {Element} elm - Optional. Native event will be listened to when this arg is provided.
  94. * @param {Object} options - Optional. Options for addEventListener.
  95. */
  96. on: function on(events, handler, elm, options) {
  97. if (elm === void 0) {
  98. elm = null;
  99. }
  100. if (options === void 0) {
  101. options = {};
  102. }
  103. events.split(' ').forEach(function (event) {
  104. if (elm) {
  105. elm.addEventListener(event, handler, options);
  106. }
  107. data.push({
  108. event: event,
  109. handler: handler,
  110. elm: elm,
  111. options: options
  112. });
  113. });
  114. },
  115. /**
  116. * Unsubscribe the given event(s).
  117. *
  118. * @param {string} events - A event name or names split by space.
  119. * @param {Element} elm - Optional. removeEventListener() will be called when this arg is provided.
  120. */
  121. off: function off(events, elm) {
  122. if (elm === void 0) {
  123. elm = null;
  124. }
  125. events.split(' ').forEach(function (event) {
  126. data = data.filter(function (item) {
  127. if (item && item.event === event && item.elm === elm) {
  128. unsubscribe(item);
  129. return false;
  130. }
  131. return true;
  132. });
  133. });
  134. },
  135. /**
  136. * Emit an event.
  137. * This method is only for custom events.
  138. *
  139. * @param {string} event - An event name.
  140. * @param {*} args - Any number of arguments passed to handlers.
  141. */
  142. emit: function emit(event) {
  143. for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
  144. args[_key - 1] = arguments[_key];
  145. }
  146. data.forEach(function (item) {
  147. if (!item.elm && item.event.split('.')[0] === event) {
  148. item.handler.apply(item, args);
  149. }
  150. });
  151. },
  152. /**
  153. * Clear event data.
  154. */
  155. destroy: function destroy() {
  156. data.forEach(unsubscribe);
  157. data = [];
  158. }
  159. };
  160. /**
  161. * Remove the registered event listener.
  162. *
  163. * @param {Object} item - An object containing event data.
  164. */
  165. function unsubscribe(item) {
  166. if (item.elm) {
  167. item.elm.removeEventListener(item.event, item.handler, item.options);
  168. }
  169. }
  170. return Event;
  171. });
  172. ;// CONCATENATED MODULE: ./src/js/core/state.js
  173. /**
  174. * The function providing a super simple state system.
  175. *
  176. * @author Naotoshi Fujita
  177. * @copyright Naotoshi Fujita. All rights reserved.
  178. */
  179. /**
  180. * The function providing a super simple state system.
  181. *
  182. * @param {string|number} initialState - Provide the initial state value.
  183. */
  184. /* harmony default export */ const state = (function (initialState) {
  185. /**
  186. * Store the current state.
  187. *
  188. * @type {string|number}
  189. */
  190. var curr = initialState;
  191. return {
  192. /**
  193. * Change state.
  194. *
  195. * @param {string|number} state - A new state.
  196. */
  197. set: function set(state) {
  198. curr = state;
  199. },
  200. /**
  201. * Verify if the current state is given one or not.
  202. *
  203. * @param {string|number} state - A state name to be verified.
  204. *
  205. * @return {boolean} - True if the current state is the given one.
  206. */
  207. is: function is(state) {
  208. return state === curr;
  209. }
  210. };
  211. });
  212. ;// CONCATENATED MODULE: ./src/js/utils/object.js
  213. function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
  214. /**
  215. * Some utility functions related with Object, supporting IE.
  216. *
  217. * @author Naotoshi Fujita
  218. * @copyright Naotoshi Fujita. All rights reserved.
  219. */
  220. var keys = Object.keys;
  221. /**
  222. * Iterate an object like Array.forEach.
  223. * IE doesn't support forEach of HTMLCollection.
  224. *
  225. * @param {Object} obj - An object.
  226. * @param {function} callback - A function handling each value. Arguments are value, property and index.
  227. */
  228. function each(obj, callback) {
  229. keys(obj).some(function (key, index) {
  230. return callback(obj[key], key, index);
  231. });
  232. }
  233. /**
  234. * Return values of the given object as an array.
  235. * IE doesn't support Object.values.
  236. *
  237. * @param {Object} obj - An object.
  238. *
  239. * @return {Array} - An array containing all values of the given object.
  240. */
  241. function values(obj) {
  242. return keys(obj).map(function (key) {
  243. return obj[key];
  244. });
  245. }
  246. /**
  247. * Check if the given subject is object or not.
  248. *
  249. * @param {*} subject - A subject to be verified.
  250. *
  251. * @return {boolean} - True if object, false otherwise.
  252. */
  253. function isObject(subject) {
  254. return typeof subject === 'object';
  255. }
  256. /**
  257. * Merge two objects deeply.
  258. *
  259. * @param {Object} to - An object where "from" is merged.
  260. * @param {Object} from - An object merged to "to".
  261. *
  262. * @return {Object} - A merged object.
  263. */
  264. function merge(_ref, from) {
  265. var to = _extends({}, _ref);
  266. each(from, function (value, key) {
  267. if (isObject(value)) {
  268. if (!isObject(to[key])) {
  269. to[key] = {};
  270. }
  271. to[key] = merge(to[key], value);
  272. } else {
  273. to[key] = value;
  274. }
  275. });
  276. return to;
  277. }
  278. /**
  279. * Assign all properties "from" to "to" object.
  280. *
  281. * @param {Object} to - An object where properties are assigned.
  282. * @param {Object} from - An object whose properties are assigned to "to".
  283. *
  284. * @return {Object} - An assigned object.
  285. */
  286. function object_assign(to, from) {
  287. keys(from).forEach(function (key) {
  288. if (!to[key]) {
  289. Object.defineProperty(to, key, Object.getOwnPropertyDescriptor(from, key));
  290. }
  291. });
  292. return to;
  293. }
  294. ;// CONCATENATED MODULE: ./src/js/utils/utils.js
  295. /**
  296. * A package of some miscellaneous utility functions.
  297. *
  298. * @author Naotoshi Fujita
  299. * @copyright Naotoshi Fujita. All rights reserved.
  300. */
  301. /**
  302. * Convert the given value to array.
  303. *
  304. * @param {*} value - Any value.
  305. *
  306. * @return {*[]} - Array containing the given value.
  307. */
  308. function toArray(value) {
  309. return Array.isArray(value) ? value : [value];
  310. }
  311. /**
  312. * Check if the given value is between min and max.
  313. * Min will be returned when the value is less than min or max will do when greater than max.
  314. *
  315. * @param {number} value - A number to be checked.
  316. * @param {number} m1 - Minimum or maximum number.
  317. * @param {number} m2 - Maximum or minimum number.
  318. *
  319. * @return {number} - A value itself, min or max.
  320. */
  321. function between(value, m1, m2) {
  322. return Math.min(Math.max(value, m1 > m2 ? m2 : m1), m1 > m2 ? m1 : m2);
  323. }
  324. /**
  325. * The sprintf method with minimum functionality.
  326. *
  327. * @param {string} format - The string format.
  328. * @param {string|Array} replacements - Replacements accepting multiple arguments.
  329. *
  330. * @returns {string} - Converted string.
  331. */
  332. function sprintf(format, replacements) {
  333. var i = 0;
  334. return format.replace(/%s/g, function () {
  335. return toArray(replacements)[i++];
  336. });
  337. }
  338. /**
  339. * Append px unit to the given subject if necessary.
  340. *
  341. * @param {number|string} value - A value that may not include an unit.
  342. *
  343. * @return {string} - If the value is string, return itself.
  344. * If number, do value + "px". An empty string, otherwise.
  345. */
  346. function unit(value) {
  347. var type = typeof value;
  348. if (type === 'number' && value > 0) {
  349. return parseFloat(value) + 'px';
  350. }
  351. return type === 'string' ? value : '';
  352. }
  353. /**
  354. * Pad start with 0.
  355. *
  356. * @param {number} number - A number to be filled with 0.
  357. *
  358. * @return {string|number} - Padded number.
  359. */
  360. function pad(number) {
  361. return number < 10 ? '0' + number : number;
  362. }
  363. /**
  364. * Convert the given value to pixel.
  365. *
  366. * @param {Element} root - Root element where a dummy div is appended.
  367. * @param {string|number} value - CSS value to be converted, such as 10rem.
  368. *
  369. * @return {number} - Pixel.
  370. */
  371. function toPixel(root, value) {
  372. if (typeof value === 'string') {
  373. var div = create('div', {});
  374. applyStyle(div, {
  375. position: 'absolute',
  376. width: value
  377. });
  378. append(root, div);
  379. value = div.clientWidth;
  380. dom_remove(div);
  381. }
  382. return +value || 0;
  383. }
  384. ;// CONCATENATED MODULE: ./src/js/utils/dom.js
  385. /**
  386. * Some utility functions related with DOM.
  387. *
  388. * @author Naotoshi Fujita
  389. * @copyright Naotoshi Fujita. All rights reserved.
  390. */
  391. /**
  392. * Find the first element matching the given selector.
  393. * Be aware that all selectors after a space are ignored.
  394. *
  395. * @param {Element|Node} elm - An ancestor element.
  396. * @param {string} selector - DOMString.
  397. *
  398. * @return {Element|null} - A found element or null.
  399. */
  400. function find(elm, selector) {
  401. return elm ? elm.querySelector(selector.split(' ')[0]) : null;
  402. }
  403. /**
  404. * Find a first child having the given tag or class name.
  405. *
  406. * @param {Element} parent - A parent element.
  407. * @param {string} tagOrClassName - A tag or class name.
  408. *
  409. * @return {Element|undefined} - A found element on success or undefined on failure.
  410. */
  411. function child(parent, tagOrClassName) {
  412. return children(parent, tagOrClassName)[0];
  413. }
  414. /**
  415. * Return chile elements that matches the provided tag or class name.
  416. *
  417. * @param {Element} parent - A parent element.
  418. * @param {string} tagOrClassName - A tag or class name.
  419. *
  420. * @return {Element[]} - Found elements.
  421. */
  422. function children(parent, tagOrClassName) {
  423. if (parent) {
  424. return values(parent.children).filter(function (child) {
  425. return hasClass(child, tagOrClassName.split(' ')[0]) || child.tagName === tagOrClassName;
  426. });
  427. }
  428. return [];
  429. }
  430. /**
  431. * Create an element with some optional attributes.
  432. *
  433. * @param {string} tag - A tag name.
  434. * @param {Object} attrs - An object any attribute pairs of name and value.
  435. *
  436. * @return {Element} - A created element.
  437. */
  438. function create(tag, attrs) {
  439. var elm = document.createElement(tag);
  440. each(attrs, function (value, key) {
  441. return setAttribute(elm, key, value);
  442. });
  443. return elm;
  444. }
  445. /**
  446. * Convert HTML string to DOM node.
  447. *
  448. * @param {string} html - HTML string.
  449. *
  450. * @return {Node} - A created node.
  451. */
  452. function domify(html) {
  453. var div = create('div', {});
  454. div.innerHTML = html;
  455. return div.firstChild;
  456. }
  457. /**
  458. * Remove a given element from a DOM tree.
  459. *
  460. * @param {Element|Element[]} elms - Element(s) to be removed.
  461. */
  462. function dom_remove(elms) {
  463. toArray(elms).forEach(function (elm) {
  464. if (elm) {
  465. var parent = elm.parentElement;
  466. parent && parent.removeChild(elm);
  467. }
  468. });
  469. }
  470. /**
  471. * Append a child to a given element.
  472. *
  473. * @param {Element} parent - A parent element.
  474. * @param {Element} child - An element to be appended.
  475. */
  476. function append(parent, child) {
  477. if (parent) {
  478. parent.appendChild(child);
  479. }
  480. }
  481. /**
  482. * Insert an element before the reference element.
  483. *
  484. * @param {Element|Node} ref - A reference element.
  485. * @param {Element} elm - An element to be inserted.
  486. */
  487. function before(elm, ref) {
  488. if (elm && ref) {
  489. var parent = ref.parentElement;
  490. parent && parent.insertBefore(elm, ref);
  491. }
  492. }
  493. /**
  494. * Apply styles to the given element.
  495. *
  496. * @param {Element} elm - An element where styles are applied.
  497. * @param {Object} styles - Object containing styles.
  498. */
  499. function applyStyle(elm, styles) {
  500. if (elm) {
  501. each(styles, function (value, prop) {
  502. if (value !== null) {
  503. elm.style[prop] = value;
  504. }
  505. });
  506. }
  507. }
  508. /**
  509. * Add or remove classes to/from the element.
  510. * This function is for internal usage.
  511. *
  512. * @param {Element} elm - An element where classes are added.
  513. * @param {string|string[]} classes - Class names being added.
  514. * @param {boolean} remove - Whether to remove or add classes.
  515. */
  516. function addOrRemoveClasses(elm, classes, remove) {
  517. if (elm) {
  518. toArray(classes).forEach(function (name) {
  519. if (name) {
  520. elm.classList[remove ? 'remove' : 'add'](name);
  521. }
  522. });
  523. }
  524. }
  525. /**
  526. * Add classes to the element.
  527. *
  528. * @param {Element} elm - An element where classes are added.
  529. * @param {string|string[]} classes - Class names being added.
  530. */
  531. function addClass(elm, classes) {
  532. addOrRemoveClasses(elm, classes, false);
  533. }
  534. /**
  535. * Remove a class from the element.
  536. *
  537. * @param {Element} elm - An element where classes are removed.
  538. * @param {string|string[]} classes - A class name being removed.
  539. */
  540. function removeClass(elm, classes) {
  541. addOrRemoveClasses(elm, classes, true);
  542. }
  543. /**
  544. * Verify if the provided element has the class or not.
  545. *
  546. * @param {Element} elm - An element.
  547. * @param {string} className - A class name.
  548. *
  549. * @return {boolean} - True if the element has the class or false if not.
  550. */
  551. function hasClass(elm, className) {
  552. return !!elm && elm.classList.contains(className);
  553. }
  554. /**
  555. * Set attribute to the given element.
  556. *
  557. * @param {Element} elm - An element where an attribute is assigned.
  558. * @param {string} name - Attribute name.
  559. * @param {string|number|boolean} value - Attribute value.
  560. */
  561. function setAttribute(elm, name, value) {
  562. if (elm) {
  563. elm.setAttribute(name, value);
  564. }
  565. }
  566. /**
  567. * Get attribute from the given element.
  568. *
  569. * @param {Element} elm - An element where an attribute is assigned.
  570. * @param {string} name - Attribute name.
  571. *
  572. * @return {string} - The value of the given attribute if available. An empty string if not.
  573. */
  574. function getAttribute(elm, name) {
  575. return elm ? elm.getAttribute(name) : '';
  576. }
  577. /**
  578. * Remove attribute from the given element.
  579. *
  580. * @param {Element|Element[]} elms - An element where an attribute is removed.
  581. * @param {string|string[]} names - Attribute name.
  582. */
  583. function removeAttribute(elms, names) {
  584. toArray(names).forEach(function (name) {
  585. toArray(elms).forEach(function (elm) {
  586. return elm && elm.removeAttribute(name);
  587. });
  588. });
  589. }
  590. /**
  591. * Return the Rect object of the provided object.
  592. *
  593. * @param {Element} elm - An element.
  594. *
  595. * @return {ClientRect|DOMRect} - A rect object.
  596. */
  597. function getRect(elm) {
  598. return elm.getBoundingClientRect();
  599. }
  600. /**
  601. * Trigger the given callback after all images contained by the element are loaded.
  602. *
  603. * @param {Element} elm - Element that may contain images.
  604. * @param {Function} callback - Callback function fired right after all images are loaded.
  605. */
  606. function loaded(elm, callback) {
  607. var images = elm.querySelectorAll('img');
  608. var length = images.length;
  609. if (length) {
  610. var count = 0;
  611. each(images, function (img) {
  612. img.onload = img.onerror = function () {
  613. if (++count === length) {
  614. callback();
  615. }
  616. };
  617. });
  618. } else {
  619. // Trigger the callback immediately if there is no image.
  620. callback();
  621. }
  622. }
  623. ;// CONCATENATED MODULE: ./src/js/constants/types.js
  624. /**
  625. * Export slider types.
  626. *
  627. * @author Naotoshi Fujita
  628. * @copyright Naotoshi Fujita. All rights reserved.
  629. */
  630. /**
  631. * Normal slider.
  632. *
  633. * @type {string}
  634. */
  635. var SLIDE = 'slide';
  636. /**
  637. * Loop after the last slide and before the first one.
  638. *
  639. * @type {string}
  640. */
  641. var LOOP = 'loop';
  642. /**
  643. * The track doesn't move.
  644. *
  645. * @type {string}
  646. */
  647. var FADE = 'fade';
  648. ;// CONCATENATED MODULE: ./src/js/transitions/slide/index.js
  649. /**
  650. * The component for general slide effect transition.
  651. *
  652. * @author Naotoshi Fujita
  653. * @copyright Naotoshi Fujita. All rights reserved.
  654. */
  655. /**
  656. * The component for general slide effect transition.
  657. *
  658. * @param {Splide} Splide - A Splide instance.
  659. * @param {Object} Components - An object containing components.
  660. *
  661. * @return {Object} - The component object.
  662. */
  663. /* harmony default export */ const slide = (function (Splide, Components) {
  664. /**
  665. * Hold the list element.
  666. *
  667. * @type {Element}
  668. */
  669. var list;
  670. /**
  671. * Hold the onEnd callback function.
  672. *
  673. * @type {function}
  674. */
  675. var endCallback;
  676. return {
  677. /**
  678. * Called when the component is mounted.
  679. */
  680. mount: function mount() {
  681. list = Components.Elements.list;
  682. Splide.on('transitionend', function (e) {
  683. if (e.target === list && endCallback) {
  684. endCallback();
  685. }
  686. }, list);
  687. },
  688. /**
  689. * Start transition.
  690. *
  691. * @param {number} destIndex - Destination slide index that might be clone's.
  692. * @param {number} newIndex - New index.
  693. * @param {number} prevIndex - Previous index.
  694. * @param {Object} coord - Destination coordinates.
  695. * @param {function} done - Callback function must be invoked when transition is completed.
  696. */
  697. start: function start(destIndex, newIndex, prevIndex, coord, done) {
  698. var options = Splide.options;
  699. var edgeIndex = Components.Controller.edgeIndex;
  700. var speed = options.speed;
  701. endCallback = done;
  702. if (Splide.is(SLIDE)) {
  703. if (prevIndex === 0 && newIndex >= edgeIndex || prevIndex >= edgeIndex && newIndex === 0) {
  704. speed = options.rewindSpeed || speed;
  705. }
  706. }
  707. applyStyle(list, {
  708. transition: "transform " + speed + "ms " + options.easing,
  709. transform: "translate(" + coord.x + "px," + coord.y + "px)"
  710. });
  711. }
  712. };
  713. });
  714. ;// CONCATENATED MODULE: ./src/js/transitions/fade/index.js
  715. /**
  716. * The component for fade transition.
  717. *
  718. * @author Naotoshi Fujita
  719. * @copyright Naotoshi Fujita. All rights reserved.
  720. */
  721. /**
  722. * The component for fade transition.
  723. *
  724. * @param {Splide} Splide - A Splide instance.
  725. * @param {Object} Components - An object containing components.
  726. *
  727. * @return {Object} - The component object.
  728. */
  729. /* harmony default export */ const fade = (function (Splide, Components) {
  730. var Fade = {
  731. /**
  732. * Called when the component is mounted.
  733. * Apply transition style to the first slide.
  734. */
  735. mount: function mount() {
  736. apply(Splide.index);
  737. },
  738. /**
  739. * Start transition.
  740. *
  741. * @param {number} destIndex - Destination slide index that might be clone's.
  742. * @param {number} newIndex - New index.
  743. * @param {number} prevIndex - Previous index.
  744. * @param {Object} coord - Destination coordinates.
  745. * @param {function} done - Callback function must be invoked when transition is completed.
  746. */
  747. start: function start(destIndex, newIndex, prevIndex, coord, done) {
  748. var track = Components.Elements.track;
  749. applyStyle(track, {
  750. height: unit(track.clientHeight)
  751. });
  752. apply(newIndex);
  753. setTimeout(function () {
  754. done();
  755. applyStyle(track, {
  756. height: ''
  757. });
  758. });
  759. }
  760. };
  761. /**
  762. * Apply transition style to the slide specified by the given index.
  763. *
  764. * @param {number} index - A slide index.
  765. */
  766. function apply(index) {
  767. var options = Splide.options;
  768. applyStyle(Components.Elements.slides[index], {
  769. transition: "opacity " + options.speed + "ms " + options.easing
  770. });
  771. }
  772. return Fade;
  773. });
  774. ;// CONCATENATED MODULE: ./src/js/transitions/index.js
  775. /**
  776. * Export transition components.
  777. *
  778. * @author Naotoshi Fujita
  779. * @copyright Naotoshi Fujita. All rights reserved.
  780. */
  781. ;// CONCATENATED MODULE: ./src/js/core/composer.js
  782. /**
  783. * Provide a function for composing components.
  784. *
  785. * @author Naotoshi Fujita
  786. * @copyright Naotoshi Fujita. All rights reserved.
  787. */
  788. /**
  789. * Compose components.
  790. *
  791. * @param {Splide} Splide - Splide instance.
  792. * @param {Object} Components - Additional components.
  793. * @param {function} Transition - Change component for transition.
  794. *
  795. * @return {Object} - An object containing all components.
  796. */
  797. function compose(Splide, Components, Transition) {
  798. var components = {};
  799. each(Components, function (Component, name) {
  800. components[name] = Component(Splide, components, name.toLowerCase());
  801. });
  802. if (!Transition) {
  803. Transition = Splide.is(FADE) ? fade : slide;
  804. }
  805. components.Transition = Transition(Splide, components);
  806. return components;
  807. }
  808. ;// CONCATENATED MODULE: ./src/js/utils/error.js
  809. /**
  810. * Utility functions for outputting logs.
  811. *
  812. * @author Naotoshi Fujita
  813. * @copyright Naotoshi Fujita. All rights reserved.
  814. */
  815. /**
  816. * Prefix of an error massage.
  817. *
  818. * @type {string}
  819. */
  820. var MESSAGE_PREFIX = '[SPLIDE]';
  821. /**
  822. * Display an error message on the browser console.
  823. *
  824. * @param {string} message - An error message.
  825. */
  826. function error(message) {
  827. console.error(MESSAGE_PREFIX + " " + message);
  828. }
  829. /**
  830. * Check existence of the given object and throw an error if it doesn't.
  831. *
  832. * @throws {Error}
  833. *
  834. * @param {*} subject - A subject to be confirmed.
  835. * @param {string} message - An error message.
  836. */
  837. function exist(subject, message) {
  838. if (!subject) {
  839. throw new Error(message);
  840. }
  841. }
  842. ;// CONCATENATED MODULE: ./src/js/constants/classes.js
  843. /**
  844. * Export class names.
  845. *
  846. * @author Naotoshi Fujita
  847. * @copyright Naotoshi Fujita. All rights reserved.
  848. */
  849. /**
  850. * A root class name.
  851. *
  852. * @type {string}
  853. */
  854. var ROOT = 'splide';
  855. /**
  856. * The definition table of all classes for elements.
  857. * They might be modified by options.
  858. *
  859. * @type {Object}
  860. */
  861. var ELEMENT_CLASSES = {
  862. root: ROOT,
  863. slider: ROOT + "__slider",
  864. track: ROOT + "__track",
  865. list: ROOT + "__list",
  866. slide: ROOT + "__slide",
  867. container: ROOT + "__slide__container",
  868. arrows: ROOT + "__arrows",
  869. arrow: ROOT + "__arrow",
  870. prev: ROOT + "__arrow--prev",
  871. next: ROOT + "__arrow--next",
  872. pagination: ROOT + "__pagination",
  873. page: ROOT + "__pagination__page",
  874. clone: ROOT + "__slide--clone",
  875. progress: ROOT + "__progress",
  876. bar: ROOT + "__progress__bar",
  877. autoplay: ROOT + "__autoplay",
  878. play: ROOT + "__play",
  879. pause: ROOT + "__pause",
  880. spinner: ROOT + "__spinner",
  881. sr: ROOT + "__sr"
  882. };
  883. /**
  884. * Definitions of status classes.
  885. *
  886. * @type {Object}
  887. */
  888. var STATUS_CLASSES = {
  889. active: 'is-active',
  890. visible: 'is-visible',
  891. loading: 'is-loading'
  892. };
  893. ;// CONCATENATED MODULE: ./src/js/constants/i18n.js
  894. /**
  895. * Export i18n texts as object.
  896. *
  897. * @author Naotoshi Fujita
  898. * @copyright Naotoshi Fujita. All rights reserved.
  899. */
  900. /**
  901. * Texts for i18n.
  902. *
  903. * @type {Object}
  904. */
  905. var I18N = {
  906. prev: 'Previous slide',
  907. next: 'Next slide',
  908. first: 'Go to first slide',
  909. last: 'Go to last slide',
  910. slideX: 'Go to slide %s',
  911. pageX: 'Go to page %s',
  912. play: 'Start autoplay',
  913. pause: 'Pause autoplay'
  914. };
  915. ;// CONCATENATED MODULE: ./src/js/constants/defaults.js
  916. /**
  917. * Export default options.
  918. *
  919. * @author Naotoshi Fujita
  920. * @copyright Naotoshi Fujita. All rights reserved.
  921. */
  922. var DEFAULTS = {
  923. /**
  924. * Determine a slider type.
  925. * - 'slide': Regular slider.
  926. * - 'loop' : Carousel slider.
  927. * - 'fade' : Change slides with fade transition. perPage, drag options are ignored.
  928. *
  929. * @type {string}
  930. */
  931. type: 'slide',
  932. /**
  933. * Whether to rewind a slider before the first slide or after the last one.
  934. * In "loop" mode, this option is ignored.
  935. *
  936. * @type {boolean}
  937. */
  938. rewind: false,
  939. /**
  940. * Transition speed in milliseconds.
  941. *
  942. * @type {number}
  943. */
  944. speed: 400,
  945. /**
  946. * Transition speed on rewind in milliseconds.
  947. *
  948. * @type {number}
  949. */
  950. rewindSpeed: 0,
  951. /**
  952. * Whether to prevent any actions while a slider is transitioning.
  953. * If false, navigation, drag and swipe work while the slider is running.
  954. * Even so, it will be forced to wait for transition in some cases in the loop mode to shift a slider.
  955. *
  956. * @type {boolean}
  957. */
  958. waitForTransition: true,
  959. /**
  960. * Define slider max width.
  961. *
  962. * @type {number}
  963. */
  964. width: 0,
  965. /**
  966. * Define slider height.
  967. *
  968. * @type {number}
  969. */
  970. height: 0,
  971. /**
  972. * Fix width of slides. CSS format is allowed such as 10em, 80% or 80vw.
  973. * perPage number will be ignored when this option is falsy.
  974. *
  975. * @type {number|string}
  976. */
  977. fixedWidth: 0,
  978. /**
  979. * Fix height of slides. CSS format is allowed such as 10em, 80vh but % unit is not accepted.
  980. * heightRatio option will be ignored when this option is falsy.
  981. *
  982. * @type {number|string}
  983. */
  984. fixedHeight: 0,
  985. /**
  986. * Determine height of slides by ratio to a slider width.
  987. * This will be ignored when the fixedHeight is provided.
  988. *
  989. * @type {number}
  990. */
  991. heightRatio: 0,
  992. /**
  993. * If true, slide width will be determined by the element width itself.
  994. * - perPage/perMove should be 1.
  995. *
  996. * @type {boolean}
  997. */
  998. autoWidth: false,
  999. /**
  1000. * If true, slide height will be determined by the element width itself.
  1001. * - perPage/perMove should be 1.
  1002. *
  1003. * @type {boolean}
  1004. */
  1005. autoHeight: false,
  1006. /**
  1007. * Determine how many slides should be displayed per page.
  1008. *
  1009. * @type {number}
  1010. */
  1011. perPage: 1,
  1012. /**
  1013. * Determine how many slides should be moved when a slider goes to next or perv.
  1014. *
  1015. * @type {number}
  1016. */
  1017. perMove: 0,
  1018. /**
  1019. * Determine manually how many clones should be generated on the left and right side.
  1020. * The total number of clones will be twice of this number.
  1021. *
  1022. * @type {number}
  1023. */
  1024. clones: 0,
  1025. /**
  1026. * Start index.
  1027. *
  1028. * @type {number}
  1029. */
  1030. start: 0,
  1031. /**
  1032. * Determine which slide should be focused if there are multiple slides in a page.
  1033. * A string "center" is acceptable for centering slides.
  1034. *
  1035. * @type {boolean|number|string}
  1036. */
  1037. focus: false,
  1038. /**
  1039. * Gap between slides. CSS format is allowed such as 1em.
  1040. *
  1041. * @type {number|string}
  1042. */
  1043. gap: 0,
  1044. /**
  1045. * Set padding-left/right in horizontal mode or padding-top/bottom in vertical one.
  1046. * Give a single value to set a same size for both sides or
  1047. * do an object for different sizes.
  1048. * Also, CSS format is allowed such as 1em.
  1049. *
  1050. * @example
  1051. * - 10: Number
  1052. * - '1em': CSS format.
  1053. * - { left: 0, right: 20 }: Object for different sizes in horizontal mode.
  1054. * - { top: 0, bottom: 20 }: Object for different sizes in vertical mode.
  1055. *
  1056. * @type {number|string|Object}
  1057. */
  1058. padding: 0,
  1059. /**
  1060. * Whether to append arrows.
  1061. *
  1062. * @type {boolean}
  1063. */
  1064. arrows: true,
  1065. /**
  1066. * Change the arrow SVG path like 'm7.61 0.807-2.12...'.
  1067. *
  1068. * @type {string}
  1069. */
  1070. arrowPath: '',
  1071. /**
  1072. * Whether to append pagination(indicator dots) or not.
  1073. *
  1074. * @type {boolean}
  1075. */
  1076. pagination: true,
  1077. /**
  1078. * Activate autoplay.
  1079. *
  1080. * @type {boolean}
  1081. */
  1082. autoplay: false,
  1083. /**
  1084. * Autoplay interval in milliseconds.
  1085. *
  1086. * @type {number}
  1087. */
  1088. interval: 5000,
  1089. /**
  1090. * Whether to stop autoplay when a slider is hovered.
  1091. *
  1092. * @type {boolean}
  1093. */
  1094. pauseOnHover: true,
  1095. /**
  1096. * Whether to stop autoplay when a slider elements are focused.
  1097. * True is recommended for accessibility.
  1098. *
  1099. * @type {boolean}
  1100. */
  1101. pauseOnFocus: true,
  1102. /**
  1103. * Whether to reset progress of the autoplay timer when resumed.
  1104. *
  1105. * @type {boolean}
  1106. */
  1107. resetProgress: true,
  1108. /**
  1109. * Loading images lazily.
  1110. * Image src must be provided by a data-splide-lazy attribute.
  1111. *
  1112. * - false: Do nothing.
  1113. * - 'nearby': Only images around an active slide will be loaded.
  1114. * - 'sequential': All images will be sequentially loaded.
  1115. *
  1116. * @type {boolean|string}
  1117. */
  1118. lazyLoad: false,
  1119. /**
  1120. * This option works only when a lazyLoad option is "nearby".
  1121. * Determine how many pages(not slides) around an active slide should be loaded beforehand.
  1122. *
  1123. * @type {number}
  1124. */
  1125. preloadPages: 1,
  1126. /**
  1127. * Easing for CSS transition. For example, linear, ease or cubic-bezier().
  1128. *
  1129. * @type {string}
  1130. */
  1131. easing: 'cubic-bezier(.42,.65,.27,.99)',
  1132. /**
  1133. * Whether to enable keyboard shortcuts
  1134. * - true or 'global': Listen to keydown event of the document.
  1135. * - 'focused': Listen to the keydown event of the slider root element. tabindex="0" will be added to the element.
  1136. * - false: Disable keyboard shortcuts.
  1137. *
  1138. * @type {boolean|string}
  1139. */
  1140. keyboard: 'global',
  1141. /**
  1142. * Whether to allow mouse drag and touch swipe.
  1143. *
  1144. * @type {boolean}
  1145. */
  1146. drag: true,
  1147. /**
  1148. * The angle threshold for drag.
  1149. * The slider starts moving only when the drag angle is less than this threshold.
  1150. *
  1151. * @type {number}
  1152. */
  1153. dragAngleThreshold: 30,
  1154. /**
  1155. * Distance threshold for determining if the action is "flick" or "swipe".
  1156. * When a drag distance is over this value, the action will be treated as "swipe", not "flick".
  1157. *
  1158. * @type {number}
  1159. */
  1160. swipeDistanceThreshold: 150,
  1161. /**
  1162. * Velocity threshold for determining if the action is "flick" or "swipe".
  1163. * Around 0.5 is recommended.
  1164. *
  1165. * @type {number}
  1166. */
  1167. flickVelocityThreshold: .6,
  1168. /**
  1169. * Determine power of flick. The larger number this is, the farther a slider runs by flick.
  1170. * Around 500 is recommended.
  1171. *
  1172. * @type {number}
  1173. */
  1174. flickPower: 600,
  1175. /**
  1176. * Limit a number of pages to move by flick.
  1177. *
  1178. * @type {number}
  1179. */
  1180. flickMaxPages: 1,
  1181. /**
  1182. * Slider direction.
  1183. * - 'ltr': Left to right.
  1184. * - 'rtl': Right to left.
  1185. * - 'ttb': Top to bottom.
  1186. *
  1187. * @type {string}
  1188. */
  1189. direction: 'ltr',
  1190. /**
  1191. * Set img src to background-image of its parent element.
  1192. * Images with various sizes can be displayed as same dimension without cropping work.
  1193. * fixedHeight or heightRatio is required.
  1194. *
  1195. * @type {boolean}
  1196. */
  1197. cover: false,
  1198. /**
  1199. * Whether to enable accessibility(aria and screen reader texts) or not.
  1200. *
  1201. * @type {boolean}
  1202. */
  1203. accessibility: true,
  1204. /**
  1205. * Whether to add tabindex="0" to visible slides or not.
  1206. *
  1207. * @type {boolean}
  1208. */
  1209. slideFocus: true,
  1210. /**
  1211. * Determine if a slider is navigation for another.
  1212. * Use "sync" API to synchronize two sliders.
  1213. *
  1214. * @type {boolean}
  1215. */
  1216. isNavigation: false,
  1217. /**
  1218. * Whether to trim spaces before the fist slide or after the last one when "focus" is not 0.
  1219. *
  1220. * @type {boolean}
  1221. */
  1222. trimSpace: true,
  1223. /**
  1224. * The "is-active" class is added after transition as default.
  1225. * If true, it will be added before move.
  1226. *
  1227. * @type {boolean}
  1228. */
  1229. updateOnMove: false,
  1230. /**
  1231. * Throttle duration in milliseconds for the resize event.
  1232. *
  1233. * @type {number}
  1234. */
  1235. throttle: 100,
  1236. /**
  1237. * Whether to destroy a slider or not.
  1238. *
  1239. * @type {boolean}
  1240. */
  1241. destroy: false,
  1242. /**
  1243. * Options for specific breakpoints.
  1244. *
  1245. * @example
  1246. * {
  1247. * 1000: {
  1248. * perPage: 3,
  1249. * gap: 20
  1250. * },
  1251. * 600: {
  1252. * perPage: 1,
  1253. * gap: 5,
  1254. * }
  1255. * }
  1256. *
  1257. * @type {boolean|Object}
  1258. */
  1259. breakpoints: false,
  1260. /**
  1261. * Collection of class names.
  1262. *
  1263. * @see ./classes.js
  1264. *
  1265. * @type {Object}
  1266. */
  1267. classes: ELEMENT_CLASSES,
  1268. /**
  1269. * Collection of i18n texts.
  1270. *
  1271. * @see ./i18n.js
  1272. *
  1273. * @type {Object}
  1274. */
  1275. i18n: I18N
  1276. };
  1277. ;// CONCATENATED MODULE: ./src/js/constants/states.js
  1278. /**
  1279. * Export state constants.
  1280. *
  1281. * @author Naotoshi Fujita
  1282. * @copyright Naotoshi Fujita. All rights reserved.
  1283. */
  1284. /**
  1285. * Splide has been just created.
  1286. *
  1287. * @type {number}
  1288. */
  1289. var CREATED = 1;
  1290. /**
  1291. * All components have been mounted and initialized.
  1292. *
  1293. * @type {number}
  1294. */
  1295. var MOUNTED = 2;
  1296. /**
  1297. * Splide is ready for transition.
  1298. *
  1299. * @type {number}
  1300. */
  1301. var IDLE = 3;
  1302. /**
  1303. * Splide is moving.
  1304. *
  1305. * @type {number}
  1306. */
  1307. var MOVING = 4;
  1308. /**
  1309. * Splide is moving.
  1310. *
  1311. * @type {number}
  1312. */
  1313. var DESTROYED = 5;
  1314. ;// CONCATENATED MODULE: ./src/js/splide.js
  1315. function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
  1316. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  1317. /**
  1318. * The main class for applying Splide to an element.
  1319. *
  1320. * @author Naotoshi Fujita
  1321. * @copyright Naotoshi Fujita. All rights reserved.
  1322. */
  1323. /**
  1324. * The main class for applying Splide to an element,
  1325. * providing some APIs to control the behavior.
  1326. */
  1327. var Splide = /*#__PURE__*/function () {
  1328. /**
  1329. * Splide constructor.
  1330. *
  1331. * @throws {Error} When the given root element or selector is invalid.
  1332. *
  1333. * @param {Element|string} root - A selector for a root element or an element itself.
  1334. * @param {Object} options - Optional. Options to change default behaviour.
  1335. * @param {Object} Components - Optional. Components.
  1336. */
  1337. function Splide(root, options, Components) {
  1338. if (options === void 0) {
  1339. options = {};
  1340. }
  1341. if (Components === void 0) {
  1342. Components = {};
  1343. }
  1344. this.root = root instanceof Element ? root : document.querySelector(root);
  1345. exist(this.root, 'An invalid element/selector was given.');
  1346. this.Components = null;
  1347. this.Event = core_event();
  1348. this.State = state(CREATED);
  1349. this.STATES = states_namespaceObject;
  1350. this._o = merge(DEFAULTS, options);
  1351. this._i = 0;
  1352. this._c = Components;
  1353. this._e = {}; // Extensions
  1354. this._t = null; // Transition
  1355. }
  1356. /**
  1357. * Compose and mount components.
  1358. *
  1359. * @param {Object} Extensions - Optional. Additional components.
  1360. * @param {function} Transition - Optional. Set a custom transition component.
  1361. *
  1362. * @return {Splide|undefined} - This instance or undefined if an exception occurred.
  1363. */
  1364. var _proto = Splide.prototype;
  1365. _proto.mount = function mount(Extensions, Transition) {
  1366. var _this = this;
  1367. if (Extensions === void 0) {
  1368. Extensions = this._e;
  1369. }
  1370. if (Transition === void 0) {
  1371. Transition = this._t;
  1372. }
  1373. // Reset the state.
  1374. this.State.set(CREATED);
  1375. this._e = Extensions;
  1376. this._t = Transition;
  1377. this.Components = compose(this, merge(this._c, Extensions), Transition);
  1378. try {
  1379. each(this.Components, function (component, key) {
  1380. var required = component.required;
  1381. if (required === undefined || required) {
  1382. component.mount && component.mount();
  1383. } else {
  1384. delete _this.Components[key];
  1385. }
  1386. });
  1387. } catch (e) {
  1388. error(e.message);
  1389. return;
  1390. }
  1391. var State = this.State;
  1392. State.set(MOUNTED);
  1393. each(this.Components, function (component) {
  1394. component.mounted && component.mounted();
  1395. });
  1396. this.emit('mounted');
  1397. State.set(IDLE);
  1398. this.emit('ready');
  1399. applyStyle(this.root, {
  1400. visibility: 'visible'
  1401. });
  1402. this.on('move drag', function () {
  1403. return State.set(MOVING);
  1404. }).on('moved dragged', function () {
  1405. return State.set(IDLE);
  1406. });
  1407. return this;
  1408. }
  1409. /**
  1410. * Set sync target.
  1411. *
  1412. * @param {Splide} splide - A Splide instance.
  1413. *
  1414. * @return {Splide} - This instance.
  1415. */
  1416. ;
  1417. _proto.sync = function sync(splide) {
  1418. this.sibling = splide;
  1419. return this;
  1420. }
  1421. /**
  1422. * Register callback fired on the given event(s).
  1423. *
  1424. * @param {string} events - An event name. Use space to separate multiple events.
  1425. * Also, namespace is accepted by dot, such as 'resize.{namespace}'.
  1426. * @param {function} handler - A callback function.
  1427. * @param {Element} elm - Optional. Native event will be listened to when this arg is provided.
  1428. * @param {Object} options - Optional. Options for addEventListener.
  1429. *
  1430. * @return {Splide} - This instance.
  1431. */
  1432. ;
  1433. _proto.on = function on(events, handler, elm, options) {
  1434. if (elm === void 0) {
  1435. elm = null;
  1436. }
  1437. if (options === void 0) {
  1438. options = {};
  1439. }
  1440. this.Event.on(events, handler, elm, options);
  1441. return this;
  1442. }
  1443. /**
  1444. * Unsubscribe the given event.
  1445. *
  1446. * @param {string} events - A event name.
  1447. * @param {Element} elm - Optional. removeEventListener() will be called when this arg is provided.
  1448. *
  1449. * @return {Splide} - This instance.
  1450. */
  1451. ;
  1452. _proto.off = function off(events, elm) {
  1453. if (elm === void 0) {
  1454. elm = null;
  1455. }
  1456. this.Event.off(events, elm);
  1457. return this;
  1458. }
  1459. /**
  1460. * Emit an event.
  1461. *
  1462. * @param {string} event - An event name.
  1463. * @param {*} args - Any number of arguments passed to handlers.
  1464. */
  1465. ;
  1466. _proto.emit = function emit(event) {
  1467. var _this$Event;
  1468. for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
  1469. args[_key - 1] = arguments[_key];
  1470. }
  1471. (_this$Event = this.Event).emit.apply(_this$Event, [event].concat(args));
  1472. return this;
  1473. }
  1474. /**
  1475. * Go to the slide specified by the given control.
  1476. *
  1477. * @param {string|number} control - A control pattern.
  1478. * @param {boolean} wait - Optional. Whether to wait for transition.
  1479. */
  1480. ;
  1481. _proto.go = function go(control, wait) {
  1482. if (wait === void 0) {
  1483. wait = this.options.waitForTransition;
  1484. }
  1485. if (this.State.is(IDLE) || this.State.is(MOVING) && !wait) {
  1486. this.Components.Controller.go(control, false);
  1487. }
  1488. return this;
  1489. }
  1490. /**
  1491. * Verify whether the slider type is the given one or not.
  1492. *
  1493. * @param {string} type - A slider type.
  1494. *
  1495. * @return {boolean} - True if the slider type is the provided type or false if not.
  1496. */
  1497. ;
  1498. _proto.is = function is(type) {
  1499. return type === this._o.type;
  1500. }
  1501. /**
  1502. * Insert a slide.
  1503. *
  1504. * @param {Element|string} slide - A slide element to be added.
  1505. * @param {number} index - A slide will be added at the position.
  1506. */
  1507. ;
  1508. _proto.add = function add(slide, index) {
  1509. if (index === void 0) {
  1510. index = -1;
  1511. }
  1512. this.Components.Elements.add(slide, index, this.refresh.bind(this));
  1513. return this;
  1514. }
  1515. /**
  1516. * Remove the slide designated by the index.
  1517. *
  1518. * @param {number} index - A slide index.
  1519. */
  1520. ;
  1521. _proto.remove = function remove(index) {
  1522. this.Components.Elements.remove(index);
  1523. this.refresh();
  1524. return this;
  1525. }
  1526. /**
  1527. * Destroy all Slide objects and clones and recreate them again.
  1528. */
  1529. ;
  1530. _proto.refresh = function refresh() {
  1531. this.emit('refresh:before').emit('refresh').emit('resize');
  1532. return this;
  1533. }
  1534. /**
  1535. * Destroy the Splide.
  1536. * "Completely" boolean is mainly for breakpoints.
  1537. *
  1538. * @param {boolean} completely - Destroy completely.
  1539. */
  1540. ;
  1541. _proto.destroy = function destroy(completely) {
  1542. var _this2 = this;
  1543. if (completely === void 0) {
  1544. completely = true;
  1545. }
  1546. // Postpone destroy because it should be done after mount.
  1547. if (this.State.is(CREATED)) {
  1548. this.on('ready', function () {
  1549. return _this2.destroy(completely);
  1550. });
  1551. return;
  1552. }
  1553. values(this.Components).reverse().forEach(function (component) {
  1554. component.destroy && component.destroy(completely);
  1555. });
  1556. this.emit('destroy', completely); // Destroy all event handlers, including ones for native events.
  1557. this.Event.destroy();
  1558. this.State.set(DESTROYED);
  1559. return this;
  1560. }
  1561. /**
  1562. * Return the current slide index.
  1563. *
  1564. * @return {number} - The current slide index.
  1565. // */
  1566. ;
  1567. _createClass(Splide, [{
  1568. key: "index",
  1569. get: function get() {
  1570. return this._i;
  1571. }
  1572. /**
  1573. * Set the current slide index.
  1574. *
  1575. * @param {number|string} index - A new index.
  1576. */
  1577. ,
  1578. set: function set(index) {
  1579. this._i = parseInt(index);
  1580. }
  1581. /**
  1582. * Return length of slides.
  1583. * This is an alias of Elements.length.
  1584. *
  1585. * @return {number} - A number of slides.
  1586. */
  1587. }, {
  1588. key: "length",
  1589. get: function get() {
  1590. return this.Components.Elements.length;
  1591. }
  1592. /**
  1593. * Return options.
  1594. *
  1595. * @return {Object} - Options object.
  1596. */
  1597. }, {
  1598. key: "options",
  1599. get: function get() {
  1600. return this._o;
  1601. }
  1602. /**
  1603. * Set options with merging the given object to the current one.
  1604. *
  1605. * @param {Object} options - New options.
  1606. */
  1607. ,
  1608. set: function set(options) {
  1609. var created = this.State.is(CREATED);
  1610. if (!created) {
  1611. this.emit('update');
  1612. }
  1613. this._o = merge(this._o, options);
  1614. if (!created) {
  1615. this.emit('updated', this._o);
  1616. }
  1617. }
  1618. /**
  1619. * Return the class list.
  1620. * This is an alias of Splide.options.classList.
  1621. *
  1622. * @return {Object} - An object containing all class list.
  1623. */
  1624. }, {
  1625. key: "classes",
  1626. get: function get() {
  1627. return this._o.classes;
  1628. }
  1629. /**
  1630. * Return the i18n strings.
  1631. * This is an alias of Splide.options.i18n.
  1632. *
  1633. * @return {Object} - An object containing all i18n strings.
  1634. */
  1635. }, {
  1636. key: "i18n",
  1637. get: function get() {
  1638. return this._o.i18n;
  1639. }
  1640. }]);
  1641. return Splide;
  1642. }();
  1643. ;// CONCATENATED MODULE: ./src/js/components/options/index.js
  1644. /**
  1645. * The component for initializing options.
  1646. *
  1647. * @author Naotoshi Fujita
  1648. * @copyright Naotoshi Fujita. All rights reserved.
  1649. */
  1650. /**
  1651. * The component for initializing options.
  1652. *
  1653. * @param {Splide} Splide - A Splide instance.
  1654. *
  1655. * @return {Object} - The component object.
  1656. */
  1657. /* harmony default export */ const options = (function (Splide) {
  1658. /**
  1659. * Retrieve options from the data attribute.
  1660. * Note that IE10 doesn't support dataset property.
  1661. *
  1662. * @type {string}
  1663. */
  1664. var options = getAttribute(Splide.root, 'data-splide');
  1665. if (options) {
  1666. try {
  1667. Splide.options = JSON.parse(options);
  1668. } catch (e) {
  1669. error(e.message);
  1670. }
  1671. }
  1672. return {
  1673. /**
  1674. * Called when the component is mounted.
  1675. */
  1676. mount: function mount() {
  1677. if (Splide.State.is(CREATED)) {
  1678. Splide.index = Splide.options.start;
  1679. }
  1680. }
  1681. };
  1682. });
  1683. ;// CONCATENATED MODULE: ./src/js/constants/directions.js
  1684. /**
  1685. * Export layout modes.
  1686. *
  1687. * @author Naotoshi Fujita
  1688. * @copyright Naotoshi Fujita. All rights reserved.
  1689. */
  1690. /**
  1691. * Enumerate slides from left to right.
  1692. *
  1693. * @type {string}
  1694. */
  1695. var LTR = 'ltr';
  1696. /**
  1697. * Enumerate slides from right to left.
  1698. *
  1699. * @type {string}
  1700. */
  1701. var RTL = 'rtl';
  1702. /**
  1703. * Enumerate slides in a col.
  1704. *
  1705. * @type {string}
  1706. */
  1707. var TTB = 'ttb';
  1708. ;// CONCATENATED MODULE: ./src/js/components/elements/slide.js
  1709. /**
  1710. * The sub component for handling each slide.
  1711. *
  1712. * @author Naotoshi Fujita
  1713. * @copyright Naotoshi Fujita. All rights reserved.
  1714. */
  1715. /**
  1716. * Events for restoring original styles.
  1717. *
  1718. * @type {string}
  1719. */
  1720. var STYLE_RESTORE_EVENTS = 'update.slide';
  1721. /**
  1722. * The sub component for handling each slide.
  1723. *
  1724. * @param {Splide} Splide - A Splide instance.
  1725. * @param {number} index - An unique slide index.
  1726. * @param {number} realIndex - Clones should pass a real slide index.
  1727. * @param {Element} slide - A slide element.
  1728. *
  1729. * @return {Object} - The sub component object.
  1730. */
  1731. /* harmony default export */ const elements_slide = (function (Splide, index, realIndex, slide) {
  1732. /**
  1733. * Whether to update "is-active" class before or after transition.
  1734. *
  1735. * @type {boolean}
  1736. */
  1737. var updateOnMove = Splide.options.updateOnMove;
  1738. /**
  1739. * Events when the slide status is updated.
  1740. * Append a namespace to remove listeners later.
  1741. *
  1742. * @type {string}
  1743. */
  1744. var STATUS_UPDATE_EVENTS = 'ready.slide updated.slide resized.slide moved.slide' + (updateOnMove ? ' move.slide' : '');
  1745. /**
  1746. * Slide sub component object.
  1747. *
  1748. * @type {Object}
  1749. */
  1750. var Slide = {
  1751. /**
  1752. * Slide element.
  1753. *
  1754. * @type {Element}
  1755. */
  1756. slide: slide,
  1757. /**
  1758. * Slide index.
  1759. *
  1760. * @type {number}
  1761. */
  1762. index: index,
  1763. /**
  1764. * Real index for clones.
  1765. *
  1766. * @type {number}
  1767. */
  1768. realIndex: realIndex,
  1769. /**
  1770. * Container element if available.
  1771. *
  1772. * @type {Element|undefined}
  1773. */
  1774. container: child(slide, Splide.classes.container),
  1775. /**
  1776. * Whether this is a cloned slide or not.
  1777. *
  1778. * @type {boolean}
  1779. */
  1780. isClone: realIndex > -1,
  1781. /**
  1782. * Called when the component is mounted.
  1783. */
  1784. mount: function mount() {
  1785. var _this = this;
  1786. if (!this.isClone) {
  1787. slide.id = Splide.root.id + "-slide" + pad(index + 1);
  1788. }
  1789. Splide.on(STATUS_UPDATE_EVENTS, function () {
  1790. return _this.update();
  1791. }).on(STYLE_RESTORE_EVENTS, restoreStyles).on('click', function () {
  1792. return Splide.emit('click', _this);
  1793. }, slide);
  1794. /*
  1795. * Add "is-active" class to a clone element temporarily
  1796. * and it will be removed on "moved" event.
  1797. */
  1798. if (updateOnMove) {
  1799. Splide.on('move.slide', function (newIndex) {
  1800. if (newIndex === realIndex) {
  1801. _update(true, false);
  1802. }
  1803. });
  1804. } // Make sure the slide is shown.
  1805. applyStyle(slide, {
  1806. display: ''
  1807. }); // Hold the original styles.
  1808. this.styles = getAttribute(slide, 'style') || '';
  1809. },
  1810. /**
  1811. * Destroy.
  1812. */
  1813. destroy: function destroy() {
  1814. Splide.off(STATUS_UPDATE_EVENTS).off(STYLE_RESTORE_EVENTS).off('click', slide);
  1815. removeClass(slide, values(STATUS_CLASSES));
  1816. restoreStyles();
  1817. removeAttribute(this.container, 'style');
  1818. },
  1819. /**
  1820. * Update active and visible status.
  1821. */
  1822. update: function update() {
  1823. _update(this.isActive(), false);
  1824. _update(this.isVisible(), true);
  1825. },
  1826. /**
  1827. * Check whether this slide is active or not.
  1828. *
  1829. * @return {boolean} - True if the slide is active or false if not.
  1830. */
  1831. isActive: function isActive() {
  1832. return Splide.index === index;
  1833. },
  1834. /**
  1835. * Check whether this slide is visible in the viewport or not.
  1836. *
  1837. * @return {boolean} - True if the slide is visible or false if not.
  1838. */
  1839. isVisible: function isVisible() {
  1840. var active = this.isActive();
  1841. if (Splide.is(FADE) || active) {
  1842. return active;
  1843. }
  1844. var ceil = Math.ceil;
  1845. var trackRect = getRect(Splide.Components.Elements.track);
  1846. var slideRect = getRect(slide);
  1847. if (Splide.options.direction === TTB) {
  1848. return trackRect.top <= slideRect.top && slideRect.bottom <= ceil(trackRect.bottom);
  1849. }
  1850. return trackRect.left <= slideRect.left && slideRect.right <= ceil(trackRect.right);
  1851. },
  1852. /**
  1853. * Calculate how far this slide is from another slide and
  1854. * return true if the distance is within the given number.
  1855. *
  1856. * @param {number} from - Index of a target slide.
  1857. * @param {number} within - True if the slide is within this number.
  1858. *
  1859. * @return {boolean} - True if the slide is within the number or false otherwise.
  1860. */
  1861. isWithin: function isWithin(from, within) {
  1862. var diff = Math.abs(from - index);
  1863. if (!Splide.is(SLIDE) && !this.isClone) {
  1864. diff = Math.min(diff, Splide.length - diff);
  1865. }
  1866. return diff < within;
  1867. }
  1868. };
  1869. /**
  1870. * Update classes for activity or visibility.
  1871. *
  1872. * @param {boolean} active - Is active/visible or not.
  1873. * @param {boolean} forVisibility - Toggle classes for activity or visibility.
  1874. */
  1875. function _update(active, forVisibility) {
  1876. var type = forVisibility ? 'visible' : 'active';
  1877. var className = STATUS_CLASSES[type];
  1878. if (active) {
  1879. addClass(slide, className);
  1880. Splide.emit("" + type, Slide);
  1881. } else {
  1882. if (hasClass(slide, className)) {
  1883. removeClass(slide, className);
  1884. Splide.emit("" + (forVisibility ? 'hidden' : 'inactive'), Slide);
  1885. }
  1886. }
  1887. }
  1888. /**
  1889. * Restore the original styles.
  1890. */
  1891. function restoreStyles() {
  1892. setAttribute(slide, 'style', Slide.styles);
  1893. }
  1894. return Slide;
  1895. });
  1896. ;// CONCATENATED MODULE: ./src/js/components/elements/index.js
  1897. /**
  1898. * The component for main elements.
  1899. *
  1900. * @author Naotoshi Fujita
  1901. * @copyright Naotoshi Fujita. All rights reserved.
  1902. */
  1903. /**
  1904. * The property name for UID stored in a window object.
  1905. *
  1906. * @type {string}
  1907. */
  1908. var UID_NAME = 'uid';
  1909. /**
  1910. * The component for main elements.
  1911. *
  1912. * @param {Splide} Splide - A Splide instance.
  1913. * @param {Object} Components - An object containing components.
  1914. *
  1915. * @return {Object} - The component object.
  1916. */
  1917. /* harmony default export */ const components_elements = (function (Splide, Components) {
  1918. /**
  1919. * Hold the root element.
  1920. *
  1921. * @type {Element}
  1922. */
  1923. var root = Splide.root;
  1924. /**
  1925. * Hold the class list.
  1926. *
  1927. * @type {Object}
  1928. */
  1929. var classes = Splide.classes;
  1930. /**
  1931. * Store Slide objects.
  1932. *
  1933. * @type {Array}
  1934. */
  1935. var Slides = [];
  1936. /*
  1937. * Assign unique ID to the root element if it doesn't have the one.
  1938. * Note that IE doesn't support padStart() to fill the uid by 0.
  1939. */
  1940. if (!root.id) {
  1941. window.splide = window.splide || {};
  1942. var uid = window.splide[UID_NAME] || 0;
  1943. window.splide[UID_NAME] = ++uid;
  1944. root.id = "splide" + pad(uid);
  1945. }
  1946. /**
  1947. * Elements component object.
  1948. *
  1949. * @type {Object}
  1950. */
  1951. var Elements = {
  1952. /**
  1953. * Called when the component is mounted.
  1954. * Collect main elements and store them as member properties.
  1955. */
  1956. mount: function mount() {
  1957. var _this = this;
  1958. this.init();
  1959. Splide.on('refresh', function () {
  1960. _this.destroy();
  1961. _this.init();
  1962. }).on('updated', function () {
  1963. removeClass(root, getClasses());
  1964. addClass(root, getClasses());
  1965. });
  1966. },
  1967. /**
  1968. * Destroy.
  1969. */
  1970. destroy: function destroy() {
  1971. Slides.forEach(function (Slide) {
  1972. Slide.destroy();
  1973. });
  1974. Slides = [];
  1975. removeClass(root, getClasses());
  1976. },
  1977. /**
  1978. * Initialization.
  1979. */
  1980. init: function init() {
  1981. var _this2 = this;
  1982. collect();
  1983. addClass(root, getClasses());
  1984. this.slides.forEach(function (slide, index) {
  1985. _this2.register(slide, index, -1);
  1986. });
  1987. },
  1988. /**
  1989. * Register a slide to create a Slide object and handle its behavior.
  1990. *
  1991. * @param {Element} slide - A slide element.
  1992. * @param {number} index - A unique index. This can be negative.
  1993. * @param {number} realIndex - A real index for clones. Set -1 for real slides.
  1994. */
  1995. register: function register(slide, index, realIndex) {
  1996. var SlideObject = elements_slide(Splide, index, realIndex, slide);
  1997. SlideObject.mount();
  1998. Slides.push(SlideObject);
  1999. },
  2000. /**
  2001. * Return the Slide object designated by the index.
  2002. * Note that "find" is not supported by IE.
  2003. *
  2004. * @return {Object|undefined} - A Slide object if available. Undefined if not.
  2005. */
  2006. getSlide: function getSlide(index) {
  2007. return Slides.filter(function (Slide) {
  2008. return Slide.index === index;
  2009. })[0];
  2010. },
  2011. /**
  2012. * Return all Slide objects.
  2013. *
  2014. * @param {boolean} includeClones - Whether to include cloned slides or not.
  2015. *
  2016. * @return {Object[]} - Slide objects.
  2017. */
  2018. getSlides: function getSlides(includeClones) {
  2019. return includeClones ? Slides : Slides.filter(function (Slide) {
  2020. return !Slide.isClone;
  2021. });
  2022. },
  2023. /**
  2024. * Return Slide objects belonging to the given page.
  2025. *
  2026. * @param {number} page - A page number.
  2027. *
  2028. * @return {Object[]} - An array containing Slide objects.
  2029. */
  2030. getSlidesByPage: function getSlidesByPage(page) {
  2031. var idx = Components.Controller.toIndex(page);
  2032. var options = Splide.options;
  2033. var max = options.focus !== false ? 1 : options.perPage;
  2034. return Slides.filter(function (_ref) {
  2035. var index = _ref.index;
  2036. return idx <= index && index < idx + max;
  2037. });
  2038. },
  2039. /**
  2040. * Insert a slide to a slider.
  2041. * Need to refresh Splide after adding a slide.
  2042. *
  2043. * @param {Node|string} slide - A slide element to be added.
  2044. * @param {number} index - A slide will be added at the position.
  2045. * @param {Function} callback - Called right after the slide is added to the DOM tree.
  2046. */
  2047. add: function add(slide, index, callback) {
  2048. if (typeof slide === 'string') {
  2049. slide = domify(slide);
  2050. }
  2051. if (slide instanceof Element) {
  2052. var ref = this.slides[index]; // This will be removed in mount() of a Slide component.
  2053. applyStyle(slide, {
  2054. display: 'none'
  2055. });
  2056. if (ref) {
  2057. before(slide, ref);
  2058. this.slides.splice(index, 0, slide);
  2059. } else {
  2060. append(this.list, slide);
  2061. this.slides.push(slide);
  2062. }
  2063. loaded(slide, function () {
  2064. callback && callback(slide);
  2065. });
  2066. }
  2067. },
  2068. /**
  2069. * Remove a slide from a slider.
  2070. * Need to refresh Splide after removing a slide.
  2071. *
  2072. * @param index - Slide index.
  2073. */
  2074. remove: function remove(index) {
  2075. dom_remove(this.slides.splice(index, 1)[0]);
  2076. },
  2077. /**
  2078. * Trigger the provided callback for each Slide object.
  2079. *
  2080. * @param {Function} callback - A callback function. The first argument will be the Slide object.
  2081. */
  2082. each: function each(callback) {
  2083. Slides.forEach(callback);
  2084. },
  2085. /**
  2086. * Return slides length without clones.
  2087. *
  2088. * @return {number} - Slide length.
  2089. */
  2090. get length() {
  2091. return this.slides.length;
  2092. },
  2093. /**
  2094. * Return "SlideObjects" length including clones.
  2095. *
  2096. * @return {number} - Slide length including clones.
  2097. */
  2098. get total() {
  2099. return Slides.length;
  2100. }
  2101. };
  2102. /**
  2103. * Collect elements.
  2104. */
  2105. function collect() {
  2106. Elements.slider = child(root, classes.slider);
  2107. Elements.track = find(root, "." + classes.track);
  2108. Elements.list = child(Elements.track, classes.list);
  2109. exist(Elements.track && Elements.list, 'Track or list was not found.');
  2110. Elements.slides = children(Elements.list, classes.slide);
  2111. var arrows = findParts(classes.arrows);
  2112. Elements.arrows = {
  2113. prev: find(arrows, "." + classes.prev),
  2114. next: find(arrows, "." + classes.next)
  2115. };
  2116. var autoplay = findParts(classes.autoplay);
  2117. Elements.bar = find(findParts(classes.progress), "." + classes.bar);
  2118. Elements.play = find(autoplay, "." + classes.play);
  2119. Elements.pause = find(autoplay, "." + classes.pause);
  2120. Elements.track.id = Elements.track.id || root.id + "-track";
  2121. Elements.list.id = Elements.list.id || root.id + "-list";
  2122. }
  2123. /**
  2124. * Return class names for the root element.
  2125. */
  2126. function getClasses() {
  2127. var rootClass = classes.root;
  2128. var options = Splide.options;
  2129. return [rootClass + "--" + options.type, rootClass + "--" + options.direction, options.drag ? rootClass + "--draggable" : '', options.isNavigation ? rootClass + "--nav" : '', STATUS_CLASSES.active];
  2130. }
  2131. /**
  2132. * Find parts only from children of the root or track.
  2133. *
  2134. * @return {Element} - A found element or undefined.
  2135. */
  2136. function findParts(className) {
  2137. return child(root, className) || child(Elements.slider, className);
  2138. }
  2139. return Elements;
  2140. });
  2141. ;// CONCATENATED MODULE: ./src/js/components/controller/index.js
  2142. /**
  2143. * The component for controlling the track.
  2144. *
  2145. * @author Naotoshi Fujita
  2146. * @copyright Naotoshi Fujita. All rights reserved.
  2147. */
  2148. var floor = Math.floor;
  2149. /**
  2150. * The component for controlling the track.
  2151. *
  2152. * @param {Splide} Splide - A Splide instance.
  2153. * @param {Object} Components - An object containing components.
  2154. *
  2155. * @return {Object} - The component object.
  2156. */
  2157. /* harmony default export */ const controller = (function (Splide, Components) {
  2158. /**
  2159. * Store current options.
  2160. *
  2161. * @type {Object}
  2162. */
  2163. var options;
  2164. /**
  2165. * True if the slide is LOOP mode.
  2166. *
  2167. * @type {boolean}
  2168. */
  2169. var isLoop;
  2170. /**
  2171. * Controller component object.
  2172. *
  2173. * @type {Object}
  2174. */
  2175. var Controller = {
  2176. /**
  2177. * Called when the component is mounted.
  2178. */
  2179. mount: function mount() {
  2180. options = Splide.options;
  2181. isLoop = Splide.is(LOOP);
  2182. bind();
  2183. },
  2184. /**
  2185. * Make track run by the given control.
  2186. * - "+{i}" : Increment the slide index by i.
  2187. * - "-{i}" : Decrement the slide index by i.
  2188. * - "{i}" : Go to the slide whose index is i.
  2189. * - ">" : Go to next page.
  2190. * - "<" : Go to prev page.
  2191. * - ">{i}" : Go to page i.
  2192. *
  2193. * @param {string|number} control - A control pattern.
  2194. * @param {boolean} silently - Go to the destination without event emission.
  2195. */
  2196. go: function go(control, silently) {
  2197. var destIndex = this.trim(this.parse(control));
  2198. Components.Track.go(destIndex, this.rewind(destIndex), silently);
  2199. },
  2200. /**
  2201. * Parse the given control and return the destination index for the track.
  2202. *
  2203. * @param {string} control - A control target pattern.
  2204. *
  2205. * @return {number} - A parsed target.
  2206. */
  2207. parse: function parse(control) {
  2208. var index = Splide.index;
  2209. var matches = String(control).match(/([+\-<>]+)(\d+)?/);
  2210. var indicator = matches ? matches[1] : '';
  2211. var number = matches ? parseInt(matches[2]) : 0;
  2212. switch (indicator) {
  2213. case '+':
  2214. index += number || 1;
  2215. break;
  2216. case '-':
  2217. index -= number || 1;
  2218. break;
  2219. case '>':
  2220. case '<':
  2221. index = parsePage(number, index, indicator === '<');
  2222. break;
  2223. default:
  2224. index = parseInt(control);
  2225. }
  2226. return index;
  2227. },
  2228. /**
  2229. * Compute index from the given page number.
  2230. *
  2231. * @param {number} page - Page number.
  2232. *
  2233. * @return {number} - A computed page number.
  2234. */
  2235. toIndex: function toIndex(page) {
  2236. if (hasFocus()) {
  2237. return page;
  2238. }
  2239. var length = Splide.length;
  2240. var perPage = options.perPage;
  2241. var index = page * perPage;
  2242. index = index - (this.pageLength * perPage - length) * floor(index / length); // Adjustment for the last page.
  2243. if (length - perPage <= index && index < length) {
  2244. index = length - perPage;
  2245. }
  2246. return index;
  2247. },
  2248. /**
  2249. * Compute page number from the given slide index.
  2250. *
  2251. * @param {number} index - Slide index.
  2252. *
  2253. * @return {number} - A computed page number.
  2254. */
  2255. toPage: function toPage(index) {
  2256. if (hasFocus()) {
  2257. return index;
  2258. }
  2259. var length = Splide.length;
  2260. var perPage = options.perPage; // Make the last "perPage" number of slides belong to the last page.
  2261. if (length - perPage <= index && index < length) {
  2262. return floor((length - 1) / perPage);
  2263. }
  2264. return floor(index / perPage);
  2265. },
  2266. /**
  2267. * Trim the given index according to the current mode.
  2268. * Index being returned could be less than 0 or greater than the length in Loop mode.
  2269. *
  2270. * @param {number} index - An index being trimmed.
  2271. *
  2272. * @return {number} - A trimmed index.
  2273. */
  2274. trim: function trim(index) {
  2275. if (!isLoop) {
  2276. index = options.rewind ? this.rewind(index) : between(index, 0, this.edgeIndex);
  2277. }
  2278. return index;
  2279. },
  2280. /**
  2281. * Rewind the given index if it's out of range.
  2282. *
  2283. * @param {number} index - An index.
  2284. *
  2285. * @return {number} - A rewound index.
  2286. */
  2287. rewind: function rewind(index) {
  2288. var edge = this.edgeIndex;
  2289. if (isLoop) {
  2290. while (index > edge) {
  2291. index -= edge + 1;
  2292. }
  2293. while (index < 0) {
  2294. index += edge + 1;
  2295. }
  2296. } else {
  2297. if (index > edge) {
  2298. index = 0;
  2299. } else if (index < 0) {
  2300. index = edge;
  2301. }
  2302. }
  2303. return index;
  2304. },
  2305. /**
  2306. * Check if the direction is "rtl" or not.
  2307. *
  2308. * @return {boolean} - True if "rtl" or false if not.
  2309. */
  2310. isRtl: function isRtl() {
  2311. return options.direction === RTL;
  2312. },
  2313. /**
  2314. * Return the page length.
  2315. *
  2316. * @return {number} - Max page number.
  2317. */
  2318. get pageLength() {
  2319. var length = Splide.length;
  2320. return hasFocus() ? length : Math.ceil(length / options.perPage);
  2321. },
  2322. /**
  2323. * Return the edge index.
  2324. *
  2325. * @return {number} - Edge index.
  2326. */
  2327. get edgeIndex() {
  2328. var length = Splide.length;
  2329. if (!length) {
  2330. return 0;
  2331. }
  2332. if (hasFocus() || options.isNavigation || isLoop) {
  2333. return length - 1;
  2334. }
  2335. return length - options.perPage;
  2336. },
  2337. /**
  2338. * Return the index of the previous slide.
  2339. *
  2340. * @return {number} - The index of the previous slide if available. -1 otherwise.
  2341. */
  2342. get prevIndex() {
  2343. var prev = Splide.index - 1;
  2344. if (isLoop || options.rewind) {
  2345. prev = this.rewind(prev);
  2346. }
  2347. return prev > -1 ? prev : -1;
  2348. },
  2349. /**
  2350. * Return the index of the next slide.
  2351. *
  2352. * @return {number} - The index of the next slide if available. -1 otherwise.
  2353. */
  2354. get nextIndex() {
  2355. var next = Splide.index + 1;
  2356. if (isLoop || options.rewind) {
  2357. next = this.rewind(next);
  2358. }
  2359. return Splide.index < next && next <= this.edgeIndex || next === 0 ? next : -1;
  2360. }
  2361. };
  2362. /**
  2363. * Listen to some events.
  2364. */
  2365. function bind() {
  2366. Splide.on('move', function (newIndex) {
  2367. Splide.index = newIndex;
  2368. }).on('updated refresh', function (newOptions) {
  2369. options = newOptions || options;
  2370. Splide.index = between(Splide.index, 0, Controller.edgeIndex);
  2371. });
  2372. }
  2373. /**
  2374. * Verify if the focus option is available or not.
  2375. *
  2376. * @return {boolean} - True if a slider has the focus option.
  2377. */
  2378. function hasFocus() {
  2379. return options.focus !== false;
  2380. }
  2381. /**
  2382. * Return the next or previous page index computed by the page number and current index.
  2383. *
  2384. * @param {number} number - Specify the page number.
  2385. * @param {number} index - Current index.
  2386. * @param {boolean} prev - Prev or next.
  2387. *
  2388. * @return {number} - Slide index.
  2389. */
  2390. function parsePage(number, index, prev) {
  2391. if (number > -1) {
  2392. return Controller.toIndex(number);
  2393. }
  2394. var perMove = options.perMove;
  2395. var sign = prev ? -1 : 1;
  2396. if (perMove) {
  2397. return index + perMove * sign;
  2398. }
  2399. return Controller.toIndex(Controller.toPage(index) + sign);
  2400. }
  2401. return Controller;
  2402. });
  2403. ;// CONCATENATED MODULE: ./src/js/components/track/index.js
  2404. /**
  2405. * The component for moving list in the track.
  2406. *
  2407. * @author Naotoshi Fujita
  2408. * @copyright Naotoshi Fujita. All rights reserved.
  2409. */
  2410. var abs = Math.abs;
  2411. /**
  2412. * The component for moving list in the track.
  2413. *
  2414. * @param {Splide} Splide - A Splide instance.
  2415. * @param {Object} Components - An object containing components.
  2416. *
  2417. * @return {Object} - The component object.
  2418. */
  2419. /* harmony default export */ const track = (function (Splide, Components) {
  2420. /**
  2421. * Hold the Layout component.
  2422. *
  2423. * @type {Object}
  2424. */
  2425. var Layout;
  2426. /**
  2427. * Hold the Layout component.
  2428. *
  2429. * @type {Object}
  2430. */
  2431. var Elements;
  2432. /**
  2433. * Store the list element.
  2434. *
  2435. * @type {Element}
  2436. */
  2437. var list;
  2438. /**
  2439. * Whether the current direction is vertical or not.
  2440. *
  2441. * @type {boolean}
  2442. */
  2443. var isVertical = Splide.options.direction === TTB;
  2444. /**
  2445. * Whether the slider type is FADE or not.
  2446. *
  2447. * @type {boolean}
  2448. */
  2449. var isFade = Splide.is(FADE);
  2450. /**
  2451. * Whether the slider direction is RTL or not.
  2452. *
  2453. * @type {boolean}
  2454. */
  2455. var isRTL = Splide.options.direction === RTL;
  2456. /**
  2457. * This will be true while transitioning from the last index to the first one.
  2458. *
  2459. * @type {boolean}
  2460. */
  2461. var isLoopPending = false;
  2462. /**
  2463. * Sign for the direction. Only RTL mode uses the positive sign.
  2464. *
  2465. * @type {number}
  2466. */
  2467. var sign = isRTL ? 1 : -1;
  2468. /**
  2469. * Track component object.
  2470. *
  2471. * @type {Object}
  2472. */
  2473. var Track = {
  2474. /**
  2475. * Make public the sign defined locally.
  2476. *
  2477. * @type {number}
  2478. */
  2479. sign: sign,
  2480. /**
  2481. * Called when the component is mounted.
  2482. */
  2483. mount: function mount() {
  2484. Elements = Components.Elements;
  2485. Layout = Components.Layout;
  2486. list = Elements.list;
  2487. },
  2488. /**
  2489. * Called after the component is mounted.
  2490. * The resize event must be registered after the Layout's one is done.
  2491. */
  2492. mounted: function mounted() {
  2493. var _this = this;
  2494. if (!isFade) {
  2495. this.jump(0);
  2496. Splide.on('mounted resize updated', function () {
  2497. _this.jump(Splide.index);
  2498. });
  2499. }
  2500. },
  2501. /**
  2502. * Go to the given destination index.
  2503. * After arriving there, the track is jump to the new index without animation, mainly for loop mode.
  2504. *
  2505. * @param {number} destIndex - A destination index.
  2506. * This can be negative or greater than slides length for reaching clones.
  2507. * @param {number} newIndex - An actual new index. They are always same in Slide and Rewind mode.
  2508. * @param {boolean} silently - If true, suppress emitting events.
  2509. */
  2510. go: function go(destIndex, newIndex, silently) {
  2511. var newPosition = getTrimmedPosition(destIndex);
  2512. var prevIndex = Splide.index; // Prevent any actions while transitioning from the last index to the first one for jump.
  2513. if (Splide.State.is(MOVING) && isLoopPending) {
  2514. return;
  2515. }
  2516. isLoopPending = destIndex !== newIndex;
  2517. if (!silently) {
  2518. Splide.emit('move', newIndex, prevIndex, destIndex);
  2519. }
  2520. if (Math.abs(newPosition - this.position) >= 1 || isFade) {
  2521. Components.Transition.start(destIndex, newIndex, prevIndex, this.toCoord(newPosition), function () {
  2522. onTransitionEnd(destIndex, newIndex, prevIndex, silently);
  2523. });
  2524. } else {
  2525. if (destIndex !== prevIndex && Splide.options.trimSpace === 'move') {
  2526. Components.Controller.go(destIndex + destIndex - prevIndex, silently);
  2527. } else {
  2528. onTransitionEnd(destIndex, newIndex, prevIndex, silently);
  2529. }
  2530. }
  2531. },
  2532. /**
  2533. * Move the track to the specified index.
  2534. *
  2535. * @param {number} index - A destination index where the track jumps.
  2536. */
  2537. jump: function jump(index) {
  2538. this.translate(getTrimmedPosition(index));
  2539. },
  2540. /**
  2541. * Set the list position by CSS translate property.
  2542. *
  2543. * @param {number} position - A new position value.
  2544. */
  2545. translate: function translate(position) {
  2546. applyStyle(list, {
  2547. transform: "translate" + (isVertical ? 'Y' : 'X') + "(" + position + "px)"
  2548. });
  2549. },
  2550. /**
  2551. * Cancel the transition and set the list position.
  2552. * Also, loop the slider if necessary.
  2553. */
  2554. cancel: function cancel() {
  2555. if (Splide.is(LOOP)) {
  2556. this.shift();
  2557. } else {
  2558. // Ensure the current position.
  2559. this.translate(this.position);
  2560. }
  2561. applyStyle(list, {
  2562. transition: ''
  2563. });
  2564. },
  2565. /**
  2566. * Shift the slider if it exceeds borders on the edge.
  2567. */
  2568. shift: function shift() {
  2569. var position = abs(this.position);
  2570. var left = abs(this.toPosition(0));
  2571. var right = abs(this.toPosition(Splide.length));
  2572. var innerSize = right - left;
  2573. if (position < left) {
  2574. position += innerSize;
  2575. } else if (position > right) {
  2576. position -= innerSize;
  2577. }
  2578. this.translate(sign * position);
  2579. },
  2580. /**
  2581. * Trim redundant spaces on the left or right edge if necessary.
  2582. *
  2583. * @param {number} position - Position value to be trimmed.
  2584. *
  2585. * @return {number} - Trimmed position.
  2586. */
  2587. trim: function trim(position) {
  2588. if (!Splide.options.trimSpace || Splide.is(LOOP)) {
  2589. return position;
  2590. }
  2591. var edge = sign * (Layout.totalSize() - Layout.size - Layout.gap);
  2592. return between(position, edge, 0);
  2593. },
  2594. /**
  2595. * Calculate the closest slide index from the given position.
  2596. *
  2597. * @param {number} position - A position converted to an slide index.
  2598. *
  2599. * @return {number} - The closest slide index.
  2600. */
  2601. toIndex: function toIndex(position) {
  2602. var _this2 = this;
  2603. var index = 0;
  2604. var minDistance = Infinity;
  2605. Elements.getSlides(true).forEach(function (Slide) {
  2606. var slideIndex = Slide.index;
  2607. var distance = abs(_this2.toPosition(slideIndex) - position);
  2608. if (distance < minDistance) {
  2609. minDistance = distance;
  2610. index = slideIndex;
  2611. }
  2612. });
  2613. return index;
  2614. },
  2615. /**
  2616. * Return coordinates object by the given position.
  2617. *
  2618. * @param {number} position - A position value.
  2619. *
  2620. * @return {Object} - A coordinates object.
  2621. */
  2622. toCoord: function toCoord(position) {
  2623. return {
  2624. x: isVertical ? 0 : position,
  2625. y: isVertical ? position : 0
  2626. };
  2627. },
  2628. /**
  2629. * Calculate the track position by a slide index.
  2630. *
  2631. * @param {number} index - Slide index.
  2632. *
  2633. * @return {Object} - Calculated position.
  2634. */
  2635. toPosition: function toPosition(index) {
  2636. var position = Layout.totalSize(index) - Layout.slideSize(index) - Layout.gap;
  2637. return sign * (position + this.offset(index));
  2638. },
  2639. /**
  2640. * Return the current offset value, considering direction.
  2641. *
  2642. * @return {number} - Offset amount.
  2643. */
  2644. offset: function offset(index) {
  2645. var focus = Splide.options.focus;
  2646. var slideSize = Layout.slideSize(index);
  2647. if (focus === 'center') {
  2648. return -(Layout.size - slideSize) / 2;
  2649. }
  2650. return -(parseInt(focus) || 0) * (slideSize + Layout.gap);
  2651. },
  2652. /**
  2653. * Return the current position.
  2654. * This returns the correct position even while transitioning by CSS.
  2655. *
  2656. * @return {number} - Current position.
  2657. */
  2658. get position() {
  2659. var prop = isVertical ? 'top' : isRTL ? 'right' : 'left';
  2660. return getRect(list)[prop] - (getRect(Elements.track)[prop] - Layout.padding[prop] * sign);
  2661. }
  2662. };
  2663. /**
  2664. * Called whenever slides arrive at a destination.
  2665. *
  2666. * @param {number} destIndex - A destination index.
  2667. * @param {number} newIndex - A new index.
  2668. * @param {number} prevIndex - A previous index.
  2669. * @param {boolean} silently - If true, suppress emitting events.
  2670. */
  2671. function onTransitionEnd(destIndex, newIndex, prevIndex, silently) {
  2672. applyStyle(list, {
  2673. transition: ''
  2674. });
  2675. isLoopPending = false;
  2676. if (!isFade) {
  2677. Track.jump(newIndex);
  2678. }
  2679. if (!silently) {
  2680. Splide.emit('moved', newIndex, prevIndex, destIndex);
  2681. }
  2682. }
  2683. /**
  2684. * Convert index to the trimmed position.
  2685. *
  2686. * @return {number} - Trimmed position.
  2687. */
  2688. function getTrimmedPosition(index) {
  2689. return Track.trim(Track.toPosition(index));
  2690. }
  2691. return Track;
  2692. });
  2693. ;// CONCATENATED MODULE: ./src/js/components/clones/index.js
  2694. /**
  2695. * The component for cloning some slides for "loop" mode of the track.
  2696. *
  2697. * @author Naotoshi Fujita
  2698. * @copyright Naotoshi Fujita. All rights reserved.
  2699. */
  2700. /**
  2701. * The component for cloning some slides for "loop" mode of the track.
  2702. *
  2703. * @param {Splide} Splide - A Splide instance.
  2704. * @param {Object} Components - An object containing components.
  2705. *
  2706. * @return {Object} - The component object.
  2707. */
  2708. /* harmony default export */ const clones = (function (Splide, Components) {
  2709. /**
  2710. * Store information of all clones.
  2711. *
  2712. * @type {Array}
  2713. */
  2714. var clones = [];
  2715. /**
  2716. * Store the current clone count on one side.
  2717. *
  2718. * @type {number}
  2719. */
  2720. var cloneCount = 0;
  2721. /**
  2722. * Keep Elements component.
  2723. *
  2724. * @type {Object}
  2725. */
  2726. var Elements = Components.Elements;
  2727. /**
  2728. * Clones component object.
  2729. *
  2730. * @type {Object}
  2731. */
  2732. var Clones = {
  2733. /**
  2734. * Called when the component is mounted.
  2735. */
  2736. mount: function mount() {
  2737. var _this = this;
  2738. if (Splide.is(LOOP)) {
  2739. init();
  2740. Splide.on('refresh:before', function () {
  2741. _this.destroy();
  2742. }).on('refresh', init).on('resize', function () {
  2743. if (cloneCount !== getCloneCount()) {
  2744. // Destroy before refresh not to collect clones by the Elements component.
  2745. _this.destroy();
  2746. Splide.refresh();
  2747. }
  2748. });
  2749. }
  2750. },
  2751. /**
  2752. * Destroy.
  2753. */
  2754. destroy: function destroy() {
  2755. dom_remove(clones);
  2756. clones = [];
  2757. },
  2758. /**
  2759. * Return all clones.
  2760. *
  2761. * @return {Element[]} - Cloned elements.
  2762. */
  2763. get clones() {
  2764. return clones;
  2765. },
  2766. /**
  2767. * Return clone length.
  2768. *
  2769. * @return {number} - A length of clones.
  2770. */
  2771. get length() {
  2772. return clones.length;
  2773. }
  2774. };
  2775. /**
  2776. * Initialization.
  2777. */
  2778. function init() {
  2779. Clones.destroy();
  2780. cloneCount = getCloneCount();
  2781. generateClones(cloneCount);
  2782. }
  2783. /**
  2784. * Generate and append/prepend clones.
  2785. *
  2786. * @param {number} count - The half number of clones.
  2787. */
  2788. function generateClones(count) {
  2789. var length = Elements.length,
  2790. register = Elements.register;
  2791. if (length) {
  2792. var slides = Elements.slides;
  2793. while (slides.length < count) {
  2794. slides = slides.concat(slides);
  2795. } // Clones after the last element.
  2796. slides.slice(0, count).forEach(function (elm, index) {
  2797. var clone = cloneDeeply(elm);
  2798. append(Elements.list, clone);
  2799. clones.push(clone);
  2800. register(clone, index + length, index % length);
  2801. }); // Clones before the first element.
  2802. slides.slice(-count).forEach(function (elm, index) {
  2803. var clone = cloneDeeply(elm);
  2804. before(clone, slides[0]);
  2805. clones.push(clone);
  2806. register(clone, index - count, (length + index - count % length) % length);
  2807. });
  2808. }
  2809. }
  2810. /**
  2811. * Return half count of clones to be generated.
  2812. * Clone count is determined by:
  2813. * - "clones" value in the options.
  2814. * - Number of slides that can be placed in a view in "fixed" mode.
  2815. * - Max pages a flick action can move.
  2816. * - Whether the slide length is enough for perPage.
  2817. *
  2818. * @return {number} - Count for clones.
  2819. */
  2820. function getCloneCount() {
  2821. var options = Splide.options;
  2822. if (options.clones) {
  2823. return options.clones;
  2824. } // Use the slide length in autoWidth mode because the number cannot be calculated.
  2825. var baseCount = options.autoWidth || options.autoHeight ? Elements.length : options.perPage;
  2826. var dimension = options.direction === TTB ? 'Height' : 'Width';
  2827. var fixedSize = toPixel(Splide.root, options["fixed" + dimension]);
  2828. if (fixedSize) {
  2829. // Roughly calculate the count. This needs not to be strict.
  2830. baseCount = Math.ceil(Elements.track["client" + dimension] / fixedSize);
  2831. }
  2832. return baseCount * (options.drag ? options.flickMaxPages + 1 : 1);
  2833. }
  2834. /**
  2835. * Clone deeply the given element.
  2836. *
  2837. * @param {Element} elm - An element being duplicated.
  2838. *
  2839. * @return {Node} - A cloned node(element).
  2840. */
  2841. function cloneDeeply(elm) {
  2842. var clone = elm.cloneNode(true);
  2843. addClass(clone, Splide.classes.clone); // ID should not be duplicated.
  2844. removeAttribute(clone, 'id');
  2845. return clone;
  2846. }
  2847. return Clones;
  2848. });
  2849. ;// CONCATENATED MODULE: ./src/js/components/layout/directions/horizontal.js
  2850. /**
  2851. * The resolver component for horizontal layout.
  2852. *
  2853. * @author Naotoshi Fujita
  2854. * @copyright Naotoshi Fujita. All rights reserved.
  2855. */
  2856. /**
  2857. * The resolver component for horizontal layout.
  2858. *
  2859. * @param {Splide} Splide - A Splide instance.
  2860. * @param {Object} Components - An object containing components.
  2861. *
  2862. * @return {Object} - The resolver object.
  2863. */
  2864. /* harmony default export */ const horizontal = (function (Splide, Components) {
  2865. /**
  2866. * Keep the Elements component.
  2867. *
  2868. * @type {string}
  2869. */
  2870. var Elements = Components.Elements;
  2871. /**
  2872. * Keep the root element.
  2873. *
  2874. * @type {Element}
  2875. */
  2876. var root = Splide.root;
  2877. /**
  2878. * Keep the track element.
  2879. *
  2880. * @type {Element}
  2881. */
  2882. var track;
  2883. /**
  2884. * Keep the latest options.
  2885. *
  2886. * @type {Element}
  2887. */
  2888. var options = Splide.options;
  2889. return {
  2890. /**
  2891. * Margin property name.
  2892. *
  2893. * @type {string}
  2894. */
  2895. margin: 'margin' + (options.direction === RTL ? 'Left' : 'Right'),
  2896. /**
  2897. * Always 0 because the height will be determined by inner contents.
  2898. *
  2899. * @type {number}
  2900. */
  2901. height: 0,
  2902. /**
  2903. * Initialization.
  2904. */
  2905. init: function init() {
  2906. this.resize();
  2907. },
  2908. /**
  2909. * Resize gap and padding.
  2910. * This must be called on init.
  2911. */
  2912. resize: function resize() {
  2913. options = Splide.options;
  2914. track = Elements.track;
  2915. this.gap = toPixel(root, options.gap);
  2916. var padding = options.padding;
  2917. var left = toPixel(root, padding.left || padding);
  2918. var right = toPixel(root, padding.right || padding);
  2919. this.padding = {
  2920. left: left,
  2921. right: right
  2922. };
  2923. applyStyle(track, {
  2924. paddingLeft: unit(left),
  2925. paddingRight: unit(right)
  2926. });
  2927. },
  2928. /**
  2929. * Return total width from the left of the list to the right of the slide specified by the provided index.
  2930. *
  2931. * @param {number} index - Optional. A slide index. If undefined, total width of the slider will be returned.
  2932. *
  2933. * @return {number} - Total width to the right side of the specified slide, or 0 for an invalid index.
  2934. */
  2935. totalWidth: function totalWidth(index) {
  2936. if (index === void 0) {
  2937. index = Splide.length - 1;
  2938. }
  2939. var Slide = Elements.getSlide(index);
  2940. var width = 0;
  2941. if (Slide) {
  2942. var slideRect = getRect(Slide.slide);
  2943. var listRect = getRect(Elements.list);
  2944. if (options.direction === RTL) {
  2945. width = listRect.right - slideRect.left;
  2946. } else {
  2947. width = slideRect.right - listRect.left;
  2948. }
  2949. width += this.gap;
  2950. }
  2951. return width;
  2952. },
  2953. /**
  2954. * Return the slide width in px.
  2955. *
  2956. * @param {number} index - Slide index.
  2957. *
  2958. * @return {number} - The slide width.
  2959. */
  2960. slideWidth: function slideWidth(index) {
  2961. if (options.autoWidth) {
  2962. var Slide = Elements.getSlide(index);
  2963. return Slide ? Slide.slide.offsetWidth : 0;
  2964. }
  2965. var width = options.fixedWidth || (this.width + this.gap) / options.perPage - this.gap;
  2966. return toPixel(root, width);
  2967. },
  2968. /**
  2969. * Return the slide height in px.
  2970. *
  2971. * @return {number} - The slide height.
  2972. */
  2973. slideHeight: function slideHeight() {
  2974. var height = options.height || options.fixedHeight || this.width * options.heightRatio;
  2975. return toPixel(root, height);
  2976. },
  2977. /**
  2978. * Return slider width without padding.
  2979. *
  2980. * @return {number} - Current slider width.
  2981. */
  2982. get width() {
  2983. return track.clientWidth - this.padding.left - this.padding.right;
  2984. }
  2985. };
  2986. });
  2987. ;// CONCATENATED MODULE: ./src/js/components/layout/directions/vertical.js
  2988. /**
  2989. * The resolver component for vertical layout.
  2990. *
  2991. * @author Naotoshi Fujita
  2992. * @copyright Naotoshi Fujita. All rights reserved.
  2993. */
  2994. /**
  2995. * The resolver component for vertical layout.
  2996. *
  2997. * @param {Splide} Splide - A Splide instance.
  2998. * @param {Object} Components - An object containing components.
  2999. *
  3000. * @return {Object} - The resolver object.
  3001. */
  3002. /* harmony default export */ const vertical = (function (Splide, Components) {
  3003. /**
  3004. * Keep the Elements component.
  3005. *
  3006. * @type {string}
  3007. */
  3008. var Elements = Components.Elements;
  3009. /**
  3010. * Keep the root element.
  3011. *
  3012. * @type {Element}
  3013. */
  3014. var root = Splide.root;
  3015. /**
  3016. * Keep the track element.
  3017. *
  3018. * @type {Element}
  3019. */
  3020. var track;
  3021. /**
  3022. * Keep the latest options.
  3023. *
  3024. * @type {Element}
  3025. */
  3026. var options;
  3027. return {
  3028. /**
  3029. * Margin property name.
  3030. *
  3031. * @type {string}
  3032. */
  3033. margin: 'marginBottom',
  3034. /**
  3035. * Initialization.
  3036. */
  3037. init: function init() {
  3038. this.resize();
  3039. },
  3040. /**
  3041. * Resize gap and padding.
  3042. * This must be called on init.
  3043. */
  3044. resize: function resize() {
  3045. options = Splide.options;
  3046. track = Elements.track;
  3047. this.gap = toPixel(root, options.gap);
  3048. var padding = options.padding;
  3049. var top = toPixel(root, padding.top || padding);
  3050. var bottom = toPixel(root, padding.bottom || padding);
  3051. this.padding = {
  3052. top: top,
  3053. bottom: bottom
  3054. };
  3055. applyStyle(track, {
  3056. paddingTop: unit(top),
  3057. paddingBottom: unit(bottom)
  3058. });
  3059. },
  3060. /**
  3061. * Return total height from the top of the list to the bottom of the slide specified by the provided index.
  3062. *
  3063. * @param {number} index - Optional. A slide index. If undefined, total height of the slider will be returned.
  3064. *
  3065. * @return {number} - Total height to the bottom of the specified slide, or 0 for an invalid index.
  3066. */
  3067. totalHeight: function totalHeight(index) {
  3068. if (index === void 0) {
  3069. index = Splide.length - 1;
  3070. }
  3071. var Slide = Elements.getSlide(index);
  3072. if (Slide) {
  3073. return getRect(Slide.slide).bottom - getRect(Elements.list).top + this.gap;
  3074. }
  3075. return 0;
  3076. },
  3077. /**
  3078. * Return the slide width in px.
  3079. *
  3080. * @return {number} - The slide width.
  3081. */
  3082. slideWidth: function slideWidth() {
  3083. return toPixel(root, options.fixedWidth || this.width);
  3084. },
  3085. /**
  3086. * Return the slide height in px.
  3087. *
  3088. * @param {number} index - Slide index.
  3089. *
  3090. * @return {number} - The slide height.
  3091. */
  3092. slideHeight: function slideHeight(index) {
  3093. if (options.autoHeight) {
  3094. var Slide = Elements.getSlide(index);
  3095. return Slide ? Slide.slide.offsetHeight : 0;
  3096. }
  3097. var height = options.fixedHeight || (this.height + this.gap) / options.perPage - this.gap;
  3098. return toPixel(root, height);
  3099. },
  3100. /**
  3101. * Return slider width without padding.
  3102. *
  3103. * @return {number} - Current slider width.
  3104. */
  3105. get width() {
  3106. return track.clientWidth;
  3107. },
  3108. /**
  3109. * Return slide height without padding.
  3110. *
  3111. * @return {number} - Slider height.
  3112. */
  3113. get height() {
  3114. var height = options.height || this.width * options.heightRatio;
  3115. exist(height, '"height" or "heightRatio" is missing.');
  3116. return toPixel(root, height) - this.padding.top - this.padding.bottom;
  3117. }
  3118. };
  3119. });
  3120. ;// CONCATENATED MODULE: ./src/js/utils/time.js
  3121. /**
  3122. * A package of utility functions related with time.
  3123. *
  3124. * @author Naotoshi Fujita
  3125. * @copyright Naotoshi Fujita. All rights reserved.
  3126. */
  3127. /**
  3128. * Simple throttle function that controls how often the given function is executed.
  3129. *
  3130. * @param {function} func - A function to be throttled.
  3131. * @param {number} wait - Time in millisecond for interval of execution.
  3132. *
  3133. * @return {Function} - A debounced function.
  3134. */
  3135. function throttle(func, wait) {
  3136. var timeout; // Declare function by the "function" keyword to prevent "this" from being inherited.
  3137. return function () {
  3138. if (!timeout) {
  3139. timeout = setTimeout(function () {
  3140. func();
  3141. timeout = null;
  3142. }, wait);
  3143. }
  3144. };
  3145. }
  3146. /**
  3147. * Custom setInterval function that provides progress rate as callback.
  3148. *
  3149. * @param {function} callback - A callback function fired every time the interval time passes.
  3150. * @param {number} interval - Interval duration in milliseconds.
  3151. * @param {function} progress - A callback function fired whenever the progress goes.
  3152. *
  3153. * @return {Object} - An object containing play() and pause() functions.
  3154. */
  3155. function createInterval(callback, interval, progress) {
  3156. var _window = window,
  3157. requestAnimationFrame = _window.requestAnimationFrame;
  3158. var start,
  3159. elapse,
  3160. rate,
  3161. _pause = true;
  3162. var step = function step(timestamp) {
  3163. if (!_pause) {
  3164. if (!start) {
  3165. start = timestamp;
  3166. if (rate && rate < 1) {
  3167. start -= rate * interval;
  3168. }
  3169. }
  3170. elapse = timestamp - start;
  3171. rate = elapse / interval;
  3172. if (elapse >= interval) {
  3173. start = 0;
  3174. rate = 1;
  3175. callback();
  3176. }
  3177. if (progress) {
  3178. progress(rate);
  3179. }
  3180. requestAnimationFrame(step);
  3181. }
  3182. };
  3183. return {
  3184. pause: function pause() {
  3185. _pause = true;
  3186. start = 0;
  3187. },
  3188. play: function play(reset) {
  3189. start = 0;
  3190. if (reset) {
  3191. rate = 0;
  3192. }
  3193. if (_pause) {
  3194. _pause = false;
  3195. requestAnimationFrame(step);
  3196. }
  3197. }
  3198. };
  3199. }
  3200. ;// CONCATENATED MODULE: ./src/js/components/layout/index.js
  3201. /**
  3202. * The component for handing slide layouts and their sizes.
  3203. *
  3204. * @author Naotoshi Fujita
  3205. * @copyright Naotoshi Fujita. All rights reserved.
  3206. */
  3207. /**
  3208. * The component for handing slide layouts and their sizes.
  3209. *
  3210. * @param {Splide} Splide - A Splide instance.
  3211. * @param {Object} Components - An object containing components.
  3212. *
  3213. * @return {Object} - The component object.
  3214. */
  3215. /* harmony default export */ const layout = (function (Splide, Components) {
  3216. /**
  3217. * Keep the Elements component.
  3218. *
  3219. * @type {string}
  3220. */
  3221. var Elements = Components.Elements;
  3222. /**
  3223. * Whether the slider is vertical or not.
  3224. *
  3225. * @type {boolean}
  3226. */
  3227. var isVertical = Splide.options.direction === TTB;
  3228. /**
  3229. * Layout component object.
  3230. *
  3231. * @type {Object}
  3232. */
  3233. var Layout = object_assign({
  3234. /**
  3235. * Called when the component is mounted.
  3236. */
  3237. mount: function mount() {
  3238. bind();
  3239. init(); // The word "size" means width for a horizontal slider and height for a vertical slider.
  3240. this.totalSize = isVertical ? this.totalHeight : this.totalWidth;
  3241. this.slideSize = isVertical ? this.slideHeight : this.slideWidth;
  3242. },
  3243. /**
  3244. * Destroy the component.
  3245. */
  3246. destroy: function destroy() {
  3247. removeAttribute([Elements.list, Elements.track], 'style');
  3248. },
  3249. /**
  3250. * Return the slider height on the vertical mode or width on the horizontal mode.
  3251. *
  3252. * @return {number}
  3253. */
  3254. get size() {
  3255. return isVertical ? this.height : this.width;
  3256. }
  3257. }, isVertical ? vertical(Splide, Components) : horizontal(Splide, Components));
  3258. /**
  3259. * Init slider styles according to options.
  3260. */
  3261. function init() {
  3262. Layout.init();
  3263. applyStyle(Splide.root, {
  3264. maxWidth: unit(Splide.options.width)
  3265. });
  3266. Elements.each(function (Slide) {
  3267. Slide.slide.style[Layout.margin] = unit(Layout.gap);
  3268. });
  3269. resize();
  3270. }
  3271. /**
  3272. * Listen the resize native event with throttle.
  3273. * Initialize when the component is mounted or options are updated.
  3274. */
  3275. function bind() {
  3276. Splide.on('resize load', throttle(function () {
  3277. Splide.emit('resize');
  3278. }, Splide.options.throttle), window).on('resize', resize).on('updated refresh', init);
  3279. }
  3280. /**
  3281. * Resize the track and slide elements.
  3282. */
  3283. function resize() {
  3284. var options = Splide.options;
  3285. Layout.resize();
  3286. applyStyle(Elements.track, {
  3287. height: unit(Layout.height)
  3288. });
  3289. var slideHeight = options.autoHeight ? null : unit(Layout.slideHeight());
  3290. Elements.each(function (Slide) {
  3291. applyStyle(Slide.container, {
  3292. height: slideHeight
  3293. });
  3294. applyStyle(Slide.slide, {
  3295. width: options.autoWidth ? null : unit(Layout.slideWidth(Slide.index)),
  3296. height: Slide.container ? null : slideHeight
  3297. });
  3298. });
  3299. Splide.emit('resized');
  3300. }
  3301. return Layout;
  3302. });
  3303. ;// CONCATENATED MODULE: ./src/js/components/drag/index.js
  3304. /**
  3305. * The component for supporting mouse drag and swipe.
  3306. *
  3307. * @author Naotoshi Fujita
  3308. * @copyright Naotoshi Fujita. All rights reserved.
  3309. */
  3310. var drag_abs = Math.abs;
  3311. /**
  3312. * If the absolute velocity is greater thant this value,
  3313. * a slider always goes to a different slide after drag, not allowed to stay on a current slide.
  3314. */
  3315. var MIN_VELOCITY = 0.1;
  3316. /**
  3317. * Adjust how much the track can be pulled on the first or last page.
  3318. * The larger number this is, the farther the track moves.
  3319. * This should be around 5 - 9.
  3320. *
  3321. * @type {number}
  3322. */
  3323. var FRICTION_REDUCER = 7;
  3324. /**
  3325. * The component supporting mouse drag and swipe.
  3326. *
  3327. * @param {Splide} Splide - A Splide instance.
  3328. * @param {Object} Components - An object containing components.
  3329. *
  3330. * @return {Object} - The component object.
  3331. */
  3332. /* harmony default export */ const drag = (function (Splide, Components) {
  3333. /**
  3334. * Store the Move component.
  3335. *
  3336. * @type {Object}
  3337. */
  3338. var Track = Components.Track;
  3339. /**
  3340. * Store the Controller component.
  3341. *
  3342. * @type {Object}
  3343. */
  3344. var Controller = Components.Controller;
  3345. /**
  3346. * Coordinate of the track on starting drag.
  3347. *
  3348. * @type {Object}
  3349. */
  3350. var startCoord;
  3351. /**
  3352. * Analyzed info on starting drag.
  3353. *
  3354. * @type {Object|null}
  3355. */
  3356. var startInfo;
  3357. /**
  3358. * Analyzed info being updated while dragging/swiping.
  3359. *
  3360. * @type {Object}
  3361. */
  3362. var currentInfo;
  3363. /**
  3364. * Determine whether slides are being dragged or not.
  3365. *
  3366. * @type {boolean}
  3367. */
  3368. var isDragging;
  3369. /**
  3370. * Whether the slider direction is vertical or not.
  3371. *
  3372. * @type {boolean}
  3373. */
  3374. var isVertical = Splide.options.direction === TTB;
  3375. /**
  3376. * Axis for the direction.
  3377. *
  3378. * @type {string}
  3379. */
  3380. var axis = isVertical ? 'y' : 'x';
  3381. /**
  3382. * Drag component object.
  3383. *
  3384. * @type {Object}
  3385. */
  3386. var Drag = {
  3387. /**
  3388. * Whether dragging is disabled or not.
  3389. *
  3390. * @type {boolean}
  3391. */
  3392. disabled: false,
  3393. /**
  3394. * Called when the component is mounted.
  3395. */
  3396. mount: function mount() {
  3397. var _this = this;
  3398. var Elements = Components.Elements;
  3399. var track = Elements.track;
  3400. Splide.on('touchstart mousedown', start, track).on('touchmove mousemove', move, track, {
  3401. passive: false
  3402. }).on('touchend touchcancel mouseleave mouseup dragend', end, track).on('mounted refresh', function () {
  3403. // Prevent dragging an image or anchor itself.
  3404. each(Elements.list.querySelectorAll('img, a'), function (elm) {
  3405. Splide.off('dragstart', elm).on('dragstart', function (e) {
  3406. e.preventDefault();
  3407. }, elm, {
  3408. passive: false
  3409. });
  3410. });
  3411. }).on('mounted updated', function () {
  3412. _this.disabled = !Splide.options.drag;
  3413. });
  3414. }
  3415. };
  3416. /**
  3417. * Called when the track starts to be dragged.
  3418. *
  3419. * @param {TouchEvent|MouseEvent} e - TouchEvent or MouseEvent object.
  3420. */
  3421. function start(e) {
  3422. if (!Drag.disabled && !isDragging) {
  3423. // These prams are used to evaluate whether the slider should start moving.
  3424. init(e);
  3425. }
  3426. }
  3427. /**
  3428. * Initialize parameters.
  3429. *
  3430. * @param {TouchEvent|MouseEvent} e - TouchEvent or MouseEvent object.
  3431. */
  3432. function init(e) {
  3433. startCoord = Track.toCoord(Track.position);
  3434. startInfo = analyze(e, {});
  3435. currentInfo = startInfo;
  3436. }
  3437. /**
  3438. * Called while the track being dragged.
  3439. *
  3440. * @param {TouchEvent|MouseEvent} e - TouchEvent or MouseEvent object.
  3441. */
  3442. function move(e) {
  3443. if (startInfo) {
  3444. currentInfo = analyze(e, startInfo);
  3445. if (isDragging) {
  3446. if (e.cancelable) {
  3447. e.preventDefault();
  3448. }
  3449. if (!Splide.is(FADE)) {
  3450. var position = startCoord[axis] + currentInfo.offset[axis];
  3451. Track.translate(resist(position));
  3452. }
  3453. } else {
  3454. if (shouldMove(currentInfo)) {
  3455. Splide.emit('drag', startInfo);
  3456. isDragging = true;
  3457. Track.cancel(); // These params are actual drag data.
  3458. init(e);
  3459. }
  3460. }
  3461. }
  3462. }
  3463. /**
  3464. * Determine whether to start moving the track or not by drag angle.
  3465. *
  3466. * @param {Object} info - An information object.
  3467. *
  3468. * @return {boolean} - True if the track should be moved or false if not.
  3469. */
  3470. function shouldMove(_ref) {
  3471. var offset = _ref.offset;
  3472. if (Splide.State.is(MOVING) && Splide.options.waitForTransition) {
  3473. return false;
  3474. }
  3475. var angle = Math.atan(drag_abs(offset.y) / drag_abs(offset.x)) * 180 / Math.PI;
  3476. if (isVertical) {
  3477. angle = 90 - angle;
  3478. }
  3479. return angle < Splide.options.dragAngleThreshold;
  3480. }
  3481. /**
  3482. * Resist dragging the track on the first/last page because there is no more.
  3483. *
  3484. * @param {number} position - A position being applied to the track.
  3485. *
  3486. * @return {Object} - Adjusted position.
  3487. */
  3488. function resist(position) {
  3489. if (Splide.is(SLIDE)) {
  3490. var sign = Track.sign;
  3491. var _start = sign * Track.trim(Track.toPosition(0));
  3492. var _end = sign * Track.trim(Track.toPosition(Controller.edgeIndex));
  3493. position *= sign;
  3494. if (position < _start) {
  3495. position = _start - FRICTION_REDUCER * Math.log(_start - position);
  3496. } else if (position > _end) {
  3497. position = _end + FRICTION_REDUCER * Math.log(position - _end);
  3498. }
  3499. position *= sign;
  3500. }
  3501. return position;
  3502. }
  3503. /**
  3504. * Called when dragging ends.
  3505. */
  3506. function end() {
  3507. startInfo = null;
  3508. if (isDragging) {
  3509. Splide.emit('dragged', currentInfo);
  3510. go(currentInfo);
  3511. isDragging = false;
  3512. }
  3513. }
  3514. /**
  3515. * Go to the slide determined by the analyzed data.
  3516. *
  3517. * @param {Object} info - An info object.
  3518. */
  3519. function go(info) {
  3520. var velocity = info.velocity[axis];
  3521. var absV = drag_abs(velocity);
  3522. if (absV > 0) {
  3523. var options = Splide.options;
  3524. var index = Splide.index;
  3525. var sign = velocity < 0 ? -1 : 1;
  3526. var destIndex = index;
  3527. if (!Splide.is(FADE)) {
  3528. var destination = Track.position;
  3529. if (absV > options.flickVelocityThreshold && drag_abs(info.offset[axis]) < options.swipeDistanceThreshold) {
  3530. destination += sign * Math.min(absV * options.flickPower, Components.Layout.size * (options.flickMaxPages || 1));
  3531. }
  3532. destIndex = Track.toIndex(destination);
  3533. }
  3534. /*
  3535. * Do not allow the track to go to a previous position if there is enough velocity.
  3536. * Always use the adjacent index for the fade mode.
  3537. */
  3538. if (destIndex === index && absV > MIN_VELOCITY) {
  3539. destIndex = index + sign * Track.sign;
  3540. }
  3541. if (Splide.is(SLIDE)) {
  3542. destIndex = between(destIndex, 0, Controller.edgeIndex);
  3543. }
  3544. Controller.go(destIndex, options.isNavigation);
  3545. }
  3546. }
  3547. /**
  3548. * Analyze the given event object and return important information for handling swipe behavior.
  3549. *
  3550. * @param {Event} e - Touch or Mouse event object.
  3551. * @param {Object} startInfo - Information analyzed on start for calculating difference from the current one.
  3552. *
  3553. * @return {Object} - An object containing analyzed information, such as offset, velocity, etc.
  3554. */
  3555. function analyze(e, startInfo) {
  3556. var timeStamp = e.timeStamp,
  3557. touches = e.touches;
  3558. var _ref2 = touches ? touches[0] : e,
  3559. clientX = _ref2.clientX,
  3560. clientY = _ref2.clientY;
  3561. var _ref3 = startInfo.to || {},
  3562. _ref3$x = _ref3.x,
  3563. fromX = _ref3$x === void 0 ? clientX : _ref3$x,
  3564. _ref3$y = _ref3.y,
  3565. fromY = _ref3$y === void 0 ? clientY : _ref3$y;
  3566. var startTime = startInfo.time || 0;
  3567. var offset = {
  3568. x: clientX - fromX,
  3569. y: clientY - fromY
  3570. };
  3571. var duration = timeStamp - startTime;
  3572. var velocity = {
  3573. x: offset.x / duration,
  3574. y: offset.y / duration
  3575. };
  3576. return {
  3577. to: {
  3578. x: clientX,
  3579. y: clientY
  3580. },
  3581. offset: offset,
  3582. time: timeStamp,
  3583. velocity: velocity
  3584. };
  3585. }
  3586. return Drag;
  3587. });
  3588. ;// CONCATENATED MODULE: ./src/js/components/click/index.js
  3589. /**
  3590. * The component for handling a click event.
  3591. *
  3592. * @author Naotoshi Fujita
  3593. * @copyright Naotoshi Fujita. All rights reserved.
  3594. */
  3595. /**
  3596. * The component for handling a click event.
  3597. * Click should be disabled during drag/swipe.
  3598. *
  3599. * @param {Splide} Splide - A Splide instance.
  3600. * @param {Object} Components - An object containing components.
  3601. *
  3602. * @return {Object} - The component object.
  3603. */
  3604. /* harmony default export */ const click = (function (Splide, Components) {
  3605. /**
  3606. * Whether click is disabled or not.
  3607. *
  3608. * @type {boolean}
  3609. */
  3610. var disabled = false;
  3611. /**
  3612. * Click component object.
  3613. *
  3614. * @type {Object}
  3615. */
  3616. var Click = {
  3617. /**
  3618. * Mount only when the drag is activated and the slide type is not "fade".
  3619. *
  3620. * @type {boolean}
  3621. */
  3622. required: Splide.options.drag,
  3623. /**
  3624. * Called when the component is mounted.
  3625. */
  3626. mount: function mount() {
  3627. Splide.on('click', onClick, Components.Elements.track, {
  3628. capture: true
  3629. }).on('drag', function () {
  3630. disabled = true;
  3631. }).on('dragged', function () {
  3632. // Make sure the flag is released after the click event is fired.
  3633. setTimeout(function () {
  3634. disabled = false;
  3635. });
  3636. });
  3637. }
  3638. };
  3639. /**
  3640. * Called when a track element is clicked.
  3641. *
  3642. * @param {Event} e - A click event.
  3643. */
  3644. function onClick(e) {
  3645. if (disabled) {
  3646. e.preventDefault();
  3647. e.stopPropagation();
  3648. e.stopImmediatePropagation();
  3649. }
  3650. }
  3651. return Click;
  3652. });
  3653. ;// CONCATENATED MODULE: ./src/js/components/autoplay/index.js
  3654. /**
  3655. * The component for playing slides automatically.
  3656. *
  3657. * @author Naotoshi Fujita
  3658. * @copyright Naotoshi Fujita. All rights reserved.
  3659. */
  3660. /**
  3661. * Set of pause flags.
  3662. */
  3663. var PAUSE_FLAGS = {
  3664. HOVER: 1,
  3665. FOCUS: 2,
  3666. MANUAL: 3
  3667. };
  3668. /**
  3669. * The component for playing slides automatically.
  3670. *
  3671. * @param {Splide} Splide - A Splide instance.
  3672. * @param {Object} Components - An object containing components.
  3673. * @param {string} name - A component name as a lowercase string.
  3674. *
  3675. * @return {Object} - The component object.
  3676. */
  3677. /* harmony default export */ const autoplay = (function (Splide, Components, name) {
  3678. /**
  3679. * Store pause flags.
  3680. *
  3681. * @type {Array}
  3682. */
  3683. var flags = [];
  3684. /**
  3685. * Store an interval object.
  3686. *
  3687. * @type {Object};
  3688. */
  3689. var interval;
  3690. /**
  3691. * Keep the Elements component.
  3692. *
  3693. * @type {string}
  3694. */
  3695. var Elements = Components.Elements;
  3696. /**
  3697. * Autoplay component object.
  3698. *
  3699. * @type {Object}
  3700. */
  3701. var Autoplay = {
  3702. /**
  3703. * Required only when the autoplay option is true.
  3704. *
  3705. * @type {boolean}
  3706. */
  3707. required: Splide.options.autoplay,
  3708. /**
  3709. * Called when the component is mounted.
  3710. * Note that autoplay starts only if there are slides over perPage number.
  3711. */
  3712. mount: function mount() {
  3713. var options = Splide.options;
  3714. if (Elements.slides.length > options.perPage) {
  3715. interval = createInterval(function () {
  3716. Splide.go('>');
  3717. }, options.interval, function (rate) {
  3718. Splide.emit(name + ":playing", rate);
  3719. if (Elements.bar) {
  3720. applyStyle(Elements.bar, {
  3721. width: rate * 100 + "%"
  3722. });
  3723. }
  3724. });
  3725. bind();
  3726. this.play();
  3727. }
  3728. },
  3729. /**
  3730. * Start autoplay.
  3731. *
  3732. * @param {number} flag - A pause flag to be removed.
  3733. */
  3734. play: function play(flag) {
  3735. if (flag === void 0) {
  3736. flag = 0;
  3737. }
  3738. flags = flags.filter(function (f) {
  3739. return f !== flag;
  3740. });
  3741. if (!flags.length) {
  3742. Splide.emit(name + ":play");
  3743. interval.play(Splide.options.resetProgress);
  3744. }
  3745. },
  3746. /**
  3747. * Pause autoplay.
  3748. * Note that Array.includes is not supported by IE.
  3749. *
  3750. * @param {number} flag - A pause flag to be added.
  3751. */
  3752. pause: function pause(flag) {
  3753. if (flag === void 0) {
  3754. flag = 0;
  3755. }
  3756. interval.pause();
  3757. if (flags.indexOf(flag) === -1) {
  3758. flags.push(flag);
  3759. }
  3760. if (flags.length === 1) {
  3761. Splide.emit(name + ":pause");
  3762. }
  3763. }
  3764. };
  3765. /**
  3766. * Listen some events.
  3767. */
  3768. function bind() {
  3769. var options = Splide.options;
  3770. var sibling = Splide.sibling;
  3771. var elms = [Splide.root, sibling ? sibling.root : null];
  3772. if (options.pauseOnHover) {
  3773. switchOn(elms, 'mouseleave', PAUSE_FLAGS.HOVER, true);
  3774. switchOn(elms, 'mouseenter', PAUSE_FLAGS.HOVER, false);
  3775. }
  3776. if (options.pauseOnFocus) {
  3777. switchOn(elms, 'focusout', PAUSE_FLAGS.FOCUS, true);
  3778. switchOn(elms, 'focusin', PAUSE_FLAGS.FOCUS, false);
  3779. }
  3780. if (Elements.play) {
  3781. Splide.on('click', function () {
  3782. // Need to be removed a focus flag at first.
  3783. Autoplay.play(PAUSE_FLAGS.FOCUS);
  3784. Autoplay.play(PAUSE_FLAGS.MANUAL);
  3785. }, Elements.play);
  3786. }
  3787. if (Elements.pause) {
  3788. switchOn([Elements.pause], 'click', PAUSE_FLAGS.MANUAL, false);
  3789. }
  3790. Splide.on('move refresh', function () {
  3791. Autoplay.play();
  3792. }) // Rewind the timer.
  3793. .on('destroy', function () {
  3794. Autoplay.pause();
  3795. });
  3796. }
  3797. /**
  3798. * Play or pause on the given event.
  3799. *
  3800. * @param {Element[]} elms - Elements.
  3801. * @param {string} event - An event name or names.
  3802. * @param {number} flag - A pause flag defined on the top.
  3803. * @param {boolean} play - Determine whether to play or pause.
  3804. */
  3805. function switchOn(elms, event, flag, play) {
  3806. elms.forEach(function (elm) {
  3807. Splide.on(event, function () {
  3808. Autoplay[play ? 'play' : 'pause'](flag);
  3809. }, elm);
  3810. });
  3811. }
  3812. return Autoplay;
  3813. });
  3814. ;// CONCATENATED MODULE: ./src/js/components/cover/index.js
  3815. /**
  3816. * The component for change an img element to background image of its wrapper.
  3817. *
  3818. * @author Naotoshi Fujita
  3819. * @copyright Naotoshi Fujita. All rights reserved.
  3820. */
  3821. /**
  3822. * The component for change an img element to background image of its wrapper.
  3823. *
  3824. * @param {Splide} Splide - A Splide instance.
  3825. * @param {Object} Components - An object containing components.
  3826. *
  3827. * @return {Object} - The component object.
  3828. */
  3829. /* harmony default export */ const cover = (function (Splide, Components) {
  3830. /**
  3831. * Hold options.
  3832. *
  3833. * @type {Object}
  3834. */
  3835. var options = Splide.options;
  3836. /**
  3837. * Cover component object.
  3838. *
  3839. * @type {Object}
  3840. */
  3841. var Cover = {
  3842. /**
  3843. * Required only when "cover" option is true.
  3844. *
  3845. * @type {boolean}
  3846. */
  3847. required: options.cover,
  3848. /**
  3849. * Called when the component is mounted.
  3850. */
  3851. mount: function mount() {
  3852. Splide.on('lazyload:loaded', function (img) {
  3853. cover(img, false);
  3854. });
  3855. Splide.on('mounted updated refresh', function () {
  3856. return apply(false);
  3857. });
  3858. },
  3859. /**
  3860. * Destroy.
  3861. */
  3862. destroy: function destroy() {
  3863. apply(true);
  3864. }
  3865. };
  3866. /**
  3867. * Apply "cover" to all slides.
  3868. *
  3869. * @param {boolean} uncover - If true, "cover" will be clear.
  3870. */
  3871. function apply(uncover) {
  3872. Components.Elements.each(function (Slide) {
  3873. var img = child(Slide.slide, 'IMG') || child(Slide.container, 'IMG');
  3874. if (img && img.src) {
  3875. cover(img, uncover);
  3876. }
  3877. });
  3878. }
  3879. /**
  3880. * Set background image of the parent element, using source of the given image element.
  3881. *
  3882. * @param {Element} img - An image element.
  3883. * @param {boolean} uncover - Reset "cover".
  3884. */
  3885. function cover(img, uncover) {
  3886. applyStyle(img.parentElement, {
  3887. background: uncover ? '' : "center/cover no-repeat url(\"" + img.src + "\")"
  3888. });
  3889. applyStyle(img, {
  3890. display: uncover ? '' : 'none'
  3891. });
  3892. }
  3893. return Cover;
  3894. });
  3895. ;// CONCATENATED MODULE: ./src/js/components/arrows/path.js
  3896. /**
  3897. * Export vector path for an arrow.
  3898. *
  3899. * @author Naotoshi Fujita
  3900. * @copyright Naotoshi Fujita. All rights reserved.
  3901. */
  3902. /**
  3903. * Namespace definition for SVG element.
  3904. *
  3905. * @type {string}
  3906. */
  3907. var XML_NAME_SPACE = 'http://www.w3.org/2000/svg';
  3908. /**
  3909. * The arrow vector path.
  3910. *
  3911. * @type {number}
  3912. */
  3913. var PATH = 'm15.5 0.932-4.3 4.38 14.5 14.6-14.5 14.5 4.3 4.4 14.6-14.6 4.4-4.3-4.4-4.4-14.6-14.6z';
  3914. /**
  3915. * SVG width and height.
  3916. *
  3917. * @type {number}
  3918. */
  3919. var SIZE = 40;
  3920. ;// CONCATENATED MODULE: ./src/js/components/arrows/index.js
  3921. /**
  3922. * The component for appending prev/next arrows.
  3923. *
  3924. * @author Naotoshi Fujita
  3925. * @copyright Naotoshi Fujita. All rights reserved.
  3926. */
  3927. /**
  3928. * The component for appending prev/next arrows.
  3929. *
  3930. * @param {Splide} Splide - A Splide instance.
  3931. * @param {Object} Components - An object containing components.
  3932. * @param {string} name - A component name as a lowercase string.
  3933. *
  3934. * @return {Object} - The component object.
  3935. */
  3936. /* harmony default export */ const arrows = (function (Splide, Components, name) {
  3937. /**
  3938. * Previous arrow element.
  3939. *
  3940. * @type {Element|undefined}
  3941. */
  3942. var prev;
  3943. /**
  3944. * Next arrow element.
  3945. *
  3946. * @type {Element|undefined}
  3947. */
  3948. var next;
  3949. /**
  3950. * Store the class list.
  3951. *
  3952. * @type {Object}
  3953. */
  3954. var classes = Splide.classes;
  3955. /**
  3956. * Hold the root element.
  3957. *
  3958. * @type {Element}
  3959. */
  3960. var root = Splide.root;
  3961. /**
  3962. * Whether arrows are created programmatically or not.
  3963. *
  3964. * @type {boolean}
  3965. */
  3966. var created;
  3967. /**
  3968. * Hold the Elements component.
  3969. *
  3970. * @type {Object}
  3971. */
  3972. var Elements = Components.Elements;
  3973. /**
  3974. * Arrows component object.
  3975. *
  3976. * @type {Object}
  3977. */
  3978. var Arrows = {
  3979. /**
  3980. * Required when the arrows option is true.
  3981. *
  3982. * @type {boolean}
  3983. */
  3984. required: Splide.options.arrows,
  3985. /**
  3986. * Called when the component is mounted.
  3987. */
  3988. mount: function mount() {
  3989. // Attempt to get arrows from HTML source.
  3990. prev = Elements.arrows.prev;
  3991. next = Elements.arrows.next; // If arrows were not found in HTML, let's generate them.
  3992. if ((!prev || !next) && Splide.options.arrows) {
  3993. prev = createArrow(true);
  3994. next = createArrow(false);
  3995. created = true;
  3996. appendArrows();
  3997. }
  3998. if (prev && next) {
  3999. bind();
  4000. }
  4001. this.arrows = {
  4002. prev: prev,
  4003. next: next
  4004. };
  4005. },
  4006. /**
  4007. * Called after all components are mounted.
  4008. */
  4009. mounted: function mounted() {
  4010. Splide.emit(name + ":mounted", prev, next);
  4011. },
  4012. /**
  4013. * Destroy.
  4014. */
  4015. destroy: function destroy() {
  4016. removeAttribute([prev, next], 'disabled');
  4017. if (created) {
  4018. dom_remove(prev.parentElement);
  4019. }
  4020. }
  4021. };
  4022. /**
  4023. * Listen to native and custom events.
  4024. */
  4025. function bind() {
  4026. Splide.on('click', function () {
  4027. Splide.go('<');
  4028. }, prev).on('click', function () {
  4029. Splide.go('>');
  4030. }, next).on('mounted move updated refresh', updateDisabled);
  4031. }
  4032. /**
  4033. * Update a disabled attribute.
  4034. */
  4035. function updateDisabled() {
  4036. var _Components$Controlle = Components.Controller,
  4037. prevIndex = _Components$Controlle.prevIndex,
  4038. nextIndex = _Components$Controlle.nextIndex;
  4039. var isEnough = Splide.length > Splide.options.perPage || Splide.is(LOOP);
  4040. prev.disabled = prevIndex < 0 || !isEnough;
  4041. next.disabled = nextIndex < 0 || !isEnough;
  4042. Splide.emit(name + ":updated", prev, next, prevIndex, nextIndex);
  4043. }
  4044. /**
  4045. * Create a wrapper element and append arrows.
  4046. */
  4047. function appendArrows() {
  4048. var wrapper = create('div', {
  4049. "class": classes.arrows
  4050. });
  4051. append(wrapper, prev);
  4052. append(wrapper, next);
  4053. var slider = Elements.slider;
  4054. var parent = Splide.options.arrows === 'slider' && slider ? slider : root;
  4055. before(wrapper, parent.firstElementChild);
  4056. }
  4057. /**
  4058. * Create an arrow element.
  4059. *
  4060. * @param {boolean} prev - Determine to create a prev arrow or next arrow.
  4061. *
  4062. * @return {Element} - A created arrow element.
  4063. */
  4064. function createArrow(prev) {
  4065. var arrow = "<button class=\"" + classes.arrow + " " + (prev ? classes.prev : classes.next) + "\" type=\"button\">" + ("<svg xmlns=\"" + XML_NAME_SPACE + "\"\tviewBox=\"0 0 " + SIZE + " " + SIZE + "\"\twidth=\"" + SIZE + "\"\theight=\"" + SIZE + "\">") + ("<path d=\"" + (Splide.options.arrowPath || PATH) + "\" />");
  4066. return domify(arrow);
  4067. }
  4068. return Arrows;
  4069. });
  4070. ;// CONCATENATED MODULE: ./src/js/components/pagination/index.js
  4071. /**
  4072. * The component for handling pagination
  4073. *
  4074. * @author Naotoshi Fujita
  4075. * @copyright Naotoshi Fujita. All rights reserved.
  4076. */
  4077. /**
  4078. * The event name for updating some attributes of pagination nodes.
  4079. *
  4080. * @type {string}
  4081. */
  4082. var ATTRIBUTES_UPDATE_EVENT = 'move.page';
  4083. /**
  4084. * The event name for recreating pagination.
  4085. *
  4086. * @type {string}
  4087. */
  4088. var UPDATE_EVENT = 'updated.page refresh.page';
  4089. /**
  4090. * The component for handling pagination
  4091. *
  4092. * @param {Splide} Splide - A Splide instance.
  4093. * @param {Object} Components - An object containing components.
  4094. * @param {string} name - A component name as a lowercase string.
  4095. *
  4096. * @return {Object} - The component object.
  4097. */
  4098. /* harmony default export */ const pagination = (function (Splide, Components, name) {
  4099. /**
  4100. * Store all data for pagination.
  4101. * - list: A list element.
  4102. * - items: An array that contains objects(li, button, index, page).
  4103. *
  4104. * @type {Object}
  4105. */
  4106. var data = {};
  4107. /**
  4108. * Hold the Elements component.
  4109. *
  4110. * @type {Object}
  4111. */
  4112. var Elements = Components.Elements;
  4113. /**
  4114. * Pagination component object.
  4115. *
  4116. * @type {Object}
  4117. */
  4118. var Pagination = {
  4119. /**
  4120. * Called when the component is mounted.
  4121. */
  4122. mount: function mount() {
  4123. var pagination = Splide.options.pagination;
  4124. if (pagination) {
  4125. data = createPagination();
  4126. var slider = Elements.slider;
  4127. var parent = pagination === 'slider' && slider ? slider : Splide.root;
  4128. append(parent, data.list);
  4129. Splide.on(ATTRIBUTES_UPDATE_EVENT, updateAttributes);
  4130. }
  4131. Splide.off(UPDATE_EVENT).on(UPDATE_EVENT, function () {
  4132. Pagination.destroy();
  4133. if (Splide.options.pagination) {
  4134. Pagination.mount();
  4135. Pagination.mounted();
  4136. }
  4137. });
  4138. },
  4139. /**
  4140. * Called after all components are mounted.
  4141. */
  4142. mounted: function mounted() {
  4143. if (Splide.options.pagination) {
  4144. var index = Splide.index;
  4145. Splide.emit(name + ":mounted", data, this.getItem(index));
  4146. updateAttributes(index, -1);
  4147. }
  4148. },
  4149. /**
  4150. * Destroy the pagination.
  4151. * Be aware that node.remove() is not supported by IE.
  4152. */
  4153. destroy: function destroy() {
  4154. dom_remove(data.list);
  4155. if (data.items) {
  4156. data.items.forEach(function (item) {
  4157. Splide.off('click', item.button);
  4158. });
  4159. } // Do not remove UPDATE_EVENT to recreate pagination if needed.
  4160. Splide.off(ATTRIBUTES_UPDATE_EVENT);
  4161. data = {};
  4162. },
  4163. /**
  4164. * Return an item by index.
  4165. *
  4166. * @param {number} index - A slide index.
  4167. *
  4168. * @return {Object|undefined} - An item object on success or undefined on failure.
  4169. */
  4170. getItem: function getItem(index) {
  4171. return data.items[Components.Controller.toPage(index)];
  4172. },
  4173. /**
  4174. * Return object containing pagination data.
  4175. *
  4176. * @return {Object} - Pagination data including list and items.
  4177. */
  4178. get data() {
  4179. return data;
  4180. }
  4181. };
  4182. /**
  4183. * Update attributes.
  4184. *
  4185. * @param {number} index - Active index.
  4186. * @param {number} prevIndex - Prev index.
  4187. */
  4188. function updateAttributes(index, prevIndex) {
  4189. var prev = Pagination.getItem(prevIndex);
  4190. var curr = Pagination.getItem(index);
  4191. var active = STATUS_CLASSES.active;
  4192. if (prev) {
  4193. removeClass(prev.button, active);
  4194. }
  4195. if (curr) {
  4196. addClass(curr.button, active);
  4197. }
  4198. Splide.emit(name + ":updated", data, prev, curr);
  4199. }
  4200. /**
  4201. * Create a wrapper and button elements.
  4202. *
  4203. * @return {Object} - An object contains all data.
  4204. */
  4205. function createPagination() {
  4206. var options = Splide.options;
  4207. var classes = Splide.classes;
  4208. var list = create('ul', {
  4209. "class": classes.pagination
  4210. });
  4211. var items = Elements.getSlides(false).filter(function (Slide) {
  4212. return options.focus !== false || Slide.index % options.perPage === 0;
  4213. }).map(function (Slide, page) {
  4214. var li = create('li', {});
  4215. var button = create('button', {
  4216. "class": classes.page,
  4217. type: 'button'
  4218. });
  4219. append(li, button);
  4220. append(list, li);
  4221. Splide.on('click', function () {
  4222. Splide.go(">" + page);
  4223. }, button);
  4224. return {
  4225. li: li,
  4226. button: button,
  4227. page: page,
  4228. Slides: Elements.getSlidesByPage(page)
  4229. };
  4230. });
  4231. return {
  4232. list: list,
  4233. items: items
  4234. };
  4235. }
  4236. return Pagination;
  4237. });
  4238. ;// CONCATENATED MODULE: ./src/js/components/lazyload/index.js
  4239. /**
  4240. * The component for loading slider images lazily.
  4241. *
  4242. * @author Naotoshi Fujita
  4243. * @copyright Naotoshi Fujita. All rights reserved.
  4244. */
  4245. /**
  4246. * The name for a data attribute of src.
  4247. *
  4248. * @type {string}
  4249. */
  4250. var SRC_DATA_NAME = 'data-splide-lazy';
  4251. /**
  4252. * The name for a data attribute of srcset.
  4253. *
  4254. * @type {string}
  4255. */
  4256. var SRCSET_DATA_NAME = 'data-splide-lazy-srcset';
  4257. /**
  4258. * The component for loading slider images lazily.
  4259. *
  4260. * @param {Splide} Splide - A Splide instance.
  4261. * @param {Object} Components - An object containing components.
  4262. * @param {string} name - A component name as a lowercase string.
  4263. *
  4264. * @return {Object} - The component object.
  4265. */
  4266. /* harmony default export */ const lazyload = (function (Splide, Components, name) {
  4267. /**
  4268. * Next index for sequential loading.
  4269. *
  4270. * @type {number}
  4271. */
  4272. var nextIndex;
  4273. /**
  4274. * Store objects containing an img element and a Slide object.
  4275. *
  4276. * @type {Object[]}
  4277. */
  4278. var images;
  4279. /**
  4280. * Store the options.
  4281. *
  4282. * @type {Object}
  4283. */
  4284. var options = Splide.options;
  4285. /**
  4286. * Whether to load images sequentially or not.
  4287. *
  4288. * @type {boolean}
  4289. */
  4290. var isSequential = options.lazyLoad === 'sequential';
  4291. /**
  4292. * Lazyload component object.
  4293. *
  4294. * @type {Object}
  4295. */
  4296. var Lazyload = {
  4297. /**
  4298. * Mount only when the lazyload option is provided.
  4299. *
  4300. * @type {boolean}
  4301. */
  4302. required: options.lazyLoad,
  4303. /**
  4304. * Called when the component is mounted.
  4305. */
  4306. mount: function mount() {
  4307. Splide.on('mounted refresh', function () {
  4308. init();
  4309. Components.Elements.each(function (Slide) {
  4310. each(Slide.slide.querySelectorAll("[" + SRC_DATA_NAME + "], [" + SRCSET_DATA_NAME + "]"), function (img) {
  4311. if (!img.src && !img.srcset) {
  4312. images.push({
  4313. img: img,
  4314. Slide: Slide
  4315. });
  4316. applyStyle(img, {
  4317. display: 'none'
  4318. });
  4319. }
  4320. });
  4321. });
  4322. if (isSequential) {
  4323. loadNext();
  4324. }
  4325. });
  4326. if (!isSequential) {
  4327. Splide.on("mounted refresh moved." + name, check);
  4328. }
  4329. },
  4330. /**
  4331. * Destroy.
  4332. */
  4333. destroy: init
  4334. };
  4335. /**
  4336. * Initialize parameters.
  4337. */
  4338. function init() {
  4339. images = [];
  4340. nextIndex = 0;
  4341. }
  4342. /**
  4343. * Check how close each image is from the active slide and
  4344. * determine whether to start loading or not, according to the distance.
  4345. *
  4346. * @param {number} index - Current index.
  4347. */
  4348. function check(index) {
  4349. index = isNaN(index) ? Splide.index : index;
  4350. images = images.filter(function (image) {
  4351. if (image.Slide.isWithin(index, options.perPage * (options.preloadPages + 1))) {
  4352. load(image.img, image.Slide);
  4353. return false;
  4354. }
  4355. return true;
  4356. }); // Unbind if all images are loaded.
  4357. if (!images[0]) {
  4358. Splide.off("moved." + name);
  4359. }
  4360. }
  4361. /**
  4362. * Start loading an image.
  4363. * Creating a clone of the image element since setting src attribute directly to it
  4364. * often occurs 'hitch', blocking some other processes of a browser.
  4365. *
  4366. * @param {Element} img - An image element.
  4367. * @param {Object} Slide - A Slide object.
  4368. */
  4369. function load(img, Slide) {
  4370. addClass(Slide.slide, STATUS_CLASSES.loading);
  4371. var spinner = create('span', {
  4372. "class": Splide.classes.spinner
  4373. });
  4374. append(img.parentElement, spinner);
  4375. img.onload = function () {
  4376. loaded(img, spinner, Slide, false);
  4377. };
  4378. img.onerror = function () {
  4379. loaded(img, spinner, Slide, true);
  4380. };
  4381. setAttribute(img, 'srcset', getAttribute(img, SRCSET_DATA_NAME) || '');
  4382. setAttribute(img, 'src', getAttribute(img, SRC_DATA_NAME) || '');
  4383. }
  4384. /**
  4385. * Start loading a next image in images array.
  4386. */
  4387. function loadNext() {
  4388. if (nextIndex < images.length) {
  4389. var image = images[nextIndex];
  4390. load(image.img, image.Slide);
  4391. }
  4392. nextIndex++;
  4393. }
  4394. /**
  4395. * Called just after the image was loaded or loading was aborted by some error.
  4396. *
  4397. * @param {Element} img - An image element.
  4398. * @param {Element} spinner - A spinner element.
  4399. * @param {Object} Slide - A Slide object.
  4400. * @param {boolean} error - True if the image was loaded successfully or false on error.
  4401. */
  4402. function loaded(img, spinner, Slide, error) {
  4403. removeClass(Slide.slide, STATUS_CLASSES.loading);
  4404. if (!error) {
  4405. dom_remove(spinner);
  4406. applyStyle(img, {
  4407. display: ''
  4408. });
  4409. Splide.emit(name + ":loaded", img).emit('resize');
  4410. }
  4411. if (isSequential) {
  4412. loadNext();
  4413. }
  4414. }
  4415. return Lazyload;
  4416. });
  4417. ;// CONCATENATED MODULE: ./src/js/constants/a11y.js
  4418. /**
  4419. * Export aria attribute names.
  4420. *
  4421. * @author Naotoshi Fujita
  4422. * @copyright Naotoshi Fujita. All rights reserved.
  4423. */
  4424. /**
  4425. * Attribute name for aria-current.
  4426. *
  4427. * @type {string}
  4428. */
  4429. var ARIA_CURRENRT = 'aria-current';
  4430. /**
  4431. * Attribute name for aria-control.
  4432. *
  4433. * @type {string}
  4434. */
  4435. var ARIA_CONTROLS = 'aria-controls';
  4436. /**
  4437. * Attribute name for aria-control.
  4438. *
  4439. * @type {string}
  4440. */
  4441. var ARIA_LABEL = 'aria-label';
  4442. /**
  4443. * Attribute name for aria-labelledby.
  4444. *
  4445. * @type {string}
  4446. */
  4447. var ARIA_LABELLEDBY = 'aria-labelledby';
  4448. /**
  4449. * Attribute name for aria-hidden.
  4450. *
  4451. * @type {string}
  4452. */
  4453. var ARIA_HIDDEN = 'aria-hidden';
  4454. /**
  4455. * Attribute name for tab-index.
  4456. *
  4457. * @type {string}
  4458. */
  4459. var TAB_INDEX = 'tabindex';
  4460. ;// CONCATENATED MODULE: ./src/js/components/keyboard/index.js
  4461. /**
  4462. * The component for controlling slides via keyboard.
  4463. *
  4464. * @author Naotoshi Fujita
  4465. * @copyright Naotoshi Fujita. All rights reserved.
  4466. */
  4467. /**
  4468. * Map a key to a slide control.
  4469. *
  4470. * @type {Object}
  4471. */
  4472. var KEY_MAP = {
  4473. ltr: {
  4474. ArrowLeft: '<',
  4475. ArrowRight: '>',
  4476. // For IE.
  4477. Left: '<',
  4478. Right: '>'
  4479. },
  4480. rtl: {
  4481. ArrowLeft: '>',
  4482. ArrowRight: '<',
  4483. // For IE.
  4484. Left: '>',
  4485. Right: '<'
  4486. },
  4487. ttb: {
  4488. ArrowUp: '<',
  4489. ArrowDown: '>',
  4490. // For IE.
  4491. Up: '<',
  4492. Down: '>'
  4493. }
  4494. };
  4495. /**
  4496. * The component for controlling slides via keyboard.
  4497. *
  4498. * @param {Splide} Splide - A Splide instance.
  4499. *
  4500. * @return {Object} - The component object.
  4501. */
  4502. /* harmony default export */ const keyboard = (function (Splide) {
  4503. /**
  4504. * Hold the target element.
  4505. *
  4506. * @type {Element|Document|undefined}
  4507. */
  4508. var target;
  4509. return {
  4510. /**
  4511. * Called when the component is mounted.
  4512. */
  4513. mount: function mount() {
  4514. Splide.on('mounted updated', function () {
  4515. var options = Splide.options;
  4516. var root = Splide.root;
  4517. var map = KEY_MAP[options.direction];
  4518. var keyboard = options.keyboard;
  4519. if (target) {
  4520. Splide.off('keydown', target);
  4521. removeAttribute(root, TAB_INDEX);
  4522. }
  4523. if (keyboard) {
  4524. if (keyboard === 'focused') {
  4525. target = root;
  4526. setAttribute(root, TAB_INDEX, 0);
  4527. } else {
  4528. target = document;
  4529. }
  4530. Splide.on('keydown', function (e) {
  4531. if (map[e.key]) {
  4532. Splide.go(map[e.key]);
  4533. }
  4534. }, target);
  4535. }
  4536. });
  4537. }
  4538. };
  4539. });
  4540. ;// CONCATENATED MODULE: ./src/js/components/a11y/index.js
  4541. /**
  4542. * The component for enhancing accessibility.
  4543. *
  4544. * @author Naotoshi Fujita
  4545. * @copyright Naotoshi Fujita. All rights reserved.
  4546. */
  4547. /**
  4548. * The component for enhancing accessibility.
  4549. *
  4550. * @param {Splide} Splide - A Splide instance.
  4551. * @param {Object} Components - An object containing components.
  4552. *
  4553. * @return {Object} - The component object.
  4554. */
  4555. /* harmony default export */ const a11y = (function (Splide, Components) {
  4556. /**
  4557. * Hold a i18n object.
  4558. *
  4559. * @type {Object}
  4560. */
  4561. var i18n = Splide.i18n;
  4562. /**
  4563. * Hold the Elements component.
  4564. *
  4565. * @type {Object}
  4566. */
  4567. var Elements = Components.Elements;
  4568. /**
  4569. * All attributes related with A11y.
  4570. *
  4571. * @type {string[]}
  4572. */
  4573. var allAttributes = [ARIA_HIDDEN, TAB_INDEX, ARIA_CONTROLS, ARIA_LABEL, ARIA_CURRENRT, 'role'];
  4574. /**
  4575. * A11y component object.
  4576. *
  4577. * @type {Object}
  4578. */
  4579. var A11y = {
  4580. /**
  4581. * Required only when the accessibility option is true.
  4582. *
  4583. * @type {boolean}
  4584. */
  4585. required: Splide.options.accessibility,
  4586. /**
  4587. * Called when the component is mounted.
  4588. */
  4589. mount: function mount() {
  4590. Splide.on('visible', function (Slide) {
  4591. updateSlide(Slide.slide, true);
  4592. }).on('hidden', function (Slide) {
  4593. updateSlide(Slide.slide, false);
  4594. }).on('arrows:mounted', initArrows).on('arrows:updated', updateArrows).on('pagination:mounted', initPagination).on('pagination:updated', updatePagination).on('refresh', function () {
  4595. removeAttribute(Components.Clones.clones, allAttributes);
  4596. });
  4597. if (Splide.options.isNavigation) {
  4598. Splide.on('navigation:mounted navigation:updated', initNavigation).on('active', function (Slide) {
  4599. updateNavigation(Slide, true);
  4600. }).on('inactive', function (Slide) {
  4601. updateNavigation(Slide, false);
  4602. });
  4603. }
  4604. initAutoplay();
  4605. },
  4606. /**
  4607. * Destroy.
  4608. */
  4609. destroy: function destroy() {
  4610. var Arrows = Components.Arrows;
  4611. var arrows = Arrows ? Arrows.arrows : {};
  4612. removeAttribute(Elements.slides.concat([arrows.prev, arrows.next, Elements.play, Elements.pause]), allAttributes);
  4613. }
  4614. };
  4615. /**
  4616. * Update slide attributes when it gets visible or hidden.
  4617. *
  4618. * @param {Element} slide - A slide element.
  4619. * @param {Boolean} visible - True when the slide gets visible, or false when hidden.
  4620. */
  4621. function updateSlide(slide, visible) {
  4622. setAttribute(slide, ARIA_HIDDEN, !visible);
  4623. if (Splide.options.slideFocus) {
  4624. setAttribute(slide, TAB_INDEX, visible ? 0 : -1);
  4625. }
  4626. }
  4627. /**
  4628. * Initialize arrows if they are available.
  4629. * Append screen reader elements and add aria-controls attribute.
  4630. *
  4631. * @param {Element} prev - Previous arrow element.
  4632. * @param {Element} next - Next arrow element.
  4633. */
  4634. function initArrows(prev, next) {
  4635. var controls = Elements.track.id;
  4636. setAttribute(prev, ARIA_CONTROLS, controls);
  4637. setAttribute(next, ARIA_CONTROLS, controls);
  4638. }
  4639. /**
  4640. * Update arrow attributes.
  4641. *
  4642. * @param {Element} prev - Previous arrow element.
  4643. * @param {Element} next - Next arrow element.
  4644. * @param {number} prevIndex - Previous slide index or -1 when there is no precede slide.
  4645. * @param {number} nextIndex - Next slide index or -1 when there is no next slide.
  4646. */
  4647. function updateArrows(prev, next, prevIndex, nextIndex) {
  4648. var index = Splide.index;
  4649. var prevLabel = prevIndex > -1 && index < prevIndex ? i18n.last : i18n.prev;
  4650. var nextLabel = nextIndex > -1 && index > nextIndex ? i18n.first : i18n.next;
  4651. setAttribute(prev, ARIA_LABEL, prevLabel);
  4652. setAttribute(next, ARIA_LABEL, nextLabel);
  4653. }
  4654. /**
  4655. * Initialize pagination if it's available.
  4656. * Append a screen reader element and add aria-controls/label attribute to each item.
  4657. *
  4658. * @param {Object} data - Data object containing all items.
  4659. * @param {Object} activeItem - An initial active item.
  4660. */
  4661. function initPagination(data, activeItem) {
  4662. if (activeItem) {
  4663. setAttribute(activeItem.button, ARIA_CURRENRT, true);
  4664. }
  4665. data.items.forEach(function (item) {
  4666. var options = Splide.options;
  4667. var text = options.focus === false && options.perPage > 1 ? i18n.pageX : i18n.slideX;
  4668. var label = sprintf(text, item.page + 1);
  4669. var button = item.button;
  4670. var controls = item.Slides.map(function (Slide) {
  4671. return Slide.slide.id;
  4672. });
  4673. setAttribute(button, ARIA_CONTROLS, controls.join(' '));
  4674. setAttribute(button, ARIA_LABEL, label);
  4675. });
  4676. }
  4677. /**
  4678. * Update pagination attributes.
  4679. *
  4680. * @param {Object} data - Data object containing all items.
  4681. * @param {Element} prev - A previous active element.
  4682. * @param {Element} curr - A current active element.
  4683. */
  4684. function updatePagination(data, prev, curr) {
  4685. if (prev) {
  4686. removeAttribute(prev.button, ARIA_CURRENRT);
  4687. }
  4688. if (curr) {
  4689. setAttribute(curr.button, ARIA_CURRENRT, true);
  4690. }
  4691. }
  4692. /**
  4693. * Initialize autoplay buttons.
  4694. */
  4695. function initAutoplay() {
  4696. ['play', 'pause'].forEach(function (name) {
  4697. var elm = Elements[name];
  4698. if (elm) {
  4699. if (!isButton(elm)) {
  4700. setAttribute(elm, 'role', 'button');
  4701. }
  4702. setAttribute(elm, ARIA_CONTROLS, Elements.track.id);
  4703. setAttribute(elm, ARIA_LABEL, i18n[name]);
  4704. }
  4705. });
  4706. }
  4707. /**
  4708. * Initialize navigation slider.
  4709. * Add button role, aria-label, aria-controls to slide elements and append screen reader text to them.
  4710. *
  4711. * @param {Splide} main - A main Splide instance.
  4712. */
  4713. function initNavigation(main) {
  4714. Elements.each(function (Slide) {
  4715. var slide = Slide.slide;
  4716. var realIndex = Slide.realIndex;
  4717. if (!isButton(slide)) {
  4718. setAttribute(slide, 'role', 'button');
  4719. }
  4720. var slideIndex = realIndex > -1 ? realIndex : Slide.index;
  4721. var label = sprintf(i18n.slideX, slideIndex + 1);
  4722. var mainSlide = main.Components.Elements.getSlide(slideIndex);
  4723. setAttribute(slide, ARIA_LABEL, label);
  4724. if (mainSlide) {
  4725. setAttribute(slide, ARIA_CONTROLS, mainSlide.slide.id);
  4726. }
  4727. });
  4728. }
  4729. /**
  4730. * Update navigation attributes.
  4731. *
  4732. * @param {Object} Slide - A target Slide object.
  4733. * @param {boolean} active - True if the slide is active or false if inactive.
  4734. */
  4735. function updateNavigation(_ref, active) {
  4736. var slide = _ref.slide;
  4737. if (active) {
  4738. setAttribute(slide, ARIA_CURRENRT, true);
  4739. } else {
  4740. removeAttribute(slide, ARIA_CURRENRT);
  4741. }
  4742. }
  4743. /**
  4744. * Check if the given element is button or not.
  4745. *
  4746. * @param {Element} elm - An element to be checked.
  4747. *
  4748. * @return {boolean} - True if the given element is button.
  4749. */
  4750. function isButton(elm) {
  4751. return elm.tagName === 'BUTTON';
  4752. }
  4753. return A11y;
  4754. });
  4755. ;// CONCATENATED MODULE: ./src/js/components/sync/index.js
  4756. /**
  4757. * The component for synchronizing a slider with another.
  4758. *
  4759. * @author Naotoshi Fujita
  4760. * @copyright Naotoshi Fujita. All rights reserved.
  4761. */
  4762. /**
  4763. * The event name for sync.
  4764. *
  4765. * @type {string}
  4766. */
  4767. var SYNC_EVENT = 'move.sync';
  4768. /**
  4769. * The event names for click navigation.
  4770. * @type {string}
  4771. */
  4772. var CLICK_EVENTS = 'mouseup touchend';
  4773. /**
  4774. * The keys for triggering the navigation button.
  4775. *
  4776. * @type {String[]}
  4777. */
  4778. var TRIGGER_KEYS = [' ', 'Enter', 'Spacebar'];
  4779. /**
  4780. * The component for synchronizing a slider with another.
  4781. *
  4782. * @param {Splide} Splide - A Splide instance.
  4783. *
  4784. * @return {Object} - The component object.
  4785. */
  4786. /* harmony default export */ const sync = (function (Splide) {
  4787. /**
  4788. * Keep the sibling Splide instance.
  4789. *
  4790. * @type {Splide}
  4791. */
  4792. var sibling = Splide.sibling;
  4793. /**
  4794. * Whether the sibling slider is navigation or not.
  4795. *
  4796. * @type {Splide|boolean}
  4797. */
  4798. var isNavigation = sibling && sibling.options.isNavigation;
  4799. /**
  4800. * Layout component object.
  4801. *
  4802. * @type {Object}
  4803. */
  4804. var Sync = {
  4805. /**
  4806. * Required only when the sub slider is available.
  4807. *
  4808. * @type {boolean}
  4809. */
  4810. required: !!sibling,
  4811. /**
  4812. * Called when the component is mounted.
  4813. */
  4814. mount: function mount() {
  4815. syncMain();
  4816. syncSibling();
  4817. if (isNavigation) {
  4818. bind();
  4819. Splide.on('refresh', function () {
  4820. setTimeout(function () {
  4821. bind();
  4822. sibling.emit('navigation:updated', Splide);
  4823. });
  4824. });
  4825. }
  4826. },
  4827. /**
  4828. * Called after all components are mounted.
  4829. */
  4830. mounted: function mounted() {
  4831. if (isNavigation) {
  4832. sibling.emit('navigation:mounted', Splide);
  4833. }
  4834. }
  4835. };
  4836. /**
  4837. * Listen the primary slider event to move secondary one.
  4838. * Must unbind a handler at first to avoid infinite loop.
  4839. */
  4840. function syncMain() {
  4841. Splide.on(SYNC_EVENT, function (newIndex, prevIndex, destIndex) {
  4842. sibling.off(SYNC_EVENT).go(sibling.is(LOOP) ? destIndex : newIndex, false);
  4843. syncSibling();
  4844. });
  4845. }
  4846. /**
  4847. * Listen the secondary slider event to move primary one.
  4848. * Must unbind a handler at first to avoid infinite loop.
  4849. */
  4850. function syncSibling() {
  4851. sibling.on(SYNC_EVENT, function (newIndex, prevIndex, destIndex) {
  4852. Splide.off(SYNC_EVENT).go(Splide.is(LOOP) ? destIndex : newIndex, false);
  4853. syncMain();
  4854. });
  4855. }
  4856. /**
  4857. * Listen some events on each slide.
  4858. */
  4859. function bind() {
  4860. sibling.Components.Elements.each(function (_ref) {
  4861. var slide = _ref.slide,
  4862. index = _ref.index;
  4863. /*
  4864. * Listen mouseup and touchend events to handle click.
  4865. */
  4866. Splide.off(CLICK_EVENTS, slide).on(CLICK_EVENTS, function (e) {
  4867. // Ignore a middle or right click.
  4868. if (!e.button || e.button === 0) {
  4869. moveSibling(index);
  4870. }
  4871. }, slide);
  4872. /*
  4873. * Subscribe keyup to handle Enter and Space key.
  4874. * Note that Array.includes is not supported by IE.
  4875. */
  4876. Splide.off('keyup', slide).on('keyup', function (e) {
  4877. if (TRIGGER_KEYS.indexOf(e.key) > -1) {
  4878. e.preventDefault();
  4879. moveSibling(index);
  4880. }
  4881. }, slide, {
  4882. passive: false
  4883. });
  4884. });
  4885. }
  4886. /**
  4887. * Move the sibling to the given index.
  4888. * Need to check "IDLE" status because slides can be moving by Drag component.
  4889. *
  4890. * @param {number} index - Target index.
  4891. */
  4892. function moveSibling(index) {
  4893. if (Splide.State.is(IDLE)) {
  4894. sibling.go(index);
  4895. }
  4896. }
  4897. return Sync;
  4898. });
  4899. ;// CONCATENATED MODULE: ./src/js/components/breakpoints/index.js
  4900. /**
  4901. * The component for updating options according to a current window width.
  4902. *
  4903. * @author Naotoshi Fujita
  4904. * @copyright Naotoshi Fujita. All rights reserved.
  4905. */
  4906. /**
  4907. * Interval time for throttle.
  4908. *
  4909. * @type {number}
  4910. */
  4911. var THROTTLE = 50;
  4912. /**
  4913. * The component for updating options according to a current window width.
  4914. *
  4915. * @param {Splide} Splide - A Splide instance.
  4916. *
  4917. * @return {Object} - The component object.
  4918. */
  4919. /* harmony default export */ const breakpoints = (function (Splide) {
  4920. /**
  4921. * Store breakpoints.
  4922. *
  4923. * @type {Object|boolean}
  4924. */
  4925. var breakpoints = Splide.options.breakpoints;
  4926. /**
  4927. * The check function whose frequency of call is reduced.
  4928. *
  4929. * @type {Function}
  4930. */
  4931. var throttledCheck = throttle(check, THROTTLE);
  4932. /**
  4933. * Keep initial options.
  4934. *
  4935. * @type {Object}
  4936. */
  4937. var initialOptions;
  4938. /**
  4939. * An array containing objects of point and MediaQueryList.
  4940. *
  4941. * @type {Object[]}
  4942. */
  4943. var map = [];
  4944. /**
  4945. * Hold the previous breakpoint.
  4946. *
  4947. * @type {number|undefined}
  4948. */
  4949. var prevPoint;
  4950. /**
  4951. * Breakpoints component object.
  4952. *
  4953. * @type {Object}
  4954. */
  4955. var Breakpoints = {
  4956. /**
  4957. * Required only when the breakpoints definition is provided and browser supports matchMedia.
  4958. *
  4959. * @type {boolean}
  4960. */
  4961. required: breakpoints && matchMedia,
  4962. /**
  4963. * Called when the component is mounted.
  4964. */
  4965. mount: function mount() {
  4966. map = Object.keys(breakpoints).sort(function (n, m) {
  4967. return +n - +m;
  4968. }).map(function (point) {
  4969. return {
  4970. point: point,
  4971. mql: matchMedia("(max-width:" + point + "px)")
  4972. };
  4973. });
  4974. /*
  4975. * To keep monitoring resize event after destruction without "completely",
  4976. * use native addEventListener instead of Splide.on.
  4977. */
  4978. this.destroy(true);
  4979. addEventListener('resize', throttledCheck); // Keep initial options to apply them when no breakpoint matches.
  4980. initialOptions = Splide.options;
  4981. check();
  4982. },
  4983. /**
  4984. * Destroy.
  4985. *
  4986. * @param {boolean} completely - Whether to destroy Splide completely.
  4987. */
  4988. destroy: function destroy(completely) {
  4989. if (completely) {
  4990. removeEventListener('resize', throttledCheck);
  4991. }
  4992. }
  4993. };
  4994. /**
  4995. * Check the breakpoint.
  4996. */
  4997. function check() {
  4998. var point = getPoint();
  4999. if (point !== prevPoint) {
  5000. prevPoint = point;
  5001. var State = Splide.State;
  5002. var options = breakpoints[point] || initialOptions;
  5003. var destroy = options.destroy;
  5004. if (destroy) {
  5005. Splide.options = initialOptions;
  5006. Splide.destroy(destroy === 'completely');
  5007. } else {
  5008. if (State.is(DESTROYED)) {
  5009. Splide.mount();
  5010. }
  5011. Splide.options = options;
  5012. }
  5013. }
  5014. }
  5015. /**
  5016. * Return the breakpoint matching current window width.
  5017. * Note that Array.prototype.find is not supported by IE.
  5018. *
  5019. * @return {number|string} - A breakpoint as number or string. -1 if no point matches.
  5020. */
  5021. function getPoint() {
  5022. var item = map.filter(function (item) {
  5023. return item.mql.matches;
  5024. })[0];
  5025. return item ? item.point : -1;
  5026. }
  5027. return Breakpoints;
  5028. });
  5029. ;// CONCATENATED MODULE: ./src/js/components/index.js
  5030. /**
  5031. * Export components.
  5032. *
  5033. * @author Naotoshi Fujita
  5034. * @copyright Naotoshi Fujita. All rights reserved.
  5035. */
  5036. var COMPLETE = {
  5037. Options: options,
  5038. Breakpoints: breakpoints,
  5039. Controller: controller,
  5040. Elements: components_elements,
  5041. Track: track,
  5042. Clones: clones,
  5043. Layout: layout,
  5044. Drag: drag,
  5045. Click: click,
  5046. Autoplay: autoplay,
  5047. Cover: cover,
  5048. Arrows: arrows,
  5049. Pagination: pagination,
  5050. LazyLoad: lazyload,
  5051. Keyboard: keyboard,
  5052. Sync: sync,
  5053. A11y: a11y
  5054. };
  5055. var LIGHT = {
  5056. Options: options,
  5057. Controller: controller,
  5058. Elements: components_elements,
  5059. Track: track,
  5060. Clones: clones,
  5061. Layout: layout,
  5062. Drag: drag,
  5063. Click: click,
  5064. Arrows: arrows,
  5065. Pagination: pagination,
  5066. A11y: a11y
  5067. };
  5068. ;// CONCATENATED MODULE: ./build/module/module.js
  5069. function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
  5070. function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
  5071. /**
  5072. * Export Splide class for import.
  5073. *
  5074. * @author Naotoshi Fujita
  5075. * @copyright Naotoshi Fujita. All rights reserved.
  5076. */
  5077. /**
  5078. * Export Splide class for import from other projects.
  5079. */
  5080. var module_Splide = /*#__PURE__*/function (_Core) {
  5081. _inheritsLoose(Splide, _Core);
  5082. function Splide(root, options) {
  5083. return _Core.call(this, root, options, COMPLETE) || this;
  5084. }
  5085. return Splide;
  5086. }(Splide);
  5087. /******/ return __webpack_exports__;
  5088. /******/ })()
  5089. ;
  5090. });