![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/plugins/trx_addons/components/theme-panel/ |
/* global jQuery, TRX_ADDONS_STORAGE */ jQuery(document).ready( function() { "use strict"; var $window = jQuery( window ); var $theme_panel = jQuery( '#trx_addons_theme_panel' ); if ( $theme_panel.length ) { // Add 'sticky' behaviour to the buttons var $buttons = $theme_panel.find( '.trx_addons_theme_panel_buttons' + ',.trx_addons_theme_panel_plugins_buttons' + ',#trx_addons_theme_panel_section_demo .trx_buttons' + ',#trx_addons_theme_panel_section_qsetup .trx_buttons' ); var buttons_scroll_handler = function() { $buttons.each( function() { var $self = jQuery( this ); var $placeholder = $self.prev(); if ( ! $placeholder.hasClass( 'trx_addons_theme_panel_buttons_placeholder' ) ) { $self.before( '<div class="trx_addons_theme_panel_buttons_placeholder"></div>' ); $placeholder = $self.prev(); } if ( $placeholder.length ) { $self.toggleClass( 'sticky', $placeholder.offset().top > $window.scrollTop() + $window.height() ); } } ); }; if ( $buttons.length ) { buttons_scroll_handler(); $window.on( 'scroll', buttons_scroll_handler ); } // Activation form: Submit $theme_panel.find( '.trx_addons_theme_panel_section_form_field_submit input[type="submit"]') .on('click', function(e) { var form = jQuery( this ).parents( 'form' ), regexp = new RegExp(TRX_ADDONS_STORAGE['email_mask']); if ( ( jQuery('[name="trx_addons_activate_theme_source"]:checked').val() == 'code' && jQuery('[name="trx_addons_activate_theme_code"]').val() === '' ) || ( jQuery('[name="trx_addons_activate_theme_source"]:checked').val() == 'token' && jQuery('[name="trx_addons_activate_theme_token"]').val() === '' ) ) { trx_addons_msgbox_warning( TRX_ADDONS_STORAGE[ 'msg_specify_purchase_code' ], TRX_ADDONS_STORAGE[ 'msg_activate_theme' ] ); e.preventDefault(); return false; } else if ( jQuery('[name="trx_addons_user_email"]').val() !== '' && !regexp.test(jQuery('[name="trx_addons_user_email"]').val()) ) { trx_addons_msgbox_warning( TRX_ADDONS_STORAGE[ 'msg_field_email_not_valid' ], TRX_ADDONS_STORAGE[ 'msg_activate_theme' ] ); e.preventDefault(); return false; } else if ( ! jQuery('[name="trx_addons_user_agree"]').get(0).checked && ( jQuery('[name="trx_addons_user_name"]').val() !== '' || jQuery('[name="trx_addons_user_email"]').val() !== '' ) ) { trx_addons_msgbox_confirm( TRX_ADDONS_STORAGE[ 'msg_activate_theme_agree' ], TRX_ADDONS_STORAGE[ 'msg_activate_theme' ], function( btn ) { if ( btn === 1 ) { form.submit(); } } ); e.preventDefault(); return false; } return true; } ); // Activation form: Key type $theme_panel.find( '[name="trx_addons_activate_theme_source"]' ) .on( 'click', function(e) { var $self = jQuery(this), $form = $self.parents('form'), value = $self.val(); if ( value == 'code' ) { $form.find('.trx_addons_theme_panel_section_form_field_param_code').removeClass('trx_addons_hidden'); $form.find('.trx_addons_theme_panel_section_form_field_param_token').addClass('trx_addons_hidden'); } else { $form.find('.trx_addons_theme_panel_section_form_field_param_code').addClass('trx_addons_hidden'); $form.find('.trx_addons_theme_panel_section_form_field_param_token').removeClass('trx_addons_hidden'); } } ) .eq(0).trigger( 'click' ); // Disconnect license $theme_panel.find( '.trx_addons_theme_panel_license_disconnect' ) .on( 'click', function(e) { var form = jQuery(this).parents('form'); trx_addons_msgbox_agree( TRX_ADDONS_STORAGE[ 'msg_deactivate_theme_agree' ], TRX_ADDONS_STORAGE[ 'msg_deactivate_theme' ], function( btn ) { if ( btn === 1 ) { form.submit(); } }, [ TRX_ADDONS_STORAGE[ 'msg_deactivate_theme_bt_yes' ], TRX_ADDONS_STORAGE[ 'msg_deactivate_theme_bt_no' ] ] ); e.preventDefault(); return false; } ); // Welcome banners if ( $theme_panel.find('.trx_addons_theme_panel_banners_item.trx_banners_item').length > 0 ) { trx_addons_banners_rotator( '.trx_addons_theme_panel_banners' ); } // Change view mode $theme_panel.find( '.trx_addons_theme_panel_section_view_mode' ) .on( 'click', '> span', function(e) { var mode = jQuery( this ).data('mode'), section = jQuery( this ).parents( '.trx_addons_tabs_section' ); if ( ! section.hasClass( 'trx_addons_section_mode_' + mode ) ) { section .removeClass( 'trx_addons_section_mode_thumbs trx_addons_section_mode_list' ) .addClass( 'trx_addons_section_mode_' + mode ); } e.preventDefault(); return false; } ); // Block submit form with search field $theme_panel.find( '.trx_addons_theme_panel_section_filters_form' ) .on( 'submit', function() { return false; } ); // Search items by part of slug (title) $theme_panel.find( '.trx_addons_theme_panel_section_filters_search' ) .on( 'keyup', function(e) { filter_items( jQuery( this ).parents( '.trx_addons_tabs_section' ), false ); } ); // Filter items by tag $theme_panel.find( '.trx_addons_theme_panel_section_filters_list' ) .on( 'click', 'a', function(e) { jQuery( this ).parent().siblings().removeClass( 'filter_active' ); jQuery( this ).parent().addClass( 'filter_active' ); filter_items( jQuery( this ).parents( '.trx_addons_tabs_section' ), true ); e.preventDefault(); return false; } ); // Show/Hide items function filter_items( section, hide_all ) { var txt = section.find( '.trx_addons_theme_panel_section_filters_search' ).val(), flt = section.find( '.trx_addons_theme_panel_section_filters_list_item.filter_active' ).data( 'filter' ) || '', mh = 0; if ( hide_all ) { mh = section.css( 'min-height' ); section .css( 'min-height', section.outerHeight() + 'px' ) .find( '[data-search-value]:visible' ) // '[data-filter-value]:visible' .fadeOut( 300 ); } txt = txt.toLowerCase(); flt = flt.toLowerCase(); setTimeout( function() { var once = true; section.find( '[data-search-value]' + ( hide_all ? ':hidden' : '' ) ).each( function() { // '[data-filter-value]' var $self = jQuery( this ), flt_val = $self.data( 'filter-value' ) || '', search_val = $self.data( 'search-value' ) || ''; if ( ( txt === '' || search_val.toLowerCase().indexOf( txt ) >= 0 ) && ( flt == 'all' || flt === '' || flt_val.toLowerCase().indexOf( flt ) >= 0 ) ) { $self.fadeIn(); if ( hide_all && once ) { once = false; section.css( 'min-height', mh ); } } else if ( ! hide_all && $self.is( ':visible' ) ) { $self.fadeOut(); } } ); }, hide_all ? 330 : 0 ); } // Focused image block - trigger click on 'Enter' or 'Space' $theme_panel.find( '.trx_addons_theme_panel_themes_list:not(.inited)' ).addClass( 'inited' ) .on( 'keydown', '.trx_addons_image_block_inner', function( e ) { // If 'Enter' or 'Space' is pressed if ( [ 13, 32 ].indexOf( e.which ) >= 0 ) { window.open( jQuery( this ).find( '.trx_addons_image_block_image .trx_addons_image_block_link' ).eq(0).attr('href') ); e.preventDefault(); return false; } return true; } ); // Button 'Go Back' $theme_panel.find( '.trx_addons_theme_panel_prev_step' ) .on( 'click', function(e) { var section = jQuery(this).parents('.trx_addons_tabs_section'), tabs = jQuery(this).parents('.trx_addons_tabs'), tabs_li = tabs.find('> ul > li'), tab_active = section.index('.trx_addons_tabs_section'); //tabs.find('.ui-state-active').index(); tabs_li.removeClass('trx_addons_panel_wizard_active trx_addons_panel_wizard_finished'); if ( tab_active > 1 ) { tabs_li.each( function( idx ) { if ( idx < tab_active - 1 ) { jQuery(this).addClass('trx_addons_panel_wizard_finished'); } } ); } tabs_li.eq(tab_active-1).addClass('trx_addons_panel_wizard_active').find('> a').trigger('click'); trx_addons_document_animate_to( 'trx_addons_theme_panel', function() { buttons_scroll_handler(); } ); if ( tab_active == 1 ) { tabs.removeClass('trx_addons_panel_wizard'); } e.preventDefault(); return false; } ); // Button 'Next Step' $theme_panel.find( '.trx_addons_theme_panel_next_step' ) .on( 'click', function(e) { if (jQuery(this).attr('href') == '#') { var section = jQuery(this).parents('.trx_addons_tabs_section'), tabs = jQuery(this).parents('.trx_addons_tabs'), tabs_li = tabs.find('> ul > li'), tab_active = section.index('.trx_addons_tabs_section'); //tabs.find('.ui-state-active').index(); if (!tabs.hasClass('trx_addons_panel_wizard')) { tabs.addClass('trx_addons_panel_wizard'); } tabs_li.removeClass('trx_addons_panel_wizard_active trx_addons_panel_wizard_finished'); tabs_li.each(function(idx) { if (idx < tab_active+1) { jQuery(this).addClass('trx_addons_panel_wizard_finished'); } }); tabs_li.eq(tab_active+1 >= tabs_li.length ? 0 : tab_active+1).addClass('trx_addons_panel_wizard_active').find('> a').trigger('click'); trx_addons_document_animate_to( 'trx_addons_theme_panel', function() { buttons_scroll_handler(); } ); e.preventDefault(); return false; } } ); // Continue after page reloaded var last_section = trx_addons_get_cookie('trx_addons_theme_panel_wizard_section'); if ( last_section ) { trx_addons_del_cookie( 'trx_addons_theme_panel_wizard_section' ); setTimeout( function() { var next_step = jQuery('#'+last_section+' .trx_addons_theme_panel_next_step'); if ( next_step.length > 0 ) { if (next_step.attr('href') == '#') { next_step.trigger('click'); } else { location.href = next_step.attr('href'); } } } ); } else { // Scroll to the theme panel after page reloaded trx_addons_document_animate_to( jQuery( '#trx_addons_theme_panel_message' ).length ? 'trx_addons_theme_panel_message' : 'trx_addons_theme_panel', function() { buttons_scroll_handler(); } ); } // Restore wizard mode after the Theme Options is saved $theme_panel.find( 'form[name="trx_addons_theme_panel_qsetup_form"]' ) .on( 'submit', function() { if ( jQuery('.trx_addons_theme_panel .trx_addons_tabs').hasClass('trx_addons_panel_wizard') ) { trx_addons_set_cookie('trx_addons_theme_panel_wizard_section', 'trx_addons_theme_panel_section_qsetup'); } } ); // Show/Hide plugins group $theme_panel.find( '.trx_addons_theme_panel_plugins_group_title' ) .on( 'click', function(e) { var wrap = jQuery(this).parent(); if ( wrap.hasClass('trx_addons_theme_panel_plugins_group_opened') ) { jQuery(this).next().slideUp(); wrap.removeClass('trx_addons_theme_panel_plugins_group_opened'); } else { jQuery(this).next().slideDown(); wrap.addClass('trx_addons_theme_panel_plugins_group_opened'); } e.preventDefault(); return false; } ); // Select / Deselect all plugins $theme_panel.find( '.trx_addons_theme_panel_plugins_buttons' ) .on( 'click', 'a', function(e) { if ( jQuery(this).hasClass('trx_addons_theme_panel_plugins_button_select') ) { var items = jQuery(this).parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_list_item > a:not([data-state="deactivate"])'); if ( items.length > 0 ) { items.parent().addClass('trx_addons_theme_panel_plugins_list_item_checked'); jQuery(this).parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_install').removeAttr('disabled'); } } else { jQuery(this).parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_list_item').removeClass('trx_addons_theme_panel_plugins_list_item_checked'); jQuery(this).parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_install').attr('disabled', 'disabled'); } e.preventDefault(); return false; } ); // Select all plugins when page is loaded $theme_panel.find( '.trx_addons_theme_panel_plugins_buttons .trx_addons_theme_panel_plugins_button_select' ).trigger('click'); // Select / Deselect one plugin $theme_panel.find( '.trx_addons_theme_panel_plugins_list_item').on( 'click', 'a', function(e) { if ( jQuery(this).data('state') != 'deactivate' && jQuery(this).data('required') != '1' ) { var item = jQuery(this).parent(); item.toggleClass('trx_addons_theme_panel_plugins_list_item_checked'); if ( item.parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_list_item_checked').length > 0 ) { item.parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_install').removeAttr('disabled'); } else { item.parents('.trx_addons_theme_panel_plugins_installer').find('.trx_addons_theme_panel_plugins_install').attr('disabled', 'disabled'); } } e.preventDefault(); return false; } ); //Run installation $theme_panel.find( '.trx_addons_theme_panel_plugins_install' ) .on( 'click', function(e) { var bt = jQuery(this); if ( bt.attr('disabled') !== 'disabled' ) { var plugins_total = jQuery( this ).parents( '.trx_addons_theme_panel_plugins_installer' ).find( '.trx_addons_theme_panel_plugins_list_item_checked' ).length; if ( plugins_total > 0 ) { bt .attr( 'disabled', 'disabled' ) .data( 'need-reload', '1' ); jQuery('.trx_addons_theme_panel') .addClass( 'trx_addons_theme_panel_busy' ) .data( 'plugins-total', plugins_total ); trx_addons_plugins_installer(); } } e.preventDefault(); return false; } ); } // Installer var attempts = 0; function trx_addons_plugins_installer() { var items = jQuery( '.trx_addons_theme_panel_plugins_installer' ).find( '.trx_addons_theme_panel_plugins_list_item_checked' ); if ( items.length === 0 ) { if ( jQuery('.trx_addons_theme_panel_plugins_install').data('need-reload') == '1' ) { if (jQuery('.trx_addons_theme_panel .trx_addons_tabs').hasClass('trx_addons_panel_wizard')) { trx_addons_set_cookie('trx_addons_theme_panel_wizard_section', 'trx_addons_theme_panel_section_plugins'); } else { if ( location.hash != 'trx_addons_theme_panel_section_plugins' ) { trx_addons_document_set_location( location.href.split('#')[0] + '#' + 'trx_addons_theme_panel_section_plugins' ); } } location.reload( true ); } jQuery('.trx_addons_theme_panel').removeClass('trx_addons_theme_panel_busy'); return; } var item = items.eq(0), link = item.find('a'), url = trx_addons_add_to_url( link.attr('href'), { 'activate-multi': 1 } ), // Add parameter 'activate-multi' to prevent 'welcome screen' from some plugins check = link.find('.trx_addons_theme_panel_plugins_list_item_check'), label = link.find('.trx_addons_theme_panel_plugins_list_item_state'), state = link.data('state'), text = link.data(state+'-progress'), total = jQuery('.trx_addons_theme_panel').data('plugins-total'); label.html( text ); check.addClass( 'trx_addons_loading' ); //Request plugin activation attempts++; if ( attempts > 3 ) { attempts = 0; item.removeClass( 'trx_addons_theme_panel_plugins_list_item_checked' ); setTimeout( trx_addons_plugins_installer, 0 ); return; } // Repeat checking after the plugin activation to avoid breaking install process if server not respond var check_again = false, check_again_timer = state == 'activate' ? setTimeout( function() { check_again = true; trx_addons_plugins_check_state(); }, 30000 ) : 0; // Do action: install or activate plugin jQuery.get(url).done( function(response) { if (check_again_timer) { clearTimeout(check_again_timer); check_again_timer = 0; } // Repeat checking after the plugin activation to prevent breaking install process if server not respond check_again = false; check_again_timer = state == 'activate' ? setTimeout( function() { check_again = true; trx_addons_plugins_check_state(); }, 30000 ) : 0; // Check current state of the plugin trx_addons_plugins_check_state(); } ); // Check state of the plugin function trx_addons_plugins_check_state() { jQuery.post( // Add parameter 'activate-multi' to prevent 'welcome screen' from some plugins trx_addons_add_to_url( TRX_ADDONS_STORAGE['ajax_url'], { 'activate-multi': 1 } ), { 'action': 'trx_addons_check_plugin_state', 'nonce': TRX_ADDONS_STORAGE['ajax_nonce'], 'slug': link.data('slug') }, function(response) { if (check_again && !check_again_timer) { return; } if (check_again_timer) { clearTimeout(check_again_timer); check_again_timer = 0; } var rez = { error: '', state: '' }, step = 0, pos = -1; if ( response !== '' && response !== 0 && response.indexOf('{"error":') >= 0 ) { try { if ( (pos = response.indexOf('{"error":')) >= 0 ) { response = response.substr( pos ); rez = JSON.parse( response ); } else { rez.error = TRX_ADDONS_STORAGE['msg_get_pro_error']; } } catch (e) { rez = { error: TRX_ADDONS_STORAGE['msg_get_pro_error'] }; console.log( response ); } } if (rez.error !== '') { item.removeClass('trx_addons_theme_panel_plugins_list_item_checked'); attempts = 0; } else { if (rez.state == 'activate' ) { if (state == 'install') { state = 'activate'; link.attr('href', link.data('activate-nonce')); attempts = 0; } else { attempts++; } step = 1; } else if (rez.state == 'deactivate') { if (state == 'install' || state == 'activate') { state = 'deactivate'; item.removeClass('trx_addons_theme_panel_plugins_list_item_checked'); attempts = 0; } else { attempts++; } } else { attempts++; } if (state !== '' && state !== 0) { link.data('state', state).attr('data-state', state); check.removeClass('trx_addons_loading'); //label.html(link.data(state+'-label')); label .find('.trx_addons_theme_panel_plugins_list_item_state_label').html(link.data(state+'-label')) .next('.trx_addons_theme_panel_plugins_list_item_state_label_selected').html(link.data(state+'-label-selected') ? link.data(state+'-label-selected') : ''); } // Display progress percentage var checked = jQuery( '.trx_addons_theme_panel_plugins_installer' ).find( '.trx_addons_theme_panel_plugins_list_item_checked' ).length, prc = Math.max(0, Math.min(100, 100 - Math.ceil((checked * 2 - step) * 100 / (total * 2)))); jQuery('.trx_addons_percent_loader .trx_addons_percent_loader_value').html(prc+'%'); // Doing next step trx_addons_plugins_installer(); } } ); } } } );