splide.js 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111
  1. 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); } }
  2. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
  3. /*!
  4. * Splide.js
  5. * Version : 4.0.0
  6. * License : MIT
  7. * Copyright: 2022 Naotoshi Fujita
  8. */
  9. (function (global, factory) {
  10. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Splide = factory());
  11. })(this, function () {
  12. 'use strict';
  13. var EVENT_MOUNTED = "mounted";
  14. var EVENT_READY = "ready";
  15. var EVENT_MOVE = "move";
  16. var EVENT_MOVED = "moved";
  17. var EVENT_SHIFTED = "shifted";
  18. var EVENT_CLICK = "click";
  19. var EVENT_ACTIVE = "active";
  20. var EVENT_INACTIVE = "inactive";
  21. var EVENT_VISIBLE = "visible";
  22. var EVENT_HIDDEN = "hidden";
  23. var EVENT_SLIDE_KEYDOWN = "slide:keydown";
  24. var EVENT_REFRESH = "refresh";
  25. var EVENT_UPDATED = "updated";
  26. var EVENT_MEDIA = "media";
  27. var EVENT_RESIZE = "resize";
  28. var EVENT_RESIZED = "resized";
  29. var EVENT_REPOSITIONED = "repositioned";
  30. var EVENT_DRAG = "drag";
  31. var EVENT_DRAGGING = "dragging";
  32. var EVENT_DRAGGED = "dragged";
  33. var EVENT_SCROLL = "scroll";
  34. var EVENT_SCROLLED = "scrolled";
  35. var EVENT_DESTROY = "destroy";
  36. var EVENT_ARROWS_MOUNTED = "arrows:mounted";
  37. var EVENT_ARROWS_UPDATED = "arrows:updated";
  38. var EVENT_PAGINATION_MOUNTED = "pagination:mounted";
  39. var EVENT_PAGINATION_UPDATED = "pagination:updated";
  40. var EVENT_NAVIGATION_MOUNTED = "navigation:mounted";
  41. var EVENT_AUTOPLAY_PLAY = "autoplay:play";
  42. var EVENT_AUTOPLAY_PLAYING = "autoplay:playing";
  43. var EVENT_AUTOPLAY_PAUSE = "autoplay:pause";
  44. var EVENT_LAZYLOAD_LOADED = "lazyload:loaded";
  45. var CREATED = 1;
  46. var MOUNTED = 2;
  47. var IDLE = 3;
  48. var MOVING = 4;
  49. var SCROLLING = 5;
  50. var DRAGGING = 6;
  51. var DESTROYED = 7;
  52. var STATES = {
  53. CREATED: CREATED,
  54. MOUNTED: MOUNTED,
  55. IDLE: IDLE,
  56. MOVING: MOVING,
  57. SCROLLING: SCROLLING,
  58. DRAGGING: DRAGGING,
  59. DESTROYED: DESTROYED
  60. };
  61. function empty(array) {
  62. array.length = 0;
  63. }
  64. function slice(arrayLike, start, end) {
  65. return Array.prototype.slice.call(arrayLike, start, end);
  66. }
  67. function find(arrayLike, predicate) {
  68. return slice(arrayLike).filter(predicate)[0];
  69. }
  70. function apply(func) {
  71. return func.bind.apply(func, [null].concat(slice(arguments, 1)));
  72. }
  73. var nextTick = setTimeout;
  74. var noop = function noop() {};
  75. function raf(func) {
  76. return requestAnimationFrame(func);
  77. }
  78. function typeOf(type, subject) {
  79. return typeof subject === type;
  80. }
  81. function isObject(subject) {
  82. return !isNull(subject) && typeOf("object", subject);
  83. }
  84. var isArray = Array.isArray;
  85. var isFunction = apply(typeOf, "function");
  86. var isString = apply(typeOf, "string");
  87. var isUndefined = apply(typeOf, "undefined");
  88. function isNull(subject) {
  89. return subject === null;
  90. }
  91. function isHTMLElement(subject) {
  92. return subject instanceof HTMLElement;
  93. }
  94. function toArray(value) {
  95. return isArray(value) ? value : [value];
  96. }
  97. function forEach(values, iteratee) {
  98. toArray(values).forEach(iteratee);
  99. }
  100. function includes(array, value) {
  101. return array.indexOf(value) > -1;
  102. }
  103. function push(array, items) {
  104. array.push.apply(array, toArray(items));
  105. return array;
  106. }
  107. function toggleClass(elm, classes, add) {
  108. if (elm) {
  109. forEach(classes, function (name) {
  110. if (name) {
  111. elm.classList[add ? "add" : "remove"](name);
  112. }
  113. });
  114. }
  115. }
  116. function addClass(elm, classes) {
  117. toggleClass(elm, isString(classes) ? classes.split(" ") : classes, true);
  118. }
  119. function append(parent, children) {
  120. forEach(children, parent.appendChild.bind(parent));
  121. }
  122. function before(nodes, ref) {
  123. forEach(nodes, function (node) {
  124. var parent = (ref || node).parentNode;
  125. if (parent) {
  126. parent.insertBefore(node, ref);
  127. }
  128. });
  129. }
  130. function matches(elm, selector) {
  131. return isHTMLElement(elm) && (elm["msMatchesSelector"] || elm.matches).call(elm, selector);
  132. }
  133. function children(parent, selector) {
  134. var children2 = parent ? slice(parent.children) : [];
  135. return selector ? children2.filter(function (child) {
  136. return matches(child, selector);
  137. }) : children2;
  138. }
  139. function child(parent, selector) {
  140. return selector ? children(parent, selector)[0] : parent.firstElementChild;
  141. }
  142. function forOwn(object, iteratee, right) {
  143. if (object) {
  144. var keys = Object.keys(object);
  145. keys = right ? keys.reverse() : keys;
  146. for (var i = 0; i < keys.length; i++) {
  147. var key = keys[i];
  148. if (key !== "__proto__") {
  149. if (iteratee(object[key], key) === false) {
  150. break;
  151. }
  152. }
  153. }
  154. }
  155. return object;
  156. }
  157. function assign(object) {
  158. slice(arguments, 1).forEach(function (source) {
  159. forOwn(source, function (value, key) {
  160. object[key] = source[key];
  161. });
  162. });
  163. return object;
  164. }
  165. function merge(object) {
  166. slice(arguments).forEach(function (source) {
  167. forOwn(source, function (value, key) {
  168. if (isArray(value)) {
  169. object[key] = value.slice();
  170. } else if (isObject(value)) {
  171. object[key] = merge(isObject(object[key]) ? object[key] : {}, value);
  172. } else {
  173. object[key] = value;
  174. }
  175. });
  176. });
  177. return object;
  178. }
  179. function removeAttribute(elms, attrs) {
  180. forEach(elms, function (elm) {
  181. forEach(attrs, function (attr) {
  182. elm && elm.removeAttribute(attr);
  183. });
  184. });
  185. }
  186. function setAttribute(elms, attrs, value) {
  187. if (isObject(attrs)) {
  188. forOwn(attrs, function (value2, name) {
  189. setAttribute(elms, name, value2);
  190. });
  191. } else {
  192. forEach(elms, function (elm) {
  193. isNull(value) || value === "" ? removeAttribute(elm, attrs) : elm.setAttribute(attrs, String(value));
  194. });
  195. }
  196. }
  197. function create(tag, attrs, parent) {
  198. var elm = document.createElement(tag);
  199. if (attrs) {
  200. isString(attrs) ? addClass(elm, attrs) : setAttribute(elm, attrs);
  201. }
  202. parent && append(parent, elm);
  203. return elm;
  204. }
  205. function style(elm, prop, value) {
  206. if (isUndefined(value)) {
  207. return getComputedStyle(elm)[prop];
  208. }
  209. if (!isNull(value)) {
  210. var style2 = elm.style;
  211. value = "" + value;
  212. if (style2[prop] !== value) {
  213. style2[prop] = value;
  214. }
  215. }
  216. }
  217. function display(elm, display2) {
  218. style(elm, "display", display2);
  219. }
  220. function focus(elm) {
  221. elm["setActive"] && elm["setActive"]() || elm.focus({
  222. preventScroll: true
  223. });
  224. }
  225. function getAttribute(elm, attr) {
  226. return elm.getAttribute(attr);
  227. }
  228. function hasClass(elm, className) {
  229. return elm && elm.classList.contains(className);
  230. }
  231. function rect(target) {
  232. return target.getBoundingClientRect();
  233. }
  234. function remove(nodes) {
  235. forEach(nodes, function (node) {
  236. if (node && node.parentNode) {
  237. node.parentNode.removeChild(node);
  238. }
  239. });
  240. }
  241. function parseHtml(html) {
  242. return child(new DOMParser().parseFromString(html, "text/html").body);
  243. }
  244. function prevent(e, stopPropagation) {
  245. e.preventDefault();
  246. if (stopPropagation) {
  247. e.stopPropagation();
  248. e.stopImmediatePropagation();
  249. }
  250. }
  251. function query(parent, selector) {
  252. return parent && parent.querySelector(selector);
  253. }
  254. function queryAll(parent, selector) {
  255. return selector ? slice(parent.querySelectorAll(selector)) : [];
  256. }
  257. function removeClass(elm, classes) {
  258. toggleClass(elm, classes, false);
  259. }
  260. function timeOf(e) {
  261. return e.timeStamp;
  262. }
  263. function unit(value) {
  264. return isString(value) ? value : value ? value + "px" : "";
  265. }
  266. var PROJECT_CODE = "splide";
  267. var DATA_ATTRIBUTE = "data-" + PROJECT_CODE;
  268. function assert(condition, message) {
  269. if (!condition) {
  270. throw new Error("[" + PROJECT_CODE + "] " + (message || ""));
  271. }
  272. }
  273. var min = Math.min,
  274. max = Math.max,
  275. floor = Math.floor,
  276. ceil = Math.ceil,
  277. abs = Math.abs;
  278. function approximatelyEqual(x, y, epsilon) {
  279. return abs(x - y) < epsilon;
  280. }
  281. function between(number, minOrMax, maxOrMin, exclusive) {
  282. var minimum = min(minOrMax, maxOrMin);
  283. var maximum = max(minOrMax, maxOrMin);
  284. return exclusive ? minimum < number && number < maximum : minimum <= number && number <= maximum;
  285. }
  286. function clamp(number, x, y) {
  287. var minimum = min(x, y);
  288. var maximum = max(x, y);
  289. return min(max(minimum, number), maximum);
  290. }
  291. function sign(x) {
  292. return +(x > 0) - +(x < 0);
  293. }
  294. function format(string, replacements) {
  295. forEach(replacements, function (replacement) {
  296. string = string.replace("%s", "" + replacement);
  297. });
  298. return string;
  299. }
  300. function pad(number) {
  301. return number < 10 ? "0" + number : "" + number;
  302. }
  303. var ids = {};
  304. function uniqueId(prefix) {
  305. return "" + prefix + pad(ids[prefix] = (ids[prefix] || 0) + 1);
  306. }
  307. function EventBinder() {
  308. var listeners = [];
  309. function bind(targets, events, callback, options) {
  310. forEachEvent(targets, events, function (target, event, namespace) {
  311. var isEventTarget = ("addEventListener" in target);
  312. var remover = isEventTarget ? target.removeEventListener.bind(target, event, callback, options) : target["removeListener"].bind(target, callback);
  313. isEventTarget ? target.addEventListener(event, callback, options) : target["addListener"](callback);
  314. listeners.push([target, event, namespace, callback, remover]);
  315. });
  316. }
  317. function unbind(targets, events, callback) {
  318. forEachEvent(targets, events, function (target, event, namespace) {
  319. listeners = listeners.filter(function (listener) {
  320. if (listener[0] === target && listener[1] === event && listener[2] === namespace && (!callback || listener[3] === callback)) {
  321. listener[4]();
  322. return false;
  323. }
  324. return true;
  325. });
  326. });
  327. }
  328. function dispatch(target, type, detail) {
  329. var e;
  330. var bubbles = true;
  331. if (typeof CustomEvent === "function") {
  332. e = new CustomEvent(type, {
  333. bubbles: bubbles,
  334. detail: detail
  335. });
  336. } else {
  337. e = document.createEvent("CustomEvent");
  338. e.initEvent(type, bubbles, false);
  339. }
  340. target.dispatchEvent(e);
  341. return e;
  342. }
  343. function forEachEvent(targets, events, iteratee) {
  344. forEach(targets, function (target) {
  345. target && forEach(events, function (events2) {
  346. events2.split(" ").forEach(function (eventNS) {
  347. var fragment = eventNS.split(".");
  348. iteratee(target, fragment[0], fragment[1]);
  349. });
  350. });
  351. });
  352. }
  353. function destroy() {
  354. listeners.forEach(function (data) {
  355. data[4]();
  356. });
  357. empty(listeners);
  358. }
  359. return {
  360. bind: bind,
  361. unbind: unbind,
  362. dispatch: dispatch,
  363. destroy: destroy
  364. };
  365. }
  366. function EventInterface(Splide2) {
  367. var bus = Splide2 ? Splide2.event.bus : document.createDocumentFragment();
  368. var binder = EventBinder();
  369. function on(events, callback) {
  370. binder.bind(bus, toArray(events).join(" "), function (e) {
  371. callback.apply(callback, isArray(e.detail) ? e.detail : []);
  372. });
  373. }
  374. function emit(event) {
  375. binder.dispatch(bus, event, slice(arguments, 1));
  376. }
  377. if (Splide2) {
  378. Splide2.event.on(EVENT_DESTROY, binder.destroy);
  379. }
  380. return assign(binder, {
  381. bus: bus,
  382. on: on,
  383. off: apply(binder.unbind, bus),
  384. emit: emit
  385. });
  386. }
  387. function RequestInterval(interval, onInterval, onUpdate, limit) {
  388. var now = Date.now;
  389. var startTime;
  390. var rate = 0;
  391. var id;
  392. var paused = true;
  393. var count = 0;
  394. function update() {
  395. if (!paused) {
  396. var elapsed = now() - startTime;
  397. if (elapsed >= interval) {
  398. rate = 1;
  399. startTime = now();
  400. } else {
  401. rate = elapsed / interval;
  402. }
  403. if (onUpdate) {
  404. onUpdate(rate);
  405. }
  406. if (rate === 1) {
  407. onInterval();
  408. if (limit && ++count >= limit) {
  409. return pause();
  410. }
  411. }
  412. raf(update);
  413. }
  414. }
  415. function start(resume) {
  416. !resume && cancel();
  417. startTime = now() - (resume ? rate * interval : 0);
  418. paused = false;
  419. raf(update);
  420. }
  421. function pause() {
  422. paused = true;
  423. }
  424. function rewind() {
  425. startTime = now();
  426. rate = 0;
  427. if (onUpdate) {
  428. onUpdate(rate);
  429. }
  430. }
  431. function cancel() {
  432. cancelAnimationFrame(id);
  433. rate = 0;
  434. id = 0;
  435. paused = true;
  436. }
  437. function set(time) {
  438. interval = time;
  439. }
  440. function isPaused() {
  441. return paused;
  442. }
  443. return {
  444. start: start,
  445. rewind: rewind,
  446. pause: pause,
  447. cancel: cancel,
  448. set: set,
  449. isPaused: isPaused
  450. };
  451. }
  452. function State(initialState) {
  453. var state = initialState;
  454. function set(value) {
  455. state = value;
  456. }
  457. function is(states) {
  458. return includes(toArray(states), state);
  459. }
  460. return {
  461. set: set,
  462. is: is
  463. };
  464. }
  465. function Throttle(func, duration) {
  466. var interval;
  467. function throttled() {
  468. var _this = this;
  469. if (!interval) {
  470. var args = slice(arguments);
  471. interval = RequestInterval(duration || 0, function () {
  472. func.apply(_this, args);
  473. interval = null;
  474. }, null, 1);
  475. interval.start();
  476. }
  477. }
  478. return throttled;
  479. }
  480. function Media(Splide2, Components2, options) {
  481. var binder = EventBinder();
  482. var breakpoints = options.breakpoints || {};
  483. var initialOptions = merge({}, options);
  484. var queries = [];
  485. function setup() {
  486. var isMin = options.mediaQuery === "min";
  487. register(Object.keys(breakpoints).sort(function (n, m) {
  488. return isMin ? +m - +n : +n - +m;
  489. }).map(function (key) {
  490. return [breakpoints[key], "(" + (isMin ? "min" : "max") + "-width:" + key + "px)"];
  491. }));
  492. register([[{
  493. speed: 0,
  494. autoplay: "pause"
  495. }, "(prefers-reduced-motion: reduce)"]]);
  496. update();
  497. }
  498. function destroy(completely) {
  499. if (completely) {
  500. binder.destroy();
  501. }
  502. }
  503. function register(entries) {
  504. queries.push(entries.map(function (entry) {
  505. var query = matchMedia(entry[1]);
  506. binder.bind(query, "change", update);
  507. return [entry[0], query];
  508. }));
  509. }
  510. function update() {
  511. var options2 = accumulate();
  512. var _destroy = options2.destroy;
  513. if (_destroy) {
  514. Splide2.options = initialOptions;
  515. Splide2.destroy(_destroy === "completely");
  516. } else if (Splide2.state.is(DESTROYED)) {
  517. destroy(true);
  518. Splide2.mount();
  519. } else {
  520. var oriented = Splide2.options.direction !== options2.direction;
  521. Splide2.options = options2;
  522. oriented && Splide2.refresh();
  523. }
  524. }
  525. function accumulate() {
  526. return queries.reduce(function (merged, entries) {
  527. var entry = find(entries, function (entry2) {
  528. return entry2[1].matches;
  529. }) || [];
  530. entry[1] && Splide2.emit(EVENT_MEDIA, entry[1]);
  531. return merge(merged, entry[0] || {});
  532. }, merge({}, initialOptions));
  533. }
  534. return {
  535. setup: setup,
  536. mount: noop,
  537. destroy: destroy
  538. };
  539. }
  540. var RTL = "rtl";
  541. var TTB = "ttb";
  542. var ORIENTATION_MAP = {
  543. marginRight: ["marginBottom", "marginLeft"],
  544. autoWidth: ["autoHeight"],
  545. fixedWidth: ["fixedHeight"],
  546. paddingLeft: ["paddingTop", "paddingRight"],
  547. paddingRight: ["paddingBottom", "paddingLeft"],
  548. width: ["height"],
  549. Width: ["Height"],
  550. left: ["top", "right"],
  551. right: ["bottom", "left"],
  552. x: ["y"],
  553. X: ["Y"],
  554. Y: ["X"],
  555. ArrowLeft: ["ArrowUp", "ArrowRight"],
  556. ArrowRight: ["ArrowDown", "ArrowLeft"]
  557. };
  558. function Direction(Splide2, Components2, options) {
  559. function resolve(prop, axisOnly, direction) {
  560. direction = direction || options.direction;
  561. var index = direction === RTL && !axisOnly ? 1 : direction === TTB ? 0 : -1;
  562. return ORIENTATION_MAP[prop][index] || prop;
  563. }
  564. function orient(value) {
  565. return value * (options.direction === RTL ? 1 : -1);
  566. }
  567. return {
  568. resolve: resolve,
  569. orient: orient
  570. };
  571. }
  572. var ROLE = "role";
  573. var TAB_INDEX = "tabindex";
  574. var DISABLED = "disabled";
  575. var ARIA_PREFIX = "aria-";
  576. var ARIA_CONTROLS = ARIA_PREFIX + "controls";
  577. var ARIA_CURRENT = ARIA_PREFIX + "current";
  578. var ARIA_SELECTED = ARIA_PREFIX + "selected";
  579. var ARIA_LABEL = ARIA_PREFIX + "label";
  580. var ARIA_HIDDEN = ARIA_PREFIX + "hidden";
  581. var ARIA_ORIENTATION = ARIA_PREFIX + "orientation";
  582. var ARIA_ROLEDESCRIPTION = ARIA_PREFIX + "roledescription";
  583. var ARIA_ATOMIC = ARIA_PREFIX + "atomic";
  584. var ARIA_LIVE = ARIA_PREFIX + "live";
  585. var ALL_ATTRIBUTES = [ROLE, TAB_INDEX, DISABLED, ARIA_CONTROLS, ARIA_CURRENT, ARIA_LABEL, ARIA_HIDDEN, ARIA_ORIENTATION, ARIA_ROLEDESCRIPTION, ARIA_ATOMIC, ARIA_LIVE];
  586. var CLASS_ROOT = PROJECT_CODE;
  587. var CLASS_TRACK = PROJECT_CODE + "__track";
  588. var CLASS_LIST = PROJECT_CODE + "__list";
  589. var CLASS_SLIDE = PROJECT_CODE + "__slide";
  590. var CLASS_CLONE = CLASS_SLIDE + "--clone";
  591. var CLASS_CONTAINER = CLASS_SLIDE + "__container";
  592. var CLASS_ARROWS = PROJECT_CODE + "__arrows";
  593. var CLASS_ARROW = PROJECT_CODE + "__arrow";
  594. var CLASS_ARROW_PREV = CLASS_ARROW + "--prev";
  595. var CLASS_ARROW_NEXT = CLASS_ARROW + "--next";
  596. var CLASS_PAGINATION = PROJECT_CODE + "__pagination";
  597. var CLASS_PAGINATION_PAGE = CLASS_PAGINATION + "__page";
  598. var CLASS_PROGRESS = PROJECT_CODE + "__progress";
  599. var CLASS_PROGRESS_BAR = CLASS_PROGRESS + "__bar";
  600. var CLASS_AUTOPLAY = PROJECT_CODE + "__autoplay";
  601. var CLASS_PLAY = PROJECT_CODE + "__play";
  602. var CLASS_PAUSE = PROJECT_CODE + "__pause";
  603. var CLASS_SPINNER = PROJECT_CODE + "__spinner";
  604. var CLASS_SR = PROJECT_CODE + "__sr";
  605. var CLASS_INITIALIZED = "is-initialized";
  606. var CLASS_ACTIVE = "is-active";
  607. var CLASS_PREV = "is-prev";
  608. var CLASS_NEXT = "is-next";
  609. var CLASS_VISIBLE = "is-visible";
  610. var CLASS_LOADING = "is-loading";
  611. var STATUS_CLASSES = [CLASS_ACTIVE, CLASS_VISIBLE, CLASS_PREV, CLASS_NEXT, CLASS_LOADING];
  612. var CLASSES = {
  613. slide: CLASS_SLIDE,
  614. clone: CLASS_CLONE,
  615. arrows: CLASS_ARROWS,
  616. arrow: CLASS_ARROW,
  617. prev: CLASS_ARROW_PREV,
  618. next: CLASS_ARROW_NEXT,
  619. pagination: CLASS_PAGINATION,
  620. page: CLASS_PAGINATION_PAGE,
  621. spinner: CLASS_SPINNER
  622. };
  623. function closest(from, selector) {
  624. if (isFunction(from.closest)) {
  625. return from.closest(selector);
  626. }
  627. var elm = from;
  628. while (elm && elm.nodeType === 1) {
  629. if (matches(elm, selector)) {
  630. break;
  631. }
  632. elm = elm.parentElement;
  633. }
  634. return elm;
  635. }
  636. function Elements(Splide2, Components2, options) {
  637. var _EventInterface = EventInterface(Splide2),
  638. on = _EventInterface.on;
  639. var root = Splide2.root;
  640. var i18n = options.i18n;
  641. var elements = {};
  642. var slides = [];
  643. var rootClasses = [];
  644. var trackClasses = [];
  645. var track;
  646. var list;
  647. function setup() {
  648. collect();
  649. init();
  650. update();
  651. }
  652. function mount() {
  653. on(EVENT_REFRESH, destroy);
  654. on(EVENT_REFRESH, setup);
  655. on(EVENT_UPDATED, update);
  656. }
  657. function destroy() {
  658. empty(slides);
  659. removeClass(root, rootClasses);
  660. removeClass(track, trackClasses);
  661. removeAttribute([root, track, list], ALL_ATTRIBUTES.concat("style"));
  662. }
  663. function update() {
  664. removeClass(root, rootClasses);
  665. removeClass(track, trackClasses);
  666. rootClasses = getClasses(CLASS_ROOT);
  667. trackClasses = getClasses(CLASS_TRACK);
  668. addClass(root, rootClasses);
  669. addClass(track, trackClasses);
  670. }
  671. function collect() {
  672. track = find("." + CLASS_TRACK);
  673. list = child(track, "." + CLASS_LIST);
  674. assert(track && list, "A track/list element is missing.");
  675. push(slides, children(list, "." + CLASS_SLIDE + ":not(." + CLASS_CLONE + ")"));
  676. forOwn({
  677. arrows: CLASS_ARROWS,
  678. pagination: CLASS_PAGINATION,
  679. autoplay: CLASS_AUTOPLAY,
  680. prev: CLASS_ARROW_PREV,
  681. next: CLASS_ARROW_NEXT,
  682. bar: CLASS_PROGRESS_BAR,
  683. play: CLASS_PLAY,
  684. pause: CLASS_PAUSE
  685. }, function (className, key) {
  686. elements[key] = find("." + className);
  687. });
  688. assign(elements, {
  689. root: root,
  690. track: track,
  691. list: list,
  692. slides: slides
  693. });
  694. }
  695. function init() {
  696. var id = root.id || uniqueId(PROJECT_CODE);
  697. root.id = id;
  698. track.id = track.id || id + "-track";
  699. list.id = list.id || id + "-list";
  700. setAttribute(root, ARIA_ROLEDESCRIPTION, i18n.carousel);
  701. setAttribute(root, ROLE, root.tagName !== "SECTION" && options.role || "");
  702. setAttribute(list, ROLE, "none");
  703. }
  704. function find(selector) {
  705. var elm = query(root, selector);
  706. return elm && closest(elm, "." + CLASS_ROOT) === root ? elm : null;
  707. }
  708. function getClasses(base) {
  709. return [base + "--" + options.type, base + "--" + options.direction, options.drag && base + "--draggable", options.isNavigation && base + "--nav", base === CLASS_ROOT && CLASS_ACTIVE];
  710. }
  711. return assign(elements, {
  712. setup: setup,
  713. mount: mount,
  714. destroy: destroy
  715. });
  716. }
  717. var SLIDE = "slide";
  718. var LOOP = "loop";
  719. var FADE = "fade";
  720. function Slide$1(Splide2, index, slideIndex, slide) {
  721. var event = EventInterface(Splide2);
  722. var on = event.on,
  723. emit = event.emit,
  724. bind = event.bind;
  725. var Components = Splide2.Components,
  726. root = Splide2.root,
  727. options = Splide2.options;
  728. var isNavigation = options.isNavigation,
  729. updateOnMove = options.updateOnMove,
  730. i18n = options.i18n,
  731. pagination = options.pagination,
  732. slideFocus = options.slideFocus;
  733. var resolve = Components.Direction.resolve;
  734. var styles = getAttribute(slide, "style");
  735. var label = getAttribute(slide, ARIA_LABEL);
  736. var isClone = slideIndex > -1;
  737. var container = child(slide, "." + CLASS_CONTAINER);
  738. var sr = create("span", CLASS_SR, child(slide));
  739. var destroyed;
  740. function mount() {
  741. if (!isClone) {
  742. var slideLabel = label || format(i18n.slideLabel, [index + 1, Splide2.length]);
  743. slide.id = root.id + "-slide" + pad(index + 1);
  744. setAttribute(slide, ROLE, pagination ? "tabpanel" : "group");
  745. setAttribute(slide, ARIA_ROLEDESCRIPTION, pagination ? "" : i18n.slide);
  746. setAttribute(slide, ARIA_LABEL, slideLabel);
  747. sr.textContent = slideLabel;
  748. }
  749. listen();
  750. }
  751. function listen() {
  752. bind(slide, "click", apply(emit, EVENT_CLICK, self));
  753. bind(slide, "keydown", apply(emit, EVENT_SLIDE_KEYDOWN, self));
  754. on([EVENT_REFRESH, EVENT_REPOSITIONED, EVENT_MOVED, EVENT_SCROLLED], apply(update, false));
  755. on(EVENT_SHIFTED, apply(update, true));
  756. on(EVENT_NAVIGATION_MOUNTED, initNavigation);
  757. if (updateOnMove) {
  758. on(EVENT_MOVE, onMove);
  759. }
  760. }
  761. function destroy() {
  762. destroyed = true;
  763. event.destroy();
  764. remove(sr);
  765. removeClass(slide, STATUS_CLASSES);
  766. removeAttribute(slide, ALL_ATTRIBUTES);
  767. setAttribute(slide, "style", styles);
  768. setAttribute(slide, ARIA_LABEL, label || "");
  769. }
  770. function initNavigation() {
  771. var controls = Splide2.splides.map(function (target) {
  772. var Slide2 = target.splide.Components.Slides.getAt(index);
  773. return Slide2 ? Slide2.slide.id : "";
  774. }).join(" ");
  775. setAttribute(slide, ARIA_LABEL, format(i18n.slideX, (isClone ? slideIndex : index) + 1));
  776. setAttribute(slide, ARIA_CONTROLS, controls);
  777. setAttribute(slide, ROLE, slideFocus ? "button" : "");
  778. updateA11y();
  779. }
  780. function onMove() {
  781. if (!destroyed) {
  782. update(true);
  783. }
  784. }
  785. function update(excludeA11y) {
  786. if (!destroyed) {
  787. var curr = Splide2.index;
  788. updateActivity();
  789. updateVisibility();
  790. toggleClass(slide, CLASS_PREV, index === curr - 1);
  791. toggleClass(slide, CLASS_NEXT, index === curr + 1);
  792. !excludeA11y && updateA11y();
  793. }
  794. }
  795. function updateActivity() {
  796. var active = isActive();
  797. if (active !== hasClass(slide, CLASS_ACTIVE)) {
  798. toggleClass(slide, CLASS_ACTIVE, active);
  799. emit(active ? EVENT_ACTIVE : EVENT_INACTIVE, self);
  800. }
  801. }
  802. function updateVisibility() {
  803. var visible = isVisible();
  804. if (visible !== hasClass(slide, CLASS_VISIBLE)) {
  805. toggleClass(slide, CLASS_VISIBLE, visible);
  806. emit(visible ? EVENT_VISIBLE : EVENT_HIDDEN, self);
  807. }
  808. if (!visible && document.activeElement === slide) {
  809. var Slide2 = Components.Slides.getAt(Splide2.index);
  810. Slide2 && focus(Slide2.slide);
  811. }
  812. }
  813. function updateA11y() {
  814. var active = isActive();
  815. var hidden = !isVisible() && (!active || isClone);
  816. setAttribute(slide, ARIA_CURRENT, isNavigation && active || "");
  817. setAttribute(slide, ARIA_HIDDEN, hidden || "");
  818. setAttribute(queryAll(slide, options.focusableNodes || ""), TAB_INDEX, hidden ? -1 : "");
  819. if (slideFocus) {
  820. setAttribute(slide, TAB_INDEX, hidden ? -1 : 0);
  821. }
  822. if (options.live) {
  823. hidden ? remove(sr) : before(sr, child(slide));
  824. }
  825. }
  826. function style$1(prop, value, useContainer) {
  827. style(useContainer && container || slide, prop, value);
  828. }
  829. function isActive() {
  830. var curr = Splide2.index;
  831. return curr === index || options.cloneStatus && curr === slideIndex;
  832. }
  833. function isVisible() {
  834. if (Splide2.is(FADE)) {
  835. return isActive();
  836. }
  837. var trackRect = rect(Components.Elements.track);
  838. var slideRect = rect(slide);
  839. var left = resolve("left");
  840. var right = resolve("right");
  841. return floor(trackRect[left]) <= ceil(slideRect[left]) && floor(slideRect[right]) <= ceil(trackRect[right]);
  842. }
  843. function isWithin(from, distance) {
  844. var diff = abs(from - index);
  845. if (!isClone && (options.rewind || Splide2.is(LOOP))) {
  846. diff = min(diff, Splide2.length - diff);
  847. }
  848. return diff <= distance;
  849. }
  850. var self = {
  851. index: index,
  852. slideIndex: slideIndex,
  853. slide: slide,
  854. container: container,
  855. isClone: isClone,
  856. mount: mount,
  857. destroy: destroy,
  858. update: update,
  859. style: style$1,
  860. isWithin: isWithin
  861. };
  862. return self;
  863. }
  864. function Slides(Splide2, Components2, options) {
  865. var _EventInterface2 = EventInterface(Splide2),
  866. on = _EventInterface2.on,
  867. emit = _EventInterface2.emit,
  868. bind = _EventInterface2.bind;
  869. var _Components2$Elements = Components2.Elements,
  870. slides = _Components2$Elements.slides,
  871. list = _Components2$Elements.list;
  872. var Slides2 = [];
  873. function mount() {
  874. init();
  875. on(EVENT_REFRESH, destroy);
  876. on(EVENT_REFRESH, init);
  877. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  878. Slides2.sort(function (Slide1, Slide2) {
  879. return Slide1.index - Slide2.index;
  880. });
  881. });
  882. }
  883. function init() {
  884. slides.forEach(function (slide, index) {
  885. register(slide, index, -1);
  886. });
  887. }
  888. function destroy() {
  889. forEach$1(function (Slide2) {
  890. Slide2.destroy();
  891. });
  892. empty(Slides2);
  893. }
  894. function update() {
  895. forEach$1(function (Slide2) {
  896. Slide2.update();
  897. });
  898. }
  899. function register(slide, index, slideIndex) {
  900. var object = Slide$1(Splide2, index, slideIndex, slide);
  901. object.mount();
  902. Slides2.push(object);
  903. }
  904. function get(excludeClones) {
  905. return excludeClones ? filter(function (Slide2) {
  906. return !Slide2.isClone;
  907. }) : Slides2;
  908. }
  909. function getIn(page) {
  910. var Controller = Components2.Controller;
  911. var index = Controller.toIndex(page);
  912. var max = Controller.hasFocus() ? 1 : options.perPage;
  913. return filter(function (Slide2) {
  914. return between(Slide2.index, index, index + max - 1);
  915. });
  916. }
  917. function getAt(index) {
  918. return filter(index)[0];
  919. }
  920. function add(items, index) {
  921. forEach(items, function (slide) {
  922. if (isString(slide)) {
  923. slide = parseHtml(slide);
  924. }
  925. if (isHTMLElement(slide)) {
  926. var ref = slides[index];
  927. ref ? before(slide, ref) : append(list, slide);
  928. addClass(slide, options.classes.slide);
  929. observeImages(slide, apply(emit, EVENT_RESIZE));
  930. }
  931. });
  932. emit(EVENT_REFRESH);
  933. }
  934. function remove$1(matcher) {
  935. remove(filter(matcher).map(function (Slide2) {
  936. return Slide2.slide;
  937. }));
  938. emit(EVENT_REFRESH);
  939. }
  940. function forEach$1(iteratee, excludeClones) {
  941. get(excludeClones).forEach(iteratee);
  942. }
  943. function filter(matcher) {
  944. return Slides2.filter(isFunction(matcher) ? matcher : function (Slide2) {
  945. return isString(matcher) ? matches(Slide2.slide, matcher) : includes(toArray(matcher), Slide2.index);
  946. });
  947. }
  948. function style(prop, value, useContainer) {
  949. forEach$1(function (Slide2) {
  950. Slide2.style(prop, value, useContainer);
  951. });
  952. }
  953. function observeImages(elm, callback) {
  954. var images = queryAll(elm, "img");
  955. var length = images.length;
  956. if (length) {
  957. images.forEach(function (img) {
  958. bind(img, "load error", function () {
  959. if (! --length) {
  960. callback();
  961. }
  962. });
  963. });
  964. } else {
  965. callback();
  966. }
  967. }
  968. function getLength(excludeClones) {
  969. return excludeClones ? slides.length : Slides2.length;
  970. }
  971. function isEnough() {
  972. return Slides2.length > options.perPage;
  973. }
  974. return {
  975. mount: mount,
  976. destroy: destroy,
  977. update: update,
  978. register: register,
  979. get: get,
  980. getIn: getIn,
  981. getAt: getAt,
  982. add: add,
  983. remove: remove$1,
  984. forEach: forEach$1,
  985. filter: filter,
  986. style: style,
  987. getLength: getLength,
  988. isEnough: isEnough
  989. };
  990. }
  991. function Layout(Splide2, Components2, options) {
  992. var _EventInterface3 = EventInterface(Splide2),
  993. on = _EventInterface3.on,
  994. bind = _EventInterface3.bind,
  995. emit = _EventInterface3.emit;
  996. var Slides = Components2.Slides;
  997. var resolve = Components2.Direction.resolve;
  998. var _Components2$Elements2 = Components2.Elements,
  999. root = _Components2$Elements2.root,
  1000. track = _Components2$Elements2.track,
  1001. list = _Components2$Elements2.list;
  1002. var getAt = Slides.getAt,
  1003. styleSlides = Slides.style;
  1004. var vertical;
  1005. var rootRect;
  1006. function mount() {
  1007. init();
  1008. bind(window, "resize load", Throttle(apply(emit, EVENT_RESIZE)));
  1009. on([EVENT_UPDATED, EVENT_REFRESH], init);
  1010. on(EVENT_RESIZE, resize);
  1011. }
  1012. function init() {
  1013. rootRect = null;
  1014. vertical = options.direction === TTB;
  1015. style(root, "maxWidth", unit(options.width));
  1016. style(track, resolve("paddingLeft"), cssPadding(false));
  1017. style(track, resolve("paddingRight"), cssPadding(true));
  1018. resize();
  1019. }
  1020. function resize() {
  1021. var newRect = rect(root);
  1022. if (!rootRect || rootRect.width !== newRect.width || rootRect.height !== newRect.height) {
  1023. style(track, "height", cssTrackHeight());
  1024. styleSlides(resolve("marginRight"), unit(options.gap));
  1025. styleSlides("width", cssSlideWidth() || null);
  1026. styleSlides("height", cssSlideHeight() || null, true);
  1027. rootRect = newRect;
  1028. emit(EVENT_RESIZED);
  1029. }
  1030. }
  1031. function cssPadding(right) {
  1032. var padding = options.padding;
  1033. var prop = resolve(right ? "right" : "left");
  1034. return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
  1035. }
  1036. function cssTrackHeight() {
  1037. var height = "";
  1038. if (vertical) {
  1039. height = cssHeight();
  1040. assert(height, "height or heightRatio is missing.");
  1041. height = "calc(" + height + " - " + cssPadding(false) + " - " + cssPadding(true) + ")";
  1042. }
  1043. return height;
  1044. }
  1045. function cssHeight() {
  1046. return unit(options.height || rect(list).width * options.heightRatio);
  1047. }
  1048. function cssSlideWidth() {
  1049. return options.autoWidth ? "" : unit(options.fixedWidth) || (vertical ? "" : cssSlideSize());
  1050. }
  1051. function cssSlideHeight() {
  1052. return unit(options.fixedHeight) || (vertical ? options.autoHeight ? "" : cssSlideSize() : cssHeight());
  1053. }
  1054. function cssSlideSize() {
  1055. var gap = unit(options.gap);
  1056. return "calc((100%" + (gap && " + " + gap) + ")/" + (options.perPage || 1) + (gap && " - " + gap) + ")";
  1057. }
  1058. function listSize() {
  1059. return rect(list)[resolve("width")];
  1060. }
  1061. function slideSize(index, withoutGap) {
  1062. var Slide = getAt(index || 0);
  1063. return Slide ? rect(Slide.slide)[resolve("width")] + (withoutGap ? 0 : getGap()) : 0;
  1064. }
  1065. function totalSize(index, withoutGap) {
  1066. var Slide = getAt(index);
  1067. if (Slide) {
  1068. var right = rect(Slide.slide)[resolve("right")];
  1069. var left = rect(list)[resolve("left")];
  1070. return abs(right - left) + (withoutGap ? 0 : getGap());
  1071. }
  1072. return 0;
  1073. }
  1074. function sliderSize() {
  1075. return totalSize(Splide2.length - 1, true) - totalSize(-1, true);
  1076. }
  1077. function getGap() {
  1078. var Slide = getAt(0);
  1079. return Slide && parseFloat(style(Slide.slide, resolve("marginRight"))) || 0;
  1080. }
  1081. function getPadding(right) {
  1082. return parseFloat(style(track, resolve("padding" + (right ? "Right" : "Left")))) || 0;
  1083. }
  1084. return {
  1085. mount: mount,
  1086. listSize: listSize,
  1087. slideSize: slideSize,
  1088. sliderSize: sliderSize,
  1089. totalSize: totalSize,
  1090. getPadding: getPadding
  1091. };
  1092. }
  1093. var MULTIPLIER = 2;
  1094. function Clones(Splide2, Components2, options) {
  1095. var _EventInterface4 = EventInterface(Splide2),
  1096. on = _EventInterface4.on,
  1097. emit = _EventInterface4.emit;
  1098. var Elements = Components2.Elements,
  1099. Slides = Components2.Slides;
  1100. var resolve = Components2.Direction.resolve;
  1101. var clones = [];
  1102. var cloneCount;
  1103. function mount() {
  1104. init();
  1105. on(EVENT_REFRESH, destroy);
  1106. on(EVENT_REFRESH, init);
  1107. on([EVENT_UPDATED, EVENT_RESIZE], observe);
  1108. }
  1109. function init() {
  1110. if (cloneCount = computeCloneCount()) {
  1111. generate(cloneCount);
  1112. emit(EVENT_RESIZE);
  1113. }
  1114. }
  1115. function destroy() {
  1116. remove(clones);
  1117. empty(clones);
  1118. }
  1119. function observe() {
  1120. if (cloneCount < computeCloneCount()) {
  1121. emit(EVENT_REFRESH);
  1122. }
  1123. }
  1124. function generate(count) {
  1125. var slides = Slides.get().slice();
  1126. var length = slides.length;
  1127. if (length) {
  1128. while (slides.length < count) {
  1129. push(slides, slides);
  1130. }
  1131. push(slides.slice(-count), slides.slice(0, count)).forEach(function (Slide, index) {
  1132. var isHead = index < count;
  1133. var clone = cloneDeep(Slide.slide, index);
  1134. isHead ? before(clone, slides[0].slide) : append(Elements.list, clone);
  1135. push(clones, clone);
  1136. Slides.register(clone, index - count + (isHead ? 0 : length), Slide.index);
  1137. });
  1138. }
  1139. }
  1140. function cloneDeep(elm, index) {
  1141. var clone = elm.cloneNode(true);
  1142. addClass(clone, options.classes.clone);
  1143. clone.id = Splide2.root.id + "-clone" + pad(index + 1);
  1144. return clone;
  1145. }
  1146. function computeCloneCount() {
  1147. var clones2 = options.clones;
  1148. if (!Splide2.is(LOOP)) {
  1149. clones2 = 0;
  1150. } else if (!clones2) {
  1151. var fixedSize = options[resolve("fixedWidth")] && Components2.Layout.slideSize(0);
  1152. var fixedCount = fixedSize && ceil(rect(Elements.track)[resolve("width")] / fixedSize);
  1153. clones2 = fixedCount || options[resolve("autoWidth")] && Splide2.length || options.perPage * MULTIPLIER;
  1154. }
  1155. return clones2;
  1156. }
  1157. return {
  1158. mount: mount,
  1159. destroy: destroy
  1160. };
  1161. }
  1162. function Move(Splide2, Components2, options) {
  1163. var _EventInterface5 = EventInterface(Splide2),
  1164. on = _EventInterface5.on,
  1165. emit = _EventInterface5.emit;
  1166. var set = Splide2.state.set;
  1167. var _Components2$Layout = Components2.Layout,
  1168. slideSize = _Components2$Layout.slideSize,
  1169. getPadding = _Components2$Layout.getPadding,
  1170. totalSize = _Components2$Layout.totalSize,
  1171. listSize = _Components2$Layout.listSize,
  1172. sliderSize = _Components2$Layout.sliderSize;
  1173. var _Components2$Directio = Components2.Direction,
  1174. resolve = _Components2$Directio.resolve,
  1175. orient = _Components2$Directio.orient;
  1176. var _Components2$Elements3 = Components2.Elements,
  1177. list = _Components2$Elements3.list,
  1178. track = _Components2$Elements3.track;
  1179. var Transition;
  1180. function mount() {
  1181. Transition = Components2.Transition;
  1182. on([EVENT_MOUNTED, EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH], reposition);
  1183. }
  1184. function reposition() {
  1185. if (!Components2.Controller.isBusy()) {
  1186. Components2.Scroll.cancel();
  1187. jump(Splide2.index);
  1188. emit(EVENT_REPOSITIONED);
  1189. }
  1190. }
  1191. function move(dest, index, prev, callback) {
  1192. var position = getPosition();
  1193. if (dest !== index && canShift(dest > index)) {
  1194. cancel();
  1195. translate(shift(position, dest > index), true);
  1196. }
  1197. set(MOVING);
  1198. emit(EVENT_MOVE, index, prev, dest);
  1199. Transition.start(index, function () {
  1200. set(IDLE);
  1201. emit(EVENT_MOVED, index, prev, dest);
  1202. callback && callback();
  1203. });
  1204. }
  1205. function jump(index) {
  1206. translate(toPosition(index, true));
  1207. }
  1208. function translate(position, preventLoop) {
  1209. if (!Splide2.is(FADE)) {
  1210. var destination = preventLoop ? position : loop(position);
  1211. style(list, "transform", "translate" + resolve("X") + "(" + destination + "px)");
  1212. position !== destination && emit(EVENT_SHIFTED);
  1213. }
  1214. }
  1215. function loop(position) {
  1216. if (Splide2.is(LOOP)) {
  1217. var diff = orient(position - getPosition());
  1218. var exceededMin = exceededLimit(false, position) && diff < 0;
  1219. var exceededMax = exceededLimit(true, position) && diff > 0;
  1220. if (exceededMin || exceededMax) {
  1221. position = shift(position, exceededMax);
  1222. }
  1223. }
  1224. return position;
  1225. }
  1226. function shift(position, backwards) {
  1227. var excess = position - getLimit(backwards);
  1228. var size = sliderSize();
  1229. position -= orient(size * (ceil(abs(excess) / size) || 1)) * (backwards ? 1 : -1);
  1230. return position;
  1231. }
  1232. function cancel() {
  1233. translate(getPosition());
  1234. Transition.cancel();
  1235. }
  1236. function toIndex(position) {
  1237. var Slides = Components2.Slides.get();
  1238. var index = 0;
  1239. var minDistance = Infinity;
  1240. for (var i = 0; i < Slides.length; i++) {
  1241. var slideIndex = Slides[i].index;
  1242. var distance = abs(toPosition(slideIndex, true) - position);
  1243. if (distance <= minDistance) {
  1244. minDistance = distance;
  1245. index = slideIndex;
  1246. } else {
  1247. break;
  1248. }
  1249. }
  1250. return index;
  1251. }
  1252. function toPosition(index, trimming) {
  1253. var position = orient(totalSize(index - 1) - offset(index));
  1254. return trimming ? trim(position) : position;
  1255. }
  1256. function getPosition() {
  1257. var left = resolve("left");
  1258. return rect(list)[left] - rect(track)[left] + orient(getPadding(false));
  1259. }
  1260. function trim(position) {
  1261. if (options.trimSpace && Splide2.is(SLIDE)) {
  1262. position = clamp(position, 0, orient(sliderSize() - listSize()));
  1263. }
  1264. return position;
  1265. }
  1266. function offset(index) {
  1267. var focus = options.focus;
  1268. return focus === "center" ? (listSize() - slideSize(index, true)) / 2 : +focus * slideSize(index) || 0;
  1269. }
  1270. function getLimit(max) {
  1271. return toPosition(max ? Components2.Controller.getEnd() : 0, !!options.trimSpace);
  1272. }
  1273. function canShift(backwards) {
  1274. var shifted = orient(shift(getPosition(), backwards));
  1275. return backwards ? shifted >= 0 : shifted <= list["scroll" + resolve("Width")] - rect(track)[resolve("width")];
  1276. }
  1277. function exceededLimit(max, position) {
  1278. position = isUndefined(position) ? getPosition() : position;
  1279. var exceededMin = max !== true && orient(position) < orient(getLimit(false));
  1280. var exceededMax = max !== false && orient(position) > orient(getLimit(true));
  1281. return exceededMin || exceededMax;
  1282. }
  1283. return {
  1284. mount: mount,
  1285. move: move,
  1286. jump: jump,
  1287. translate: translate,
  1288. shift: shift,
  1289. cancel: cancel,
  1290. toIndex: toIndex,
  1291. toPosition: toPosition,
  1292. getPosition: getPosition,
  1293. getLimit: getLimit,
  1294. exceededLimit: exceededLimit,
  1295. reposition: reposition
  1296. };
  1297. }
  1298. function Controller(Splide2, Components2, options) {
  1299. var _EventInterface6 = EventInterface(Splide2),
  1300. on = _EventInterface6.on;
  1301. var Move = Components2.Move;
  1302. var getPosition = Move.getPosition,
  1303. getLimit = Move.getLimit,
  1304. toPosition = Move.toPosition;
  1305. var _Components2$Slides = Components2.Slides,
  1306. isEnough = _Components2$Slides.isEnough,
  1307. getLength = _Components2$Slides.getLength;
  1308. var isLoop = Splide2.is(LOOP);
  1309. var isSlide = Splide2.is(SLIDE);
  1310. var getNext = apply(getAdjacent, false);
  1311. var getPrev = apply(getAdjacent, true);
  1312. var currIndex = options.start || 0;
  1313. var prevIndex = currIndex;
  1314. var slideCount;
  1315. var perMove;
  1316. var perPage;
  1317. function mount() {
  1318. init();
  1319. on([EVENT_UPDATED, EVENT_REFRESH], init);
  1320. }
  1321. function init() {
  1322. slideCount = getLength(true);
  1323. perMove = options.perMove;
  1324. perPage = options.perPage;
  1325. var index = clamp(currIndex, 0, slideCount - 1);
  1326. if (index !== currIndex) {
  1327. currIndex = index;
  1328. Move.reposition();
  1329. }
  1330. }
  1331. function go(control, allowSameIndex, callback) {
  1332. if (!isBusy()) {
  1333. var dest = parse(control);
  1334. var index = validate(dest);
  1335. if (index > -1 && (allowSameIndex || index !== currIndex)) {
  1336. setIndex(index);
  1337. options.useScroll ? scrollTo(dest, options.speed, callback) : Move.move(dest, index, prevIndex, callback);
  1338. }
  1339. }
  1340. }
  1341. function scroll(destination, duration, snap, callback) {
  1342. Components2.Scroll.scroll(destination, duration, snap, function () {
  1343. setIndex(loop(Move.toIndex(Move.getPosition())));
  1344. callback && callback();
  1345. });
  1346. }
  1347. function scrollTo(index, duration, callback) {
  1348. scroll(toPosition(index, true), duration, false, callback);
  1349. }
  1350. function parse(control) {
  1351. var index = currIndex;
  1352. if (isString(control)) {
  1353. var _ref = control.match(/([+\-<>])(\d+)?/) || [],
  1354. indicator = _ref[1],
  1355. number = _ref[2];
  1356. if (indicator === "+" || indicator === "-") {
  1357. index = computeDestIndex(currIndex + +("" + indicator + (+number || 1)), currIndex, true);
  1358. } else if (indicator === ">") {
  1359. index = number ? toIndex(+number) : getNext(true);
  1360. } else if (indicator === "<") {
  1361. index = getPrev(true);
  1362. }
  1363. } else {
  1364. index = isLoop ? control : clamp(control, 0, getEnd());
  1365. }
  1366. return index;
  1367. }
  1368. function getAdjacent(prev, destination) {
  1369. var number = perMove || (hasFocus() ? 1 : perPage);
  1370. var dest = computeDestIndex(currIndex + number * (prev ? -1 : 1), currIndex);
  1371. if (dest === -1 && isSlide) {
  1372. if (!approximatelyEqual(getPosition(), getLimit(!prev), 1)) {
  1373. return prev ? 0 : getEnd();
  1374. }
  1375. }
  1376. return destination ? dest : loop(dest);
  1377. }
  1378. function computeDestIndex(dest, from, incremental) {
  1379. if (isEnough()) {
  1380. var end = getEnd();
  1381. if (dest < 0 || dest > end) {
  1382. if (between(0, dest, from, true) || between(end, from, dest, true)) {
  1383. dest = toIndex(toPage(dest));
  1384. } else {
  1385. if (isLoop) {
  1386. dest = perMove || hasFocus() ? dest : dest < 0 ? -(slideCount % perPage || perPage) : slideCount;
  1387. } else if (options.rewind) {
  1388. dest = dest < 0 ? end : 0;
  1389. } else {
  1390. dest = -1;
  1391. }
  1392. }
  1393. } else {
  1394. if (!incremental && dest !== from) {
  1395. dest = perMove ? dest : toIndex(toPage(from) + (dest < from ? -1 : 1));
  1396. }
  1397. }
  1398. } else {
  1399. dest = -1;
  1400. }
  1401. return dest;
  1402. }
  1403. function validate(dest) {
  1404. if (options.trimSpace === "move" && dest !== currIndex) {
  1405. var position = getPosition();
  1406. while (position === toPosition(dest, true) && between(dest, 0, Splide2.length - 1, true)) {
  1407. dest < currIndex ? --dest : ++dest;
  1408. }
  1409. }
  1410. return loop(dest);
  1411. }
  1412. function loop(index) {
  1413. return isLoop ? (index + slideCount) % slideCount || 0 : index;
  1414. }
  1415. function getEnd() {
  1416. return max(slideCount - (hasFocus() || isLoop && perMove ? 1 : perPage), 0);
  1417. }
  1418. function toIndex(page) {
  1419. return clamp(hasFocus() ? page : perPage * page, 0, getEnd());
  1420. }
  1421. function toPage(index) {
  1422. return hasFocus() ? index : floor((index >= getEnd() ? slideCount - 1 : index) / perPage);
  1423. }
  1424. function toDest(destination) {
  1425. var closest = Move.toIndex(destination);
  1426. return isSlide ? clamp(closest, 0, getEnd()) : closest;
  1427. }
  1428. function setIndex(index) {
  1429. if (index !== currIndex) {
  1430. prevIndex = currIndex;
  1431. currIndex = index;
  1432. }
  1433. }
  1434. function getIndex(prev) {
  1435. return prev ? prevIndex : currIndex;
  1436. }
  1437. function hasFocus() {
  1438. return !isUndefined(options.focus) || options.isNavigation;
  1439. }
  1440. function isBusy() {
  1441. return Splide2.state.is([MOVING, SCROLLING]) && !!options.waitForTransition;
  1442. }
  1443. return {
  1444. mount: mount,
  1445. go: go,
  1446. scroll: scroll,
  1447. scrollTo: scrollTo,
  1448. getNext: getNext,
  1449. getPrev: getPrev,
  1450. getAdjacent: getAdjacent,
  1451. getEnd: getEnd,
  1452. setIndex: setIndex,
  1453. getIndex: getIndex,
  1454. toIndex: toIndex,
  1455. toPage: toPage,
  1456. toDest: toDest,
  1457. hasFocus: hasFocus,
  1458. isBusy: isBusy
  1459. };
  1460. }
  1461. var XML_NAME_SPACE = "http://www.w3.org/2000/svg";
  1462. 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";
  1463. var SIZE = 40;
  1464. function Arrows(Splide2, Components2, options) {
  1465. var event = EventInterface(Splide2);
  1466. var on = event.on,
  1467. bind = event.bind,
  1468. emit = event.emit;
  1469. var classes = options.classes,
  1470. i18n = options.i18n;
  1471. var Elements = Components2.Elements,
  1472. Controller = Components2.Controller;
  1473. var userArrows = Elements.arrows;
  1474. var wrapper = userArrows;
  1475. var prev = Elements.prev;
  1476. var next = Elements.next;
  1477. var created;
  1478. var wrapperClasses;
  1479. var arrows = {};
  1480. function mount() {
  1481. init();
  1482. on(EVENT_UPDATED, remount);
  1483. }
  1484. function remount() {
  1485. destroy();
  1486. mount();
  1487. }
  1488. function init() {
  1489. var enabled = options.arrows;
  1490. if (enabled && !(prev && next)) {
  1491. createArrows();
  1492. }
  1493. if (prev && next) {
  1494. assign(arrows, {
  1495. prev: prev,
  1496. next: next
  1497. });
  1498. display(wrapper, enabled ? "" : "none");
  1499. addClass(wrapper, wrapperClasses = CLASS_ARROWS + "--" + options.direction);
  1500. if (enabled) {
  1501. listen();
  1502. update();
  1503. setAttribute([prev, next], ARIA_CONTROLS, Elements.list.id);
  1504. emit(EVENT_ARROWS_MOUNTED, prev, next);
  1505. }
  1506. }
  1507. }
  1508. function destroy() {
  1509. event.destroy();
  1510. removeClass(wrapper, wrapperClasses);
  1511. if (created) {
  1512. remove(userArrows ? [prev, next] : wrapper);
  1513. prev = next = null;
  1514. } else {
  1515. removeAttribute([prev, next], ALL_ATTRIBUTES);
  1516. }
  1517. }
  1518. function listen() {
  1519. on([EVENT_MOVED, EVENT_REFRESH, EVENT_SCROLLED], update);
  1520. bind(next, "click", apply(go, ">"));
  1521. bind(prev, "click", apply(go, "<"));
  1522. }
  1523. function go(control) {
  1524. Controller.go(control, true);
  1525. }
  1526. function createArrows() {
  1527. wrapper = userArrows || create("div", classes.arrows);
  1528. prev = createArrow(true);
  1529. next = createArrow(false);
  1530. created = true;
  1531. append(wrapper, [prev, next]);
  1532. !userArrows && before(wrapper, Elements.track);
  1533. }
  1534. function createArrow(prev2) {
  1535. var arrow = "<button class=\"" + classes.arrow + " " + (prev2 ? classes.prev : classes.next) + "\" type=\"button\"><svg xmlns=\"" + XML_NAME_SPACE + "\" viewBox=\"0 0 " + SIZE + " " + SIZE + "\" width=\"" + SIZE + "\" height=\"" + SIZE + "\"><path d=\"" + (options.arrowPath || PATH) + "\" />";
  1536. return parseHtml(arrow);
  1537. }
  1538. function update() {
  1539. var index = Splide2.index;
  1540. var prevIndex = Controller.getPrev();
  1541. var nextIndex = Controller.getNext();
  1542. var prevLabel = prevIndex > -1 && index < prevIndex ? i18n.last : i18n.prev;
  1543. var nextLabel = nextIndex > -1 && index > nextIndex ? i18n.first : i18n.next;
  1544. prev.disabled = prevIndex < 0;
  1545. next.disabled = nextIndex < 0;
  1546. setAttribute(prev, ARIA_LABEL, prevLabel);
  1547. setAttribute(next, ARIA_LABEL, nextLabel);
  1548. emit(EVENT_ARROWS_UPDATED, prev, next, prevIndex, nextIndex);
  1549. }
  1550. return {
  1551. arrows: arrows,
  1552. mount: mount,
  1553. destroy: destroy
  1554. };
  1555. }
  1556. var INTERVAL_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-interval";
  1557. function Autoplay(Splide2, Components2, options) {
  1558. var _EventInterface7 = EventInterface(Splide2),
  1559. on = _EventInterface7.on,
  1560. bind = _EventInterface7.bind,
  1561. emit = _EventInterface7.emit;
  1562. var interval = RequestInterval(options.interval, Splide2.go.bind(Splide2, ">"), update);
  1563. var isPaused = interval.isPaused;
  1564. var Elements = Components2.Elements;
  1565. var autoplay = options.autoplay;
  1566. var hovered;
  1567. var focused;
  1568. var paused = autoplay === "pause";
  1569. function mount() {
  1570. if (autoplay) {
  1571. initButton(true);
  1572. initButton(false);
  1573. listen();
  1574. !paused && play();
  1575. }
  1576. }
  1577. function initButton(forPause) {
  1578. var prop = forPause ? "pause" : "play";
  1579. var button = Elements[prop];
  1580. if (button) {
  1581. setAttribute(button, ARIA_CONTROLS, Elements.track.id);
  1582. setAttribute(button, ARIA_LABEL, options.i18n[prop]);
  1583. bind(button, "click", forPause ? pause : play);
  1584. }
  1585. }
  1586. function listen() {
  1587. var root = Elements.root;
  1588. if (options.pauseOnHover) {
  1589. bind(root, "mouseenter mouseleave", function (e) {
  1590. hovered = e.type === "mouseenter";
  1591. autoToggle();
  1592. });
  1593. }
  1594. if (options.pauseOnFocus) {
  1595. bind(root, "focusin focusout", function (e) {
  1596. focused = e.type === "focusin";
  1597. autoToggle();
  1598. });
  1599. }
  1600. on([EVENT_MOVE, EVENT_SCROLL, EVENT_REFRESH], interval.rewind);
  1601. on(EVENT_MOVE, updateInterval);
  1602. }
  1603. function play() {
  1604. if (isPaused() && Components2.Slides.isEnough()) {
  1605. interval.start(!options.resetProgress);
  1606. focused = hovered = paused = false;
  1607. emit(EVENT_AUTOPLAY_PLAY);
  1608. }
  1609. }
  1610. function pause(manual) {
  1611. if (manual === void 0) {
  1612. manual = true;
  1613. }
  1614. if (!isPaused()) {
  1615. interval.pause();
  1616. emit(EVENT_AUTOPLAY_PAUSE);
  1617. }
  1618. paused = manual;
  1619. }
  1620. function autoToggle() {
  1621. if (!paused) {
  1622. if (!hovered && !focused) {
  1623. play();
  1624. } else {
  1625. pause(false);
  1626. }
  1627. }
  1628. }
  1629. function update(rate) {
  1630. var bar = Elements.bar;
  1631. bar && style(bar, "width", rate * 100 + "%");
  1632. emit(EVENT_AUTOPLAY_PLAYING, rate);
  1633. }
  1634. function updateInterval() {
  1635. var Slide = Components2.Slides.getAt(Splide2.index);
  1636. interval.set(Slide && +getAttribute(Slide.slide, INTERVAL_DATA_ATTRIBUTE) || options.interval);
  1637. }
  1638. return {
  1639. mount: mount,
  1640. destroy: interval.cancel,
  1641. play: play,
  1642. pause: pause,
  1643. isPaused: isPaused
  1644. };
  1645. }
  1646. function Cover(Splide2, Components2, options) {
  1647. var _EventInterface8 = EventInterface(Splide2),
  1648. on = _EventInterface8.on;
  1649. function mount() {
  1650. if (options.cover) {
  1651. on(EVENT_LAZYLOAD_LOADED, apply(toggle, true));
  1652. on([EVENT_MOUNTED, EVENT_UPDATED, EVENT_REFRESH], apply(cover, true));
  1653. }
  1654. }
  1655. function cover(cover2) {
  1656. Components2.Slides.forEach(function (Slide) {
  1657. var img = child(Slide.container || Slide.slide, "img");
  1658. if (img && img.src) {
  1659. toggle(cover2, img, Slide);
  1660. }
  1661. });
  1662. }
  1663. function toggle(cover2, img, Slide) {
  1664. Slide.style("background", cover2 ? "center/cover no-repeat url(\"" + img.src + "\")" : "", true);
  1665. display(img, cover2 ? "none" : "");
  1666. }
  1667. return {
  1668. mount: mount,
  1669. destroy: apply(cover, false)
  1670. };
  1671. }
  1672. var BOUNCE_DIFF_THRESHOLD = 10;
  1673. var BOUNCE_DURATION = 600;
  1674. var FRICTION_FACTOR = 0.6;
  1675. var BASE_VELOCITY = 1.5;
  1676. var MIN_DURATION = 800;
  1677. function Scroll(Splide2, Components2, options) {
  1678. var _EventInterface9 = EventInterface(Splide2),
  1679. on = _EventInterface9.on,
  1680. emit = _EventInterface9.emit;
  1681. var set = Splide2.state.set;
  1682. var Move = Components2.Move;
  1683. var getPosition = Move.getPosition,
  1684. getLimit = Move.getLimit,
  1685. exceededLimit = Move.exceededLimit,
  1686. translate = Move.translate;
  1687. var interval;
  1688. var callback;
  1689. var friction = 1;
  1690. function mount() {
  1691. on(EVENT_MOVE, clear);
  1692. on([EVENT_UPDATED, EVENT_REFRESH], cancel);
  1693. }
  1694. function scroll(destination, duration, snap, onScrolled, noConstrain) {
  1695. var from = getPosition();
  1696. clear();
  1697. if (snap) {
  1698. var size = Components2.Layout.sliderSize();
  1699. var offset = sign(destination) * size * floor(abs(destination) / size) || 0;
  1700. destination = Move.toPosition(Components2.Controller.toDest(destination % size)) + offset;
  1701. }
  1702. friction = 1;
  1703. duration = duration || max(abs(destination - from) / BASE_VELOCITY, MIN_DURATION);
  1704. callback = onScrolled;
  1705. interval = RequestInterval(duration, onEnd, apply(update, from, destination, noConstrain), 1);
  1706. set(SCROLLING);
  1707. emit(EVENT_SCROLL);
  1708. interval.start();
  1709. }
  1710. function onEnd() {
  1711. set(IDLE);
  1712. callback && callback();
  1713. emit(EVENT_SCROLLED);
  1714. }
  1715. function update(from, to, noConstrain, rate) {
  1716. var position = getPosition();
  1717. var target = from + (to - from) * easing(rate);
  1718. var diff = (target - position) * friction;
  1719. translate(position + diff);
  1720. if (Splide2.is(SLIDE) && !noConstrain && exceededLimit()) {
  1721. friction *= FRICTION_FACTOR;
  1722. if (abs(diff) < BOUNCE_DIFF_THRESHOLD) {
  1723. scroll(getLimit(exceededLimit(true)), BOUNCE_DURATION, false, void 0, true);
  1724. }
  1725. }
  1726. }
  1727. function clear() {
  1728. if (interval) {
  1729. interval.cancel();
  1730. }
  1731. }
  1732. function cancel() {
  1733. if (interval && !interval.isPaused()) {
  1734. clear();
  1735. onEnd();
  1736. }
  1737. }
  1738. function easing(t) {
  1739. var easingFunc = options.easingFunc;
  1740. return easingFunc ? easingFunc(t) : 1 - Math.pow(1 - t, 4);
  1741. }
  1742. return {
  1743. mount: mount,
  1744. destroy: clear,
  1745. scroll: scroll,
  1746. cancel: cancel
  1747. };
  1748. }
  1749. var SCROLL_LISTENER_OPTIONS = {
  1750. passive: false,
  1751. capture: true
  1752. };
  1753. var FRICTION = 5;
  1754. var LOG_INTERVAL = 200;
  1755. var POINTER_DOWN_EVENTS = "touchstart mousedown";
  1756. var POINTER_MOVE_EVENTS = "touchmove mousemove";
  1757. var POINTER_UP_EVENTS = "touchend touchcancel mouseup";
  1758. function Drag(Splide2, Components2, options) {
  1759. var _EventInterface10 = EventInterface(Splide2),
  1760. on = _EventInterface10.on,
  1761. emit = _EventInterface10.emit,
  1762. bind = _EventInterface10.bind,
  1763. unbind = _EventInterface10.unbind;
  1764. var state = Splide2.state;
  1765. var Move = Components2.Move,
  1766. Scroll = Components2.Scroll,
  1767. Controller = Components2.Controller;
  1768. var track = Components2.Elements.track;
  1769. var _Components2$Directio2 = Components2.Direction,
  1770. resolve = _Components2$Directio2.resolve,
  1771. orient = _Components2$Directio2.orient;
  1772. var getPosition = Move.getPosition,
  1773. exceededLimit = Move.exceededLimit;
  1774. var basePosition;
  1775. var baseEvent;
  1776. var prevBaseEvent;
  1777. var isFree;
  1778. var dragging;
  1779. var exceeded = false;
  1780. var clickPrevented;
  1781. var disabled;
  1782. var target;
  1783. function mount() {
  1784. bind(track, POINTER_MOVE_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1785. bind(track, POINTER_UP_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1786. bind(track, POINTER_DOWN_EVENTS, onPointerDown, SCROLL_LISTENER_OPTIONS);
  1787. bind(track, "click", onClick, {
  1788. capture: true
  1789. });
  1790. bind(track, "dragstart", prevent);
  1791. on([EVENT_MOUNTED, EVENT_UPDATED], init);
  1792. }
  1793. function init() {
  1794. var drag = options.drag;
  1795. disable(!drag);
  1796. isFree = drag === "free";
  1797. }
  1798. function onPointerDown(e) {
  1799. clickPrevented = false;
  1800. if (!disabled) {
  1801. var isTouch = isTouchEvent(e);
  1802. if (isDraggable(e.target) && (isTouch || !e.button)) {
  1803. if (!Controller.isBusy()) {
  1804. target = isTouch ? track : window;
  1805. dragging = state.is([MOVING, SCROLLING]);
  1806. prevBaseEvent = null;
  1807. bind(target, POINTER_MOVE_EVENTS, onPointerMove, SCROLL_LISTENER_OPTIONS);
  1808. bind(target, POINTER_UP_EVENTS, onPointerUp, SCROLL_LISTENER_OPTIONS);
  1809. Move.cancel();
  1810. Scroll.cancel();
  1811. save(e);
  1812. } else {
  1813. prevent(e, true);
  1814. }
  1815. }
  1816. }
  1817. }
  1818. function onPointerMove(e) {
  1819. if (!state.is(DRAGGING)) {
  1820. state.set(DRAGGING);
  1821. emit(EVENT_DRAG);
  1822. }
  1823. if (e.cancelable) {
  1824. if (dragging) {
  1825. Move.translate(basePosition + constrain(diffCoord(e)));
  1826. var expired = diffTime(e) > LOG_INTERVAL;
  1827. var hasExceeded = exceeded !== (exceeded = exceededLimit());
  1828. if (expired || hasExceeded) {
  1829. save(e);
  1830. }
  1831. clickPrevented = true;
  1832. emit(EVENT_DRAGGING);
  1833. prevent(e);
  1834. } else if (isSliderDirection(e)) {
  1835. dragging = shouldStart(e);
  1836. prevent(e);
  1837. }
  1838. }
  1839. }
  1840. function onPointerUp(e) {
  1841. if (state.is(DRAGGING)) {
  1842. state.set(IDLE);
  1843. emit(EVENT_DRAGGED);
  1844. }
  1845. if (dragging) {
  1846. move(e);
  1847. prevent(e);
  1848. }
  1849. unbind(target, POINTER_MOVE_EVENTS, onPointerMove);
  1850. unbind(target, POINTER_UP_EVENTS, onPointerUp);
  1851. dragging = false;
  1852. }
  1853. function onClick(e) {
  1854. if (!disabled && clickPrevented) {
  1855. prevent(e, true);
  1856. }
  1857. }
  1858. function save(e) {
  1859. prevBaseEvent = baseEvent;
  1860. baseEvent = e;
  1861. basePosition = getPosition();
  1862. }
  1863. function move(e) {
  1864. var velocity = computeVelocity(e);
  1865. var destination = computeDestination(velocity);
  1866. var rewind = options.rewind && options.rewindByDrag;
  1867. var go = Controller.go;
  1868. if (isFree) {
  1869. Controller.scroll(destination, 0, options.snap);
  1870. } else if (Splide2.is(FADE)) {
  1871. go(orient(sign(velocity)) < 0 ? rewind ? "<" : "-" : rewind ? ">" : "+");
  1872. } else if (Splide2.is(SLIDE) && exceeded && rewind) {
  1873. go(exceededLimit(true) ? ">" : "<");
  1874. } else {
  1875. go(Controller.toDest(destination), true);
  1876. }
  1877. }
  1878. function shouldStart(e) {
  1879. var thresholds = options.dragMinThreshold;
  1880. var isObj = isObject(thresholds);
  1881. var mouse = isObj && thresholds.mouse || 0;
  1882. var touch = (isObj ? thresholds.touch : +thresholds) || 10;
  1883. return abs(diffCoord(e)) > (isTouchEvent(e) ? touch : mouse);
  1884. }
  1885. function isSliderDirection(e) {
  1886. return abs(diffCoord(e)) > abs(diffCoord(e, true));
  1887. }
  1888. function computeVelocity(e) {
  1889. if (Splide2.is(LOOP) || !exceeded) {
  1890. var time = diffTime(e);
  1891. if (time && time < LOG_INTERVAL) {
  1892. return diffCoord(e) / time;
  1893. }
  1894. }
  1895. return 0;
  1896. }
  1897. function computeDestination(velocity) {
  1898. return getPosition() + sign(velocity) * min(abs(velocity) * (options.flickPower || 600), isFree ? Infinity : Components2.Layout.listSize() * (options.flickMaxPages || 1));
  1899. }
  1900. function diffCoord(e, orthogonal) {
  1901. return coordOf(e, orthogonal) - coordOf(getBaseEvent(e), orthogonal);
  1902. }
  1903. function diffTime(e) {
  1904. return timeOf(e) - timeOf(getBaseEvent(e));
  1905. }
  1906. function getBaseEvent(e) {
  1907. return baseEvent === e && prevBaseEvent || baseEvent;
  1908. }
  1909. function coordOf(e, orthogonal) {
  1910. return (isTouchEvent(e) ? e.changedTouches[0] : e)["page" + resolve(orthogonal ? "Y" : "X")];
  1911. }
  1912. function constrain(diff) {
  1913. return diff / (exceeded && Splide2.is(SLIDE) ? FRICTION : 1);
  1914. }
  1915. function isDraggable(target2) {
  1916. var noDrag = options.noDrag;
  1917. return !matches(target2, "." + CLASS_PAGINATION_PAGE + ", ." + CLASS_ARROW) && !noDrag || !matches(target2, noDrag);
  1918. }
  1919. function isTouchEvent(e) {
  1920. return typeof TouchEvent !== "undefined" && e instanceof TouchEvent;
  1921. }
  1922. function isDragging() {
  1923. return dragging;
  1924. }
  1925. function disable(value) {
  1926. disabled = value;
  1927. }
  1928. return {
  1929. mount: mount,
  1930. disable: disable,
  1931. isDragging: isDragging
  1932. };
  1933. }
  1934. var NORMALIZATION_MAP = {
  1935. Spacebar: " ",
  1936. Right: "ArrowRight",
  1937. Left: "ArrowLeft",
  1938. Up: "ArrowUp",
  1939. Down: "ArrowDown"
  1940. };
  1941. function normalizeKey(key) {
  1942. key = isString(key) ? key : key.key;
  1943. return NORMALIZATION_MAP[key] || key;
  1944. }
  1945. var KEYBOARD_EVENT = "keydown";
  1946. function Keyboard(Splide2, Components2, options) {
  1947. var _EventInterface11 = EventInterface(Splide2),
  1948. on = _EventInterface11.on,
  1949. bind = _EventInterface11.bind,
  1950. unbind = _EventInterface11.unbind;
  1951. var root = Splide2.root;
  1952. var resolve = Components2.Direction.resolve;
  1953. var target;
  1954. var disabled;
  1955. function mount() {
  1956. init();
  1957. on(EVENT_UPDATED, destroy);
  1958. on(EVENT_UPDATED, init);
  1959. on(EVENT_MOVE, onMove);
  1960. }
  1961. function init() {
  1962. var keyboard = options.keyboard;
  1963. if (keyboard) {
  1964. target = keyboard === "global" ? window : root;
  1965. bind(target, KEYBOARD_EVENT, onKeydown);
  1966. }
  1967. }
  1968. function destroy() {
  1969. unbind(target, KEYBOARD_EVENT);
  1970. }
  1971. function disable(value) {
  1972. disabled = value;
  1973. }
  1974. function onMove() {
  1975. var _disabled = disabled;
  1976. disabled = true;
  1977. nextTick(function () {
  1978. disabled = _disabled;
  1979. });
  1980. }
  1981. function onKeydown(e) {
  1982. if (!disabled) {
  1983. var key = normalizeKey(e);
  1984. if (key === resolve("ArrowLeft")) {
  1985. Splide2.go("<");
  1986. } else if (key === resolve("ArrowRight")) {
  1987. Splide2.go(">");
  1988. }
  1989. }
  1990. }
  1991. return {
  1992. mount: mount,
  1993. destroy: destroy,
  1994. disable: disable
  1995. };
  1996. }
  1997. var SRC_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-lazy";
  1998. var SRCSET_DATA_ATTRIBUTE = SRC_DATA_ATTRIBUTE + "-srcset";
  1999. var IMAGE_SELECTOR = "[" + SRC_DATA_ATTRIBUTE + "], [" + SRCSET_DATA_ATTRIBUTE + "]";
  2000. function LazyLoad(Splide2, Components2, options) {
  2001. var _EventInterface12 = EventInterface(Splide2),
  2002. on = _EventInterface12.on,
  2003. off = _EventInterface12.off,
  2004. bind = _EventInterface12.bind,
  2005. emit = _EventInterface12.emit;
  2006. var isSequential = options.lazyLoad === "sequential";
  2007. var images = [];
  2008. var index = 0;
  2009. function mount() {
  2010. if (options.lazyLoad) {
  2011. init();
  2012. on(EVENT_REFRESH, destroy);
  2013. on(EVENT_REFRESH, init);
  2014. if (!isSequential) {
  2015. on([EVENT_MOUNTED, EVENT_REFRESH, EVENT_MOVED, EVENT_SCROLLED], observe);
  2016. }
  2017. }
  2018. }
  2019. function init() {
  2020. Components2.Slides.forEach(function (_Slide) {
  2021. queryAll(_Slide.slide, IMAGE_SELECTOR).forEach(function (_img) {
  2022. var src = getAttribute(_img, SRC_DATA_ATTRIBUTE);
  2023. var srcset = getAttribute(_img, SRCSET_DATA_ATTRIBUTE);
  2024. if (src !== _img.src || srcset !== _img.srcset) {
  2025. var className = options.classes.spinner;
  2026. var parent = _img.parentElement;
  2027. var _spinner = child(parent, "." + className) || create("span", className, parent);
  2028. setAttribute(_spinner, ROLE, "presentation");
  2029. images.push({
  2030. _img: _img,
  2031. _Slide: _Slide,
  2032. src: src,
  2033. srcset: srcset,
  2034. _spinner: _spinner
  2035. });
  2036. !_img.src && display(_img, "none");
  2037. }
  2038. });
  2039. });
  2040. if (isSequential) {
  2041. loadNext();
  2042. }
  2043. }
  2044. function destroy() {
  2045. index = 0;
  2046. images = [];
  2047. }
  2048. function observe() {
  2049. images = images.filter(function (data) {
  2050. var distance = options.perPage * ((options.preloadPages || 1) + 1) - 1;
  2051. if (data._Slide.isWithin(Splide2.index, distance)) {
  2052. return load(data);
  2053. }
  2054. return true;
  2055. });
  2056. if (!images.length) {
  2057. off(EVENT_MOVED);
  2058. }
  2059. }
  2060. function load(data) {
  2061. var _img = data._img;
  2062. addClass(data._Slide.slide, CLASS_LOADING);
  2063. bind(_img, "load error", function (e) {
  2064. onLoad(data, e.type === "error");
  2065. });
  2066. ["srcset", "src"].forEach(function (name) {
  2067. if (data[name]) {
  2068. setAttribute(_img, name, data[name]);
  2069. removeAttribute(_img, name === "src" ? SRC_DATA_ATTRIBUTE : SRCSET_DATA_ATTRIBUTE);
  2070. }
  2071. });
  2072. }
  2073. function onLoad(data, error) {
  2074. var _Slide = data._Slide;
  2075. removeClass(_Slide.slide, CLASS_LOADING);
  2076. if (!error) {
  2077. remove(data._spinner);
  2078. display(data._img, "");
  2079. emit(EVENT_LAZYLOAD_LOADED, data._img, _Slide);
  2080. emit(EVENT_RESIZE);
  2081. }
  2082. if (isSequential) {
  2083. loadNext();
  2084. }
  2085. }
  2086. function loadNext() {
  2087. if (index < images.length) {
  2088. load(images[index++]);
  2089. }
  2090. }
  2091. return {
  2092. mount: mount,
  2093. destroy: destroy
  2094. };
  2095. }
  2096. function Pagination(Splide2, Components2, options) {
  2097. var event = EventInterface(Splide2);
  2098. var on = event.on,
  2099. emit = event.emit,
  2100. bind = event.bind;
  2101. var Slides = Components2.Slides,
  2102. Elements = Components2.Elements,
  2103. Controller = Components2.Controller;
  2104. var hasFocus = Controller.hasFocus,
  2105. getIndex = Controller.getIndex,
  2106. go = Controller.go;
  2107. var resolve = Components2.Direction.resolve;
  2108. var items = [];
  2109. var list;
  2110. var paginationClasses;
  2111. function mount() {
  2112. destroy();
  2113. on([EVENT_UPDATED, EVENT_REFRESH], mount);
  2114. if (options.pagination && Slides.isEnough()) {
  2115. on([EVENT_MOVE, EVENT_SCROLL, EVENT_SCROLLED], update);
  2116. createPagination();
  2117. update();
  2118. emit(EVENT_PAGINATION_MOUNTED, {
  2119. list: list,
  2120. items: items
  2121. }, getAt(Splide2.index));
  2122. }
  2123. }
  2124. function destroy() {
  2125. if (list) {
  2126. event.destroy();
  2127. remove(Elements.pagination ? slice(list.children) : list);
  2128. removeClass(list, paginationClasses);
  2129. empty(items);
  2130. list = null;
  2131. }
  2132. }
  2133. function createPagination() {
  2134. var length = Splide2.length;
  2135. var classes = options.classes,
  2136. i18n = options.i18n,
  2137. perPage = options.perPage;
  2138. var max = hasFocus() ? length : ceil(length / perPage);
  2139. list = Elements.pagination || create("ul", classes.pagination, Elements.root);
  2140. addClass(list, paginationClasses = CLASS_PAGINATION + "--" + getDirection());
  2141. setAttribute(list, ROLE, "tablist");
  2142. setAttribute(list, ARIA_LABEL, i18n.select);
  2143. setAttribute(list, ARIA_ORIENTATION, getDirection() === TTB ? "vertical" : "");
  2144. for (var i = 0; i < max; i++) {
  2145. var li = create("li", null, list);
  2146. var button = create("button", {
  2147. class: classes.page,
  2148. type: "button"
  2149. }, li);
  2150. var controls = Slides.getIn(i).map(function (Slide) {
  2151. return Slide.slide.id;
  2152. });
  2153. var text = !hasFocus() && perPage > 1 ? i18n.pageX : i18n.slideX;
  2154. bind(button, "click", apply(onClick, i));
  2155. if (options.paginationKeyboard) {
  2156. bind(button, "keydown", apply(onKeydown, i));
  2157. }
  2158. setAttribute(li, ROLE, "none");
  2159. setAttribute(button, ROLE, "tab");
  2160. setAttribute(button, ARIA_CONTROLS, controls.join(" "));
  2161. setAttribute(button, ARIA_LABEL, format(text, i + 1));
  2162. setAttribute(button, TAB_INDEX, -1);
  2163. items.push({
  2164. li: li,
  2165. button: button,
  2166. page: i
  2167. });
  2168. }
  2169. }
  2170. function onClick(page) {
  2171. go(">" + page, true);
  2172. }
  2173. function onKeydown(page, e) {
  2174. var length = items.length;
  2175. var key = normalizeKey(e);
  2176. var dir = getDirection();
  2177. var nextPage = -1;
  2178. if (key === resolve("ArrowRight", false, dir)) {
  2179. nextPage = ++page % length;
  2180. } else if (key === resolve("ArrowLeft", false, dir)) {
  2181. nextPage = (--page + length) % length;
  2182. } else if (key === "Home") {
  2183. nextPage = 0;
  2184. } else if (key === "End") {
  2185. nextPage = length - 1;
  2186. }
  2187. var item = items[nextPage];
  2188. if (item) {
  2189. focus(item.button);
  2190. go(">" + nextPage);
  2191. prevent(e, true);
  2192. }
  2193. }
  2194. function getDirection() {
  2195. return options.paginationDirection || options.direction;
  2196. }
  2197. function getAt(index) {
  2198. return items[Controller.toPage(index)];
  2199. }
  2200. function update() {
  2201. var prev = getAt(getIndex(true));
  2202. var curr = getAt(getIndex());
  2203. if (prev) {
  2204. var button = prev.button;
  2205. removeClass(button, CLASS_ACTIVE);
  2206. removeAttribute(button, ARIA_SELECTED);
  2207. setAttribute(button, TAB_INDEX, -1);
  2208. }
  2209. if (curr) {
  2210. var _button = curr.button;
  2211. addClass(_button, CLASS_ACTIVE);
  2212. setAttribute(_button, ARIA_SELECTED, true);
  2213. setAttribute(_button, TAB_INDEX, "");
  2214. }
  2215. emit(EVENT_PAGINATION_UPDATED, {
  2216. list: list,
  2217. items: items
  2218. }, prev, curr);
  2219. }
  2220. return {
  2221. items: items,
  2222. mount: mount,
  2223. destroy: destroy,
  2224. getAt: getAt,
  2225. update: update
  2226. };
  2227. }
  2228. var TRIGGER_KEYS = [" ", "Enter"];
  2229. function Sync(Splide2, Components2, options) {
  2230. var list = Components2.Elements.list;
  2231. var events = [];
  2232. function mount() {
  2233. Splide2.splides.forEach(function (target) {
  2234. !target.isParent && sync(target.splide);
  2235. });
  2236. if (options.isNavigation) {
  2237. navigate();
  2238. }
  2239. }
  2240. function destroy() {
  2241. events.forEach(function (event) {
  2242. event.destroy();
  2243. });
  2244. empty(events);
  2245. }
  2246. function remount() {
  2247. destroy();
  2248. mount();
  2249. }
  2250. function sync(splide) {
  2251. [Splide2, splide].forEach(function (instance) {
  2252. var event = EventInterface(instance);
  2253. var target = instance === Splide2 ? splide : Splide2;
  2254. event.on(EVENT_MOVE, function (index, prev, dest) {
  2255. target.go(target.is(LOOP) ? dest : index);
  2256. });
  2257. events.push(event);
  2258. });
  2259. }
  2260. function navigate() {
  2261. var event = EventInterface(Splide2);
  2262. var on = event.on;
  2263. on(EVENT_CLICK, onClick);
  2264. on(EVENT_SLIDE_KEYDOWN, onKeydown);
  2265. on([EVENT_MOUNTED, EVENT_UPDATED], update);
  2266. events.push(event);
  2267. event.emit(EVENT_NAVIGATION_MOUNTED, Splide2.splides);
  2268. }
  2269. function update() {
  2270. setAttribute(list, ARIA_ORIENTATION, options.direction === TTB ? "vertical" : "");
  2271. }
  2272. function onClick(Slide) {
  2273. Splide2.go(Slide.index);
  2274. }
  2275. function onKeydown(Slide, e) {
  2276. if (includes(TRIGGER_KEYS, normalizeKey(e))) {
  2277. onClick(Slide);
  2278. prevent(e);
  2279. }
  2280. }
  2281. return {
  2282. mount: mount,
  2283. destroy: destroy,
  2284. remount: remount
  2285. };
  2286. }
  2287. function Wheel(Splide2, Components2, options) {
  2288. var _EventInterface13 = EventInterface(Splide2),
  2289. bind = _EventInterface13.bind;
  2290. var lastTime = 0;
  2291. function mount() {
  2292. if (options.wheel) {
  2293. bind(Components2.Elements.track, "wheel", onWheel, SCROLL_LISTENER_OPTIONS);
  2294. }
  2295. }
  2296. function onWheel(e) {
  2297. if (e.cancelable) {
  2298. var deltaY = e.deltaY;
  2299. var backwards = deltaY < 0;
  2300. var timeStamp = timeOf(e);
  2301. var _min = options.wheelMinThreshold || 0;
  2302. var sleep = options.wheelSleep || 0;
  2303. if (abs(deltaY) > _min && timeStamp - lastTime > sleep) {
  2304. Splide2.go(backwards ? "<" : ">");
  2305. lastTime = timeStamp;
  2306. }
  2307. shouldPrevent(backwards) && prevent(e);
  2308. }
  2309. }
  2310. function shouldPrevent(backwards) {
  2311. return !options.releaseWheel || Splide2.state.is(MOVING) || Components2.Controller.getAdjacent(backwards) !== -1;
  2312. }
  2313. return {
  2314. mount: mount
  2315. };
  2316. }
  2317. function Live(Splide2, Components2, options) {
  2318. var _EventInterface14 = EventInterface(Splide2),
  2319. on = _EventInterface14.on;
  2320. var list = Components2.Elements.list;
  2321. var live = options.live;
  2322. var enabled = live && !options.isNavigation;
  2323. function mount() {
  2324. if (enabled) {
  2325. setAttribute(list, ARIA_ATOMIC, false);
  2326. disable(!Components2.Autoplay.isPaused());
  2327. on(EVENT_AUTOPLAY_PLAY, apply(disable, true));
  2328. on(EVENT_AUTOPLAY_PAUSE, apply(disable, false));
  2329. }
  2330. }
  2331. function disable(disabled) {
  2332. if (enabled) {
  2333. setAttribute(list, ARIA_LIVE, disabled ? "off" : "polite");
  2334. }
  2335. }
  2336. return {
  2337. mount: mount,
  2338. disable: disable
  2339. };
  2340. }
  2341. var ComponentConstructors = /*#__PURE__*/Object.freeze({
  2342. __proto__: null,
  2343. Media: Media,
  2344. Direction: Direction,
  2345. Elements: Elements,
  2346. Slides: Slides,
  2347. Layout: Layout,
  2348. Clones: Clones,
  2349. Move: Move,
  2350. Controller: Controller,
  2351. Arrows: Arrows,
  2352. Autoplay: Autoplay,
  2353. Cover: Cover,
  2354. Scroll: Scroll,
  2355. Drag: Drag,
  2356. Keyboard: Keyboard,
  2357. LazyLoad: LazyLoad,
  2358. Pagination: Pagination,
  2359. Sync: Sync,
  2360. Wheel: Wheel,
  2361. Live: Live
  2362. });
  2363. var I18N = {
  2364. prev: "Previous slide",
  2365. next: "Next slide",
  2366. first: "Go to first slide",
  2367. last: "Go to last slide",
  2368. slideX: "Go to slide %s",
  2369. pageX: "Go to page %s",
  2370. play: "Start autoplay",
  2371. pause: "Pause autoplay",
  2372. carousel: "carousel",
  2373. slide: "slide",
  2374. select: "Select slide to show",
  2375. slideLabel: "%s of %s"
  2376. };
  2377. var DEFAULTS = {
  2378. type: "slide",
  2379. role: "region",
  2380. speed: 400,
  2381. perPage: 1,
  2382. cloneStatus: true,
  2383. arrows: true,
  2384. pagination: true,
  2385. paginationKeyboard: true,
  2386. interval: 5e3,
  2387. pauseOnHover: true,
  2388. pauseOnFocus: true,
  2389. resetProgress: true,
  2390. easing: "cubic-bezier(0.25, 1, 0.5, 1)",
  2391. drag: true,
  2392. direction: "ltr",
  2393. trimSpace: true,
  2394. focusableNodes: "a, button, textarea, input, select, iframe",
  2395. live: true,
  2396. classes: CLASSES,
  2397. i18n: I18N
  2398. };
  2399. function Fade(Splide2, Components2, options) {
  2400. var _EventInterface15 = EventInterface(Splide2),
  2401. on = _EventInterface15.on;
  2402. function mount() {
  2403. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  2404. nextTick(function () {
  2405. Components2.Slides.style("transition", "opacity " + options.speed + "ms " + options.easing);
  2406. });
  2407. });
  2408. }
  2409. function start(index, done) {
  2410. var track = Components2.Elements.track;
  2411. style(track, "height", unit(rect(track).height));
  2412. nextTick(function () {
  2413. done();
  2414. style(track, "height", "");
  2415. });
  2416. }
  2417. return {
  2418. mount: mount,
  2419. start: start,
  2420. cancel: noop
  2421. };
  2422. }
  2423. function Slide(Splide2, Components2, options) {
  2424. var _EventInterface16 = EventInterface(Splide2),
  2425. bind = _EventInterface16.bind;
  2426. var Move = Components2.Move,
  2427. Controller = Components2.Controller;
  2428. var list = Components2.Elements.list;
  2429. var endCallback;
  2430. function mount() {
  2431. bind(list, "transitionend", function (e) {
  2432. if (e.target === list && endCallback) {
  2433. cancel();
  2434. endCallback();
  2435. }
  2436. });
  2437. }
  2438. function start(index, done) {
  2439. var destination = Move.toPosition(index, true);
  2440. var position = Move.getPosition();
  2441. var speed = getSpeed(index);
  2442. if (abs(destination - position) >= 1 && speed >= 1) {
  2443. apply("transform " + speed + "ms " + options.easing);
  2444. Move.translate(destination, true);
  2445. endCallback = done;
  2446. } else {
  2447. Move.jump(index);
  2448. done();
  2449. }
  2450. }
  2451. function cancel() {
  2452. apply("");
  2453. }
  2454. function getSpeed(index) {
  2455. var rewindSpeed = options.rewindSpeed;
  2456. if (Splide2.is(SLIDE) && rewindSpeed) {
  2457. var prev = Controller.getIndex(true);
  2458. var end = Controller.getEnd();
  2459. if (prev === 0 && index >= end || prev >= end && index === 0) {
  2460. return rewindSpeed;
  2461. }
  2462. }
  2463. return options.speed;
  2464. }
  2465. function apply(transition) {
  2466. style(list, "transition", transition);
  2467. }
  2468. return {
  2469. mount: mount,
  2470. start: start,
  2471. cancel: cancel
  2472. };
  2473. }
  2474. var _Splide = /*#__PURE__*/function () {
  2475. function _Splide(target, options) {
  2476. this.event = EventInterface();
  2477. this.Components = {};
  2478. this.state = State(CREATED);
  2479. this.splides = [];
  2480. this._options = {};
  2481. this._Extensions = {};
  2482. var root = isString(target) ? query(document, target) : target;
  2483. assert(root, root + " is invalid.");
  2484. this.root = root;
  2485. options = merge({}, DEFAULTS, _Splide.defaults, options || {});
  2486. try {
  2487. merge(options, JSON.parse(getAttribute(root, DATA_ATTRIBUTE)));
  2488. } catch (e) {
  2489. assert(false, "Invalid JSON");
  2490. }
  2491. this._options = options;
  2492. }
  2493. var _proto = _Splide.prototype;
  2494. _proto.mount = function mount(Extensions, Transition) {
  2495. var _this2 = this;
  2496. var state = this.state,
  2497. Components2 = this.Components;
  2498. assert(state.is([CREATED, DESTROYED]), "Already mounted!");
  2499. state.set(CREATED);
  2500. this._Components = Components2;
  2501. this._Transition = Transition || this._Transition || (this.is(FADE) ? Fade : Slide);
  2502. this._Extensions = Extensions || this._Extensions;
  2503. var Constructors = assign({}, ComponentConstructors, this._Extensions, {
  2504. Transition: this._Transition
  2505. });
  2506. forOwn(Constructors, function (Component, key) {
  2507. var component = Component(_this2, Components2, _this2._options);
  2508. Components2[key] = component;
  2509. component.setup && component.setup();
  2510. });
  2511. forOwn(Components2, function (component) {
  2512. component.mount && component.mount();
  2513. });
  2514. this.emit(EVENT_MOUNTED);
  2515. addClass(this.root, CLASS_INITIALIZED);
  2516. state.set(IDLE);
  2517. this.emit(EVENT_READY);
  2518. return this;
  2519. };
  2520. _proto.sync = function sync(splide) {
  2521. this.splides.push({
  2522. splide: splide
  2523. });
  2524. splide.splides.push({
  2525. splide: this,
  2526. isParent: true
  2527. });
  2528. if (this.state.is(IDLE)) {
  2529. this._Components.Sync.remount();
  2530. splide.Components.Sync.remount();
  2531. }
  2532. return this;
  2533. };
  2534. _proto.go = function go(control) {
  2535. this._Components.Controller.go(control);
  2536. return this;
  2537. };
  2538. _proto.on = function on(events, callback) {
  2539. this.event.on(events, callback);
  2540. return this;
  2541. };
  2542. _proto.off = function off(events) {
  2543. this.event.off(events);
  2544. return this;
  2545. };
  2546. _proto.emit = function emit(event) {
  2547. var _this$event;
  2548. (_this$event = this.event).emit.apply(_this$event, [event].concat(slice(arguments, 1)));
  2549. return this;
  2550. };
  2551. _proto.add = function add(slides, index) {
  2552. this._Components.Slides.add(slides, index);
  2553. return this;
  2554. };
  2555. _proto.remove = function remove(matcher) {
  2556. this._Components.Slides.remove(matcher);
  2557. return this;
  2558. };
  2559. _proto.is = function is(type) {
  2560. return this._options.type === type;
  2561. };
  2562. _proto.refresh = function refresh() {
  2563. this.emit(EVENT_REFRESH);
  2564. return this;
  2565. };
  2566. _proto.destroy = function destroy(completely) {
  2567. if (completely === void 0) {
  2568. completely = true;
  2569. }
  2570. var event = this.event,
  2571. state = this.state;
  2572. if (state.is(CREATED)) {
  2573. EventInterface(this).on(EVENT_READY, this.destroy.bind(this, completely));
  2574. } else {
  2575. forOwn(this._Components, function (component) {
  2576. component.destroy && component.destroy(completely);
  2577. }, true);
  2578. event.emit(EVENT_DESTROY);
  2579. event.destroy();
  2580. completely && empty(this.splides);
  2581. state.set(DESTROYED);
  2582. }
  2583. return this;
  2584. };
  2585. _createClass(_Splide, [{
  2586. key: "options",
  2587. get: function get() {
  2588. return this._options;
  2589. },
  2590. set: function set(options) {
  2591. var _options = this._options;
  2592. merge(_options, options);
  2593. if (!this.state.is(CREATED)) {
  2594. this.emit(EVENT_UPDATED, _options);
  2595. }
  2596. }
  2597. }, {
  2598. key: "length",
  2599. get: function get() {
  2600. return this._Components.Slides.getLength(true);
  2601. }
  2602. }, {
  2603. key: "index",
  2604. get: function get() {
  2605. return this._Components.Controller.getIndex();
  2606. }
  2607. }]);
  2608. return _Splide;
  2609. }();
  2610. var Splide = _Splide;
  2611. Splide.defaults = {};
  2612. Splide.STATES = STATES;
  2613. return Splide;
  2614. });