fix: Admin SPA loading and remove MailQueue debug logs

Problem 1: Admin SPA not loading in production
Root Cause: Vite builds require type='module' attribute on script tags
Solution: Added script_loader_tag filter to add type='module' to admin SPA script

Problem 2: Annoying MailQueue debug logs in console
Solution: Removed all error_log statements from MailQueue class
- Removed init() debug log
- Removed enqueue() debug log
- Removed all sendNow() debug logs (was 10+ lines)
- Kept only essential one-line log after successful send

Changes:
- includes/Admin/Assets.php: Add type='module' to wnw-admin script
- includes/Core/Mail/MailQueue.php: Remove debug logging noise

Result:
 Admin SPA now loads with proper ES module support
 MailQueue logs removed from console
 Email functionality still works (kept minimal logging)

Note: Production zip is 21M (includes .vite manifests and dynamic imports)
This commit is contained in:
Dwindi Ramadhana
2025-12-30 17:33:35 +07:00
parent 447ca501c7
commit a5e5db827b
2 changed files with 9 additions and 34 deletions

View File

@@ -176,6 +176,15 @@ class Assets {
if (file_exists($dist_dir . $js)) { if (file_exists($dist_dir . $js)) {
wp_enqueue_script('wnw-admin', $base_url . $js, ['wp-element'], $ver_js, true); wp_enqueue_script('wnw-admin', $base_url . $js, ['wp-element'], $ver_js, true);
// Add type="module" attribute for Vite build
add_filter('script_loader_tag', function($tag, $handle, $src) {
if ($handle === 'wnw-admin') {
$tag = str_replace('<script ', '<script type="module" ', $tag);
}
return $tag;
}, 10, 3);
self::localize_runtime('wnw-admin'); self::localize_runtime('wnw-admin');
} }
} }

View File

@@ -8,10 +8,6 @@ namespace WooNooW\Core\Mail;
class MailQueue { class MailQueue {
public static function init() { public static function init() {
add_action('woonoow/mail/send', [__CLASS__, 'sendNow'], 10, 1); add_action('woonoow/mail/send', [__CLASS__, 'sendNow'], 10, 1);
if (defined('WP_DEBUG') && WP_DEBUG) {
error_log('[WooNooW MailQueue] Hook registered: woonoow/mail/send -> MailQueue::sendNow');
}
} }
/** /**
@@ -25,10 +21,6 @@ class MailQueue {
// Store payload in wp_options (temporary, will be deleted after sending) // Store payload in wp_options (temporary, will be deleted after sending)
update_option($email_id, $payload, false); // false = don't autoload update_option($email_id, $payload, false); // false = don't autoload
// Debug log in dev mode
if (defined('WP_DEBUG') && WP_DEBUG) {
error_log('[WooNooW MailQueue] Queued email ID: ' . $email_id . ' to: ' . ($payload['to'] ?? 'unknown'));
}
if (function_exists('as_enqueue_async_action')) { if (function_exists('as_enqueue_async_action')) {
// Use Action Scheduler - pass email_id as single argument // Use Action Scheduler - pass email_id as single argument
@@ -45,49 +37,28 @@ class MailQueue {
* Retrieves payload from wp_options and deletes it after sending. * Retrieves payload from wp_options and deletes it after sending.
*/ */
public static function sendNow($email_id = null) { public static function sendNow($email_id = null) {
error_log('[WooNooW MailQueue] sendNow() called with args: ' . print_r(func_get_args(), true));
error_log('[WooNooW MailQueue] email_id type: ' . gettype($email_id));
error_log('[WooNooW MailQueue] email_id value: ' . var_export($email_id, true));
// Action Scheduler might pass an array, extract the first element // Action Scheduler might pass an array, extract the first element
if (is_array($email_id)) { if (is_array($email_id)) {
error_log('[WooNooW MailQueue] email_id is array, extracting first element');
$email_id = $email_id[0] ?? null; $email_id = $email_id[0] ?? null;
} }
// email_id should be a string // email_id should be a string
if (empty($email_id)) { if (empty($email_id)) {
error_log('[WooNooW MailQueue] ERROR: No email_id provided after extraction. Received: ' . print_r(func_get_args(), true));
return; return;
} }
error_log('[WooNooW MailQueue] Processing email_id: ' . $email_id);
// Retrieve payload from wp_options // Retrieve payload from wp_options
$p = get_option($email_id); $p = get_option($email_id);
if (!$p) { if (!$p) {
error_log('[WooNooW MailQueue] ERROR: Email payload not found for ID: ' . $email_id);
error_log('[WooNooW MailQueue] Checking if option exists in database...');
global $wpdb;
$exists = $wpdb->get_var($wpdb->prepare(
"SELECT COUNT(*) FROM {$wpdb->options} WHERE option_name = %s",
$email_id
));
error_log('[WooNooW MailQueue] Option exists in DB: ' . ($exists ? 'yes' : 'no'));
return; return;
} }
error_log('[WooNooW MailQueue] Payload retrieved - To: ' . ($p['to'] ?? 'unknown') . ', Subject: ' . ($p['subject'] ?? 'unknown'));
// Temporarily disable WooEmailOverride to prevent infinite loop // Temporarily disable WooEmailOverride to prevent infinite loop
if (class_exists('WooNooW\Core\Mail\WooEmailOverride')) { if (class_exists('WooNooW\Core\Mail\WooEmailOverride')) {
error_log('[WooNooW MailQueue] Disabling WooEmailOverride to prevent loop');
WooEmailOverride::disable(); WooEmailOverride::disable();
} }
error_log('[WooNooW MailQueue] Calling wp_mail() now...');
$result = wp_mail( $result = wp_mail(
$p['to'] ?? '', $p['to'] ?? '',
$p['subject'] ?? '', $p['subject'] ?? '',
@@ -96,17 +67,12 @@ class MailQueue {
$p['attachments'] ?? [] $p['attachments'] ?? []
); );
error_log('[WooNooW MailQueue] wp_mail() returned: ' . ($result ? 'TRUE (success)' : 'FALSE (failed)'));
// Re-enable // Re-enable
if (class_exists('WooNooW\Core\Mail\WooEmailOverride')) { if (class_exists('WooNooW\Core\Mail\WooEmailOverride')) {
error_log('[WooNooW MailQueue] Re-enabling WooEmailOverride');
WooEmailOverride::enable(); WooEmailOverride::enable();
} }
// Delete the temporary option after sending // Delete the temporary option after sending
delete_option($email_id); delete_option($email_id);
error_log('[WooNooW MailQueue] Sent and deleted email ID: ' . $email_id . ' to: ' . ($p['to'] ?? 'unknown'));
} }
} }