{"version":3,"sources":["webpack://@verndale/toolkit/./src/js/helpers/slider-nav.js","webpack://@verndale/toolkit/./src/js/modules/related-resources.js"],"names":["Swiper","Navigation","Pagination","addGenericSwiperNav","el","type","ofLabel","customRenderer","prevEl","nextEl","$pager","_","current","total","Module","Component","BREAKPOINTS"],"mappings":"4KACAA,KAAO,IAAIC,IAAU,EACrBD,KAAO,IAAIE,IAAU,EAMd,MAAMC,EAAsB,CACjCC,EACAC,EAAO,OACPC,EAAU,KACVC,IACG,CACH,MAAMC,EAASJ,EAAG,GAAG,qCAAqC,EACpDK,EAASL,EAAG,GAAG,qCAAqC,EACpDM,EAASN,EAAG,GAAG,+BAA+B,EAoBpD,MAAO,CACL,WAfAC,IAAS,OACL,CACE,GAAIK,EACJ,YAAa,gCACb,kBAAmB,wCACnB,UAAW,EACb,EACA,CACE,KAAM,SACN,GAAIA,EACJ,cAAe,GACf,aAhBa,CAACC,EAAGC,EAASC,IAC5BN,EAAuBA,EAAeI,EAAGC,EAASC,CAAK,EACpD,GAAGD,KAAWN,KAAWO,GAe5B,EAIJ,WAAY,CACV,cAAe,0CACf,OAAAL,EACA,OAAAC,CACF,CACF,CACF,C,uFCvCA,MAAMK,UAAeC,WAAU,CAC7B,eAAgB,CACd,KAAK,IAAM,CACT,QAAS,KAAK,GAAG,GAAG,4BAA4B,EAChD,QAAS,KAAK,GAAG,IAAI,eAAe,EACpC,kBAAmB,KAAK,GAAG,GAAG,wBAAwB,CACxD,EAEA,KAAK,WAAa,OAAO,WAAW,eAAeC,KAAY,iBAAmB,MAAM,EACxF,KAAK,WAAW,CAClB,CAEA,cAAe,CACb,KAAK,WAAW,iBAAiB,SAAU,KAAK,WAAW,KAAK,IAAI,CAAC,CACvE,CAEA,YAAa,CACP,KAAK,WAAW,SAAW,KAAK,IAAI,QAAQ,OAAS,GACvD,KAAK,IAAI,kBAAkB,MAAM,QAAU,OAC3C,KAAK,OAAS,IAAIhB,KAAO,KAAK,IAAI,QAAS,CACzC,KAAM,GACN,WAAY,GACZ,I,EAAGG,KAAoB,KAAK,EAAE,CAChC,CAAC,IAGD,KAAK,IAAI,kBAAkB,MAAM,QAAU,OAC3C,KAAK,QAAQ,UAAU,GAAM,EAAI,EAErC,CACF,CAEA,UAAeW,C","file":"Areas/SunriseSeniorLiving/Scripts/6203.83117bc2ea8f48dc081f.bundle.js","sourcesContent":["import Swiper, { Navigation, Pagination } from 'swiper';\nSwiper.use(Navigation);\nSwiper.use(Pagination);\n\n/**\n * Extends options for swiper to add support for General Slider Nav\n * @param {Object} el - HTML element that contains the nav\n */\nexport const addGenericSwiperNav = (\n el,\n type = 'dots',\n ofLabel = 'of',\n customRenderer\n) => {\n const prevEl = el._$('.slider-pagination-row__arrow--prev');\n const nextEl = el._$('.slider-pagination-row__arrow--next');\n const $pager = el._$('.slider-pagination-row__pager');\n const renderCustom = (_, current, total) => {\n if (customRenderer) return customRenderer(_, current, total);\n return `${current} ${ofLabel} ${total}`;\n };\n const pagination =\n type === 'dots'\n ? {\n el: $pager,\n bulletClass: 'slider-pagination-row__bullet',\n bulletActiveClass: 'slider-pagination-row__bullet--active',\n clickable: true\n }\n : {\n type: 'custom',\n el: $pager,\n modifierClass: '',\n renderCustom\n };\n\n return {\n pagination,\n navigation: {\n disabledClass: 'sslider-pagination-row__arrow--disabled',\n prevEl,\n nextEl\n }\n };\n};\n","import { Component } from '@verndale/core';\nimport Swiper from 'swiper';\nimport { addGenericSwiperNav } from '../helpers/slider-nav';\nimport { BREAKPOINTS } from '../constants';\n\nclass Module extends Component {\n setupDefaults() {\n this.dom = {\n $slider: this.el._$('.related-resources__slider'),\n $slides: this.el._$$('.swiper-slide'),\n $sliderPagination: this.el._$('.slider-pagination-row')\n };\n\n this.breakpoint = window.matchMedia(`(max-width: ${BREAKPOINTS.TABLET_LANDSCAPE - 1}px)`);\n this.initSlider();\n }\n\n addListeners() {\n this.breakpoint.addEventListener('change', this.initSlider.bind(this));\n }\n\n initSlider() {\n if (this.breakpoint.matches && this.dom.$slides.length > 1) {\n this.dom.$sliderPagination.style.display = 'flex';\n this.slider = new Swiper(this.dom.$slider, {\n loop: true,\n autoHeight: true,\n ...addGenericSwiperNav(this.el)\n });\n\n } else {\n this.dom.$sliderPagination.style.display = 'none';\n this.slider?.destroy?.(true, true);\n }\n }\n}\n\nexport default Module;\n"],"sourceRoot":""}