upskill-event-manager/assets/js/cross-site-cp-helper.js
Ben Reed cdc5ea85f4 feat: Add comprehensive CSS, JavaScript and theme asset infrastructure
Add massive collection of CSS, JavaScript and theme assets that were previously excluded:

**CSS Files (681 total):**
- HVAC plugin-specific styles (hvac-*.css): 34 files including dashboard, certificates, registration, mobile nav, accessibility fixes, animations, and welcome popup
- Theme framework files (Astra, builder systems, layouts): 200+ files
- Plugin compatibility styles (WooCommerce, WPForms, Elementor, Contact Form 7): 150+ files
- WordPress core and editor styles: 50+ files
- Responsive and RTL language support: 200+ files

**JavaScript Files (400+ total):**
- HVAC plugin functionality (hvac-*.js): 27 files including menu systems, dashboard enhancements, profile sharing, mobile responsive features, accessibility, and animations
- Framework and library files: jQuery plugins, GSAP, AOS, Swiper, Chart.js, Lottie, Isotope
- Plugin compatibility scripts: WPForms, WooCommerce, Elementor, Contact Form 7, LifterLMS
- WordPress core functionality: customizer, admin, block editor compatibility
- Third-party integrations: Stripe, SMTP, analytics, search functionality

**Assets:**
- Certificate background images and logos
- Comprehensive theme styling infrastructure
- Mobile-responsive design systems
- Cross-browser compatibility assets
- Performance-optimized minified versions

**Updated .gitignore:**
- Fixed asset directory whitelisting patterns to properly include CSS/JS/images
- Added proper directory structure recognition (!/assets/css/, !/assets/js/, etc.)
- Maintains security by excluding sensitive files while including essential assets

This commit provides the complete frontend infrastructure needed for:
- Full theme functionality and styling
- Plugin feature implementations
- Mobile responsiveness and accessibility
- Cross-browser compatibility
- Performance optimization
- Developer workflow support
2025-08-11 16:20:31 -03:00

184 lines
3.9 KiB
JavaScript

/**
* Created by dagan on 07/04/2014.
*/
'use strict';
window.XgUtils =
window.XgUtils ||
( function () {
function extend( object, defaultObject ) {
const result = defaultObject || {};
let key;
for ( key in object ) {
if ( object.hasOwnProperty( key ) ) {
result[ key ] = object[ key ];
}
}
return result;
}
//public interface
return {
extend,
};
} )();
window.xsLocalStorage =
window.xsLocalStorage ||
( function () {
const MESSAGE_NAMESPACE = 'cross-domain-local-message-uag';
let options = {
iframeId: 'cross-domain-iframe-uag',
iframeUrl: undefined,
initCallback() {},
};
let requestId = -1;
let iframe;
const requests = {};
let wasInit = false;
let iframeReady = true;
function applyCallback( data ) {
if ( requests[ data.id ] ) {
requests[ data.id ]( data );
delete requests[ data.id ];
}
}
function receiveMessage( event ) {
let data;
try {
data = JSON.parse( event.data );
} catch ( err ) {
//not our message, can ignore
}
if ( data && data.namespace === MESSAGE_NAMESPACE ) {
if ( data.id === 'iframe-ready' ) {
iframeReady = true;
options.initCallback();
} else {
applyCallback( data );
}
}
}
function buildMessage( action, key, value, callback ) {
requestId++;
requests[ requestId ] = callback;
const data = {
namespace: MESSAGE_NAMESPACE,
id: requestId,
action,
key,
value,
};
iframe?.contentWindow.postMessage( JSON.stringify( data ), '*' );
}
function init( customOptions ) {
/* eslint-disable no-undef */
options = XgUtils.extend( customOptions, options );
const temp = document.createElement( 'div' );
if ( window.addEventListener ) {
window.addEventListener( 'message', receiveMessage, false );
} else {
window.attachEvent( 'onmessage', receiveMessage );
}
temp.innerHTML =
'<iframe id="' + options.iframeId + '" src=' + options.iframeUrl + ' style="display: none;"></iframe>';
document.body.appendChild( temp );
iframe = document.getElementById( options.iframeId );
}
function isApiReady() {
if ( ! wasInit ) {
return false;
}
if ( ! iframeReady ) {
return false;
}
return true;
}
function isDomReady() {
return document.readyState === 'complete';
}
return {
//callback is optional for cases you use the api before window load.
init( customOptions ) {
if ( ! customOptions.iframeUrl ) {
throw 'Please specify the iframe URL';
}
if ( wasInit ) {
return;
}
wasInit = true;
if ( isDomReady() ) {
init( customOptions );
} else if ( document.addEventListener ) {
// All browsers expect IE < 9
document.addEventListener( 'readystatechange', function () {
if ( isDomReady() ) {
init( customOptions );
}
} );
} else {
// IE < 9
document.attachEvent( 'readystatechange', function () {
if ( isDomReady() ) {
init( customOptions );
}
} );
}
},
setItem( key, value, callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'set', key, value, callback );
},
getItem( key, callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'get', key, null, callback );
},
removeItem( key, callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'remove', key, null, callback );
},
key( index, callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'key', index, null, callback );
},
getSize( callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'size', null, null, callback );
},
getLength( callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'length', null, null, callback );
},
clear( callback ) {
if ( ! isApiReady() ) {
return;
}
buildMessage( 'clear', null, null, callback );
},
wasInit() {
return wasInit;
},
};
} )();