splide.js 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  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.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_INITIALIZED = "is-initialized";
  605. var CLASS_ACTIVE = "is-active";
  606. var CLASS_PREV = "is-prev";
  607. var CLASS_NEXT = "is-next";
  608. var CLASS_VISIBLE = "is-visible";
  609. var CLASS_LOADING = "is-loading";
  610. var STATUS_CLASSES = [CLASS_ACTIVE, CLASS_VISIBLE, CLASS_PREV, CLASS_NEXT, CLASS_LOADING];
  611. var CLASSES = {
  612. slide: CLASS_SLIDE,
  613. clone: CLASS_CLONE,
  614. arrows: CLASS_ARROWS,
  615. arrow: CLASS_ARROW,
  616. prev: CLASS_ARROW_PREV,
  617. next: CLASS_ARROW_NEXT,
  618. pagination: CLASS_PAGINATION,
  619. page: CLASS_PAGINATION_PAGE,
  620. spinner: CLASS_SPINNER
  621. };
  622. function closest(from, selector) {
  623. if (isFunction(from.closest)) {
  624. return from.closest(selector);
  625. }
  626. var elm = from;
  627. while (elm && elm.nodeType === 1) {
  628. if (matches(elm, selector)) {
  629. break;
  630. }
  631. elm = elm.parentElement;
  632. }
  633. return elm;
  634. }
  635. function Elements(Splide2, Components2, options) {
  636. var _EventInterface = EventInterface(Splide2),
  637. on = _EventInterface.on;
  638. var root = Splide2.root;
  639. var i18n = options.i18n;
  640. var elements = {};
  641. var slides = [];
  642. var rootClasses = [];
  643. var trackClasses = [];
  644. var track;
  645. var list;
  646. function setup() {
  647. collect();
  648. init();
  649. update();
  650. }
  651. function mount() {
  652. on(EVENT_REFRESH, destroy);
  653. on(EVENT_REFRESH, setup);
  654. on(EVENT_UPDATED, update);
  655. }
  656. function destroy() {
  657. empty(slides);
  658. removeClass(root, rootClasses);
  659. removeClass(track, trackClasses);
  660. removeAttribute([root, track, list], ALL_ATTRIBUTES.concat("style"));
  661. }
  662. function update() {
  663. removeClass(root, rootClasses);
  664. removeClass(track, trackClasses);
  665. rootClasses = getClasses(CLASS_ROOT);
  666. trackClasses = getClasses(CLASS_TRACK);
  667. addClass(root, rootClasses);
  668. addClass(track, trackClasses);
  669. }
  670. function collect() {
  671. track = find("." + CLASS_TRACK);
  672. list = child(track, "." + CLASS_LIST);
  673. assert(track && list, "A track/list element is missing.");
  674. push(slides, children(list, "." + CLASS_SLIDE + ":not(." + CLASS_CLONE + ")"));
  675. forOwn({
  676. arrows: CLASS_ARROWS,
  677. pagination: CLASS_PAGINATION,
  678. autoplay: CLASS_AUTOPLAY,
  679. prev: CLASS_ARROW_PREV,
  680. next: CLASS_ARROW_NEXT,
  681. bar: CLASS_PROGRESS_BAR,
  682. play: CLASS_PLAY,
  683. pause: CLASS_PAUSE
  684. }, function (className, key) {
  685. elements[key] = find("." + className);
  686. });
  687. assign(elements, {
  688. root: root,
  689. track: track,
  690. list: list,
  691. slides: slides
  692. });
  693. }
  694. function init() {
  695. var id = root.id || uniqueId(PROJECT_CODE);
  696. root.id = id;
  697. track.id = track.id || id + "-track";
  698. list.id = list.id || id + "-list";
  699. setAttribute(root, ARIA_ROLEDESCRIPTION, i18n.carousel);
  700. setAttribute(root, ROLE, root.tagName !== "SECTION" && options.role || "");
  701. setAttribute(list, ROLE, "none");
  702. }
  703. function find(selector) {
  704. var elm = query(root, selector);
  705. return elm && closest(elm, "." + CLASS_ROOT) === root ? elm : null;
  706. }
  707. function getClasses(base) {
  708. return [base + "--" + options.type, base + "--" + options.direction, options.drag && base + "--draggable", options.isNavigation && base + "--nav", base === CLASS_ROOT && CLASS_ACTIVE];
  709. }
  710. return assign(elements, {
  711. setup: setup,
  712. mount: mount,
  713. destroy: destroy
  714. });
  715. }
  716. var SLIDE = "slide";
  717. var LOOP = "loop";
  718. var FADE = "fade";
  719. function Slide$1(Splide2, index, slideIndex, slide) {
  720. var _EventInterface2 = EventInterface(Splide2),
  721. on = _EventInterface2.on,
  722. emit = _EventInterface2.emit,
  723. bind = _EventInterface2.bind,
  724. destroyEvents = _EventInterface2.destroy;
  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. var resolve = Components.Direction.resolve;
  733. var styles = getAttribute(slide, "style");
  734. var label = getAttribute(slide, ARIA_LABEL);
  735. var isClone = slideIndex > -1;
  736. var container = child(slide, "." + CLASS_CONTAINER);
  737. var destroyed;
  738. function mount() {
  739. if (!isClone) {
  740. slide.id = root.id + "-slide" + pad(index + 1);
  741. setAttribute(slide, ROLE, pagination ? "tabpanel" : "group");
  742. setAttribute(slide, ARIA_ROLEDESCRIPTION, pagination ? "" : i18n.slide);
  743. setAttribute(slide, ARIA_LABEL, label || format(i18n.slideLabel, [index + 1, Splide2.length]));
  744. }
  745. listen();
  746. }
  747. function listen() {
  748. bind(slide, "click", apply(emit, EVENT_CLICK, self));
  749. bind(slide, "keydown", apply(emit, EVENT_SLIDE_KEYDOWN, self));
  750. on([EVENT_REFRESH, EVENT_REPOSITIONED, EVENT_MOVED, EVENT_SCROLLED], apply(update, false));
  751. on(EVENT_SHIFTED, apply(update, true));
  752. on(EVENT_NAVIGATION_MOUNTED, initNavigation);
  753. if (updateOnMove) {
  754. on(EVENT_MOVE, onMove);
  755. }
  756. }
  757. function destroy() {
  758. destroyed = true;
  759. destroyEvents();
  760. removeClass(slide, STATUS_CLASSES);
  761. removeAttribute(slide, ALL_ATTRIBUTES);
  762. setAttribute(slide, "style", styles);
  763. setAttribute(slide, ARIA_LABEL, label || "");
  764. }
  765. function initNavigation() {
  766. var controls = Splide2.splides.map(function (target) {
  767. var Slide2 = target.splide.Components.Slides.getAt(index);
  768. return Slide2 ? Slide2.slide.id : "";
  769. }).join(" ");
  770. setAttribute(slide, ARIA_LABEL, format(i18n.slideX, (isClone ? slideIndex : index) + 1));
  771. setAttribute(slide, ARIA_CONTROLS, controls);
  772. updateAttributes();
  773. }
  774. function onMove() {
  775. if (!destroyed) {
  776. update(true);
  777. }
  778. }
  779. function update(excludeAttributes) {
  780. if (!destroyed) {
  781. var curr = Splide2.index;
  782. updateActivity();
  783. updateVisibility();
  784. toggleClass(slide, CLASS_PREV, index === curr - 1);
  785. toggleClass(slide, CLASS_NEXT, index === curr + 1);
  786. !excludeAttributes && updateAttributes();
  787. }
  788. }
  789. function updateActivity() {
  790. var active = isActive();
  791. if (active !== hasClass(slide, CLASS_ACTIVE)) {
  792. toggleClass(slide, CLASS_ACTIVE, active);
  793. emit(active ? EVENT_ACTIVE : EVENT_INACTIVE, self);
  794. }
  795. }
  796. function updateVisibility() {
  797. var visible = isVisible();
  798. if (visible !== hasClass(slide, CLASS_VISIBLE)) {
  799. toggleClass(slide, CLASS_VISIBLE, visible);
  800. emit(visible ? EVENT_VISIBLE : EVENT_HIDDEN, self);
  801. }
  802. if (!visible && document.activeElement === slide) {
  803. var Slide2 = Components.Slides.getAt(Splide2.index);
  804. Slide2 && focus(Slide2.slide);
  805. }
  806. }
  807. function updateAttributes() {
  808. var active = isActive();
  809. var hidden = !isVisible() && (!active || isClone);
  810. setAttribute(slide, ARIA_CURRENT, isNavigation && active || "");
  811. setAttribute(slide, ARIA_HIDDEN, hidden || "");
  812. setAttribute(slide, TAB_INDEX, !hidden && options.slideFocus ? 0 : "");
  813. setAttribute(queryAll(slide, options.focusableNodes || ""), TAB_INDEX, hidden ? -1 : "");
  814. }
  815. function style$1(prop, value, useContainer) {
  816. style(useContainer && container || slide, prop, value);
  817. }
  818. function isActive() {
  819. var curr = Splide2.index;
  820. return curr === index || options.cloneStatus && curr === slideIndex;
  821. }
  822. function isVisible() {
  823. if (Splide2.is(FADE)) {
  824. return isActive();
  825. }
  826. var trackRect = rect(Components.Elements.track);
  827. var slideRect = rect(slide);
  828. var left = resolve("left");
  829. var right = resolve("right");
  830. return floor(trackRect[left]) <= ceil(slideRect[left]) && floor(slideRect[right]) <= ceil(trackRect[right]);
  831. }
  832. function isWithin(from, distance) {
  833. var diff = abs(from - index);
  834. if (!isClone && (options.rewind || Splide2.is(LOOP))) {
  835. diff = min(diff, Splide2.length - diff);
  836. }
  837. return diff <= distance;
  838. }
  839. var self = {
  840. index: index,
  841. slideIndex: slideIndex,
  842. slide: slide,
  843. container: container,
  844. isClone: isClone,
  845. mount: mount,
  846. destroy: destroy,
  847. update: update,
  848. style: style$1,
  849. isWithin: isWithin
  850. };
  851. return self;
  852. }
  853. function Slides(Splide2, Components2, options) {
  854. var _EventInterface3 = EventInterface(Splide2),
  855. on = _EventInterface3.on,
  856. emit = _EventInterface3.emit,
  857. bind = _EventInterface3.bind;
  858. var _Components2$Elements = Components2.Elements,
  859. slides = _Components2$Elements.slides,
  860. list = _Components2$Elements.list;
  861. var Slides2 = [];
  862. function mount() {
  863. init();
  864. on(EVENT_REFRESH, destroy);
  865. on(EVENT_REFRESH, init);
  866. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  867. Slides2.sort(function (Slide1, Slide2) {
  868. return Slide1.index - Slide2.index;
  869. });
  870. });
  871. }
  872. function init() {
  873. slides.forEach(function (slide, index) {
  874. register(slide, index, -1);
  875. });
  876. }
  877. function destroy() {
  878. forEach$1(function (Slide2) {
  879. Slide2.destroy();
  880. });
  881. empty(Slides2);
  882. }
  883. function update() {
  884. forEach$1(function (Slide2) {
  885. Slide2.update();
  886. });
  887. }
  888. function register(slide, index, slideIndex) {
  889. var object = Slide$1(Splide2, index, slideIndex, slide);
  890. object.mount();
  891. Slides2.push(object);
  892. }
  893. function get(excludeClones) {
  894. return excludeClones ? filter(function (Slide2) {
  895. return !Slide2.isClone;
  896. }) : Slides2;
  897. }
  898. function getIn(page) {
  899. var Controller = Components2.Controller;
  900. var index = Controller.toIndex(page);
  901. var max = Controller.hasFocus() ? 1 : options.perPage;
  902. return filter(function (Slide2) {
  903. return between(Slide2.index, index, index + max - 1);
  904. });
  905. }
  906. function getAt(index) {
  907. return filter(index)[0];
  908. }
  909. function add(items, index) {
  910. forEach(items, function (slide) {
  911. if (isString(slide)) {
  912. slide = parseHtml(slide);
  913. }
  914. if (isHTMLElement(slide)) {
  915. var ref = slides[index];
  916. ref ? before(slide, ref) : append(list, slide);
  917. addClass(slide, options.classes.slide);
  918. observeImages(slide, apply(emit, EVENT_RESIZE));
  919. }
  920. });
  921. emit(EVENT_REFRESH);
  922. }
  923. function remove$1(matcher) {
  924. remove(filter(matcher).map(function (Slide2) {
  925. return Slide2.slide;
  926. }));
  927. emit(EVENT_REFRESH);
  928. }
  929. function forEach$1(iteratee, excludeClones) {
  930. get(excludeClones).forEach(iteratee);
  931. }
  932. function filter(matcher) {
  933. return Slides2.filter(isFunction(matcher) ? matcher : function (Slide2) {
  934. return isString(matcher) ? matches(Slide2.slide, matcher) : includes(toArray(matcher), Slide2.index);
  935. });
  936. }
  937. function style(prop, value, useContainer) {
  938. forEach$1(function (Slide2) {
  939. Slide2.style(prop, value, useContainer);
  940. });
  941. }
  942. function observeImages(elm, callback) {
  943. var images = queryAll(elm, "img");
  944. var length = images.length;
  945. if (length) {
  946. images.forEach(function (img) {
  947. bind(img, "load error", function () {
  948. if (! --length) {
  949. callback();
  950. }
  951. });
  952. });
  953. } else {
  954. callback();
  955. }
  956. }
  957. function getLength(excludeClones) {
  958. return excludeClones ? slides.length : Slides2.length;
  959. }
  960. function isEnough() {
  961. return Slides2.length > options.perPage;
  962. }
  963. return {
  964. mount: mount,
  965. destroy: destroy,
  966. update: update,
  967. register: register,
  968. get: get,
  969. getIn: getIn,
  970. getAt: getAt,
  971. add: add,
  972. remove: remove$1,
  973. forEach: forEach$1,
  974. filter: filter,
  975. style: style,
  976. getLength: getLength,
  977. isEnough: isEnough
  978. };
  979. }
  980. function Layout(Splide2, Components2, options) {
  981. var _EventInterface4 = EventInterface(Splide2),
  982. on = _EventInterface4.on,
  983. bind = _EventInterface4.bind,
  984. emit = _EventInterface4.emit;
  985. var Slides = Components2.Slides;
  986. var resolve = Components2.Direction.resolve;
  987. var _Components2$Elements2 = Components2.Elements,
  988. root = _Components2$Elements2.root,
  989. track = _Components2$Elements2.track,
  990. list = _Components2$Elements2.list;
  991. var getAt = Slides.getAt,
  992. styleSlides = Slides.style;
  993. var vertical;
  994. var rootRect;
  995. function mount() {
  996. init();
  997. bind(window, "resize load", Throttle(apply(emit, EVENT_RESIZE)));
  998. on([EVENT_UPDATED, EVENT_REFRESH], init);
  999. on(EVENT_RESIZE, resize);
  1000. }
  1001. function init() {
  1002. rootRect = null;
  1003. vertical = options.direction === TTB;
  1004. style(root, "maxWidth", unit(options.width));
  1005. style(track, resolve("paddingLeft"), cssPadding(false));
  1006. style(track, resolve("paddingRight"), cssPadding(true));
  1007. resize();
  1008. }
  1009. function resize() {
  1010. var newRect = rect(root);
  1011. if (!rootRect || rootRect.width !== newRect.width || rootRect.height !== newRect.height) {
  1012. style(track, "height", cssTrackHeight());
  1013. styleSlides(resolve("marginRight"), unit(options.gap));
  1014. styleSlides("width", cssSlideWidth() || null);
  1015. styleSlides("height", cssSlideHeight() || null, true);
  1016. rootRect = newRect;
  1017. emit(EVENT_RESIZED);
  1018. }
  1019. }
  1020. function cssPadding(right) {
  1021. var padding = options.padding;
  1022. var prop = resolve(right ? "right" : "left");
  1023. return padding && unit(padding[prop] || (isObject(padding) ? 0 : padding)) || "0px";
  1024. }
  1025. function cssTrackHeight() {
  1026. var height = "";
  1027. if (vertical) {
  1028. height = cssHeight();
  1029. assert(height, "height or heightRatio is missing.");
  1030. height = "calc(" + height + " - " + cssPadding(false) + " - " + cssPadding(true) + ")";
  1031. }
  1032. return height;
  1033. }
  1034. function cssHeight() {
  1035. return unit(options.height || rect(list).width * options.heightRatio);
  1036. }
  1037. function cssSlideWidth() {
  1038. return options.autoWidth ? "" : unit(options.fixedWidth) || (vertical ? "" : cssSlideSize());
  1039. }
  1040. function cssSlideHeight() {
  1041. return unit(options.fixedHeight) || (vertical ? options.autoHeight ? "" : cssSlideSize() : cssHeight());
  1042. }
  1043. function cssSlideSize() {
  1044. var gap = unit(options.gap);
  1045. return "calc((100%" + (gap && " + " + gap) + ")/" + (options.perPage || 1) + (gap && " - " + gap) + ")";
  1046. }
  1047. function listSize() {
  1048. return rect(list)[resolve("width")];
  1049. }
  1050. function slideSize(index, withoutGap) {
  1051. var Slide = getAt(index || 0);
  1052. return Slide ? rect(Slide.slide)[resolve("width")] + (withoutGap ? 0 : getGap()) : 0;
  1053. }
  1054. function totalSize(index, withoutGap) {
  1055. var Slide = getAt(index);
  1056. if (Slide) {
  1057. var right = rect(Slide.slide)[resolve("right")];
  1058. var left = rect(list)[resolve("left")];
  1059. return abs(right - left) + (withoutGap ? 0 : getGap());
  1060. }
  1061. return 0;
  1062. }
  1063. function sliderSize() {
  1064. return totalSize(Splide2.length - 1, true) - totalSize(-1, true);
  1065. }
  1066. function getGap() {
  1067. var Slide = getAt(0);
  1068. return Slide && parseFloat(style(Slide.slide, resolve("marginRight"))) || 0;
  1069. }
  1070. function getPadding(right) {
  1071. return parseFloat(style(track, resolve("padding" + (right ? "Right" : "Left")))) || 0;
  1072. }
  1073. return {
  1074. mount: mount,
  1075. listSize: listSize,
  1076. slideSize: slideSize,
  1077. sliderSize: sliderSize,
  1078. totalSize: totalSize,
  1079. getPadding: getPadding
  1080. };
  1081. }
  1082. var MULTIPLIER = 2;
  1083. function Clones(Splide2, Components2, options) {
  1084. var _EventInterface5 = EventInterface(Splide2),
  1085. on = _EventInterface5.on,
  1086. emit = _EventInterface5.emit;
  1087. var Elements = Components2.Elements,
  1088. Slides = Components2.Slides;
  1089. var resolve = Components2.Direction.resolve;
  1090. var clones = [];
  1091. var cloneCount;
  1092. function mount() {
  1093. init();
  1094. on(EVENT_REFRESH, destroy);
  1095. on(EVENT_REFRESH, init);
  1096. on([EVENT_UPDATED, EVENT_RESIZE], observe);
  1097. }
  1098. function init() {
  1099. if (cloneCount = computeCloneCount()) {
  1100. generate(cloneCount);
  1101. emit(EVENT_RESIZE);
  1102. }
  1103. }
  1104. function destroy() {
  1105. remove(clones);
  1106. empty(clones);
  1107. }
  1108. function observe() {
  1109. if (cloneCount < computeCloneCount()) {
  1110. emit(EVENT_REFRESH);
  1111. }
  1112. }
  1113. function generate(count) {
  1114. var slides = Slides.get().slice();
  1115. var length = slides.length;
  1116. if (length) {
  1117. while (slides.length < count) {
  1118. push(slides, slides);
  1119. }
  1120. push(slides.slice(-count), slides.slice(0, count)).forEach(function (Slide, index) {
  1121. var isHead = index < count;
  1122. var clone = cloneDeep(Slide.slide, index);
  1123. isHead ? before(clone, slides[0].slide) : append(Elements.list, clone);
  1124. push(clones, clone);
  1125. Slides.register(clone, index - count + (isHead ? 0 : length), Slide.index);
  1126. });
  1127. }
  1128. }
  1129. function cloneDeep(elm, index) {
  1130. var clone = elm.cloneNode(true);
  1131. addClass(clone, options.classes.clone);
  1132. clone.id = Splide2.root.id + "-clone" + pad(index + 1);
  1133. return clone;
  1134. }
  1135. function computeCloneCount() {
  1136. var clones2 = options.clones;
  1137. if (!Splide2.is(LOOP)) {
  1138. clones2 = 0;
  1139. } else if (!clones2) {
  1140. var fixedSize = options[resolve("fixedWidth")] && Components2.Layout.slideSize(0);
  1141. var fixedCount = fixedSize && ceil(rect(Elements.track)[resolve("width")] / fixedSize);
  1142. clones2 = fixedCount || options[resolve("autoWidth")] && Splide2.length || options.perPage * MULTIPLIER;
  1143. }
  1144. return clones2;
  1145. }
  1146. return {
  1147. mount: mount,
  1148. destroy: destroy
  1149. };
  1150. }
  1151. function Move(Splide2, Components2, options) {
  1152. var _EventInterface6 = EventInterface(Splide2),
  1153. on = _EventInterface6.on,
  1154. emit = _EventInterface6.emit;
  1155. var set = Splide2.state.set;
  1156. var _Components2$Layout = Components2.Layout,
  1157. slideSize = _Components2$Layout.slideSize,
  1158. getPadding = _Components2$Layout.getPadding,
  1159. totalSize = _Components2$Layout.totalSize,
  1160. listSize = _Components2$Layout.listSize,
  1161. sliderSize = _Components2$Layout.sliderSize;
  1162. var _Components2$Directio = Components2.Direction,
  1163. resolve = _Components2$Directio.resolve,
  1164. orient = _Components2$Directio.orient;
  1165. var _Components2$Elements3 = Components2.Elements,
  1166. list = _Components2$Elements3.list,
  1167. track = _Components2$Elements3.track;
  1168. var Transition;
  1169. function mount() {
  1170. Transition = Components2.Transition;
  1171. on([EVENT_MOUNTED, EVENT_RESIZED, EVENT_UPDATED, EVENT_REFRESH], reposition);
  1172. }
  1173. function reposition() {
  1174. if (!Components2.Controller.isBusy()) {
  1175. Components2.Scroll.cancel();
  1176. jump(Splide2.index);
  1177. emit(EVENT_REPOSITIONED);
  1178. }
  1179. }
  1180. function move(dest, index, prev, callback) {
  1181. var position = getPosition();
  1182. if (dest !== index && canShift(dest > index)) {
  1183. cancel();
  1184. translate(shift(position, dest > index), true);
  1185. }
  1186. set(MOVING);
  1187. emit(EVENT_MOVE, index, prev, dest);
  1188. Transition.start(index, function () {
  1189. set(IDLE);
  1190. emit(EVENT_MOVED, index, prev, dest);
  1191. callback && callback();
  1192. });
  1193. }
  1194. function jump(index) {
  1195. translate(toPosition(index, true));
  1196. }
  1197. function translate(position, preventLoop) {
  1198. if (!Splide2.is(FADE)) {
  1199. var destination = preventLoop ? position : loop(position);
  1200. style(list, "transform", "translate" + resolve("X") + "(" + destination + "px)");
  1201. position !== destination && emit(EVENT_SHIFTED);
  1202. }
  1203. }
  1204. function loop(position) {
  1205. if (Splide2.is(LOOP)) {
  1206. var diff = orient(position - getPosition());
  1207. var exceededMin = exceededLimit(false, position) && diff < 0;
  1208. var exceededMax = exceededLimit(true, position) && diff > 0;
  1209. if (exceededMin || exceededMax) {
  1210. position = shift(position, exceededMax);
  1211. }
  1212. }
  1213. return position;
  1214. }
  1215. function shift(position, backwards) {
  1216. var excess = position - getLimit(backwards);
  1217. var size = sliderSize();
  1218. position -= orient(size * (ceil(abs(excess) / size) || 1)) * (backwards ? 1 : -1);
  1219. return position;
  1220. }
  1221. function cancel() {
  1222. translate(getPosition());
  1223. Transition.cancel();
  1224. }
  1225. function toIndex(position) {
  1226. var Slides = Components2.Slides.get();
  1227. var index = 0;
  1228. var minDistance = Infinity;
  1229. for (var i = 0; i < Slides.length; i++) {
  1230. var slideIndex = Slides[i].index;
  1231. var distance = abs(toPosition(slideIndex, true) - position);
  1232. if (distance <= minDistance) {
  1233. minDistance = distance;
  1234. index = slideIndex;
  1235. } else {
  1236. break;
  1237. }
  1238. }
  1239. return index;
  1240. }
  1241. function toPosition(index, trimming) {
  1242. var position = orient(totalSize(index - 1) - offset(index));
  1243. return trimming ? trim(position) : position;
  1244. }
  1245. function getPosition() {
  1246. var left = resolve("left");
  1247. return rect(list)[left] - rect(track)[left] + orient(getPadding(false));
  1248. }
  1249. function trim(position) {
  1250. if (options.trimSpace && Splide2.is(SLIDE)) {
  1251. position = clamp(position, 0, orient(sliderSize() - listSize()));
  1252. }
  1253. return position;
  1254. }
  1255. function offset(index) {
  1256. var focus = options.focus;
  1257. return focus === "center" ? (listSize() - slideSize(index, true)) / 2 : +focus * slideSize(index) || 0;
  1258. }
  1259. function getLimit(max) {
  1260. return toPosition(max ? Components2.Controller.getEnd() : 0, !!options.trimSpace);
  1261. }
  1262. function canShift(backwards) {
  1263. var shifted = orient(shift(getPosition(), backwards));
  1264. return backwards ? shifted >= 0 : shifted <= list["scroll" + resolve("Width")] - rect(track)[resolve("width")];
  1265. }
  1266. function exceededLimit(max, position) {
  1267. position = isUndefined(position) ? getPosition() : position;
  1268. var exceededMin = max !== true && orient(position) < orient(getLimit(false));
  1269. var exceededMax = max !== false && orient(position) > orient(getLimit(true));
  1270. return exceededMin || exceededMax;
  1271. }
  1272. return {
  1273. mount: mount,
  1274. move: move,
  1275. jump: jump,
  1276. translate: translate,
  1277. shift: shift,
  1278. cancel: cancel,
  1279. toIndex: toIndex,
  1280. toPosition: toPosition,
  1281. getPosition: getPosition,
  1282. getLimit: getLimit,
  1283. exceededLimit: exceededLimit,
  1284. reposition: reposition
  1285. };
  1286. }
  1287. function Controller(Splide2, Components2, options) {
  1288. var _EventInterface7 = EventInterface(Splide2),
  1289. on = _EventInterface7.on;
  1290. var Move = Components2.Move;
  1291. var getPosition = Move.getPosition,
  1292. getLimit = Move.getLimit,
  1293. toPosition = Move.toPosition;
  1294. var _Components2$Slides = Components2.Slides,
  1295. isEnough = _Components2$Slides.isEnough,
  1296. getLength = _Components2$Slides.getLength;
  1297. var isLoop = Splide2.is(LOOP);
  1298. var isSlide = Splide2.is(SLIDE);
  1299. var getNext = apply(getAdjacent, false);
  1300. var getPrev = apply(getAdjacent, true);
  1301. var currIndex = options.start || 0;
  1302. var prevIndex = currIndex;
  1303. var slideCount;
  1304. var perMove;
  1305. var perPage;
  1306. function mount() {
  1307. init();
  1308. on([EVENT_UPDATED, EVENT_REFRESH], init);
  1309. }
  1310. function init() {
  1311. slideCount = getLength(true);
  1312. perMove = options.perMove;
  1313. perPage = options.perPage;
  1314. var index = clamp(currIndex, 0, slideCount - 1);
  1315. if (index !== currIndex) {
  1316. currIndex = index;
  1317. Move.reposition();
  1318. }
  1319. }
  1320. function go(control, allowSameIndex, callback) {
  1321. if (!isBusy()) {
  1322. var dest = parse(control);
  1323. var index = validate(dest);
  1324. if (index > -1 && (allowSameIndex || index !== currIndex)) {
  1325. setIndex(index);
  1326. options.useScroll ? scrollTo(dest, options.speed, callback) : Move.move(dest, index, prevIndex, callback);
  1327. }
  1328. }
  1329. }
  1330. function scroll(destination, duration, snap, callback) {
  1331. Components2.Scroll.scroll(destination, duration, snap, function () {
  1332. setIndex(loop(Move.toIndex(Move.getPosition())));
  1333. callback && callback();
  1334. });
  1335. }
  1336. function scrollTo(index, duration, callback) {
  1337. scroll(toPosition(index, true), duration, false, callback);
  1338. }
  1339. function parse(control) {
  1340. var index = currIndex;
  1341. if (isString(control)) {
  1342. var _ref = control.match(/([+\-<>])(\d+)?/) || [],
  1343. indicator = _ref[1],
  1344. number = _ref[2];
  1345. if (indicator === "+" || indicator === "-") {
  1346. index = computeDestIndex(currIndex + +("" + indicator + (+number || 1)), currIndex, true);
  1347. } else if (indicator === ">") {
  1348. index = number ? toIndex(+number) : getNext(true);
  1349. } else if (indicator === "<") {
  1350. index = getPrev(true);
  1351. }
  1352. } else {
  1353. index = isLoop ? control : clamp(control, 0, getEnd());
  1354. }
  1355. return index;
  1356. }
  1357. function getAdjacent(prev, destination) {
  1358. var number = perMove || (hasFocus() ? 1 : perPage);
  1359. var dest = computeDestIndex(currIndex + number * (prev ? -1 : 1), currIndex);
  1360. if (dest === -1 && isSlide) {
  1361. if (!approximatelyEqual(getPosition(), getLimit(!prev), 1)) {
  1362. return prev ? 0 : getEnd();
  1363. }
  1364. }
  1365. return destination ? dest : loop(dest);
  1366. }
  1367. function computeDestIndex(dest, from, incremental) {
  1368. if (isEnough()) {
  1369. var end = getEnd();
  1370. if (dest < 0 || dest > end) {
  1371. if (between(0, dest, from, true) || between(end, from, dest, true)) {
  1372. dest = toIndex(toPage(dest));
  1373. } else {
  1374. if (isLoop) {
  1375. dest = perMove || hasFocus() ? dest : dest < 0 ? -(slideCount % perPage || perPage) : slideCount;
  1376. } else if (options.rewind) {
  1377. dest = dest < 0 ? end : 0;
  1378. } else {
  1379. dest = -1;
  1380. }
  1381. }
  1382. } else {
  1383. if (!incremental && dest !== from) {
  1384. dest = perMove ? dest : toIndex(toPage(from) + (dest < from ? -1 : 1));
  1385. }
  1386. }
  1387. } else {
  1388. dest = -1;
  1389. }
  1390. return dest;
  1391. }
  1392. function validate(dest) {
  1393. if (options.trimSpace === "move" && dest !== currIndex) {
  1394. var position = getPosition();
  1395. while (position === toPosition(dest, true) && between(dest, 0, Splide2.length - 1, true)) {
  1396. dest < currIndex ? --dest : ++dest;
  1397. }
  1398. }
  1399. return loop(dest);
  1400. }
  1401. function loop(index) {
  1402. return isLoop ? (index + slideCount) % slideCount || 0 : index;
  1403. }
  1404. function getEnd() {
  1405. return max(slideCount - (hasFocus() || isLoop && perMove ? 1 : perPage), 0);
  1406. }
  1407. function toIndex(page) {
  1408. return clamp(hasFocus() ? page : perPage * page, 0, getEnd());
  1409. }
  1410. function toPage(index) {
  1411. return hasFocus() ? index : floor((index >= getEnd() ? slideCount - 1 : index) / perPage);
  1412. }
  1413. function toDest(destination) {
  1414. var closest = Move.toIndex(destination);
  1415. return isSlide ? clamp(closest, 0, getEnd()) : closest;
  1416. }
  1417. function setIndex(index) {
  1418. if (index !== currIndex) {
  1419. prevIndex = currIndex;
  1420. currIndex = index;
  1421. }
  1422. }
  1423. function getIndex(prev) {
  1424. return prev ? prevIndex : currIndex;
  1425. }
  1426. function hasFocus() {
  1427. return !isUndefined(options.focus) || options.isNavigation;
  1428. }
  1429. function isBusy() {
  1430. return Splide2.state.is([MOVING, SCROLLING]) && !!options.waitForTransition;
  1431. }
  1432. return {
  1433. mount: mount,
  1434. go: go,
  1435. scroll: scroll,
  1436. scrollTo: scrollTo,
  1437. getNext: getNext,
  1438. getPrev: getPrev,
  1439. getAdjacent: getAdjacent,
  1440. getEnd: getEnd,
  1441. setIndex: setIndex,
  1442. getIndex: getIndex,
  1443. toIndex: toIndex,
  1444. toPage: toPage,
  1445. toDest: toDest,
  1446. hasFocus: hasFocus,
  1447. isBusy: isBusy
  1448. };
  1449. }
  1450. var XML_NAME_SPACE = "http://www.w3.org/2000/svg";
  1451. 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";
  1452. var SIZE = 40;
  1453. function Arrows(Splide2, Components2, options) {
  1454. var _EventInterface8 = EventInterface(Splide2),
  1455. on = _EventInterface8.on,
  1456. bind = _EventInterface8.bind,
  1457. emit = _EventInterface8.emit,
  1458. destroyEvents = _EventInterface8.destroy;
  1459. var classes = options.classes,
  1460. i18n = options.i18n;
  1461. var Elements = Components2.Elements,
  1462. Controller = Components2.Controller;
  1463. var userArrows = Elements.arrows;
  1464. var wrapper = userArrows;
  1465. var prev = Elements.prev;
  1466. var next = Elements.next;
  1467. var created;
  1468. var wrapperClasses;
  1469. var arrows = {};
  1470. function mount() {
  1471. init();
  1472. on(EVENT_UPDATED, remount);
  1473. }
  1474. function remount() {
  1475. destroy();
  1476. mount();
  1477. }
  1478. function init() {
  1479. var enabled = options.arrows;
  1480. if (enabled && !(prev && next)) {
  1481. createArrows();
  1482. }
  1483. if (prev && next) {
  1484. assign(arrows, {
  1485. prev: prev,
  1486. next: next
  1487. });
  1488. display(wrapper, enabled ? "" : "none");
  1489. addClass(wrapper, wrapperClasses = CLASS_ARROWS + "--" + options.direction);
  1490. if (enabled) {
  1491. listen();
  1492. update();
  1493. setAttribute([prev, next], ARIA_CONTROLS, Elements.list.id);
  1494. emit(EVENT_ARROWS_MOUNTED, prev, next);
  1495. }
  1496. }
  1497. }
  1498. function destroy() {
  1499. destroyEvents();
  1500. removeClass(wrapper, wrapperClasses);
  1501. if (created) {
  1502. remove(userArrows ? [prev, next] : wrapper);
  1503. prev = next = null;
  1504. } else {
  1505. removeAttribute([prev, next], ALL_ATTRIBUTES);
  1506. }
  1507. }
  1508. function listen() {
  1509. on([EVENT_MOVED, EVENT_REFRESH, EVENT_SCROLLED], update);
  1510. bind(next, "click", apply(go, ">"));
  1511. bind(prev, "click", apply(go, "<"));
  1512. }
  1513. function go(control) {
  1514. Controller.go(control, true);
  1515. }
  1516. function createArrows() {
  1517. wrapper = userArrows || create("div", classes.arrows);
  1518. prev = createArrow(true);
  1519. next = createArrow(false);
  1520. created = true;
  1521. append(wrapper, [prev, next]);
  1522. !userArrows && before(wrapper, Elements.track);
  1523. }
  1524. function createArrow(prev2) {
  1525. 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) + "\" />";
  1526. return parseHtml(arrow);
  1527. }
  1528. function update() {
  1529. var index = Splide2.index;
  1530. var prevIndex = Controller.getPrev();
  1531. var nextIndex = Controller.getNext();
  1532. var prevLabel = prevIndex > -1 && index < prevIndex ? i18n.last : i18n.prev;
  1533. var nextLabel = nextIndex > -1 && index > nextIndex ? i18n.first : i18n.next;
  1534. prev.disabled = prevIndex < 0;
  1535. next.disabled = nextIndex < 0;
  1536. setAttribute(prev, ARIA_LABEL, prevLabel);
  1537. setAttribute(next, ARIA_LABEL, nextLabel);
  1538. emit(EVENT_ARROWS_UPDATED, prev, next, prevIndex, nextIndex);
  1539. }
  1540. return {
  1541. arrows: arrows,
  1542. mount: mount,
  1543. destroy: destroy
  1544. };
  1545. }
  1546. var INTERVAL_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-interval";
  1547. function Autoplay(Splide2, Components2, options) {
  1548. var _EventInterface9 = EventInterface(Splide2),
  1549. on = _EventInterface9.on,
  1550. bind = _EventInterface9.bind,
  1551. emit = _EventInterface9.emit;
  1552. var interval = RequestInterval(options.interval, Splide2.go.bind(Splide2, ">"), update);
  1553. var isPaused = interval.isPaused;
  1554. var Elements = Components2.Elements;
  1555. var autoplay = options.autoplay;
  1556. var hovered;
  1557. var focused;
  1558. var paused = autoplay === "pause";
  1559. function mount() {
  1560. if (autoplay) {
  1561. initButton(true);
  1562. initButton(false);
  1563. listen();
  1564. !paused && play();
  1565. }
  1566. }
  1567. function initButton(forPause) {
  1568. var prop = forPause ? "pause" : "play";
  1569. var button = Elements[prop];
  1570. if (button) {
  1571. setAttribute(button, ARIA_CONTROLS, Elements.track.id);
  1572. setAttribute(button, ARIA_LABEL, options.i18n[prop]);
  1573. bind(button, "click", forPause ? pause : play);
  1574. }
  1575. }
  1576. function listen() {
  1577. var root = Elements.root;
  1578. if (options.pauseOnHover) {
  1579. bind(root, "mouseenter mouseleave", function (e) {
  1580. hovered = e.type === "mouseenter";
  1581. autoToggle();
  1582. });
  1583. }
  1584. if (options.pauseOnFocus) {
  1585. bind(root, "focusin focusout", function (e) {
  1586. focused = e.type === "focusin";
  1587. autoToggle();
  1588. });
  1589. }
  1590. on([EVENT_MOVE, EVENT_SCROLL, EVENT_REFRESH], interval.rewind);
  1591. on(EVENT_MOVE, updateInterval);
  1592. }
  1593. function play() {
  1594. if (isPaused() && Components2.Slides.isEnough()) {
  1595. interval.start(!options.resetProgress);
  1596. focused = hovered = paused = false;
  1597. emit(EVENT_AUTOPLAY_PLAY);
  1598. }
  1599. }
  1600. function pause(manual) {
  1601. if (manual === void 0) {
  1602. manual = true;
  1603. }
  1604. if (!isPaused()) {
  1605. interval.pause();
  1606. emit(EVENT_AUTOPLAY_PAUSE);
  1607. }
  1608. paused = manual;
  1609. }
  1610. function autoToggle() {
  1611. if (!paused) {
  1612. if (!hovered && !focused) {
  1613. play();
  1614. } else {
  1615. pause(false);
  1616. }
  1617. }
  1618. }
  1619. function update(rate) {
  1620. var bar = Elements.bar;
  1621. bar && style(bar, "width", rate * 100 + "%");
  1622. emit(EVENT_AUTOPLAY_PLAYING, rate);
  1623. }
  1624. function updateInterval() {
  1625. var Slide = Components2.Slides.getAt(Splide2.index);
  1626. interval.set(Slide && +getAttribute(Slide.slide, INTERVAL_DATA_ATTRIBUTE) || options.interval);
  1627. }
  1628. return {
  1629. mount: mount,
  1630. destroy: interval.cancel,
  1631. play: play,
  1632. pause: pause,
  1633. isPaused: isPaused
  1634. };
  1635. }
  1636. function Cover(Splide2, Components2, options) {
  1637. var _EventInterface10 = EventInterface(Splide2),
  1638. on = _EventInterface10.on;
  1639. function mount() {
  1640. if (options.cover) {
  1641. on(EVENT_LAZYLOAD_LOADED, apply(toggle, true));
  1642. on([EVENT_MOUNTED, EVENT_UPDATED, EVENT_REFRESH], apply(cover, true));
  1643. }
  1644. }
  1645. function cover(cover2) {
  1646. Components2.Slides.forEach(function (Slide) {
  1647. var img = child(Slide.container || Slide.slide, "img");
  1648. if (img && img.src) {
  1649. toggle(cover2, img, Slide);
  1650. }
  1651. });
  1652. }
  1653. function toggle(cover2, img, Slide) {
  1654. Slide.style("background", cover2 ? "center/cover no-repeat url(\"" + img.src + "\")" : "", true);
  1655. display(img, cover2 ? "none" : "");
  1656. }
  1657. return {
  1658. mount: mount,
  1659. destroy: apply(cover, false)
  1660. };
  1661. }
  1662. var BOUNCE_DIFF_THRESHOLD = 10;
  1663. var BOUNCE_DURATION = 600;
  1664. var FRICTION_FACTOR = 0.6;
  1665. var BASE_VELOCITY = 1.5;
  1666. var MIN_DURATION = 800;
  1667. function Scroll(Splide2, Components2, options) {
  1668. var _EventInterface11 = EventInterface(Splide2),
  1669. on = _EventInterface11.on,
  1670. emit = _EventInterface11.emit;
  1671. var set = Splide2.state.set;
  1672. var Move = Components2.Move;
  1673. var getPosition = Move.getPosition,
  1674. getLimit = Move.getLimit,
  1675. exceededLimit = Move.exceededLimit,
  1676. translate = Move.translate;
  1677. var interval;
  1678. var callback;
  1679. var friction = 1;
  1680. function mount() {
  1681. on(EVENT_MOVE, clear);
  1682. on([EVENT_UPDATED, EVENT_REFRESH], cancel);
  1683. }
  1684. function scroll(destination, duration, snap, onScrolled, noConstrain) {
  1685. var from = getPosition();
  1686. clear();
  1687. if (snap) {
  1688. var size = Components2.Layout.sliderSize();
  1689. var offset = sign(destination) * size * floor(abs(destination) / size) || 0;
  1690. destination = Move.toPosition(Components2.Controller.toDest(destination % size)) + offset;
  1691. }
  1692. friction = 1;
  1693. duration = duration || max(abs(destination - from) / BASE_VELOCITY, MIN_DURATION);
  1694. callback = onScrolled;
  1695. interval = RequestInterval(duration, onEnd, apply(update, from, destination, noConstrain), 1);
  1696. set(SCROLLING);
  1697. emit(EVENT_SCROLL);
  1698. interval.start();
  1699. }
  1700. function onEnd() {
  1701. set(IDLE);
  1702. callback && callback();
  1703. emit(EVENT_SCROLLED);
  1704. }
  1705. function update(from, to, noConstrain, rate) {
  1706. var position = getPosition();
  1707. var target = from + (to - from) * easing(rate);
  1708. var diff = (target - position) * friction;
  1709. translate(position + diff);
  1710. if (Splide2.is(SLIDE) && !noConstrain && exceededLimit()) {
  1711. friction *= FRICTION_FACTOR;
  1712. if (abs(diff) < BOUNCE_DIFF_THRESHOLD) {
  1713. scroll(getLimit(exceededLimit(true)), BOUNCE_DURATION, false, void 0, true);
  1714. }
  1715. }
  1716. }
  1717. function clear() {
  1718. if (interval) {
  1719. interval.cancel();
  1720. }
  1721. }
  1722. function cancel() {
  1723. if (interval && !interval.isPaused()) {
  1724. clear();
  1725. onEnd();
  1726. }
  1727. }
  1728. function easing(t) {
  1729. var easingFunc = options.easingFunc;
  1730. return easingFunc ? easingFunc(t) : 1 - Math.pow(1 - t, 4);
  1731. }
  1732. return {
  1733. mount: mount,
  1734. destroy: clear,
  1735. scroll: scroll,
  1736. cancel: cancel
  1737. };
  1738. }
  1739. var SCROLL_LISTENER_OPTIONS = {
  1740. passive: false,
  1741. capture: true
  1742. };
  1743. var FRICTION = 5;
  1744. var LOG_INTERVAL = 200;
  1745. var POINTER_DOWN_EVENTS = "touchstart mousedown";
  1746. var POINTER_MOVE_EVENTS = "touchmove mousemove";
  1747. var POINTER_UP_EVENTS = "touchend touchcancel mouseup";
  1748. function Drag(Splide2, Components2, options) {
  1749. var _EventInterface12 = EventInterface(Splide2),
  1750. on = _EventInterface12.on,
  1751. emit = _EventInterface12.emit,
  1752. bind = _EventInterface12.bind,
  1753. unbind = _EventInterface12.unbind;
  1754. var state = Splide2.state;
  1755. var Move = Components2.Move,
  1756. Scroll = Components2.Scroll,
  1757. Controller = Components2.Controller;
  1758. var track = Components2.Elements.track;
  1759. var _Components2$Directio2 = Components2.Direction,
  1760. resolve = _Components2$Directio2.resolve,
  1761. orient = _Components2$Directio2.orient;
  1762. var getPosition = Move.getPosition,
  1763. exceededLimit = Move.exceededLimit;
  1764. var basePosition;
  1765. var baseEvent;
  1766. var prevBaseEvent;
  1767. var isFree;
  1768. var dragging;
  1769. var exceeded = false;
  1770. var clickPrevented;
  1771. var disabled;
  1772. var target;
  1773. function mount() {
  1774. bind(track, POINTER_MOVE_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1775. bind(track, POINTER_UP_EVENTS, noop, SCROLL_LISTENER_OPTIONS);
  1776. bind(track, POINTER_DOWN_EVENTS, onPointerDown, SCROLL_LISTENER_OPTIONS);
  1777. bind(track, "click", onClick, {
  1778. capture: true
  1779. });
  1780. bind(track, "dragstart", prevent);
  1781. on([EVENT_MOUNTED, EVENT_UPDATED], init);
  1782. }
  1783. function init() {
  1784. var drag = options.drag;
  1785. disable(!drag);
  1786. isFree = drag === "free";
  1787. }
  1788. function onPointerDown(e) {
  1789. clickPrevented = false;
  1790. if (!disabled) {
  1791. var isTouch = isTouchEvent(e);
  1792. if (isDraggable(e.target) && (isTouch || !e.button)) {
  1793. if (!Controller.isBusy()) {
  1794. target = isTouch ? track : window;
  1795. dragging = state.is([MOVING, SCROLLING]);
  1796. prevBaseEvent = null;
  1797. bind(target, POINTER_MOVE_EVENTS, onPointerMove, SCROLL_LISTENER_OPTIONS);
  1798. bind(target, POINTER_UP_EVENTS, onPointerUp, SCROLL_LISTENER_OPTIONS);
  1799. Move.cancel();
  1800. Scroll.cancel();
  1801. save(e);
  1802. } else {
  1803. prevent(e, true);
  1804. }
  1805. }
  1806. }
  1807. }
  1808. function onPointerMove(e) {
  1809. if (!state.is(DRAGGING)) {
  1810. state.set(DRAGGING);
  1811. emit(EVENT_DRAG);
  1812. }
  1813. if (e.cancelable) {
  1814. if (dragging) {
  1815. Move.translate(basePosition + constrain(diffCoord(e)));
  1816. var expired = diffTime(e) > LOG_INTERVAL;
  1817. var hasExceeded = exceeded !== (exceeded = exceededLimit());
  1818. if (expired || hasExceeded) {
  1819. save(e);
  1820. }
  1821. clickPrevented = true;
  1822. emit(EVENT_DRAGGING);
  1823. prevent(e);
  1824. } else if (isSliderDirection(e)) {
  1825. dragging = shouldStart(e);
  1826. prevent(e);
  1827. }
  1828. }
  1829. }
  1830. function onPointerUp(e) {
  1831. if (state.is(DRAGGING)) {
  1832. state.set(IDLE);
  1833. emit(EVENT_DRAGGED);
  1834. }
  1835. if (dragging) {
  1836. move(e);
  1837. prevent(e);
  1838. }
  1839. unbind(target, POINTER_MOVE_EVENTS, onPointerMove);
  1840. unbind(target, POINTER_UP_EVENTS, onPointerUp);
  1841. dragging = false;
  1842. }
  1843. function onClick(e) {
  1844. if (!disabled && clickPrevented) {
  1845. prevent(e, true);
  1846. }
  1847. }
  1848. function save(e) {
  1849. prevBaseEvent = baseEvent;
  1850. baseEvent = e;
  1851. basePosition = getPosition();
  1852. }
  1853. function move(e) {
  1854. var velocity = computeVelocity(e);
  1855. var destination = computeDestination(velocity);
  1856. var rewind = options.rewind && options.rewindByDrag;
  1857. var go = Controller.go;
  1858. if (isFree) {
  1859. Controller.scroll(destination, 0, options.snap);
  1860. } else if (Splide2.is(FADE)) {
  1861. go(orient(sign(velocity)) < 0 ? rewind ? "<" : "-" : rewind ? ">" : "+");
  1862. } else if (Splide2.is(SLIDE) && exceeded && rewind) {
  1863. go(exceededLimit(true) ? ">" : "<");
  1864. } else {
  1865. go(Controller.toDest(destination), true);
  1866. }
  1867. }
  1868. function shouldStart(e) {
  1869. var thresholds = options.dragMinThreshold;
  1870. var isObj = isObject(thresholds);
  1871. var mouse = isObj && thresholds.mouse || 0;
  1872. var touch = (isObj ? thresholds.touch : +thresholds) || 10;
  1873. return abs(diffCoord(e)) > (isTouchEvent(e) ? touch : mouse);
  1874. }
  1875. function isSliderDirection(e) {
  1876. return abs(diffCoord(e)) > abs(diffCoord(e, true));
  1877. }
  1878. function computeVelocity(e) {
  1879. if (Splide2.is(LOOP) || !exceeded) {
  1880. var time = diffTime(e);
  1881. if (time && time < LOG_INTERVAL) {
  1882. return diffCoord(e) / time;
  1883. }
  1884. }
  1885. return 0;
  1886. }
  1887. function computeDestination(velocity) {
  1888. return getPosition() + sign(velocity) * min(abs(velocity) * (options.flickPower || 600), isFree ? Infinity : Components2.Layout.listSize() * (options.flickMaxPages || 1));
  1889. }
  1890. function diffCoord(e, orthogonal) {
  1891. return coordOf(e, orthogonal) - coordOf(getBaseEvent(e), orthogonal);
  1892. }
  1893. function diffTime(e) {
  1894. return timeOf(e) - timeOf(getBaseEvent(e));
  1895. }
  1896. function getBaseEvent(e) {
  1897. return baseEvent === e && prevBaseEvent || baseEvent;
  1898. }
  1899. function coordOf(e, orthogonal) {
  1900. return (isTouchEvent(e) ? e.changedTouches[0] : e)["page" + resolve(orthogonal ? "Y" : "X")];
  1901. }
  1902. function constrain(diff) {
  1903. return diff / (exceeded && Splide2.is(SLIDE) ? FRICTION : 1);
  1904. }
  1905. function isDraggable(target2) {
  1906. return !matches(target2, push((options.noDrag || "").split(",").filter(Boolean), ["." + CLASS_PAGINATION_PAGE, "." + CLASS_ARROW]).join(","));
  1907. }
  1908. function isTouchEvent(e) {
  1909. return typeof TouchEvent !== "undefined" && e instanceof TouchEvent;
  1910. }
  1911. function isDragging() {
  1912. return dragging;
  1913. }
  1914. function disable(value) {
  1915. disabled = value;
  1916. }
  1917. return {
  1918. mount: mount,
  1919. disable: disable,
  1920. isDragging: isDragging
  1921. };
  1922. }
  1923. var NORMALIZATION_MAP = {
  1924. Spacebar: " ",
  1925. Right: "ArrowRight",
  1926. Left: "ArrowLeft",
  1927. Up: "ArrowUp",
  1928. Down: "ArrowDown"
  1929. };
  1930. function normalizeKey(key) {
  1931. key = isString(key) ? key : key.key;
  1932. return NORMALIZATION_MAP[key] || key;
  1933. }
  1934. var KEYBOARD_EVENT = "keydown";
  1935. function Keyboard(Splide2, Components2, options) {
  1936. var _EventInterface13 = EventInterface(Splide2),
  1937. on = _EventInterface13.on,
  1938. bind = _EventInterface13.bind,
  1939. unbind = _EventInterface13.unbind;
  1940. var root = Splide2.root;
  1941. var resolve = Components2.Direction.resolve;
  1942. var target;
  1943. var disabled;
  1944. function mount() {
  1945. init();
  1946. on(EVENT_UPDATED, destroy);
  1947. on(EVENT_UPDATED, init);
  1948. on(EVENT_MOVE, onMove);
  1949. }
  1950. function init() {
  1951. var keyboard = options.keyboard;
  1952. if (keyboard) {
  1953. if (keyboard === "focused") {
  1954. target = root;
  1955. setAttribute(root, TAB_INDEX, 0);
  1956. } else {
  1957. target = window;
  1958. }
  1959. bind(target, KEYBOARD_EVENT, onKeydown);
  1960. }
  1961. }
  1962. function destroy() {
  1963. unbind(target, KEYBOARD_EVENT);
  1964. }
  1965. function disable(value) {
  1966. disabled = value;
  1967. }
  1968. function onMove() {
  1969. var _disabled = disabled;
  1970. disabled = true;
  1971. nextTick(function () {
  1972. disabled = _disabled;
  1973. });
  1974. }
  1975. function onKeydown(e) {
  1976. if (!disabled) {
  1977. var key = normalizeKey(e);
  1978. if (key === resolve("ArrowLeft")) {
  1979. Splide2.go("<");
  1980. } else if (key === resolve("ArrowRight")) {
  1981. Splide2.go(">");
  1982. }
  1983. }
  1984. }
  1985. return {
  1986. mount: mount,
  1987. destroy: destroy,
  1988. disable: disable
  1989. };
  1990. }
  1991. var SRC_DATA_ATTRIBUTE = DATA_ATTRIBUTE + "-lazy";
  1992. var SRCSET_DATA_ATTRIBUTE = SRC_DATA_ATTRIBUTE + "-srcset";
  1993. var IMAGE_SELECTOR = "[" + SRC_DATA_ATTRIBUTE + "], [" + SRCSET_DATA_ATTRIBUTE + "]";
  1994. function LazyLoad(Splide2, Components2, options) {
  1995. var _EventInterface14 = EventInterface(Splide2),
  1996. on = _EventInterface14.on,
  1997. off = _EventInterface14.off,
  1998. bind = _EventInterface14.bind,
  1999. emit = _EventInterface14.emit;
  2000. var isSequential = options.lazyLoad === "sequential";
  2001. var images = [];
  2002. var index = 0;
  2003. function mount() {
  2004. if (options.lazyLoad) {
  2005. init();
  2006. on(EVENT_REFRESH, destroy);
  2007. on(EVENT_REFRESH, init);
  2008. if (!isSequential) {
  2009. on([EVENT_MOUNTED, EVENT_REFRESH, EVENT_MOVED, EVENT_SCROLLED], observe);
  2010. }
  2011. }
  2012. }
  2013. function init() {
  2014. Components2.Slides.forEach(function (_Slide) {
  2015. queryAll(_Slide.slide, IMAGE_SELECTOR).forEach(function (_img) {
  2016. var src = getAttribute(_img, SRC_DATA_ATTRIBUTE);
  2017. var srcset = getAttribute(_img, SRCSET_DATA_ATTRIBUTE);
  2018. if (src !== _img.src || srcset !== _img.srcset) {
  2019. var className = options.classes.spinner;
  2020. var parent = _img.parentElement;
  2021. var _spinner = child(parent, "." + className) || create("span", className, parent);
  2022. setAttribute(_spinner, ROLE, "presentation");
  2023. images.push({
  2024. _img: _img,
  2025. _Slide: _Slide,
  2026. src: src,
  2027. srcset: srcset,
  2028. _spinner: _spinner
  2029. });
  2030. !_img.src && display(_img, "none");
  2031. }
  2032. });
  2033. });
  2034. if (isSequential) {
  2035. loadNext();
  2036. }
  2037. }
  2038. function destroy() {
  2039. index = 0;
  2040. images = [];
  2041. }
  2042. function observe() {
  2043. images = images.filter(function (data) {
  2044. var distance = options.perPage * ((options.preloadPages || 1) + 1) - 1;
  2045. if (data._Slide.isWithin(Splide2.index, distance)) {
  2046. return load(data);
  2047. }
  2048. return true;
  2049. });
  2050. if (!images.length) {
  2051. off(EVENT_MOVED);
  2052. }
  2053. }
  2054. function load(data) {
  2055. var _img = data._img;
  2056. addClass(data._Slide.slide, CLASS_LOADING);
  2057. bind(_img, "load error", function (e) {
  2058. onLoad(data, e.type === "error");
  2059. });
  2060. ["srcset", "src"].forEach(function (name) {
  2061. if (data[name]) {
  2062. setAttribute(_img, name, data[name]);
  2063. removeAttribute(_img, name === "src" ? SRC_DATA_ATTRIBUTE : SRCSET_DATA_ATTRIBUTE);
  2064. }
  2065. });
  2066. }
  2067. function onLoad(data, error) {
  2068. var _Slide = data._Slide;
  2069. removeClass(_Slide.slide, CLASS_LOADING);
  2070. if (!error) {
  2071. remove(data._spinner);
  2072. display(data._img, "");
  2073. emit(EVENT_LAZYLOAD_LOADED, data._img, _Slide);
  2074. emit(EVENT_RESIZE);
  2075. }
  2076. if (isSequential) {
  2077. loadNext();
  2078. }
  2079. }
  2080. function loadNext() {
  2081. if (index < images.length) {
  2082. load(images[index++]);
  2083. }
  2084. }
  2085. return {
  2086. mount: mount,
  2087. destroy: destroy
  2088. };
  2089. }
  2090. function Pagination(Splide2, Components2, options) {
  2091. var _EventInterface15 = EventInterface(Splide2),
  2092. on = _EventInterface15.on,
  2093. emit = _EventInterface15.emit,
  2094. bind = _EventInterface15.bind,
  2095. destroyEvents = _EventInterface15.destroy;
  2096. var Slides = Components2.Slides,
  2097. Elements = Components2.Elements,
  2098. Controller = Components2.Controller;
  2099. var hasFocus = Controller.hasFocus,
  2100. getIndex = Controller.getIndex,
  2101. go = Controller.go;
  2102. var resolve = Components2.Direction.resolve;
  2103. var items = [];
  2104. var list;
  2105. var paginationClasses;
  2106. function mount() {
  2107. destroy();
  2108. on([EVENT_UPDATED, EVENT_REFRESH], mount);
  2109. if (options.pagination && Slides.isEnough()) {
  2110. on([EVENT_MOVE, EVENT_SCROLL, EVENT_SCROLLED], update);
  2111. createPagination();
  2112. update();
  2113. emit(EVENT_PAGINATION_MOUNTED, {
  2114. list: list,
  2115. items: items
  2116. }, getAt(Splide2.index));
  2117. }
  2118. }
  2119. function destroy() {
  2120. if (list) {
  2121. destroyEvents();
  2122. remove(Elements.pagination ? slice(list.children) : list);
  2123. removeClass(list, paginationClasses);
  2124. empty(items);
  2125. list = null;
  2126. }
  2127. }
  2128. function createPagination() {
  2129. var length = Splide2.length;
  2130. var classes = options.classes,
  2131. i18n = options.i18n,
  2132. perPage = options.perPage;
  2133. var max = hasFocus() ? length : ceil(length / perPage);
  2134. list = Elements.pagination || create("ul", classes.pagination, Elements.root);
  2135. addClass(list, paginationClasses = CLASS_PAGINATION + "--" + getDirection());
  2136. setAttribute(list, ROLE, "tablist");
  2137. setAttribute(list, ARIA_LABEL, i18n.select);
  2138. setAttribute(list, ARIA_ORIENTATION, getDirection() === TTB ? "vertical" : "");
  2139. for (var i = 0; i < max; i++) {
  2140. var li = create("li", null, list);
  2141. var button = create("button", {
  2142. class: classes.page,
  2143. type: "button"
  2144. }, li);
  2145. var controls = Slides.getIn(i).map(function (Slide) {
  2146. return Slide.slide.id;
  2147. });
  2148. var text = !hasFocus() && perPage > 1 ? i18n.pageX : i18n.slideX;
  2149. bind(button, "click", apply(onClick, i));
  2150. if (options.paginationKeyboard) {
  2151. bind(button, "keydown", apply(onKeydown, i));
  2152. }
  2153. setAttribute(li, ROLE, "none");
  2154. setAttribute(button, ROLE, "tab");
  2155. setAttribute(button, ARIA_CONTROLS, controls.join(" "));
  2156. setAttribute(button, ARIA_LABEL, format(text, i + 1));
  2157. setAttribute(button, TAB_INDEX, -1);
  2158. items.push({
  2159. li: li,
  2160. button: button,
  2161. page: i
  2162. });
  2163. }
  2164. }
  2165. function onClick(page) {
  2166. go(">" + page, true);
  2167. }
  2168. function onKeydown(page, e) {
  2169. var length = items.length;
  2170. var key = normalizeKey(e);
  2171. var dir = getDirection();
  2172. var nextPage = -1;
  2173. if (key === resolve("ArrowRight", false, dir)) {
  2174. nextPage = ++page % length;
  2175. } else if (key === resolve("ArrowLeft", false, dir)) {
  2176. nextPage = (--page + length) % length;
  2177. } else if (key === "Home") {
  2178. nextPage = 0;
  2179. } else if (key === "End") {
  2180. nextPage = length - 1;
  2181. }
  2182. var item = items[nextPage];
  2183. if (item) {
  2184. focus(item.button);
  2185. go(">" + nextPage);
  2186. prevent(e, true);
  2187. }
  2188. }
  2189. function getDirection() {
  2190. return options.paginationDirection || options.direction;
  2191. }
  2192. function getAt(index) {
  2193. return items[Controller.toPage(index)];
  2194. }
  2195. function update() {
  2196. var prev = getAt(getIndex(true));
  2197. var curr = getAt(getIndex());
  2198. if (prev) {
  2199. var button = prev.button;
  2200. removeClass(button, CLASS_ACTIVE);
  2201. removeAttribute(button, ARIA_SELECTED);
  2202. setAttribute(button, TAB_INDEX, -1);
  2203. }
  2204. if (curr) {
  2205. var _button = curr.button;
  2206. addClass(_button, CLASS_ACTIVE);
  2207. setAttribute(_button, ARIA_SELECTED, true);
  2208. setAttribute(_button, TAB_INDEX, "");
  2209. }
  2210. emit(EVENT_PAGINATION_UPDATED, {
  2211. list: list,
  2212. items: items
  2213. }, prev, curr);
  2214. }
  2215. return {
  2216. items: items,
  2217. mount: mount,
  2218. destroy: destroy,
  2219. getAt: getAt,
  2220. update: update
  2221. };
  2222. }
  2223. var TRIGGER_KEYS = [" ", "Enter"];
  2224. function Sync(Splide2, Components2, options) {
  2225. var list = Components2.Elements.list;
  2226. var events = [];
  2227. function mount() {
  2228. Splide2.splides.forEach(function (target) {
  2229. !target.isParent && sync(target.splide);
  2230. });
  2231. if (options.isNavigation) {
  2232. navigate();
  2233. }
  2234. }
  2235. function destroy() {
  2236. events.forEach(function (event) {
  2237. event.destroy();
  2238. });
  2239. empty(events);
  2240. }
  2241. function remount() {
  2242. destroy();
  2243. mount();
  2244. }
  2245. function sync(splide) {
  2246. [Splide2, splide].forEach(function (instance) {
  2247. var event = EventInterface(instance);
  2248. var target = instance === Splide2 ? splide : Splide2;
  2249. event.on(EVENT_MOVE, function (index, prev, dest) {
  2250. target.go(target.is(LOOP) ? dest : index);
  2251. });
  2252. events.push(event);
  2253. });
  2254. }
  2255. function navigate() {
  2256. var event = EventInterface(Splide2);
  2257. var on = event.on;
  2258. on(EVENT_CLICK, onClick);
  2259. on(EVENT_SLIDE_KEYDOWN, onKeydown);
  2260. on([EVENT_MOUNTED, EVENT_UPDATED], update);
  2261. events.push(event);
  2262. event.emit(EVENT_NAVIGATION_MOUNTED, Splide2.splides);
  2263. }
  2264. function update() {
  2265. setAttribute(list, ARIA_ORIENTATION, options.direction === TTB ? "vertical" : "");
  2266. }
  2267. function onClick(Slide) {
  2268. Splide2.go(Slide.index);
  2269. }
  2270. function onKeydown(Slide, e) {
  2271. if (includes(TRIGGER_KEYS, normalizeKey(e))) {
  2272. onClick(Slide);
  2273. prevent(e);
  2274. }
  2275. }
  2276. return {
  2277. mount: mount,
  2278. destroy: destroy,
  2279. remount: remount
  2280. };
  2281. }
  2282. function Wheel(Splide2, Components2, options) {
  2283. var _EventInterface16 = EventInterface(Splide2),
  2284. bind = _EventInterface16.bind;
  2285. var lastTime = 0;
  2286. function mount() {
  2287. if (options.wheel) {
  2288. bind(Components2.Elements.track, "wheel", onWheel, SCROLL_LISTENER_OPTIONS);
  2289. }
  2290. }
  2291. function onWheel(e) {
  2292. if (e.cancelable) {
  2293. var deltaY = e.deltaY;
  2294. var backwards = deltaY < 0;
  2295. var timeStamp = timeOf(e);
  2296. var _min = options.wheelMinThreshold || 0;
  2297. var sleep = options.wheelSleep || 0;
  2298. if (abs(deltaY) > _min && timeStamp - lastTime > sleep) {
  2299. Splide2.go(backwards ? "<" : ">");
  2300. lastTime = timeStamp;
  2301. }
  2302. shouldPrevent(backwards) && prevent(e);
  2303. }
  2304. }
  2305. function shouldPrevent(backwards) {
  2306. return !options.releaseWheel || Splide2.state.is(MOVING) || Components2.Controller.getAdjacent(backwards) !== -1;
  2307. }
  2308. return {
  2309. mount: mount
  2310. };
  2311. }
  2312. function Live(Splide2, Components2, options) {
  2313. var _EventInterface17 = EventInterface(Splide2),
  2314. on = _EventInterface17.on;
  2315. var list = Components2.Elements.list;
  2316. var live = options.live;
  2317. var enabled = live && !options.isNavigation;
  2318. function mount() {
  2319. if (enabled) {
  2320. setAttribute(list, ARIA_ATOMIC, false);
  2321. disable(!Components2.Autoplay.isPaused());
  2322. on(EVENT_AUTOPLAY_PLAY, apply(disable, true));
  2323. on(EVENT_AUTOPLAY_PAUSE, apply(disable, false));
  2324. }
  2325. }
  2326. function disable(disabled) {
  2327. if (enabled) {
  2328. setAttribute(list, ARIA_LIVE, disabled ? "off" : "polite");
  2329. }
  2330. }
  2331. return {
  2332. mount: mount,
  2333. disable: disable
  2334. };
  2335. }
  2336. var ComponentConstructors = /*#__PURE__*/Object.freeze({
  2337. __proto__: null,
  2338. Media: Media,
  2339. Direction: Direction,
  2340. Elements: Elements,
  2341. Slides: Slides,
  2342. Layout: Layout,
  2343. Clones: Clones,
  2344. Move: Move,
  2345. Controller: Controller,
  2346. Arrows: Arrows,
  2347. Autoplay: Autoplay,
  2348. Cover: Cover,
  2349. Scroll: Scroll,
  2350. Drag: Drag,
  2351. Keyboard: Keyboard,
  2352. LazyLoad: LazyLoad,
  2353. Pagination: Pagination,
  2354. Sync: Sync,
  2355. Wheel: Wheel,
  2356. Live: Live
  2357. });
  2358. var I18N = {
  2359. prev: "Previous slide",
  2360. next: "Next slide",
  2361. first: "Go to first slide",
  2362. last: "Go to last slide",
  2363. slideX: "Go to slide %s",
  2364. pageX: "Go to page %s",
  2365. play: "Start autoplay",
  2366. pause: "Pause autoplay",
  2367. carousel: "carousel",
  2368. slide: "slide",
  2369. select: "Select slide to show",
  2370. slideLabel: "%s of %s"
  2371. };
  2372. var DEFAULTS = {
  2373. type: "slide",
  2374. role: "region",
  2375. speed: 400,
  2376. perPage: 1,
  2377. cloneStatus: true,
  2378. arrows: true,
  2379. pagination: true,
  2380. paginationKeyboard: true,
  2381. interval: 5e3,
  2382. pauseOnHover: true,
  2383. pauseOnFocus: true,
  2384. resetProgress: true,
  2385. easing: "cubic-bezier(0.25, 1, 0.5, 1)",
  2386. drag: true,
  2387. direction: "ltr",
  2388. trimSpace: true,
  2389. focusableNodes: "a, button, textarea, input, select, iframe",
  2390. live: true,
  2391. classes: CLASSES,
  2392. i18n: I18N
  2393. };
  2394. function Fade(Splide2, Components2, options) {
  2395. var _EventInterface18 = EventInterface(Splide2),
  2396. on = _EventInterface18.on;
  2397. function mount() {
  2398. on([EVENT_MOUNTED, EVENT_REFRESH], function () {
  2399. nextTick(function () {
  2400. Components2.Slides.style("transition", "opacity " + options.speed + "ms " + options.easing);
  2401. });
  2402. });
  2403. }
  2404. function start(index, done) {
  2405. var track = Components2.Elements.track;
  2406. style(track, "height", unit(rect(track).height));
  2407. nextTick(function () {
  2408. done();
  2409. style(track, "height", "");
  2410. });
  2411. }
  2412. return {
  2413. mount: mount,
  2414. start: start,
  2415. cancel: noop
  2416. };
  2417. }
  2418. function Slide(Splide2, Components2, options) {
  2419. var _EventInterface19 = EventInterface(Splide2),
  2420. bind = _EventInterface19.bind;
  2421. var Move = Components2.Move,
  2422. Controller = Components2.Controller;
  2423. var list = Components2.Elements.list;
  2424. var endCallback;
  2425. function mount() {
  2426. bind(list, "transitionend", function (e) {
  2427. if (e.target === list && endCallback) {
  2428. cancel();
  2429. endCallback();
  2430. }
  2431. });
  2432. }
  2433. function start(index, done) {
  2434. var destination = Move.toPosition(index, true);
  2435. var position = Move.getPosition();
  2436. var speed = getSpeed(index);
  2437. if (abs(destination - position) >= 1 && speed >= 1) {
  2438. apply("transform " + speed + "ms " + options.easing);
  2439. Move.translate(destination, true);
  2440. endCallback = done;
  2441. } else {
  2442. Move.jump(index);
  2443. done();
  2444. }
  2445. }
  2446. function cancel() {
  2447. apply("");
  2448. }
  2449. function getSpeed(index) {
  2450. var rewindSpeed = options.rewindSpeed;
  2451. if (Splide2.is(SLIDE) && rewindSpeed) {
  2452. var prev = Controller.getIndex(true);
  2453. var end = Controller.getEnd();
  2454. if (prev === 0 && index >= end || prev >= end && index === 0) {
  2455. return rewindSpeed;
  2456. }
  2457. }
  2458. return options.speed;
  2459. }
  2460. function apply(transition) {
  2461. style(list, "transition", transition);
  2462. }
  2463. return {
  2464. mount: mount,
  2465. start: start,
  2466. cancel: cancel
  2467. };
  2468. }
  2469. var _Splide = /*#__PURE__*/function () {
  2470. function _Splide(target, options) {
  2471. this.event = EventInterface();
  2472. this.Components = {};
  2473. this.state = State(CREATED);
  2474. this.splides = [];
  2475. this._options = {};
  2476. this._Extensions = {};
  2477. var root = isString(target) ? query(document, target) : target;
  2478. assert(root, root + " is invalid.");
  2479. this.root = root;
  2480. options = merge({}, DEFAULTS, _Splide.defaults, options || {});
  2481. try {
  2482. merge(options, JSON.parse(getAttribute(root, DATA_ATTRIBUTE)));
  2483. } catch (e) {
  2484. assert(false, "Invalid JSON");
  2485. }
  2486. this._options = options;
  2487. }
  2488. var _proto = _Splide.prototype;
  2489. _proto.mount = function mount(Extensions, Transition) {
  2490. var _this2 = this;
  2491. var state = this.state,
  2492. Components2 = this.Components;
  2493. assert(state.is([CREATED, DESTROYED]), "Already mounted!");
  2494. state.set(CREATED);
  2495. this._Components = Components2;
  2496. this._Transition = Transition || this._Transition || (this.is(FADE) ? Fade : Slide);
  2497. this._Extensions = Extensions || this._Extensions;
  2498. var Constructors = assign({}, ComponentConstructors, this._Extensions, {
  2499. Transition: this._Transition
  2500. });
  2501. forOwn(Constructors, function (Component, key) {
  2502. var component = Component(_this2, Components2, _this2._options);
  2503. Components2[key] = component;
  2504. component.setup && component.setup();
  2505. });
  2506. forOwn(Components2, function (component) {
  2507. component.mount && component.mount();
  2508. });
  2509. this.emit(EVENT_MOUNTED);
  2510. addClass(this.root, CLASS_INITIALIZED);
  2511. state.set(IDLE);
  2512. this.emit(EVENT_READY);
  2513. return this;
  2514. };
  2515. _proto.sync = function sync(splide) {
  2516. this.splides.push({
  2517. splide: splide
  2518. });
  2519. splide.splides.push({
  2520. splide: this,
  2521. isParent: true
  2522. });
  2523. if (this.state.is(IDLE)) {
  2524. this._Components.Sync.remount();
  2525. splide.Components.Sync.remount();
  2526. }
  2527. return this;
  2528. };
  2529. _proto.go = function go(control) {
  2530. this._Components.Controller.go(control);
  2531. return this;
  2532. };
  2533. _proto.on = function on(events, callback) {
  2534. this.event.on(events, callback);
  2535. return this;
  2536. };
  2537. _proto.off = function off(events) {
  2538. this.event.off(events);
  2539. return this;
  2540. };
  2541. _proto.emit = function emit(event) {
  2542. var _this$event;
  2543. (_this$event = this.event).emit.apply(_this$event, [event].concat(slice(arguments, 1)));
  2544. return this;
  2545. };
  2546. _proto.add = function add(slides, index) {
  2547. this._Components.Slides.add(slides, index);
  2548. return this;
  2549. };
  2550. _proto.remove = function remove(matcher) {
  2551. this._Components.Slides.remove(matcher);
  2552. return this;
  2553. };
  2554. _proto.is = function is(type) {
  2555. return this._options.type === type;
  2556. };
  2557. _proto.refresh = function refresh() {
  2558. this.emit(EVENT_REFRESH);
  2559. return this;
  2560. };
  2561. _proto.destroy = function destroy(completely) {
  2562. if (completely === void 0) {
  2563. completely = true;
  2564. }
  2565. var event = this.event,
  2566. state = this.state;
  2567. if (state.is(CREATED)) {
  2568. EventInterface(this).on(EVENT_READY, this.destroy.bind(this, completely));
  2569. } else {
  2570. forOwn(this._Components, function (component) {
  2571. component.destroy && component.destroy(completely);
  2572. }, true);
  2573. event.emit(EVENT_DESTROY);
  2574. event.destroy();
  2575. completely && empty(this.splides);
  2576. state.set(DESTROYED);
  2577. }
  2578. return this;
  2579. };
  2580. _createClass(_Splide, [{
  2581. key: "options",
  2582. get: function get() {
  2583. return this._options;
  2584. },
  2585. set: function set(options) {
  2586. var _options = this._options;
  2587. merge(_options, options);
  2588. if (!this.state.is(CREATED)) {
  2589. this.emit(EVENT_UPDATED, _options);
  2590. }
  2591. }
  2592. }, {
  2593. key: "length",
  2594. get: function get() {
  2595. return this._Components.Slides.getLength(true);
  2596. }
  2597. }, {
  2598. key: "index",
  2599. get: function get() {
  2600. return this._Components.Controller.getIndex();
  2601. }
  2602. }]);
  2603. return _Splide;
  2604. }();
  2605. var Splide = _Splide;
  2606. Splide.defaults = {};
  2607. Splide.STATES = STATES;
  2608. return Splide;
  2609. });