// Creta Testimonial Showcase plugin activation document.addEventListener('DOMContentLoaded', function () { const beauty_makeup_stylist_button = document.getElementById('install-activate-button'); if (!beauty_makeup_stylist_button) return; beauty_makeup_stylist_button.addEventListener('click', function (e) { e.preventDefault(); const beauty_makeup_stylist_redirectUrl = beauty_makeup_stylist_button.getAttribute('data-redirect'); // Step 1: Check if plugin is already active const beauty_makeup_stylist_checkData = new FormData(); beauty_makeup_stylist_checkData.append('action', 'check_creta_testimonial_activation'); fetch(installcretatestimonialData.ajaxurl, { method: 'POST', body: beauty_makeup_stylist_checkData, }) .then(res => res.json()) .then(res => { if (res.success && res.data.active) { // Plugin is already active → just redirect window.location.href = beauty_makeup_stylist_redirectUrl; } else { // Not active → proceed with install + activate beauty_makeup_stylist_button.textContent = 'Nevigate Getstart'; const beauty_makeup_stylist_installData = new FormData(); beauty_makeup_stylist_installData.append('action', 'install_and_activate_creta_testimonial_plugin'); beauty_makeup_stylist_installData.append('_ajax_nonce', installcretatestimonialData.nonce); fetch(installcretatestimonialData.ajaxurl, { method: 'POST', body: beauty_makeup_stylist_installData, }) .then(res => res.json()) .then(res => { if (res.success) { window.location.href = beauty_makeup_stylist_redirectUrl; } else { alert('Activation error: ' + (res.data?.message || 'Unknown error')); beauty_makeup_stylist_button.textContent = 'Try Again'; } }) .catch(error => { alert('Request failed: ' + error.message); beauty_makeup_stylist_button.textContent = 'Try Again'; }); } }) .catch(error => { alert('Check request failed: ' + error.message); }); }); });