{"version":3,"file":"./acf-blocks/hero-slider/dist/js/script.js","mappings":"4LAkFA,IAlFgB,WACf,SAAAA,K,4FAAcC,CAAA,KAAAD,GACbE,KAAKC,eAAiBC,SAASC,cAAc,qCAC7CH,KAAKI,aAAeF,SAASC,cAAc,+BAC3CH,KAAKK,kBAAoBL,KAAKI,aAAaE,iBAAiB,6BAE5DN,KAAKO,sBACLP,KAAKQ,YACN,C,UAuEC,O,EAvEAV,G,EAAA,EAAAW,IAAA,sBAAAC,MAED,WAAsB,IAAAC,EAAA,KACjBC,EAAS,EAEb,GAAIC,OAAOC,WAAW,sBAAsBC,QAC3Cf,KAAKK,kBAAkBW,SAAQ,SAACC,GAC3BA,EAAUC,aAAeN,IAC5BA,EAASK,EAAUC,aAErB,IACIlB,KAAKI,eACRJ,KAAKI,aAAae,MAAMC,UAAY,GAAHC,OAAMT,EAAM,WAExC,CACN,IAAMU,EAAetB,KAAKI,aAAaD,cAAc,2EAGrDH,KAAKI,aAAae,MAAMC,UAAY,EACpCG,YAAW,WACVZ,EAAKP,aAAae,MAAMC,UAAY,GAAHC,OAAMC,EAAaJ,aAAY,KACjE,GAAG,EACJ,CACD,GAAC,CAAAT,IAAA,aAAAC,MAED,WAAa,IAAAc,EAAA,KAuBZ,IAAIC,OAAO,6BAA8B,CACxCC,cAAe,EACfC,MAAM,EACNC,MAAO,IACPC,SAAU,CACTC,MAAO,IACPC,sBAAsB,GAEvBC,KAAM,CACLC,kBAAmB,uCAEpBC,WAAY,CACXC,GAAI,iCACJC,WAAW,GAEZC,GAAI,CACHC,YA1BwB,SAACC,IAZE,SAACA,GAC7B,IAAMC,EAAeD,EAAOE,UAAY,EAClCC,GAAYF,EAAe,IAAIG,SAAS,EAAG,KAC7C,OAASnB,EAAKvB,gBAAkB,OAASuB,EAAKpB,eACjDoB,EAAKvB,eAAe2C,UAAYF,EAChClB,EAAKnB,kBAAkBW,SAAQ,SAACmB,GAAE,OAAKA,EAAGU,UAAUC,OAAO,SAAS,IACpEtB,EAAKpB,aACHD,cAAc,uCAADkB,OAAwCmB,IACrDK,UAAUE,IAAI,UAElB,CAGCC,CAAqBT,GACrB,IAAMjB,EAAeE,EAAKpB,aAAaD,cAAc,uCAADkB,OACZkB,EAAOE,UAAY,IAG3DjB,EAAKpB,aAAae,MAAMC,UAAY,GAAHC,OAAMC,EAAaJ,aAAY,KACjE,GAqBC+B,WAAY,CACXC,OAAQ,2BACRC,OAAQ,6BAGX,M,8EAACrD,CAAA,CA/Ec,G,uCCCZsD,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaE,QAGrB,IAAIC,EAASN,EAAyBE,GAAY,CAGjDG,QAAS,CAAC,GAOX,OAHAE,EAAoBL,GAAUI,EAAQA,EAAOD,QAASJ,GAG/CK,EAAOD,OACf,CCpBAJ,EAAoB,KAEMA,EAAoB,K","sources":["webpack://impulse-wp/./acf-blocks/hero-slider/src/js/script.js","webpack://impulse-wp/webpack/bootstrap","webpack://impulse-wp/webpack/startup"],"sourcesContent":["class HeroSlider {\n\tconstructor() {\n\t\tthis.currentCountEl = document.querySelector('.block-hero-slider__current-count');\n\t\tthis.slideContent = document.querySelector('.block-hero-slider__content');\n\t\tthis.slideContentCards = this.slideContent.querySelectorAll('.block-hero-slide-content');\n\n\t\tthis.setMinContentHeight();\n\t\tthis.initSlider();\n\t}\n\n\tsetMinContentHeight() {\n\t\tlet height = 0;\n\n\t\tif (window.matchMedia('(min-width: 768px)').matches) {\n\t\t\tthis.slideContentCards.forEach((contentEl) => {\n\t\t\t\tif (contentEl.offsetHeight > height) {\n\t\t\t\t\theight = contentEl.offsetHeight;\n\t\t\t\t}\n\t\t\t});\n\t\t\tif (this.slideContent) {\n\t\t\t\tthis.slideContent.style.minHeight = `${height}px`;\n\t\t\t}\n\t\t} else {\n\t\t\tconst currentSlide = this.slideContent.querySelector(\n\t\t\t\t`.block-hero-slide-content.active, .block-hero-slide-content:first-child`\n\t\t\t);\n\t\t\tthis.slideContent.style.minHeight = 0;\n\t\t\tsetTimeout(() => {\n\t\t\t\tthis.slideContent.style.minHeight = `${currentSlide.offsetHeight}px`;\n\t\t\t}, 1);\n\t\t}\n\t}\n\n\tinitSlider() {\n\t\tconst setCurrentSlideCount = (swiper) => {\n\t\t\tconst currentIndex = swiper.realIndex + 1;\n\t\t\tconst newCount = (currentIndex + '').padStart(2, '0');\n\t\t\tif (null !== this.currentCountEl && null !== this.slideContent) {\n\t\t\t\tthis.currentCountEl.innerHTML = newCount;\n\t\t\t\tthis.slideContentCards.forEach((el) => el.classList.remove('active'));\n\t\t\t\tthis.slideContent\n\t\t\t\t\t.querySelector(`.block-hero-slide-content:nth-child(${currentIndex}`)\n\t\t\t\t\t.classList.add('active');\n\t\t\t}\n\t\t};\n\n\t\tconst handleSlideChange = (swiper) => {\n\t\t\tsetCurrentSlideCount(swiper);\n\t\t\tconst currentSlide = this.slideContent.querySelector(\n\t\t\t\t`.block-hero-slide-content:nth-child(${swiper.realIndex + 1}`\n\t\t\t);\n\n\t\t\tthis.slideContent.style.minHeight = `${currentSlide.offsetHeight}px`;\n\t\t};\n\n\t\t// eslint-disable-next-line no-undef\n\t\tnew Swiper('.block-hero-slider__slider', {\n\t\t\tslidesPerView: 1,\n\t\t\tloop: true,\n\t\t\tspeed: 800,\n\t\t\tautoplay: {\n\t\t\t\tdelay: 9000,\n\t\t\t\tdisableOnInteraction: false,\n\t\t\t},\n\t\t\ta11y: {\n\t\t\t\tslideLabelMessage: 'slide {{index}} of {{slidesLength}}',\n\t\t\t},\n\t\t\tpagination: {\n\t\t\t\tel: '.block-hero-slider__pagination',\n\t\t\t\tclickable: true,\n\t\t\t},\n\t\t\ton: {\n\t\t\t\tslideChange: handleSlideChange,\n\t\t\t},\n\t\t\tnavigation: {\n\t\t\t\tnextEl: '.block-hero-slider__next',\n\t\t\t\tprevEl: '.block-hero-slider__prev',\n\t\t\t},\n\t\t});\n\t}\n}\n\nnew HeroSlider();\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// startup\n// Load entry module and return exports\n__webpack_require__(968);\n// This entry module doesn't tell about it's top-level declarations so it can't be inlined\nvar __webpack_exports__ = __webpack_require__(9343);\n"],"names":["HeroSlider","_classCallCheck","this","currentCountEl","document","querySelector","slideContent","slideContentCards","querySelectorAll","setMinContentHeight","initSlider","key","value","_this","height","window","matchMedia","matches","forEach","contentEl","offsetHeight","style","minHeight","concat","currentSlide","setTimeout","_this2","Swiper","slidesPerView","loop","speed","autoplay","delay","disableOnInteraction","a11y","slideLabelMessage","pagination","el","clickable","on","slideChange","swiper","currentIndex","realIndex","newCount","padStart","innerHTML","classList","remove","add","setCurrentSlideCount","navigation","nextEl","prevEl","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","exports","module","__webpack_modules__"],"sourceRoot":""}