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