// ============================================ // RAGE ANGEL - SITE-WIDE CODE // Location: Site Code/MasterPage.js // ============================================ import { session } from 'wix-storage'; import wixUsers from 'wix-users'; // ============================================ // SITE INITIALIZATION // ============================================ $w.onReady(() => { // Check if user is logged in const user = wixUsers.currentUser; if (user.loggedIn) { console.log('👼 Welcome back, faithful one!'); session.setItem('rageangel_userId', user.id); } else { console.log('🕊️ Welcome, anonymous sinner!'); session.setItem('rageangel_userId', 'anonymous'); } // Initialize Angel Points for new sessions if (!session.getItem('rageangel_angelPoints')) { session.setItem('rageangel_angelPoints', '0'); } // Check for Purgatory items pending checkPurgatory(); // Inject the Rage Angel footer (optional) injectFooter(); }); // ============================================ // PURGATORY CHECK // ============================================ function checkPurgatory() { const purgatoryCount = session.getItem('rageangel_purgatoryCount') || 0; if (purgatoryCount > 0) { console.log(`🔥 You have ${purgatoryCount} messages in Purgatory.`); // Could show a notification here } } // ============================================ // FOOTER INJECTION // ============================================ function injectFooter() { // This adds the "Angel watches" footer to all pages const footer = document.createElement('div'); footer.id = 'rageangel-footer'; footer.style.cssText = ` position: fixed; bottom: 10px; right: 10px; color: rgba(255, 255, 255, 0.3); font-size: 11px; font-family: 'Inter', sans-serif; text-align: right; pointer-events: none; z-index: 9999; text-shadow: 0 0 10px rgba(0,0,0,0.8); `; footer.innerHTML = ` 🕊️ The Angel watches. You are never alone in your drafts. `; document.body.appendChild(footer); } // ============================================ // GLOBAL EVENT LISTENERS // ============================================ // Listen for page visibility change (user switches tabs) document.addEventListener('visibilitychange', () => { if (document.hidden) { // User left the tab console.log('👀 The Angel sees you stepping away...'); } else { // User returned console.log('🕊️ Welcome back, sinner.'); } }); // Listen for beforeunload (user trying to close) window.addEventListener('beforeunload', (event) => { const wrathScore = parseInt(session.getItem('rageangel_wrathScore') || '0'); if (wrathScore > 5) { // If they're in the middle of a high-wrath exorcism, warn them const recipient = session.getItem('rageangel_recipient'); if (recipient) { event.preventDefault(); event.returnValue = 'You have an unfinished exorcism! The Angel is disappointed.'; } } }); console.log('🕊️ RAGE ANGEL: Site-wide protection active.'); console.log(`📊 Current Angel Points: ${session.getItem('rageangel_angelPoints')}`);
top of page
No plans availableOnce there are plans available for purchase, you’ll see them here.
bottom of page