swiper-element.mjs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /**
  2. * Swiper Custom Element 11.2.10
  3. * Most modern mobile touch slider and framework with hardware accelerated transitions
  4. * https://swiperjs.com
  5. *
  6. * Copyright 2014-2025 Vladimir Kharlampidi
  7. *
  8. * Released under the MIT License
  9. *
  10. * Released on: June 28, 2025
  11. */
  12. import { S as Swiper } from './shared/swiper-core.mjs';
  13. import { p as paramsList, n as needsNavigation, a as needsPagination, b as needsScrollbar, u as updateSwiper, c as attrToProp } from './shared/update-swiper.mjs';
  14. import { g as getParams } from './shared/get-element-params.mjs';
  15. import { s as setInnerHTML } from './shared/utils.mjs';
  16. /* eslint-disable spaced-comment */
  17. const SwiperCSS = `:host{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{width:100%;height:100%;margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android ::slotted(swiper-slide),.swiper-ios ::slotted(swiper-slide),.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}::slotted(swiper-slide){flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}::slotted(.swiper-slide-invisible-blank){visibility:hidden}.swiper-autoheight,.swiper-autoheight ::slotted(swiper-slide){height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden ::slotted(swiper-slide){transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d ::slotted(swiper-slide){transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode ::slotted(swiper-slide){scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode ::slotted(swiper-slide){scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered ::slotted(swiper-slide){scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal ::slotted(swiper-slide):first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical ::slotted(swiper-slide):first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}`
  18. const SwiperSlideCSS = `::slotted(.swiper-slide-shadow),::slotted(.swiper-slide-shadow-bottom),::slotted(.swiper-slide-shadow-left),::slotted(.swiper-slide-shadow-right),::slotted(.swiper-slide-shadow-top){position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}::slotted(.swiper-slide-shadow){background:rgba(0,0,0,.15)}::slotted(.swiper-slide-shadow-left){background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}::slotted(.swiper-slide-shadow-right){background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}::slotted(.swiper-slide-shadow-top){background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}::slotted(.swiper-slide-shadow-bottom){background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear;width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}::slotted(.swiper-slide-shadow-cube.swiper-slide-shadow-bottom),::slotted(.swiper-slide-shadow-cube.swiper-slide-shadow-left),::slotted(.swiper-slide-shadow-cube.swiper-slide-shadow-right),::slotted(.swiper-slide-shadow-cube.swiper-slide-shadow-top){z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}::slotted(.swiper-slide-shadow-flip.swiper-slide-shadow-bottom),::slotted(.swiper-slide-shadow-flip.swiper-slide-shadow-left),::slotted(.swiper-slide-shadow-flip.swiper-slide-shadow-right),::slotted(.swiper-slide-shadow-flip.swiper-slide-shadow-top){z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}::slotted(.swiper-zoom-container){width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}::slotted(.swiper-zoom-container)>canvas,::slotted(.swiper-zoom-container)>img,::slotted(.swiper-zoom-container)>svg{max-width:100%;max-height:100%;object-fit:contain}`
  19. class DummyHTMLElement {}
  20. const ClassToExtend = typeof window === 'undefined' || typeof HTMLElement === 'undefined' ? DummyHTMLElement : HTMLElement;
  21. const arrowSvg = `<svg width="11" height="20" viewBox="0 0 11 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.38296 20.0762C0.111788 19.805 0.111788 19.3654 0.38296 19.0942L9.19758 10.2796L0.38296 1.46497C0.111788 1.19379 0.111788 0.754138 0.38296 0.482966C0.654131 0.211794 1.09379 0.211794 1.36496 0.482966L10.4341 9.55214C10.8359 9.9539 10.8359 10.6053 10.4341 11.007L1.36496 20.0762C1.09379 20.3474 0.654131 20.3474 0.38296 20.0762Z" fill="currentColor"/></svg>
  22. `;
  23. const addStyle = (shadowRoot, styles) => {
  24. if (typeof CSSStyleSheet !== 'undefined' && shadowRoot.adoptedStyleSheets) {
  25. const styleSheet = new CSSStyleSheet();
  26. styleSheet.replaceSync(styles);
  27. shadowRoot.adoptedStyleSheets = [styleSheet];
  28. } else {
  29. const style = document.createElement('style');
  30. style.rel = 'stylesheet';
  31. style.textContent = styles;
  32. shadowRoot.appendChild(style);
  33. }
  34. };
  35. class SwiperContainer extends ClassToExtend {
  36. constructor() {
  37. super();
  38. this.attachShadow({
  39. mode: 'open'
  40. });
  41. }
  42. static get nextButtonSvg() {
  43. return arrowSvg;
  44. }
  45. static get prevButtonSvg() {
  46. return arrowSvg.replace('/></svg>', ' transform-origin="center" transform="rotate(180)"/></svg>');
  47. }
  48. cssStyles() {
  49. return [SwiperCSS,
  50. // eslint-disable-line
  51. ...(this.injectStyles && Array.isArray(this.injectStyles) ? this.injectStyles : [])].join('\n');
  52. }
  53. cssLinks() {
  54. return this.injectStylesUrls || [];
  55. }
  56. calcSlideSlots() {
  57. const currentSideSlots = this.slideSlots || 0;
  58. // slide slots
  59. const slideSlotChildren = [...this.querySelectorAll(`[slot^=slide-]`)].map(child => {
  60. return parseInt(child.getAttribute('slot').split('slide-')[1], 10);
  61. });
  62. this.slideSlots = slideSlotChildren.length ? Math.max(...slideSlotChildren) + 1 : 0;
  63. if (!this.rendered) return;
  64. if (this.slideSlots > currentSideSlots) {
  65. for (let i = currentSideSlots; i < this.slideSlots; i += 1) {
  66. const slideEl = document.createElement('swiper-slide');
  67. slideEl.setAttribute('part', `slide slide-${i + 1}`);
  68. const slotEl = document.createElement('slot');
  69. slotEl.setAttribute('name', `slide-${i + 1}`);
  70. slideEl.appendChild(slotEl);
  71. this.shadowRoot.querySelector('.swiper-wrapper').appendChild(slideEl);
  72. }
  73. } else if (this.slideSlots < currentSideSlots) {
  74. const slides = this.swiper.slides;
  75. for (let i = slides.length - 1; i >= 0; i -= 1) {
  76. if (i > this.slideSlots) {
  77. slides[i].remove();
  78. }
  79. }
  80. }
  81. }
  82. render() {
  83. if (this.rendered) return;
  84. this.calcSlideSlots();
  85. // local styles
  86. let localStyles = this.cssStyles();
  87. if (this.slideSlots > 0) {
  88. localStyles = localStyles.replace(/::slotted\(([a-z-0-9.]*)\)/g, '$1');
  89. }
  90. if (localStyles.length) {
  91. addStyle(this.shadowRoot, localStyles);
  92. }
  93. this.cssLinks().forEach(url => {
  94. const linkExists = this.shadowRoot.querySelector(`link[href="${url}"]`);
  95. if (linkExists) return;
  96. const linkEl = document.createElement('link');
  97. linkEl.rel = 'stylesheet';
  98. linkEl.href = url;
  99. this.shadowRoot.appendChild(linkEl);
  100. });
  101. // prettier-ignore
  102. const el = document.createElement('div');
  103. el.classList.add('swiper');
  104. el.part = 'container';
  105. // prettier-ignore
  106. setInnerHTML(el, `
  107. <slot name="container-start"></slot>
  108. <div class="swiper-wrapper" part="wrapper">
  109. <slot></slot>
  110. ${Array.from({
  111. length: this.slideSlots
  112. }).map((_, index) => `
  113. <swiper-slide part="slide slide-${index}">
  114. <slot name="slide-${index}"></slot>
  115. </swiper-slide>
  116. `).join('')}
  117. </div>
  118. <slot name="container-end"></slot>
  119. ${needsNavigation(this.passedParams) ? `
  120. <div part="button-prev" class="swiper-button-prev">${this.constructor.prevButtonSvg}</div>
  121. <div part="button-next" class="swiper-button-next">${this.constructor.nextButtonSvg}</div>
  122. ` : ''}
  123. ${needsPagination(this.passedParams) ? `
  124. <div part="pagination" class="swiper-pagination"></div>
  125. ` : ''}
  126. ${needsScrollbar(this.passedParams) ? `
  127. <div part="scrollbar" class="swiper-scrollbar"></div>
  128. ` : ''}
  129. `);
  130. this.shadowRoot.appendChild(el);
  131. this.rendered = true;
  132. }
  133. initialize() {
  134. var _this = this;
  135. if (this.swiper && this.swiper.initialized) return;
  136. const {
  137. params: swiperParams,
  138. passedParams
  139. } = getParams(this);
  140. this.swiperParams = swiperParams;
  141. this.passedParams = passedParams;
  142. delete this.swiperParams.init;
  143. this.render();
  144. // eslint-disable-next-line
  145. this.swiper = new Swiper(this.shadowRoot.querySelector('.swiper'), {
  146. ...(swiperParams.virtual ? {} : {
  147. observer: true
  148. }),
  149. ...swiperParams,
  150. touchEventsTarget: 'container',
  151. onAny: function (name) {
  152. if (name === 'observerUpdate') {
  153. _this.calcSlideSlots();
  154. }
  155. const eventName = swiperParams.eventsPrefix ? `${swiperParams.eventsPrefix}${name.toLowerCase()}` : name.toLowerCase();
  156. for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
  157. args[_key - 1] = arguments[_key];
  158. }
  159. const event = new CustomEvent(eventName, {
  160. detail: args,
  161. bubbles: name !== 'hashChange',
  162. cancelable: true
  163. });
  164. _this.dispatchEvent(event);
  165. }
  166. });
  167. }
  168. connectedCallback() {
  169. if (this.swiper && this.swiper.initialized && this.nested && this.closest('swiper-slide') && this.closest('swiper-slide').swiperLoopMoveDOM) {
  170. return;
  171. }
  172. if (this.init === false || this.getAttribute('init') === 'false') {
  173. return;
  174. }
  175. this.initialize();
  176. }
  177. disconnectedCallback() {
  178. if (this.nested && this.closest('swiper-slide') && this.closest('swiper-slide').swiperLoopMoveDOM) {
  179. return;
  180. }
  181. if (this.swiper && this.swiper.destroy) {
  182. this.swiper.destroy();
  183. }
  184. }
  185. updateSwiperOnPropChange(propName, propValue) {
  186. const {
  187. params: swiperParams,
  188. passedParams
  189. } = getParams(this, propName, propValue);
  190. this.passedParams = passedParams;
  191. this.swiperParams = swiperParams;
  192. if (this.swiper && this.swiper.params[propName] === propValue) {
  193. return;
  194. }
  195. updateSwiper({
  196. swiper: this.swiper,
  197. passedParams: this.passedParams,
  198. changedParams: [attrToProp(propName)],
  199. ...(propName === 'navigation' && passedParams[propName] ? {
  200. prevEl: '.swiper-button-prev',
  201. nextEl: '.swiper-button-next'
  202. } : {}),
  203. ...(propName === 'pagination' && passedParams[propName] ? {
  204. paginationEl: '.swiper-pagination'
  205. } : {}),
  206. ...(propName === 'scrollbar' && passedParams[propName] ? {
  207. scrollbarEl: '.swiper-scrollbar'
  208. } : {})
  209. });
  210. }
  211. attributeChangedCallback(attr, prevValue, newValue) {
  212. if (!(this.swiper && this.swiper.initialized)) return;
  213. if (prevValue === 'true' && newValue === null) {
  214. newValue = false;
  215. }
  216. this.updateSwiperOnPropChange(attr, newValue);
  217. }
  218. static get observedAttributes() {
  219. const attrs = paramsList.filter(param => param.includes('_')).map(param => param.replace(/[A-Z]/g, v => `-${v}`).replace('_', '').toLowerCase());
  220. return attrs;
  221. }
  222. }
  223. paramsList.forEach(paramName => {
  224. if (paramName === 'init') return;
  225. paramName = paramName.replace('_', '');
  226. Object.defineProperty(SwiperContainer.prototype, paramName, {
  227. configurable: true,
  228. get() {
  229. return (this.passedParams || {})[paramName];
  230. },
  231. set(value) {
  232. if (!this.passedParams) this.passedParams = {};
  233. this.passedParams[paramName] = value;
  234. if (!(this.swiper && this.swiper.initialized)) return;
  235. this.updateSwiperOnPropChange(paramName, value);
  236. }
  237. });
  238. });
  239. class SwiperSlide extends ClassToExtend {
  240. constructor() {
  241. super();
  242. this.attachShadow({
  243. mode: 'open'
  244. });
  245. }
  246. render() {
  247. const lazy = this.lazy || this.getAttribute('lazy') === '' || this.getAttribute('lazy') === 'true';
  248. addStyle(this.shadowRoot, SwiperSlideCSS);
  249. this.shadowRoot.appendChild(document.createElement('slot'));
  250. if (lazy) {
  251. const lazyDiv = document.createElement('div');
  252. lazyDiv.classList.add('swiper-lazy-preloader');
  253. lazyDiv.part.add('preloader');
  254. this.shadowRoot.appendChild(lazyDiv);
  255. }
  256. }
  257. initialize() {
  258. this.render();
  259. }
  260. connectedCallback() {
  261. if (this.swiperLoopMoveDOM) {
  262. return;
  263. }
  264. this.initialize();
  265. }
  266. }
  267. // eslint-disable-next-line
  268. const register = () => {
  269. if (typeof window === 'undefined') return;
  270. if (!window.customElements.get('swiper-container')) window.customElements.define('swiper-container', SwiperContainer);
  271. if (!window.customElements.get('swiper-slide')) window.customElements.define('swiper-slide', SwiperSlide);
  272. };
  273. if (typeof window !== 'undefined') {
  274. window.SwiperElementRegisterParams = params => {
  275. paramsList.push(...params);
  276. };
  277. }
  278. export { SwiperContainer, SwiperSlide, register };