HEX
Server: Apache/2
System: Linux saturn 4.18.0-477.15.1.lve.2.el8.x86_64 #1 SMP Wed Aug 2 10:43:45 UTC 2023 x86_64
User: centuryt (1072)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/centuryt/public_html/wp-content/themes/woostify/assets/js/woocommerce/woocommerce.js
/**
 * Woocommerce js
 *
 * @package woostify
 */

/*global woostify_woocommerce_general*/

'use strict';

/**
 * 
 * @param {string} url 
 * @returns url without product-page
 * because product-page param is managed by InfiniteScroll lib
 */
function removePageInUrl( url ){
	var _url = new URL( url );
	var urlParams = new URLSearchParams(_url.search);
	if (urlParams.has('product-page')) {
		urlParams.delete('product-page');
		_url.search = urlParams.toString();
	}

	let match = _url.pathname.match(/page\/\w{1,}\/{0,}/);
	if ( match ){
		_url.pathname = _url.pathname.replace( match[0], '');
	}
	match = _url.pathname.match(/(\w{0,})\/{1,}$/);
	if ( match ){
		_url.pathname = _url.pathname.replace( match[0], match[1] );
	}
	return _url.toString().replace('#', '');
}
function woostifyInfiniteScroll( addEventClick, infScrollPath ) {
    let container      = document.querySelector( '.site-main .products' ),
    view_more_btn_wrap = document.querySelector( '.woostify-view-more' ),
    view_prev_btn_wrap = document.querySelector( '.woostify-view-prev' ),
    view_prev_btn      = document.querySelector( '.w-view-prev-button' ),
    pagination         = document.querySelector( '.woocommerce-pagination ul.page-numbers' );

    if ( null == container ) {
        container = document.querySelector( '.site-content .products' );
    }

    if ( ( null == view_more_btn_wrap || 'undefined' === typeof( view_more_btn_wrap ) ) && ( null == view_prev_btn_wrap || 'undefined' === typeof( view_prev_btn_wrap ) ) ) {
        return false;
    }

    if ( ( null == view_more_btn_wrap || 'undefined' === typeof( view_more_btn_wrap ) ) ) {
        let options = {
            path: infScrollPath ? infScrollPath : '.prev.page-numbers',
            append: '.product.type-product',
            history: 'push',
            hideNav: '.woocommerce-pagination',
            loadOnScroll: false
        };

        window.infScroll = new InfiniteScroll(
            container,
            options
        );
        
        var pagePrev      = woostify_woocommerce_general.paged - 1,
            page          = woostify_woocommerce_general.paged,
            listPage      = {};


        jQuery('.page-numbers').each( function(index, value) {
            listPage[jQuery(value).text()] = jQuery(value).attr('href');
        } )

        if ( view_prev_btn_wrap && view_prev_btn ) {

            view_prev_btn.addEventListener(
                'click',
                function() {
                    var elementHeight = infScroll.element.getBoundingClientRect().height,
                        view_prev_btn_wrap = document.querySelector( '.woostify-view-prev' );

                    if ( page <= 1 ) {
                        return;
                    }

                    let domParser = new DOMParser(),
                        path;

                    let { responseBody, domParseResponse, fetchOptions } = infScroll.options;

                    path = listPage[pagePrev];
                    history.pushState(null, '', path);
                    var url = jQuery('.page-numbers');

                    if ( typeof fetchOptions == 'function' ) {
                        fetchOptions = fetchOptions();
                    }
                    view_prev_btn.classList.add( 'circle-loading' );
                    var fetchPromise = fetch( path, fetchOptions )
                        .then( ( response ) => {
                            if ( !response.ok ) {
                                let error = new Error( response.statusText );
                                infScroll.onPageError( error, path, response );
                                return { response };
                            }
                            view_prev_btn.classList.remove( 'circle-loading' );
                            pagePrev--;
                            if ( pagePrev <= 0 ) {
                                view_prev_btn_wrap.style.display = 'none';
                            }

                            return response[ responseBody ]().then( ( body ) => {

                                let canDomParse = responseBody == 'text' && domParseResponse;
                                if ( canDomParse ) {
                                    body = domParser.parseFromString( body, 'text/html' );
                                }

                                let items = body.querySelectorAll( infScroll.options.append );
                                if ( !items || !items.length ) return;

                                // get fragment if not provided
                                let fragment = getItemsFragment( items );

                                infScroll.element.insertBefore( fragment, infScroll.element.children[0] );
                                var scrollPages = infScroll.scrollPages;
                                var history = {
                                    top: 0,
                                    path: path,
                                    title: response.title
                                };
                                infScroll.scrollPages.unshift(history);
                                for (var i = 1; i < infScroll.scrollPages.length; i++) {
                                    infScroll.scrollPages[i].top = infScroll.scrollPages[i].top + elementHeight;
                                }
                            } );
                        } )
                    .catch( ( error ) => {
                        console.log(error);
                    } );
                }
            )

        }
        return false;
    }

    let loading_status = view_more_btn_wrap.querySelector( '.woostify-loading-status' ),
    loading_type       = woostify_woocommerce_general.loading_type,
    view_more_btn      = view_more_btn_wrap.querySelector( '.w-view-more-button' );

    let options = {
        path: infScrollPath ? infScrollPath : '.next.page-numbers',
        append: '.product.type-product',
        history: 'push', // replace
        hideNav: '.woocommerce-pagination',
        checkLastPage: '.next.page-numbers',
        loadOnScroll: 'button' === loading_type ? false : true
    }

    if ( null == pagination || 'undefined' === typeof( pagination ) ) {

        if ( 'button' === loading_type ) {
            view_more_btn_wrap.style.display = 'none';
        } else {
            options.loadOnScroll = false;
        }
    } else {

        if ( 'button' === loading_type ) {
            view_more_btn_wrap.style.display = 'block';
            view_more_btn.style.display      = 'inline-flex';
        } else {
            options.loadOnScroll = true;
        }
    }

    if ( pagination ) {
        // Overwrite appendItems InfiniteScroll
        InfiniteScroll.prototype.appendItems = function( items, fragment ) {
            if ( !this.conditionBeforeAppend(this, { items: items, fragment: fragment }) ) {
                console.warn( 'Url has change. No data apended.' );
                let view_more_btn_wrap = document.querySelector( '.woostify-view-more' ),
                    loading_type       = woostify_woocommerce_general.loading_type;
                if ( 'button' === loading_type ) {
                    let view_more_btn = view_more_btn_wrap.querySelector( '.w-view-more-button' );
                    view_more_btn.classList.remove( 'circle-loading' );
                } else {
                    let loading_status = view_more_btn_wrap.querySelector( '.woostify-loading-status' );
                    loading_status.style.display = 'none'
                }
                return;
            }
            if ( !items || !items.length ) return;
          
            // get fragment if not provided
            fragment = fragment || getItemsFragment( items );
            refreshScripts( fragment );
            this.element.appendChild( fragment );
        };

		/**
		 * InfiniteScroll: Check the conditions before append content of next page
		 * new data will not appended if this function return false
		 * @param infScrollObj The InfiniteScroll object
		 * @param args The InfiniteScroll data (items, fragment), prepare to appended
		 * @return boolean | Will data appended or not
		 */ 
		InfiniteScroll.prototype.conditionBeforeAppend = function( infScrollObj, args ) {
			// let beforeUrl = removePageInUrl(woostify_woocommerce_general.currentUrl);
			// let afterUrl = removePageInUrl(window.location.href);
			// if(beforeUrl != afterUrl) {
			// 	console.warn( 'Before', woostify_woocommerce_general.currentUrl, beforeUrl);
			// 	console.warn( 'After ' , window.location.href, afterUrl);
			// }
			// return beforeUrl == afterUrl;
			return infScroll.continue && (woostifyEvent.ajax_call||0) != 1;

        }

        window.infScroll = new InfiniteScroll(
            container,
            options
        )

        infScroll.loadCount = 0;

		infScroll.on(
			'request',
			function( path, fetchPromise ) {
				if ( 'button' === loading_type ) {
					view_more_btn.classList.add( 'circle-loading' )
				} else {
					loading_status.style.display = 'inline-block'
				}
				let infScrollPathelm = document.querySelector(options.path);
				let currentUrl = infScrollPathelm ? infScrollPathelm.href : '';
				woostify_woocommerce_general.currentUrl = currentUrl;

				infScroll.continue = 1;
				if( woostifyEvent.ajax_call||0 ) {
					infScroll.continue = 0;
				}
                
			}
		)

        infScroll.on(
            'load',
            function( body, path, fetchPromise ) {
                let all_page     = body.querySelectorAll( '.woocommerce-pagination .page-numbers .page-numbers:not(.next):not(.prev):not(.dots)' );
                let next_page_el = body.querySelectorAll( '.woocommerce-pagination .page-numbers .page-numbers.next' );
                let is_last_page = ( ! next_page_el.length ) ? true : false;

                if ( 'button' === loading_type ) {
                    view_more_btn.classList.remove( 'circle-loading' );
                } else {
                    let loading_status = view_more_btn_wrap.querySelector( '.woostify-loading-status' );
                    loading_status.style.display = 'none'
                }

                if ( all_page.length ) {
                    if ( is_last_page ) {
                        if ( 'button' === loading_type ) {
                            view_more_btn.style.display = 'none'
                        } else {
                            loading_status.style.display = 'none'
                            infScroll.option(
                                {
                                    loadOnScroll: false
                                }
                            )
                        }
                    } else {
                        if ( 'button' !== loading_type ) {
                            infScroll.option(
                                {
                                    loadOnScroll: true
                                }
                            )
                        }
                    }
                } else {
                    if ( 'button' === loading_type ) {
                        view_more_btn.style.display = 'inline-flex'
                    } else {
                        loading_status.style.display = 'inline-block'
                    }
                }
            }
        )

        infScroll.on(
            'append',
            function( body, path, items, response ) {

                if ( 'button' === loading_type ) {
                    view_more_btn.classList.remove( 'circle-loading' );
                } else {
                    let loading_status = view_more_btn_wrap.querySelector( '.woostify-loading-status' );
                    loading_status.style.display = 'none'
                }

                // Re-init ajax add to cart button
                if ( 'function' === typeof( woostifyAjaxAddToCartButton ) ) {
                    woostifyAjaxAddToCartButton();
                }
                // Re-init quick view.
                if ( 'function' === typeof( woostifyQuickView ) ) {
                    woostifyQuickView();
                }

                // Variation swatches.
                if ( 'function' === typeof( woostifyVariationSwatches ) ) {
                    woostifyVariationSwatches();
                }
                // Re-init swatch list.
                if ( 'function' === typeof( woostifySwatchList ) ) {
                    woostifySwatchList();
                }

                // Re-init quantity button list.
                if ( 'function' === typeof( customQuantity ) ) {
                    customQuantity();
                }

                // Re-init countdown urgency.
                if ( 'function' === typeof( woostifyCountdownUrgency ) ) {
                    woostifyCountdownUrgency();
                }

                if ( '1' === woostify_woocommerce_general.is_active_wvs ) {
                    jQuery( '.variations_form' ).each(
                        function() {
                            jQuery( this ).wc_variation_form();
                        }
                    );
                }

                if (items.length > 0 && jQuery( '.result-end' )) {
                    let end_num = jQuery( '.result-end' )[0].innerHTML;
                    jQuery( '.result-end' )[0].innerHTML = parseInt(end_num) + items.length;
                }
            }
        )

        infScroll.on(
            'last',
            function( body, path ) {
                if ( 'button' === loading_type ) {
                    view_more_btn.style.display = 'none'
                } else {
                    loading_status.style.display = 'none'
                }
            }
        )

        var pagePrev = woostify_woocommerce_general.paged - 1,
            page     = infScroll.pageIndex,
            listPage = {};


        jQuery('.page-numbers').each( function(index, value) {
            listPage[jQuery(value).text()] = jQuery(value).attr('href');
        } )

        if ( view_prev_btn_wrap && view_prev_btn ) {

            view_prev_btn.addEventListener(
                'click',
                function() {
                    loadPreviewPage( infScroll, pagePrev, listPage );
                    pagePrev--;
                }
            )

        }

        if ( 'button' === loading_type && addEventClick ) {
            view_more_btn.addEventListener(
                'click',
                function() {
                    infScroll.loadNextPage()
                }
            )
        }
    }
}

function loadPreviewPage(infScroll, pagePrev, listPage ) {
    let view_prev_btn = document.querySelector( '.w-view-prev-button' );
    var elementHeight = infScroll.element.getBoundingClientRect().height,
        view_prev_btn_wrap = document.querySelector( '.woostify-view-prev' ),
        page = infScroll.pageIndex;
    if ( page <= 1 ) {
        return;
    }

    let domParser = new DOMParser(),
        path;

    let { responseBody, domParseResponse, fetchOptions } = infScroll.options;

    if ( ( page - 1 ) == pagePrev ) {
        path = jQuery('.prev.page-numbers').attr('href');
    }
    path = listPage[pagePrev];
    history.pushState(null, '', path);
    var url = jQuery('.page-numbers');

    if ( typeof fetchOptions == 'function' ) {
        fetchOptions = fetchOptions();
    }
    view_prev_btn.classList.add( 'circle-loading' );
    var fetchPromise = fetch( path, fetchOptions )
        .then( ( response ) => {
            if ( !response.ok ) {
                let error = new Error( response.statusText );
                infScroll.onPageError( error, path, response );
                return { response };
            }
            view_prev_btn.classList.remove( 'circle-loading' );
            pagePrev--;
            if ( pagePrev <= 0 ) {
                view_prev_btn_wrap.style.display = 'none';
            }

            return response[ responseBody ]().then( ( body ) => {

                let canDomParse = responseBody == 'text' && domParseResponse;
                if ( canDomParse ) {
                    body = domParser.parseFromString( body, 'text/html' );
                }

                let items = body.querySelectorAll( infScroll.options.append );
                if ( !items || !items.length ) return;

                // get fragment if not provided
                let fragment = getItemsFragment( items );

                infScroll.element.insertBefore( fragment, infScroll.element.children[0] );
                var scrollPages = infScroll.scrollPages;
                var history = {
                    top: 0,
                    path: path,
                    title: response.title
                };
                infScroll.scrollPages.unshift(history);
                for (var i = 1; i < infScroll.scrollPages.length; i++) {
                    infScroll.scrollPages[i].top = infScroll.scrollPages[i].top + elementHeight;
                }
            } );
        } )
    .catch( ( error ) => {
        console.log(error);
    } );
};

function refreshScripts( fragment ) {
    let scripts = fragment.querySelectorAll('script');
    for ( let script of scripts ) {
    let freshScript = document.createElement('script');
    // copy attributes
    let attrs = script.attributes;
    for ( let attr of attrs ) {
      freshScript.setAttribute( attr.name, attr.value );
    }
    // copy inner script code. #718, #782
    freshScript.innerHTML = script.innerHTML;
    script.parentNode.replaceChild( freshScript, script );
    }
}

function getItemsFragment( items ) {
    // add items to fragment
    let fragment = document.createDocumentFragment();
    if ( items ) fragment.append( ...items );
    return fragment;
}

function cartSidebarOpen() {
    if ( document.body.classList.contains( 'no-cart-sidebar' ) || document.body.classList.contains( 'disabled-sidebar-cart' ) ) {
        return;
    }

    document.documentElement.classList.add( 'cart-sidebar-open' );
}

function eventCartSidebarOpen() {
    document.body.classList.add( 'updating-cart' );
    document.body.classList.remove( 'cart-updated' );
}

function eventCartSidebarClose() {
    document.body.classList.add( 'cart-updated' );
    document.body.classList.remove( 'updating-cart' );
}

// Event when click shopping bag button.
function shoppingBag() {
    var shoppingBag = document.getElementsByClassName( 'shopping-bag-button' ),
        cartSidebar = document.getElementById( 'shop-cart-sidebar' );

    if (
        ! shoppingBag.length ||
        ! cartSidebar ||
        document.body.classList.contains( 'woocommerce-cart' ) ||
        document.body.classList.contains( 'woocommerce-checkout' )
    ) {
        return;
    }

    for ( var i = 0, j = shoppingBag.length; i < j; i++ ) {
        shoppingBag[i].addEventListener(
            'click',
            function( e ) {
                e.preventDefault();

                cartSidebarOpen();
                closeAll();
            }
        );
    }
}

// Condition for Add 'scrolling-up' and 'scrolling-down' class to body.
var woostifyConditionScrolling = function() {
    if (
        // When Demo store enable.
        ( document.body.classList.contains( 'woocommerce-demo-store' ) && -1 === document.cookie.indexOf( 'store_notice' ) ) ||
        // When sticky button on mobile, Cart and Checkout page enable.
        ( ( document.body.classList.contains( 'has-order-sticky-button' ) || document.body.classList.contains( 'has-proceed-sticky-button' ) ) && window.innerWidth < 768 )
    ) {
        return true;
    }

    return false;
}

// Stock progress bar.
var woostifyStockQuantityProgressBar = function() {
    var selector = document.querySelectorAll( '.woostify-single-product-stock-progress-bar' );
    if ( ! selector.length ) {
        return;
    }

    selector.forEach(
        function( element, index ) {
            var number = element.getAttribute( 'data-number' ) || 0;

            element.style.width = number + '%';
        }
    );
}

var progressBarConfetti = function( progress_bar, percent ) {
    if ( woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold && woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold_effect ) {
        var curr_progress_bar = document.querySelectorAll( '.free-shipping-progress-bar' ),
        curr_percent          = 0;

        if ( curr_progress_bar.length ) {
            curr_percent = parseInt( curr_progress_bar[0].getAttribute( 'data-progress' ) );
        }
        
        // Effect.
        if ( ( !progress_bar.length && curr_percent >= 100 ) || ( percent < curr_percent && curr_percent >= 100 ) ) {

            let confetti_canvas = document.createElement( 'canvas' );

            confetti_canvas.className = 'confetti-canvas';
            
            document.querySelector( '#shop-cart-sidebar' ).appendChild( confetti_canvas );

            let wConfetti = confetti.create(
                confetti_canvas,
                {
                    resize: true,
                    }
            );

            confettiSnowEffect( wConfetti, 5000 )

            setTimeout(
                function() {
                    wConfetti.reset();
                    document.querySelector( '.confetti-canvas' ).remove();
                },
                6000
            );
        }

        percent = curr_percent;
    }
}

var confettiSnowEffect = function( confetti, duration ) {
    var animationEnd = Date.now() + duration,
    gravity          = 1,
    startVelocity    = 0;

    function randomInRange(min, max) {
        return Math.random() * (max - min) + min;
    }

    ( function frame() {
        var timeLeft = animationEnd - Date.now(),
        ticks        = Math.max( 200, 500 * (timeLeft / duration) );

        confetti(
            {
                particleCount: 1,
                startVelocity: startVelocity,
                ticks: ticks,
                origin: {
                    x: Math.random(),
                    // since particles fall down, skew start toward the top.
                    y: 0
                },
                colors: ["#EF2964"],
                shapes: ['circle', 'square'],
                gravity: gravity,
                scalar: randomInRange( 0.4, 1 ),
                drift: randomInRange( -0.4, 0.4 )
            }
        );
        confetti(
            {
                particleCount: 1,
                startVelocity: startVelocity,
                ticks: ticks,
                origin: {
                    x: Math.random(),
                    // since particles fall down, skew start toward the top.
                    y: 0
                },
                colors: ["#2D87B0"],
                shapes: ['circle', 'square'],
                gravity: gravity,
                scalar: randomInRange( 0.4, 1 ),
                drift: randomInRange( -0.4, 0.4 )
            }
        );

        if (timeLeft > 0) {
            requestAnimationFrame( frame );
        }
    }() );
}

// Product quantity on mini cart.
var woostifyQuantityMiniCart = function() {
    var cartCountContainer = document.querySelector( '.shopping-bag-button .shop-cart-count, .boostify-count-product' );
    var infor              = document.querySelectorAll( '.mini-cart-product-infor' );

    if ( ! infor.length || ! cartCountContainer ) {
        if ( cartCountContainer ) {
            cartCountContainer.classList.add( 'hide' );
        }
        return;
    }

    cartCountContainer.classList.remove( 'hide' );

    infor.forEach(
        function( ele, i ) {
            var quantityBtn  = ele.querySelectorAll( '.mini-cart-product-qty' ),
                input        = ele.querySelector( 'input.qty' ),
                currInputVal = input.value,
                max          = Number( input.getAttribute( 'max' ) || -1 ),
                cartItemKey  = input.getAttribute( 'data-cart_item_key' ) || '',
                eventChange  = new Event( 'change' ),
                qtyUpdate    = new Event( 'quantity_updated' );

            if ( ! quantityBtn.length || ! input ) {
                return;
            }

            for ( var i = 0, j = quantityBtn.length; i < j; i++ ) {
                quantityBtn[i].onclick = function() {
                    var t        = this,
                        current  = Number( input.value || 0 ),
                        step     = Number( input.getAttribute( 'step' ) || 1 ),
                        min      = Number( input.getAttribute( 'min' ) || 1 ),
                        dataType = t.getAttribute( 'data-qty' );

                    if ( current < min || isNaN( current ) ) {
                        alert( woostify_woocommerce_general.qty_warning );
                        return;
                    }

                    if ( 'minus' === dataType ) { // Minus button.
                        if ( current <= min || ( current - step ) < min || current <= step ) {
                            return;
                        }

                        var qty = Number( ( current - step ).toFixed( step.countDecimals() ) );

                        input.value  = qty;
                        currInputVal = qty;
                    } else if ( 'plus' === dataType ) { // Plus button.
                        if ( max > 0 && ( current >= max || ( current + step ) > max ) ) {
                            return;
                        }

                        var qty = Number( ( current + step ).toFixed( step.countDecimals() ) );

                        input.value  = qty;
                        currInputVal = qty;
                    }

                    // Trigger event.
                    input.dispatchEvent( eventChange );
                }
            }

            // Check valid quantity.
            input.addEventListener(
                'change',
                function() {
                    var inputVal = Number( input.value || 0 ),
                        min      = Number( input.getAttribute( 'min' ) || 0 );

                    // Valid quantity.
                    if ( inputVal < min || isNaN( inputVal ) || ( max > 0 && ( Number( inputVal ) > max ) ) ) {
                        alert( woostify_woocommerce_general.qty_warning );
                        input.value = currInputVal;
                        return;
                    }

                    // Request.
                    var request = new Request(
                        woostify_woocommerce_general.ajax_url,
                        {
                            method: 'POST',
                            body: 'action=update_quantity_in_mini_cart&ajax_nonce=' + woostify_woocommerce_general.ajax_nonce + '&key=' + cartItemKey + '&qty=' + inputVal,
                            credentials: 'same-origin',
                            headers: new Headers(
                                {
                                    'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
                                }
                            )
                        }
                    );

                    // Add loading.
                    document.documentElement.classList.add( 'mini-cart-updating' );

                    // Fetch API.
                    fetch( request )
                        .then(
                            function( res ) {
                                if ( 200 !== res.status ) {
                                    alert( woostify_woocommerce_general.ajax_error );
                                    console.log( 'Status Code: ' + res.status );
                                    throw res;
                                }

                                return res.json();
                            }
                        ).then(
                            function( json ) {
                                if ( ! json.success ) {
                                    return;
                                }

                                jQuery( document.body ).trigger( 'updated_wc_div' );

                                var data                     = json.data,
                                    totalPrice               = document.querySelector( '.cart-sidebar-content .woocommerce-mini-cart__total .woocommerce-Price-amount.amount' ),
                                    headerCartPriceContainer = document.querySelectorAll( '.woostify-header-total-price, .boostify-subtotal' ),
                                    productCount             = document.querySelectorAll( '.shop-cart-count, .boostify-count-product' ),
                                    shipping_threshold       = document.querySelectorAll( '.free-shipping-progress-bar' );

                                // Update total price.
                                if ( totalPrice ) {
                                    totalPrice.innerHTML = data.total_price;
                                    if ( headerCartPriceContainer.length ) {
                                        for ( var si = 0, sc = headerCartPriceContainer.length; si < sc; si++ ) {
                                            headerCartPriceContainer[si].innerHTML = data.total_price;
                                        }
                                    }
                                }

                                // Update product count.
                                if ( productCount.length ) {
                                    for ( var c = 0, n = productCount.length; c < n; c++ ) {
                                        productCount[c].innerHTML = data.item;
                                    }
                                }

                                // Update free shipping threshold.
                                if ( shipping_threshold.length && data.hasOwnProperty( 'free_shipping_threshold' ) ) {
                                    let prev_percent = shipping_threshold[0].getAttribute( 'data-progress' );
                                    for ( var fsti = 0, fstc = shipping_threshold.length; fsti < fstc; fsti++ ) {
                                        shipping_threshold[fsti].setAttribute( 'data-progress', data.free_shipping_threshold.percent );
                                        shipping_threshold[fsti].querySelector( '.progress-bar-message' ).innerHTML = data.free_shipping_threshold.message;
                                        if ( shipping_threshold[fsti].querySelector( '.progress-percent' ) ) {
                                            shipping_threshold[fsti].querySelector( '.progress-percent' ).innerHTML = data.free_shipping_threshold.percent + '%';
                                        }
                                        if ( shipping_threshold[fsti].querySelector( '.progress-bar-status' ) ) {
                                            shipping_threshold[fsti].querySelector( '.progress-bar-status' ).style.minWidth           = data.free_shipping_threshold.percent + '%';
                                            shipping_threshold[fsti].querySelector( '.progress-bar-status' ).style.transitionDuration = '.6s';
                                            if ( 100 <= parseInt( data.free_shipping_threshold.percent ) ) {
                                                shipping_threshold[fsti].querySelector( '.progress-bar-status' ).classList.add( 'success' );
                                            } else {
                                                shipping_threshold[fsti].querySelector( '.progress-bar-status' ).classList.remove( 'success' );
                                            }
                                        }
                                    }

                                    if ( woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold && woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold_effect ) {
                                        if ( prev_percent < 100 && data.free_shipping_threshold.percent >= 100 ) {
                                            var confetti_canvas = document.createElement( 'canvas' );

                                            confetti_canvas.className = 'confetti-canvas';

                                            document.querySelector( '#shop-cart-sidebar' ).appendChild( confetti_canvas );

                                            var wConfetti = confetti.create(
                                                confetti_canvas,
                                                {
                                                    resize: true,
                                                }
                                            );

                                            confettiSnowEffect( wConfetti, 5000 )

                                            setTimeout(
                                                function() {
                                                    wConfetti.reset();
                                                    document.querySelector( '.confetti-canvas' ).remove();
                                                },
                                                6000
                                            );
                                        }
                                    }
                                }
                            }
                        ).catch(
                            function( err ) {
                                console.log( err );
                            }
                        ).finally(
                            function() {
                                document.documentElement.classList.remove( 'mini-cart-updating' );
                                document.dispatchEvent( qtyUpdate );
                            }
                        );
                }
            );
            

        }
    );
}

// Get current percent shipping threshold product add to cart
function woostifyAjaxAddToCartButton() {
	var buttons = document.querySelectorAll( '.add_to_cart_button' );
	if ( ! buttons.length ) {
		return;
	}

	buttons.forEach(
		function( ele ) {
			ele.onclick = function( e ) {
                
				var product_id = ele.getAttribute('data-product_id');
				var product_qty = ele.getAttribute('data-quantity');
               
				var request = new Request(
					woostify_woocommerce_general.ajax_url,
					{
						method: 'POST',
						body: 'action=get_curr_percent_shipping_threshold_product&ajax_nonce=' + woostify_woocommerce_general.ajax_nonce + '&product_id=' + product_id + '&qty=' + product_qty,
						credentials: 'same-origin',
						headers: new Headers(
							{
								'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
							}
						)
					}
				);
                
				// Fetch API.
				fetch( request )
				.then(
					function( res ) {
						if ( 200 !== res.status ) {
							alert( woostify_woocommerce_general.ajax_error );
							console.log( 'Status Code: ' + res.status );
							throw res;
						}
			
						return res.json();
					}
				).then(
					function( json ) {
						if ( ! json.success ) {
							return;
						}
			
						var data                     = json.data;
						var free_shipping_threshold_active = data.free_shipping_threshold.active;
			
						if( !free_shipping_threshold_active ){
							return;
						}
						
						var number_of_decimals = data.number_of_decimals;
						var goal_amount = data.free_shipping_threshold.goal_amount;
						var total_percent = data.free_shipping_threshold.total_percent;
						var curr_percent = data.free_shipping_threshold.percent;
						var product_price = data.product.price;
                        var product_total_price = data.product.total_price;
                        
						if ( woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold && woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold_effect ) {
							var progress_bar = document.querySelectorAll( '.free-shipping-progress-bar' ),
							percent          = 0;
							if ( progress_bar.length ) {
								percent = parseInt( progress_bar[0].getAttribute( 'data-progress' ) );
							}

							if ( progress_bar.length == 0 ) {
                                
                                product_total_price = product_total_price.toFixed();
                                if( product_total_price >= goal_amount ){
									total_percent = ( product_total_price / goal_amount ) * 100;
									curr_percent = total_percent >= 100 ? 100 : total_percent.toFixed(number_of_decimals );
								}

								// Effect.
								if ( ( !progress_bar.length && curr_percent >= 100 ) || ( percent < curr_percent && curr_percent >= 100 ) ) {
									
                                    let confetti_canvas = document.createElement( 'canvas' );
						
									confetti_canvas.className = 'confetti-canvas';
									
									document.querySelector( '#shop-cart-sidebar' ).appendChild( confetti_canvas );
						
									let wConfetti = confetti.create(
										confetti_canvas,
										{
											resize: true,
											}
									);

									confettiSnowEffect( wConfetti, 5000 );
						
									setTimeout(
										function() {
											wConfetti.reset();
											document.querySelector( '.confetti-canvas' ).remove();
										},
										6000
									);
								}
							}

			
						}

						
			
					}
				).catch(
					function( err ) {
						console.log( err );
					}
				);
			}
		}
	);
}

// Get current percent shipping threshold mini mart
function shippingThresholdCurrPercent() {

    var request = new Request(
        woostify_woocommerce_general.ajax_url,
        {
            method: 'POST',
            body: 'action=get_curr_percent_shipping_threshold&ajax_nonce=' + woostify_woocommerce_general.ajax_nonce,
            credentials: 'same-origin',
            headers: new Headers(
                {
                    'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
                }
            )
        }
    );

    // Fetch API.
    fetch( request )
    .then(
        function( res ) {
            if ( 200 !== res.status ) {
                alert( woostify_woocommerce_general.ajax_error );
                console.log( 'Status Code: ' + res.status );
                throw res;
            }

            return res.json();
        }
    ).then(
        function( json ) {
            if ( ! json.success ) {
                return;
            }

            var data                     = json.data;
            var free_shipping_threshold_active = data.free_shipping_threshold.active;
            if( !free_shipping_threshold_active ){
                return;
            }

            var total_percent = data.free_shipping_threshold.total_percent;
            var curr_percent = data.free_shipping_threshold.percent;
    
            if( ( curr_percent < 100 ) ){

                shippingThreshold(  );
            }    
			
			if( curr_percent == 100 && total_percent == 100 ){
				
                var confetti_canvas = document.createElement( 'canvas' );

                confetti_canvas.className = 'confetti-canvas';

                document.querySelector( '#shop-cart-sidebar' ).appendChild( confetti_canvas );

                var wConfetti = confetti.create(
                    confetti_canvas,
                    {
                        resize: true,
                    }
                );
                
                confettiSnowEffect( wConfetti, 5000 );

                setTimeout(
                    function() {
                        wConfetti.reset();
                        document.querySelector( '.confetti-canvas' ).remove();
                    },
                    6000
                );
            }

        }
    ).catch(
        function( err ) {
            console.log( err );
        }
    ).finally(
        function() {

        }
    );

    return false;
}

function shippingThreshold( ) {

    var infor  = document.querySelectorAll( '.mini-cart-product-infor' );
    var shipping_threshold = document.querySelectorAll( '.free-shipping-progress-bar' );

    infor.forEach(
        function( ele, i ) {
            var input        = ele.querySelector( 'input.qty' ),
                cartItemKey  = input.getAttribute( 'data-cart_item_key' ) || '',
                productQty = input.value;
            
            if ( input ) {
                // Request.
                var request = new Request(
                    woostify_woocommerce_general.ajax_url,
                    {
                        method: 'POST',
                        body: 'action=update_quantity_in_mini_cart&ajax_nonce=' + woostify_woocommerce_general.ajax_nonce + '&key=' + cartItemKey + '&qty=' + productQty,
                        credentials: 'same-origin',
                        headers: new Headers(
                            {
                                'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
                            }
                        )
                    }
                );

                // Fetch API.
                fetch( request )
                    .then(
                        function( res ) {
                            if ( 200 !== res.status ) {
                                alert( woostify_woocommerce_general.ajax_error );
                                console.log( 'Status Code: ' + res.status );
                                throw res;
                            }

                            return res.json();
                        }
                    ).then(
                        function( json ) {
                            if ( ! json.success ) {
                                return;
                            }

                            jQuery( document.body ).trigger( 'updated_wc_div' );

                            var data                     = json.data;
  
                            // Update free shipping threshold.
                            if ( shipping_threshold.length && data.hasOwnProperty( 'free_shipping_threshold' ) ) {
                                let prev_percent = shipping_threshold[0].getAttribute( 'data-progress' );
                                for ( var fsti = 0, fstc = shipping_threshold.length; fsti < fstc; fsti++ ) {
                                    shipping_threshold[fsti].setAttribute( 'data-progress', data.free_shipping_threshold.percent );
                                    shipping_threshold[fsti].querySelector( '.progress-bar-message' ).innerHTML = data.free_shipping_threshold.message;
                                    if ( shipping_threshold[fsti].querySelector( '.progress-percent' ) ) {
                                        shipping_threshold[fsti].querySelector( '.progress-percent' ).innerHTML = data.free_shipping_threshold.percent + '%';
                                    }
                                    if ( shipping_threshold[fsti].querySelector( '.progress-bar-status' ) ) {
                                        shipping_threshold[fsti].querySelector( '.progress-bar-status' ).style.minWidth           = data.free_shipping_threshold.percent + '%';
                                        shipping_threshold[fsti].querySelector( '.progress-bar-status' ).style.transitionDuration = '.6s';
                                        if ( 100 <= parseInt( data.free_shipping_threshold.percent ) ) {
                                            shipping_threshold[fsti].querySelector( '.progress-bar-status' ).classList.add( 'success' );
                                        } else {
                                            shipping_threshold[fsti].querySelector( '.progress-bar-status' ).classList.remove( 'success' );
                                        }
                                    }
                                }
                                
                                if ( woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold && woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold_effect ) {

									var curr_progress_bar = document.querySelectorAll( '.free-shipping-progress-bar' );
									var curr_percent      = 0;
									if ( curr_progress_bar.length ) {
										curr_percent = parseInt( curr_progress_bar[0].getAttribute( 'data-progress' ) );
									}

                                    if ( (prev_percent < 100 && data.free_shipping_threshold.percent >= 100 ) || ( prev_percent < curr_percent && curr_percent >= 100) ) {

                                        var confetti_canvas = document.createElement( 'canvas' );

                                        confetti_canvas.className = 'confetti-canvas';

                                        document.querySelector( '#shop-cart-sidebar' ).appendChild( confetti_canvas );

                                        var wConfetti = confetti.create(
                                            confetti_canvas,
                                            {
                                                resize: true,
                                            }
                                        );

                                        confettiSnowEffect( wConfetti, 5000 )

                                        setTimeout(
                                            function() {
                                                wConfetti.reset();
                                                document.querySelector( '.confetti-canvas' ).remove();
                                            },
                                            6000
                                        );
                                    }
                                }
                            }
                        }
                    ).catch(
                        function( err ) {
                            console.log( err );
                        }
                    ).finally(
                        function() {

                        }
                    );
            }   
        }
    );
}

var updateHeaderCartPrice = function () {
    var total                    = document.querySelector( '.cart-sidebar-content .woocommerce-mini-cart__total .woocommerce-Price-amount.amount' ),
        priceFormat              = '',
        headerCartPriceContainer = document.querySelectorAll( '.woostify-header-total-price' );

    if ( headerCartPriceContainer.length ) {
        switch ( woostify_woocommerce_general.currency_pos ) {
            case 'left':
                priceFormat = '<span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">' + woostify_woocommerce_general.currency_symbol + '</span>0</bdi></span>';
                break;
            case 'right':
                priceFormat = '<span class="woocommerce-Price-amount amount"><bdi>0<span class="woocommerce-Price-currencySymbol">' + woostify_woocommerce_general.currency_symbol + '</span></bdi></span>';
                break;
            case 'left_space':
                priceFormat = '<span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">' + woostify_woocommerce_general.currency_symbol + '</span>&nbsp;0</bdi></span>';
                break;
            case 'right_space':
                priceFormat = '<span class="woocommerce-Price-amount amount"><bdi>0&nbsp;<span class="woocommerce-Price-currencySymbol">' + woostify_woocommerce_general.currency_symbol + '</span></bdi></span>';
                break;

            default:
                break;
        }
        for ( var si = 0, sc = headerCartPriceContainer.length; si < sc; si++ ) {
            if (total) {
                headerCartPriceContainer[si].innerHTML = '<span class="woocommerce-Price-amount amount">' + total.innerHTML + '</span>';
            } else {
                headerCartPriceContainer[si].innerHTML = priceFormat;
            }
        }
    }
}

// Product carousel.
var woostifyProductsCarousel = function( selector ) {
    var elements = document.querySelectorAll( selector );

    if ( ! elements.length ) {
        return;
    }

    elements.forEach(
        function( element ) {
            if ( element.classList.contains( 'tns-slider' ) ) {
                return;
            }
            if ( ! woostify_woocommerce_general.related_carousel_opts.hasOwnProperty( 'loop' ) ) {
                return;
            }
            var options       = woostify_woocommerce_general.related_carousel_opts;
            options.container = element;

            var slider = tns( options );
        }
    );
}

// Show an element.
var woostiftToggleShow = function (elem) {

    // Get the natural height of the element.
    var getHeight = function () {
        elem.style.display = 'block';
        var height         = elem.scrollHeight + 'px';
        elem.style.display = '';
        return height;
    };

    var height = getHeight();
    elem.classList.add( 'is-visible' );
    elem.style.height = height;

    // Once the transition is complete, remove the inline max-height so the content can scale responsively.
    window.setTimeout(
        function () {
            elem.style.height = '';
        },
        350
    );

};

// Hide an element.
var woostiftToggleHide = function (elem) {

    // Give the element a height to change from.
    elem.style.height = elem.scrollHeight + 'px';

    // Set the height back to 0.
    window.setTimeout(
        function () {
            elem.style.height = '0';
        },
        1
    );

    // When the transition is complete, hide it.
    window.setTimeout(
        function () {
            elem.classList.remove( 'is-visible' );
        },
        350
    );
};

// Toggle element visibility.
var woostifyToggleSlide = function (elem, timing) {

    // If the element is visible, hide it.
    if (elem.classList.contains( 'is-visible' )) {
        woostiftToggleHide( elem );
        return;
    }

    // Otherwise, show it.
    woostiftToggleShow( elem );

};

var productReviewLink = function () {
    jQuery('.woocommerce-review-link').click(function(){
        var woostifyAccordionTitleReview = jQuery('.woostify-accordion-title[data-tab="reviews"]');
        if ( !woostifyAccordionTitleReview.parent().hasClass('active') ) {
            woostifyAccordionTitleReview.trigger('click');    
        }
    });
}

var productDataTabsAccordion = function() {
    var wcTabs = document.querySelectorAll( '.woocommerce-tabs.layout-accordion' );

    if ( ! wcTabs.length ) {
        return;
    }

    wcTabs.forEach(
        function( wcTab ) {
            var tabTitles = wcTab.querySelectorAll( '.woostify-accordion-title' );
            if ( ! tabTitles.length ) {
                return;
            }
      
            var tabsWrapper = wcTab.querySelectorAll( '.woostify-tab-wrapper' );
     
            tabTitles.forEach(
                function( tabTitle, tabTitleIdx ) {
                    tabTitle.onclick = function() {
                        tabsWrapper.forEach(
                            function( tabWrapper, tabWrapperIdx ) {
                                if ( tabWrapperIdx === tabTitleIdx ) {
                                    return;
                                }

                                if ( tabWrapper.classList.contains( 'active' ) ) {
                                    woostifyToggleSlide( tabWrapper.querySelector( '.woocommerce-Tabs-panel' ) );
                                }
                                tabWrapper.classList.remove( 'active' );
                            }
                        );

                        if ( tabTitle.parentNode.classList.contains( 'active' ) ) {
                            tabTitle.parentNode.classList.remove( 'active' );
                        } else {
                            tabTitle.parentNode.classList.add( 'active' );
                        }

                        var nextEls = nextSiblings( tabTitle );
                        woostifyToggleSlide( nextEls[0] );
                    }
                }
            )
        }
    )

    productReviewLink();
}

// Sticky order review.
var stickyOrderReview = function() {
    var form                     = 'form.woocommerce-checkout';
    var sidebarContainerSelector = 'form.woocommerce-checkout .woostify-col .col-right-inner';

    var reviewOrder = new WSYSticky(
        sidebarContainerSelector,
        {
            stickyContainer: form,
            marginTop: 96,
        }
    );
}

// Checkout page Layout 3 scripts.
var checkoutOrder = function() {
    var checkout_opt = document.querySelector( '.before-checkout' );
    if ( ! checkout_opt ) {
        return;
    }

    var spacer_orig = checkout_opt.offsetHeight,
    div_height      = spacer_orig,
    show_login      = document.querySelector( '.showlogin' ),
    sc_coupons_list = document.querySelector( '#coupons_list' ); // coupon list of plugin Smart Coupon for WC.

    if ( sc_coupons_list ) {
        document.arrive(
            '.sc-coupon',
            function() {
                document.getElementById( 'coupons_list' ).style.display = 'block';
                setTimeout(
                    function() {
                        set_heights();
                        jQuery( document ).unbindArrive( ".sc-coupon" );
                    },
                    1000
                );
            }
        );
    } else {
        set_heights();
    }

    document.body.addEventListener(
        'click',
        function( event ) {
            if ( event.target !== show_login ) {
                return;
            }

            var refreshIntervalId = setInterval(
                function(){
                    set_heights();
                },
                50
            );

            setTimeout(
                function(){
                    if (spacer_orig == div_height) {
                        clearInterval( refreshIntervalId );
                    }
                },
                2000
            );
        }
    );

    function set_heights() {
        setTimeout(
            function(){
                var div_height = checkout_opt.offsetHeight;
                document.querySelector( '#checkout-spacer' ).style.minHeight = div_height + 'px';
                checkout_opt.classList.add( 'ready' );
            },
            200
        );
    }

}

var woostifyGetUrl = function( endpoint ) {
    return wc_cart_fragments_params.wc_ajax_url.toString().replace(
        '%%endpoint%%',
        endpoint
    );
};

var woostifyShowNotice = function( html_element, $target ) {
    if ( ! $target ) {
        $target = jQuery( '.woocommerce-notices-wrapper:first' ) || jQuery( '.cart-empty' ).closest( '.woocommerce' ) || jQuery( '.woocommerce-cart-form' );
    }
    $target.prepend( html_element );
};

var ajaxCouponForm = function() {
    var couponForm = document.querySelector( 'form.checkout_coupon' );

    if ( ! couponForm ) {
        return;
    }
    couponForm.addEventListener(
        'submit',
        function( event ) {
            event.preventDefault();
            var text_field  = document.getElementById( 'coupon_code' );
            var coupon_code = text_field.value;

            var data = {
                security: woostify_woocommerce_general.apply_coupon_nonce,
                coupon_code: coupon_code
            };

            jQuery.ajax(
                {
                    type:     'POST',
                    url:      woostifyGetUrl( 'apply_coupon' ),
                    data:     data,
                    dataType: 'html',
                    success: function( response ) {
                        jQuery( '.woocommerce-error, .woocommerce-message, .woocommerce-NoticeGroup .woocommerce-info, .woocommerce-notices-wrapper .woocommerce-info' ).remove();
                        woostifyShowNotice( response, jQuery( '.woostify-woocommerce-NoticeGroup' ) );
                        jQuery( document.body ).trigger( 'applied_coupon', [ coupon_code ] );
                    },
                    complete: function() {
                        text_field.value = '';
                        jQuery( document.body ).trigger( 'update_checkout' );
                    }
                }
            );

            return
        }
    )
}

var woostifyMoveNoticesInCheckoutPage = function() {
    var noticesWrapper      = document.querySelectorAll( '.woocommerce-notices-wrapper' );
    var infoNotices         = document.querySelectorAll( '.woocommerce > .woocommerce-info' );
    var woostifyNoticeGroup = document.querySelector( '.woostify-woocommerce-NoticeGroup' );

    if( ! woostifyNoticeGroup ) return;
    if ( noticesWrapper.length ) {
        var noticesWrapperEl         = noticesWrapper[0];
        var noticesWrapperNode       = document.createElement( 'div' );
        noticesWrapperNode.innerHTML = noticesWrapperEl.innerHTML;
        woostifyNoticeGroup.appendChild( noticesWrapperNode );
        noticesWrapperEl.remove();
    }

    if ( infoNotices.length ) {
        infoNotices.forEach(
            function ( infoNotice ) {
                var infoNoticeNode = infoNotice.cloneNode( true );
                var classes        = infoNotice.getAttribute( 'class' );

                infoNoticeNode.setAttribute( 'class', classes );
                woostifyNoticeGroup.appendChild( infoNoticeNode );
                infoNotice.remove();
            }
        )
    }
}

var woostifyCheckoutFormFieldAnimation = function() {
    var inputs   = document.querySelectorAll( 'form.checkout .input-text, form.checkout_coupon .input-text' );
    var formRows = document.querySelectorAll( 'form.checkout .form-row' );

    if ( inputs.length ) {
        inputs.forEach(
            function( input ) {
                var formRow = input.closest( '.form-row' );

                if ( ! formRow ) {
                    return;
                }

                if ( '' !== input.value ) {
                    formRow.classList.add( 'w-anim-wrap' );
                }

                input.addEventListener(
                    'focus',
                    function( event ) {
                        var formRow = event.target.closest( '.form-row' );
                        formRow.classList.add( 'w-anim-wrap' );
                    }
                );

                input.addEventListener(
                    'blur',
                    function( event ) {
                        var formRow = event.target.closest( '.form-row' );
                        if ( '' === event.target.value ) {
                            formRow.classList.remove( 'w-anim-wrap' );
                            if ( formRow.classList.contains( 'validate-required' ) ) {
                                formRow.classList.add( 'woocommerce-invalid-required-field' );
                            }
                        }
                    }
                );
            }
        );
    }
    if ( formRows.length ) {
        formRows.forEach(
            function( formRowEl ) {
                var labelEl = formRowEl.querySelector( 'label' );

                if ( labelEl == null ) {
                    formRowEl.classList.add( 'no-label' );
                } else {
                    labelEl.classList.remove( 'screen-reader-text' );
                }

                if ( formRowEl.classList.contains( 'address-field' ) ) {
                    var fieldInputs   = formRowEl.querySelectorAll( 'input' );
                    var select2Inputs = formRowEl.querySelectorAll( 'span.select2' );
                    if ( fieldInputs.length && fieldInputs.length > 0 ) {
                        fieldInputs.forEach(
                            function( fInput ) {
                                if ( 'hidden' === fInput.getAttribute( 'type' ) ) {
                                    formRowEl.classList.add( 'field-readonly' );
                                } else {
                                    formRowEl.classList.remove( 'field-readonly' );
                                }
                            }
                        )
                    }
                    if ( select2Inputs.length && select2Inputs.length > 0 ) {
                        formRowEl.classList.add( 'w-anim-wrap' );
                        formRowEl.classList.remove( 'field-readonly' );
                    }
                }
            }
        );
    }
}

document.addEventListener(
    'DOMContentLoaded',
    function() {

        shoppingBag();
		woostifyAjaxAddToCartButton();
        woostifyQuantityMiniCart();
        woostifyProductsCarousel( '.related.products ul.products' );
        woostifyProductsCarousel( '.upsells.products ul.products' );
        woostifyProductsCarousel( '.woostify-product-recently-viewed-section ul.products' );

        productDataTabsAccordion();

        window.addEventListener(
            'load',
            function() {
                woostifyStockQuantityProgressBar();
            }
        );

        woostifyInfiniteScroll( true );
        // woostifyInfiniteScrollPreview(true);

        jQuery( document.body ).on(
            'adding_to_cart',
            function() {
                eventCartSidebarOpen();

                shippingThresholdCurrPercent();

            }
        ).on(
            'added_to_cart',
            function( e, fragments, cart_hash, $button ) {

                woostifyQuantityMiniCart();

				setTimeout(() => {
					shippingThresholdCurrPercent();
				}, 300);      
                
                updateHeaderCartPrice();
                eventCartSidebarClose();
                closeAll();

                $button = typeof $button === 'undefined' ? false : $button;

                if ( $button ) {
                    $button.removeClass( 'loading' );
                    cartSidebarOpen();

                    if ( fragments ) {
                        $button.addClass( 'added' );
                    }

                    // View cart text.
                    if ( fragments && ! wc_add_to_cart_params.is_cart && $button.parent().find( '.added_to_cart' ).length === 0 ) {
                        var icon = get_svg_icon( 'shopping-cart-full' );
                        $button.after(
                            '<a href="' + wc_add_to_cart_params.cart_url + '" class="added_to_cart wc-forward" title="' + wc_add_to_cart_params.i18n_view_cart + '">' + icon + wc_add_to_cart_params.i18n_view_cart + '</a>'
                        );
                    }

                    jQuery( document.body ).trigger( 'wc_cart_button_updated', [ $button ] );
                }
            }
        ).on(
            'removed_from_cart', /* For mini cart */
            function() {
                woostifyQuantityMiniCart();
                updateHeaderCartPrice();
            }
        ).on(
            'updated_cart_totals',
            function() {
                if ( 'function' === typeof( customQuantity ) ) {
                    customQuantity();
                }
                woostifyQuantityMiniCart();
                updateHeaderCartPrice();
                
            }
        ).on(
            'wc_fragments_loaded wc_fragments_refreshed',
            function() {
                woostifyQuantityMiniCart();
                updateHeaderCartPrice();
				

                if ( woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold && woostify_woocommerce_general.shipping_threshold.enabled_shipping_threshold_effect ) {
                    var progress_bar = document.querySelectorAll( '.free-shipping-progress-bar' );
                    var percent      = 0;
                    if ( progress_bar.length ) {
                        percent = parseInt( progress_bar[0].getAttribute( 'data-progress' ) );
                    }
                    
                    progressBarConfetti( progress_bar, percent );
                }
            }
        ).on(
            'wc_cart_emptied', /* Reload Cart page if it's empty */
            function() {
                location.reload();
            }
        );

        jQuery( document.body ).on(
            'init_checkout updated_checkout payment_method_selected',
            function() {
                // Add quantity button list.
                if ( 'function' === typeof( customQuantity ) ) {
                    customQuantity();
                }
            }
        );

        var isMinimalCheckoutLayout = document.body.classList.contains( 'checkout-layout-3' );

        if ( isMinimalCheckoutLayout ) {
            var resized = false;
            woostifyCheckoutFormFieldAnimation();

            // Move notices.
            woostifyMoveNoticesInCheckoutPage();

            jQuery( document.body ).on(
                'updated_checkout',
                function( event, data ) {
                    setTimeout(
                        function() {
                            woostifyCheckoutFormFieldAnimation();
                        },
                        100
                    );
                }
            ).on(
                'init_checkout updated_checkout payment_method_selected',
                function( event, data  ) {
                    // Clear old notifications before displaying new ones.
                    // jQuery( '.woostify-woocommerce-NoticeGroup' ).html( '' );

                    jQuery( 'form.checkout' ).arrive(
                        'form.checkout_coupon',
                        function( newEl ) {
                            ajaxCouponForm();
                            jQuery( 'form.checkout' ).unbindArrive( 'form.checkout_coupon' );
                        }
                    );

                    jQuery( 'form.checkout' ).arrive(
                        '.ajax-coupon-form',
                        function( newEl ) {
                            jQuery( newEl ).removeClass( 'loading' );
                            jQuery( newEl ).addClass( 'ready' );
                        }
                    );

                    jQuery( 'form.checkout' ).arrive(
                        '.woocommerce-NoticeGroup',
                        function() {
                            jQuery( '.woostify-woocommerce-NoticeGroup' ).append( jQuery( '.woocommerce-NoticeGroup' ).html() );
                            jQuery( '.woocommerce-NoticeGroup' ).remove();
                        }
                    );

                    jQuery( document ).arrive(
                        '.woocommerce > .woocommerce-message',
                        function( newEl ) {
                            var newWcMsg  = jQuery( newEl ),
                            newWcMsgClone = newWcMsg.clone();

                            jQuery( '.woostify-woocommerce-NoticeGroup' ).append( newWcMsgClone );
                            jQuery( newEl ).remove();
                        }
                    );

                    jQuery( document ).arrive(
                        '.woocommerce > .woocommerce-info',
                        function( newEl ) {
                            var newWcMsg  = jQuery( newEl ),
                            newWcMsgClone = newWcMsg.clone();

                            jQuery( '.woostify-woocommerce-NoticeGroup' ).append( newWcMsgClone );
                            jQuery( newEl ).remove();
                        }
                    );
                }
            ).on(
                'applied_coupon',
                function() {
                    jQuery( 'form.checkout' ).arrive(
                        'form.checkout_coupon',
                        function( newEl ) {
                            ajaxCouponForm();
                            jQuery( 'form.checkout' ).unbindArrive( 'form.checkout_coupon' );
                        }
                    );
                }
            )

            jQuery( 'form.checkout' ).arrive(
                'form.checkout_coupon',
                function( newEl ) {
                    ajaxCouponForm();
                    jQuery( 'form.checkout' ).unbindArrive( 'form.checkout_coupon' );
                }
            );

            checkoutOrder();
            stickyOrderReview();

            window.onscroll = function() {
                if ( ! resized ) {
                    window.dispatchEvent( new Event( 'resize' ) );
                    resized = true;
                }
            }
        }

        // For Elementor Preview Mode.
        if ( 'function' === typeof( onElementorLoaded ) ) {
            onElementorLoaded(
                function() {
                    window.elementorFrontend.hooks.addAction(
                        'frontend/element_ready/global',
                        function() {
                            productDataTabsAccordion();
                        }
                    );
                }
            );
        }
    }
);