"use strict"; (function ($) { $("document").ready(function () { if (window.Swiper == null) { return; } const defaultConfig = { direction: "horizontal", slidesPerView: 4, spaceBetween: 30, }; const swiperConfig = window.brandyData?.blocks_data["woocommerce/product-collection"]?.swiper; const backIcon = swiperConfig?.backIcon ?? window.brandyData?.swiper?.backIcon ?? ''; const nextIcon = swiperConfig?.nextIcon ?? window.brandyData?.swiper?.nextIcon ?? ''; $(document).ready(function () { $( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider)" ).addClass("swiper"); $( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider) .brandy-site-product-template" ).addClass("swiper-wrapper"); $( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider) .brandy-site-product-template > .product" ).addClass("swiper-slide"); $( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider)" ).append(`
`); $( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider)" ).append(` `); setTimeout(() => { new Swiper( ".brandy-product-collection-slider:not(.block-editor-block-list__block, .brandy-product-collection-custom-slider)", { navigation: { nextEl: ".brandy-swiper-navigation-button--next", prevEl: ".brandy-swiper-navigation-button--back", }, scrollbar: { el: ".brandy-swiper-scrollbar", draggable: true, placement: "outside", snapOnRelease: true, }, grabCursor: true, ...defaultConfig, ...(swiperConfig?.data ?? {}), } ); }, 1); }); }); })(window.jQuery);