HEX
Server: LiteSpeed
System: Linux standart9.isimtescil.net 3.10.0-962.3.2.lve1.5.26.7.el7.x86_64 #1 SMP Wed Oct 2 07:53:12 EDT 2019 x86_64
User: karalev (5310)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/woolentor-addons/includes/modules/wishlist/assets/js/frontend.js
;(function($){
"use strict";
    
    var $body = $('body');

    // Add product in wishlist table
    if( 'on' !== WishSuite.option_data['btn_limit_login_off'] ){
        $body.on('click', 'a.wishsuite-btn', function (e) {
            var $this = $(this),
                id = $this.data('product_id'),
                addedText = $this.data('added-text');

            e.preventDefault();

            $this.addClass('loading');

            $.ajax({
                url: WishSuite.ajaxurl,
                data: {
                    action: 'wishsuite_add_to_list',
                    id: id,
                    nonce: WishSuite.wsnonce
                },
                dataType: 'json',
                method: 'GET',
                success: function ( response ) {
                    if ( response ) {
                        $this.removeClass('wishsuite-btn');
                        $this.removeClass('loading').addClass('added');
                        $this.html( addedText );
                        $body.find('.wishsuite-counter').html( response.data.item_count );
                    } else {
                        console.log( 'Something wrong loading compare data' );
                    }
                },
                error: function ( response ) {
                    console.log('Something wrong with AJAX response.', response );
                },
                complete: function () {
                    $this.removeClass('wishsuite-btn');
                    $this.removeClass('loading').addClass('added');
                    $this.html( addedText );
                },
            });

        });
    }

    /**
     * AJAX Request for Remove item
     * @param {*} $this 
     * @param {*} $table 
     * @param {*} productId 
     * @param {*} message 
     */
    const wishSuiteItemRemove = ($this, $table, productId, message = '')=>{
        $table.addClass('loading');

        $.ajax({
            url: WishSuite.ajaxurl,
            data: {
                action: 'wishsuite_remove_from_list',
                id: productId,
                nonce: WishSuite.wsnonce
            },
            dataType: 'json',
            method: 'GET',
            success: function (response) {
                if ( response ) {

                    let totalPage = Math.ceil(response.data.item_count / response.data.per_page);
                    let currentUrl = window.location.href;
                    let newUrl = wishSuiteGetPageNumberFromUrl(currentUrl) >= totalPage ? currentUrl.replace(/(\/page\/)(\d+)/, '$1' + (totalPage == 0 ? 1 : totalPage)) : currentUrl;

                    if( wishSuiteGetPageNumberFromUrl(currentUrl) == totalPage ){
                        var target_row = $this.closest('tr');
                        target_row.hide(400, function() {
                            $(this).remove();
                            var table_row = $('.wishsuite-table-content table tbody tr').length;
                            if( table_row == 1 ){
                                $('.wishsuite-table-content table tbody tr.wishsuite-empty-tr').show();
                            }
                        });
                    }
                    $body.find('.wishsuite-counter').html( response.data.item_count );

                    window.history.pushState('page', 'Title', newUrl);
                    wishSuiteDataRegenarate(newUrl);

                } else {
                    console.log( 'Something wrong loading compare data' );
                }
            },
            error: function (data) {
                console.log('Something wrong with AJAX response.');
            },
            complete: function () {
                // $table.removeClass('loading');
                // $this.addClass('loading');
            },
        });
    }

    // Remove data from wishlist table
    $body.on('click', 'a.wishsuite-remove', function (e) {
        var $table = $('.wishsuite-table-content');

        e.preventDefault();
        var $this = $(this),
            id = $this.data('product_id');

        wishSuiteItemRemove($this, $table, id);

    });

    /**
     * Ajax Pagination
     */
    $body.on("click",'.wishsuite-table-content .wishsuite-pagination ul li a',function(e){
        e.preventDefault();
        let $this = $(this);
        let requestUrl = $this.attr("href");

        window.history.pushState('page', 'Title', requestUrl);
        wishSuiteDataRegenarate(requestUrl);

    });
    /**
     * Regenerate Wishlist table data from URL
     */
    const wishSuiteDataRegenarate = (requestUrl)=>{
        $('body .wishsuite-table-content').addClass('loading');
        $.ajax({
            url: requestUrl,
            context: document.body
        }).success(function(data) {
            const allHtml = document.createRange().createContextualFragment(data);
            const tableContent = allHtml.querySelector(".wishsuite-table-content");
            $('body .wishsuite-table-content').removeClass('loading');
            $('body .wishsuite-table-content').html(tableContent);
        });
    }
    /**
     * Get Current page number from URL
     * @param {current url} url 
     * @returns Page Number
     */
    const wishSuiteGetPageNumberFromUrl = (url)=> {
        // Extract page number using a regular expression
        let match = url.match(/\/page\/(\d+)/);
        return match ? match[1] : null;
    }

    // Quentity
    $("div.wishsuite-table-content").on("change", "input.qty", function() {
        $(this).closest('tr').find( "[data-quantity]" ).attr( "data-quantity", this.value );
    });

    // Delete table row after added to cart
    $(document).on('added_to_cart',function( e, fragments, carthash, button ){
        if( 'on' === WishSuite.option_data['after_added_to_cart'] ){

            let $table = $('.wishsuite-table-content');
            let product_id = button.data('product_id');
            wishSuiteItemRemove(button, $table, product_id);

        }
    });

    /**
     * Variation Product Add to cart from wishsuite page
     */
    $(document).on( 'click', '.wishsuite_table .product_type_variable.add_to_cart_button', function (e) {
        e.preventDefault();

        var $this = $(this),
            $product = $this.parents('.wishsuite-product-add_to_cart').first(),
            $content = $product.find('.wishsuite-quick-cart-form'),
            id = $this.data('product_id'),
            btn_loading_class = 'loading';

        if ($this.hasClass(btn_loading_class)) return;

        // Show Form
        if ( $product.hasClass('quick-cart-loaded') ) {
            $product.addClass('quick-cart-open');
            return;
        }

        var data = {
            action: 'wishsuite_quick_variation_form',
            id: id,
            nonce: WishSuite.wsnonce
        };
        $.ajax({
            type: 'post',
            url: WishSuite.ajaxurl,
            data: data,
            beforeSend: function (response) {
                $this.addClass(btn_loading_class);
                $product.addClass('loading-quick-cart');
            },
            success: function (response) {
                $content.append( response );
                wishsuite_render_variation_data( $product );
                wishsuite_inser_to_cart();
            },
            complete: function (response) {
                setTimeout(function () {
                    $this.removeClass(btn_loading_class);
                    $product.removeClass('loading-quick-cart');
                    $product.addClass('quick-cart-open quick-cart-loaded');
                }, 100);
            },
        });

        return false;

    });

    $(document).on('click', '.wishsuite-quick-cart-close', function () {
        var $this = $(this),
            $product = $this.parents('.wishsuite-product-add_to_cart');
        $product.removeClass('quick-cart-open');
    });

    $(document.body).on('added_to_cart', function ( e, fragments, carthash, button ) {

        var target_row = button.closest('tr');
        target_row.find('.wishsuite-addtocart').addClass('added');
        $('.wishsuite-product-add_to_cart').removeClass('quick-cart-open');

    });

    /**
     * [wishsuite_render_variation_data] show variation data
     * @param  {[selector]} $product
     * @return {[void]} 
     */
    function wishsuite_render_variation_data( $product ) {
        $product.find('.variations_form').wc_variation_form().find('.variations select:eq(0)').change();
        $product.find('.variations_form').trigger('wc_variation_form');
    }

    /**
     * [wishsuite_inser_to_cart] Add to cart
     * @return {[void]}
     */
    function wishsuite_inser_to_cart(){

        $(document).on( 'click', '.wishsuite-quick-cart-form .single_add_to_cart_button:not(.disabled)', function (e) {
            e.preventDefault();

            var $this = $(this),
                $form           = $this.closest('form.cart'),
                product_qty     = $form.find('input[name=quantity]').val() || 1,
                product_id      = $form.find('input[name=product_id]').val() || $this.val(),
                variation_id    = $form.find('input[name=variation_id]').val() || 0;

            $this.addClass('loading');

            /* For Variation product */    
            var item = {},
                variations = $form.find( 'select[name^=attribute]' );
                if ( !variations.length) {
                    variations = $form.find( '[name^=attribute]:checked' );
                }
                if ( !variations.length) {
                    variations = $form.find( 'input[name^=attribute]' );
                }

                variations.each( function() {
                    var $thisitem = $( this ),
                        attributeName = $thisitem.attr( 'name' ),
                        attributevalue = $thisitem.val(),
                        index,
                        attributeTaxName;
                        $thisitem.removeClass( 'error' );
                    if ( attributevalue.length === 0 ) {
                        index = attributeName.lastIndexOf( '_' );
                        attributeTaxName = attributeName.substring( index + 1 );
                        $thisitem.addClass( 'required error' );
                    } else {
                        item[attributeName] = attributevalue;
                    }
                });

            var data = {
                action: 'wishsuite_insert_to_cart',
                product_id: product_id,
                product_sku: '',
                quantity: product_qty,
                variation_id: variation_id,
                variations: item,
                nonce: WishSuite.wsnonce
            };

            $( document.body ).trigger('adding_to_cart', [$this, data]);

            $.ajax({
                type: 'post',
                url:  WishSuite.ajaxurl,
                data: data,

                beforeSend: function (response) {
                    $this.removeClass('added').addClass('loading');
                },

                complete: function (response) {
                    $this.addClass('added').removeClass('loading');
                },

                success: function (response) {
                    if ( response.error & response.product_url ) {
                        window.location = response.product_url;
                        return;
                    } else {
                        $(document.body).trigger('added_to_cart', [response.fragments, response.cart_hash, $this]);
                    }
                },

            });

            return false;
        });

    }

    
    var wishsuite_default_data = {
        price_html:'',
        image_html:'',
    };
    $(document).on('show_variation', '.wishsuite_table .variations_form', function ( alldata, attributes, status ) {

        var target_row = alldata.target.closest('tr');

        // Get First image data
        if( typeof wishsuite_default_data.price_html !== 'undefined' && wishsuite_default_data.price_html.length === 0 ){
            wishsuite_default_data.price_html = $(target_row).find('.wishsuite-product-price').html();
            wishsuite_default_data.image_html = $(target_row).find('.wishsuite-product-image').html();
        }

        // Set variation data
        $(target_row).find('.wishsuite-product-price').html( attributes.price_html );
        wishsuite_variation_image_set( target_row, attributes.image );

        // reset data
        wishsuite_variation_data_reset( target_row, wishsuite_default_data );

    });

    // Reset data
    function wishsuite_variation_data_reset( target_row, default_data ){
        $( target_row ).find('.reset_variations').on('click', function(e){
            $(target_row).find('.wishsuite-product-price').html( default_data.price_html );
            $(target_row).find('.wishsuite-product-image').html( default_data.image_html );
        });
    }

    // variation image set
    function wishsuite_variation_image_set( target_row, image ){
        $(target_row).find('.wishsuite-product-image img').wc_set_variation_attr('src',image.full_src);
        $(target_row).find('.wishsuite-product-image img').wc_set_variation_attr('srcset',image.srcset);
        $(target_row).find('.wishsuite-product-image img').wc_set_variation_attr('sizes',image.sizes);
    }


})(jQuery);