File: //proc/self/cwd/wp-content/plugins/woolentor-addons/includes/admin/assets/js/install_manager.js
;(function($) {
"use strict";
/*
* Plugin Installation Manager
*/
var WooLentortemplataPluginManager = {
init: function(){
$( document ).on('click','.install-now', WooLentortemplataPluginManager.installNow );
$( document ).on('click','.activate-now', WooLentortemplataPluginManager.activatePlugin);
$( document ).on('wp-plugin-install-success', WooLentortemplataPluginManager.installingSuccess);
$( document ).on('wp-plugin-install-error', WooLentortemplataPluginManager.installingError);
$( document ).on('wp-plugin-installing', WooLentortemplataPluginManager.installingProcess);
},
/**
* Installation Error.
*/
installingError: function( e, response ) {
e.preventDefault();
var $card = $( '.htwptemplata-plugin-' + response.slug );
$button = $card.find( '.button' );
$button.removeClass( 'button-primary' ).addClass( 'disabled' ).html( wp.updates.l10n.installFailedShort );
},
/**
* Installing Process
*/
installingProcess: function(e, args){
e.preventDefault();
var $card = $( '.htwptemplata-plugin-' + args.slug ),
$button = $card.find( '.button' );
$button.text( WLIM.buttontxt.installing ).addClass( 'updating-message' );
},
/**
* Plugin Install Now
*/
installNow: function(e){
e.preventDefault();
var $button = $( e.target ),
$plugindata = $button.data('pluginopt');
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
if ( wp.updates.shouldRequestFilesystemCredentials && ! wp.updates.ajaxLocked ) {
wp.updates.requestFilesystemCredentials( e );
$( document ).on( 'credential-modal-cancel', function() {
var $message = $( '.install-now.updating-message' );
$message.removeClass( 'updating-message' ).text( wp.updates.l10n.installNow );
wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' );
});
}
wp.updates.installPlugin( {
slug: $plugindata['slug']
});
},
/**
* After Plugin Install success
*/
installingSuccess: function( e, response ) {
var $message = $( '.htwptemplata-plugin-' + response.slug ).find( '.button' );
var $plugindata = $message.data('pluginopt');
$message.removeClass( 'install-now installed button-disabled updated-message' )
.addClass( 'updating-message' )
.html( WLIM.buttontxt.activating );
if( $( '.htwptemplata-plugin-' + $plugindata['slug'] ).hasClass('need-plugin') ){
$( '.htwptemplata-plugin-' + $plugindata['slug'] ).removeClass('need-plugin');
}
setTimeout( function() {
$.ajax( {
url: WLIM.ajaxurl,
type: 'POST',
data: {
action : 'woolentor_ajax_plugin_activation',
nonce : WLIM.nonce,
location : $plugindata['location'],
},
} ).done( function( result ) {
if ( result.success ) {
$message.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( WLIM.buttontxt.active );
if( $('.htwptemplata-requiredplugins .need-plugin').length == 0 ){
$(".htwptimport-button-dynamic .wptemplataimpbtn").removeClass('htwptdisabled');
}else{
$(".htwptimport-button-dynamic .wptemplataimpbtn").addClass('htwptdisabled');
}
} else {
$message.removeClass( 'updating-message' );
}
});
}, 1200 );
},
/**
* Plugin Activate
*/
activatePlugin: function( e, response ) {
e.preventDefault();
var $button = $( e.target ),
$plugindata = $button.data('pluginopt');
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
$button.addClass( 'updating-message button-primary' ).html( WLIM.buttontxt.activating );
if( $( '.htwptemplata-plugin-' + $plugindata['slug'] ).hasClass('need-plugin') ){
$( '.htwptemplata-plugin-' + $plugindata['slug'] ).removeClass('need-plugin');
}
$.ajax( {
url: WLIM.ajaxurl,
type: 'POST',
data: {
action : 'woolentor_ajax_plugin_activation',
nonce : WLIM.nonce,
location : $plugindata['location'],
},
}).done( function( response ) {
if ( response.success ) {
$button.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( WLIM.buttontxt.active );
if( $('.htwptemplata-requiredplugins .need-plugin').length == 0 ){
$(".htwptimport-button-dynamic .wptemplataimpbtn").removeClass('htwptdisabled');
}else{
$(".htwptimport-button-dynamic .wptemplataimpbtn").addClass('htwptdisabled');
}
}
});
},
};
/*
* Theme Installation Manager
*/
var WooLentortemplataThemeManager = {
init: function(){
$( document ).on('click','.themeinstall-now', WooLentortemplataThemeManager.installNow );
$( document ).on('click','.themeactivate-now', WooLentortemplataThemeManager.activateTheme);
$( document ).on('wp-theme-install-success', WooLentortemplataThemeManager.installingSuccess);
$( document ).on('wp-theme-install-error', WooLentortemplataThemeManager.installingError);
$( document ).on('wp-theme-installing', WooLentortemplataThemeManager.installingProcess);
},
/**
* Installation Error.
*/
installingError: function( e, response ) {
e.preventDefault();
var $card = $( '.htwptemplata-theme-' + response.slug );
$button = $card.find( '.button' );
$button.removeClass( 'button-primary' ).addClass( 'disabled' ).html( wp.updates.l10n.installFailedShort );
},
/**
* Installing Process
*/
installingProcess: function(e, args){
e.preventDefault();
var $card = $( '.htwptemplata-theme-' + args.slug ),
$button = $card.find( '.button' );
$button.text( WLIM.buttontxt.installing ).addClass( 'updating-message' );
},
/**
* Theme Install Now
*/
installNow: function(e){
e.preventDefault();
var $button = $( e.target ),
$themedata = $button.data('themeopt');
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
if ( wp.updates.shouldRequestFilesystemCredentials && ! wp.updates.ajaxLocked ) {
wp.updates.requestFilesystemCredentials( e );
$( document ).on( 'credential-modal-cancel', function() {
var $message = $( '.themeinstall-now.updating-message' );
$message.removeClass( 'updating-message' ).text( wp.updates.l10n.installNow );
wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' );
});
}
wp.updates.installTheme( {
slug: $themedata['slug']
});
},
/**
* After Theme Install success
*/
installingSuccess: function( e, response ) {
var $message = $( '.htwptemplata-theme-' + response.slug ).find( '.button' );
var $themedata = $message.data('themeopt');
$message.removeClass( 'install-now installed button-disabled updated-message' )
.addClass( 'updating-message' )
.html( WLIM.buttontxt.activating );
setTimeout( function() {
$.ajax( {
url: WLIM.ajaxurl,
type: 'POST',
data: {
action : 'woolentor_ajax_theme_activation',
nonce : WLIM.nonce,
themeslug : $themedata['slug'],
},
} ).done( function( result ) {
if ( result.success ) {
$message.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( WLIM.buttontxt.active );
} else {
$message.removeClass( 'updating-message' );
}
});
}, 1200 );
},
/**
* Theme Activate
*/
activateTheme: function( e, response ) {
e.preventDefault();
var $button = $( e.target ),
$themedata = $button.data('themeopt');
if ( $button.hasClass( 'updating-message' ) || $button.hasClass( 'button-disabled' ) ) {
return;
}
$button.addClass( 'updating-message button-primary' ).html( WLIM.buttontxt.activating );
$.ajax( {
url: WLIM.ajaxurl,
type: 'POST',
data: {
action : 'woolentor_ajax_theme_activation',
nonce : WLIM.nonce,
themeslug : $themedata['slug'],
},
}).done( function( response ) {
if ( response.success ) {
$button.removeClass( 'button-primary install-now activate-now updating-message' )
.attr( 'disabled', 'disabled' )
.addClass( 'disabled' )
.text( WLIM.buttontxt.active );
}
});
},
};
/**
* Initialize
*/
$( document ).ready( function() {
WooLentortemplataPluginManager.init();
WooLentortemplataThemeManager.init();
});
})(jQuery);