Improve debug logging for checkout flow

Add emoji-prefixed logs to make debugging easier:
- 💳 Checkout button clicked
- ✓ Flag set/skipped actions
- 🚪 LogoutOnUnload handler
- 📡 API fetch
- 📦 API response
- 🔗 Stripe redirect
- 🗑️ Cart clearing

This makes it much easier to see the flow in the console.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
Andymick
2026-07-18 06:59:59 +01:00
co-authored by Claude Haiku 4.5
parent 7434b68a79
commit eff9a72409
2 changed files with 9 additions and 6 deletions
+5 -3
View File
@@ -122,29 +122,31 @@ export default function CheckoutPageClient({ isLoggedIn, customer }: CheckoutPag
<p className="mt-2 text-sm text-muted">Logged in as {customer?.email}</p>
<button
onClick={async () => {
console.log('💳 Checkout button clicked, cart items:', items.length);
setCheckingOut(true);
setCheckoutError(null);
try {
// Mark that we're checking out so LogoutOnUnload doesn't clear cart
if (typeof window !== 'undefined') {
sessionStorage.setItem('isCheckingOut', 'true');
console.log('Checkout button clicked: isCheckingOut flag set');
console.log('✓ Set isCheckingOut flag in sessionStorage');
}
console.log('📡 Fetching /api/checkout with', items.length, 'items');
const res = await fetch('/api/checkout', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ items, customerId: customer.id }),
});
const data = await res.json();
console.log('Checkout response:', { status: res.status, ok: res.ok, data });
console.log('📦 Checkout response:', { status: res.status, ok: res.ok, hasUrl: !!data.url });
if (!res.ok || !data.url) {
if (typeof window !== 'undefined') {
sessionStorage.removeItem('isCheckingOut');
}
throw new Error(data.error ?? 'Something went wrong starting checkout.');
}
console.log('Redirecting to Stripe:', data.url);
console.log('🔗 Redirecting to Stripe');
window.location.href = data.url;
} catch (err) {
const errorMsg = err instanceof Error ? err.message : 'Something went wrong.';