File: /home/pokaorgani/public_html/wp-content/themes/sydney/inc/onboarding/plugins/plugin-install.js
/**
* Remove activate button and replace with activation in progress button.
*/
jQuery( document ).ready(
function ( $ ) {
$.pluginInstall = {
'init': function () {
this.handleInstall();
this.handleActivate();
},
'handleInstall': function () {
var self = this;
$( 'body' ).on( 'click', '.sydney-install-plugin', function ( e ) {
e.preventDefault();
var button = $( this );
var slug = button.attr( 'data-slug' );
var url = button.attr( 'href' );
var redirect = $( button ).attr( 'data-redirect' );
button.text( 'Installing...' );
button.addClass( 'updating-message' );
wp.updates.installPlugin(
{
slug: slug,
success: function () {
button.text( sydneyPluginInstall.activating + '...' );
self.activatePlugin( url, redirect );
}
}
);
} );
},
'activatePlugin': function ( url, redirect ) {
if ( typeof url === 'undefined' || !url ) {
return;
}
jQuery.ajax(
{
async: true,
type: 'GET',
url: url,
success: function () {
// Reload the page.
if ( typeof(redirect) !== 'undefined' && redirect !== '' ) {
window.location.replace( redirect );
} else {
location.reload();
}
},
error: function ( jqXHR, exception ) {
var msg = '';
if ( jqXHR.status === 0 ) {
msg = 'Not connect.\n Verify Network.';
} else if ( jqXHR.status === 404 ) {
msg = 'Requested page not found. [404]';
} else if ( jqXHR.status === 500 ) {
msg = 'Internal Server Error [500].';
} else if ( exception === 'parsererror' ) {
msg = 'Requested JSON parse failed.';
} else if ( exception === 'timeout' ) {
msg = 'Time out error.';
} else if ( exception === 'abort' ) {
msg = 'Ajax request aborted.';
} else {
msg = 'Uncaught Error.\n' + jqXHR.responseText;
}
console.log( msg );
},
}
);
},
'handleActivate': function () {
var self = this;
$( 'body' ).on( 'click', '.activate-now', function ( e ) {
e.preventDefault();
var button = $( this );
var url = button.attr( 'href' );
var redirect = button.attr( 'data-redirect' );
button.addClass( 'updating-message' );
button.text( sydneyPluginInstall.activating + '...' );
self.activatePlugin( url, redirect );
} );
},
};
$.pluginInstall.init();
}
);