Viewing File: /home/maglabs/etascom/wp-content/themes/agenzio/elements/widgets/js/grid.js

( function( $ ) {
    
    "use strict";

    $( window ).on( 'elementor/frontend/init', function() {
        setTimeout(function(){
            $('.pxl-grid').each(function(index, element) { 
                var $grid_scope = $(this);
                var $grid_masonry = $grid_scope.find('.pxl-grid-masonry');
                var isoOptions = {
                    itemSelector: '.pxl-grid-item',
                    layoutMode: 'masonry',
                    fitRows: {
                        gutter: 0
                    },
                    percentPosition: true,
                    masonry: {
                        columnWidth: '.grid-sizer',
                    },
                    containerStyle: null,
                    stagger: 30,
                    sortBy : 'name',
                };
                var $grid_isotope = $grid_masonry.isotope(isoOptions);
                 

                $grid_scope.on('click', '.pxl-grid-filter .filter-item', function(e) {
                    
                    var $this = $(this);
                    var term_slug = $this.attr('data-filter');  
                    
                    $this.siblings('.filter-item.active').removeClass('active');
                    $this.addClass('active'); 
                    $grid_scope.find('.pxl-post--inner').removeClass('animated');

                    if( $this.closest('.pxl-grid-filter').hasClass('ajax') ){
                        var loadmore = $grid_scope.data('loadmore');
                        loadmore.term_slug = term_slug;
                        agenzio_grid_ajax_handler( $this, $grid_scope, $grid_isotope, 
                            { action: 'agenzio_load_more_post_grid', loadmore: loadmore, iso_options: isoOptions, handler_click: 'filter', scrolltop: 0 }
                        );
                    }else{
                        $grid_isotope.isotope({ filter: term_slug });
                      
                        if( $grid_scope.find('.pxl-grid-filter').hasClass('pxl-animate') ){
                            var $animate_el = $grid_scope.find('.pxl-grid-filter'),
                                data = $animate_el.data('settings');  
                            if(typeof data != 'undefined' && typeof data['animation'] != 'undefined'){
                                setTimeout(function () {
                                    $animate_el.removeClass('pxl-invisible').addClass('animated ' + data['animation']);
                                }, data['animation_delay']);
                            }else{
                                setTimeout(function () {
                                    $animate_el.removeClass('pxl-invisible').addClass('animated fadeInUp');
                                }, 300);
                            }
                        }
                    }
                });

                $grid_scope.on('click', '.pxl-grid-pagination .ajax a.page-numbers', function(e) {
                    e.preventDefault();
                    e.stopPropagation();
                    var $this = $(this);
                    var loadmore = $grid_scope.data('loadmore');
                    var paged = $this.attr('href');
                    paged = paged.replace('#', '');
                    loadmore.paged = parseInt(paged);
                    agenzio_grid_ajax_handler( $this, $grid_scope, $grid_isotope, 
                        { action: 'agenzio_load_more_post_grid', loadmore: loadmore, iso_options: isoOptions, handler_click: 'pagination', scrolltop: 0 }
                    );
                    $('html,body').animate({scrollTop: $grid_scope.offset().top - 130}, 500);
                });

                $grid_scope.on('click', '.btn-grid-loadmore', function(e) {
                    e.preventDefault();
                    var $this = $(this);
                    var loadmore = $grid_scope.data('loadmore');
                    loadmore.paged = parseInt($grid_scope.data('start-page')) + 1; 

                    agenzio_grid_ajax_handler( $this, $grid_scope, $grid_isotope, 
                        { action: 'agenzio_load_more_post_grid', loadmore: loadmore, iso_options: isoOptions, handler_click: 'loadmore', scrolltop: 0 }
                    );
                });
            });
        }, 300);

        function agenzio_grid_ajax_handler($this, $grid_scope, $grid_isotope, args = {}){
            var settings = $.extend( true, {}, {
                action: '',
                loadmore: '',
                iso_options: {},
                handler_click: '',
                scrolltop: 0
            }, args );

            var offset_top = $grid_scope.offset().top; 
            if( settings.handler_click == 'loadmore' ){
                var loadmore_text  = $this.closest('.pxl-load-more').data('loadmore-text');
                var loading_text  = $this.closest('.pxl-load-more').data('loading-text');
            }

            $.ajax({
                url: main_params.ajax_url,
                type: 'POST',
                data: {
                    action: settings.action,
                    settings: settings.loadmore,
                    handler_click: settings.handler_click
                },
                success: function( res ) {   
                     
                    if(res.status == true){  

                        if( settings.handler_click == 'loadmore' ){
                            $grid_scope.find('.pxl-grid-inner').append(res.data.html)
                        }else{
                            $grid_scope.find('.pxl-grid-inner .pxl-grid-item').remove();
                            $grid_scope.find('.pxl-grid-inner').append(res.data.html);
                        }
                        
                         
                        if( settings.iso_options){
                            $grid_isotope.isotope('destroy');
                            $grid_isotope.isotope(settings.iso_options);
                        }

                        if( $grid_scope.find('.pxl-grid-filter').hasClass('pxl-animate') ){
                            var $animate_el = $grid_scope.find('.pxl-grid-filter'),
                                data = $animate_el.data('settings');  
                            if(typeof data != 'undefined' && typeof data['animation'] != 'undefined'){
                                setTimeout(function () {
                                    $animate_el.removeClass('pxl-invisible').addClass('animated ' + data['animation']);
                                }, data['animation_delay']);
                            }else{
                                setTimeout(function () {
                                    $animate_el.removeClass('pxl-invisible').addClass('animated fadeInUp');
                                }, 300);
                            }
                        } 

                        $grid_scope.data('start-page', res.data.paged);
 
                        if( settings.loadmore['pagination_type'] == 'loadmore'){
                            if(res.data.paged >= res.data.max){
                                $grid_scope.find('.pxl-load-more').hide();
                            }else{
                                $grid_scope.find('.pxl-load-more').show();
                            } 
                        } 
                        if( settings.loadmore['pagination_type'] == 'pagination'){
                            $grid_scope.find(".pxl-grid-pagination").html(res.data.pagin_html);
                        }
                         
                    }      
      
                },
                beforeSend: function() {  
                    $grid_scope.find('.pxl-grid-overlay-loading').removeClass( 'loaded' ).addClass( 'loader' );
                    if( settings.handler_click == 'loadmore' ){
                        $this.find('.pxl-loadmore-text').text(loading_text);
                        $this.parent().addClass('loading');
                    }
                },
                complete: function() {
                    $grid_scope.find('.pxl-grid-overlay-loading').removeClass( 'loader' ).addClass( 'loaded' ); 
                    if( settings.handler_click == 'loadmore' ){
                        $this.find('.pxl-loadmore-text').text(loadmore_text);
                        $this.parent().removeClass('loading');
                    }
                    if ( settings.scrolltop ) {
                        $( 'html, body' ).animate( { scrollTop: offset_top - 100 }, 0 );
                    }
                }
            });
        }
    });
     
} )( jQuery );
Back to Directory File Manager