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
		
			
				
	
	
		
			132 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| ( function ( $ ) {
 | |
| 	AstraSitesInstallTheme = {
 | |
| 		/**
 | |
| 		 * Init
 | |
| 		 */
 | |
| 		init() {
 | |
| 			this._auto_close_notice();
 | |
| 			this._bind();
 | |
| 		},
 | |
| 
 | |
| 		/**
 | |
| 		 * Binds events for the Astra Sites.
 | |
| 		 *
 | |
| 		 * @since 1.3.2
 | |
| 		 *
 | |
| 		 * @access private
 | |
| 		 * @function _bind
 | |
| 		 */
 | |
| 		_bind() {
 | |
| 			$( document ).on(
 | |
| 				'click',
 | |
| 				'.astra-sites-theme-not-installed',
 | |
| 				AstraSitesInstallTheme._install_and_activate
 | |
| 			);
 | |
| 			$( document ).on(
 | |
| 				'click',
 | |
| 				'.astra-sites-theme-installed-but-inactive',
 | |
| 				AstraSitesInstallTheme._activateTheme
 | |
| 			);
 | |
| 			$( document ).on(
 | |
| 				'wp-theme-install-success',
 | |
| 				AstraSitesInstallTheme._activateTheme
 | |
| 			);
 | |
| 		},
 | |
| 
 | |
| 		/**
 | |
| 		 * Close Getting Started Notice
 | |
| 		 *
 | |
| 		 * @param {Object} event
 | |
| 		 */
 | |
| 		_auto_close_notice() {
 | |
| 			if ( $( '.astra-sites-getting-started-btn' ).length ) {
 | |
| 				$.ajax( {
 | |
| 					url: aiBuilderVars.ajax_url,
 | |
| 					type: 'POST',
 | |
| 					data: {
 | |
| 						action: 'astra-sites-getting-started-notice',
 | |
| 						_ajax_nonce: aiBuilderVars._ajax_nonce,
 | |
| 					},
 | |
| 				} ).done( function () {} );
 | |
| 			}
 | |
| 		},
 | |
| 
 | |
| 		/**
 | |
| 		 * Activate Theme
 | |
| 		 *
 | |
| 		 * @param  event
 | |
| 		 * @param  response
 | |
| 		 * @since 1.3.2
 | |
| 		 */
 | |
| 		_activateTheme( event, response ) {
 | |
| 			event.preventDefault();
 | |
| 
 | |
| 			$( '#astra-theme-activation-nag a' ).addClass( 'processing' );
 | |
| 
 | |
| 			if ( response ) {
 | |
| 				$( '#astra-theme-activation-nag a' ).text(
 | |
| 					aiBuilderVars.installed
 | |
| 				);
 | |
| 			} else {
 | |
| 				$( '#astra-theme-activation-nag a' ).text(
 | |
| 					aiBuilderVars.activating
 | |
| 				);
 | |
| 			}
 | |
| 
 | |
| 			// WordPress adds "Activate" button after waiting for 1000ms. So we will run our activation after that.
 | |
| 			setTimeout( function () {
 | |
| 				$.ajax( {
 | |
| 					url: aiBuilderVars.ajax_url,
 | |
| 					type: 'POST',
 | |
| 					data: {
 | |
| 						action: 'astra-sites-activate_theme',
 | |
| 						_ajax_nonce: aiBuilderVars._ajax_nonce,
 | |
| 					},
 | |
| 				} ).done( function ( result ) {
 | |
| 					if ( result.success ) {
 | |
| 						$( '.astra-sites-theme-action-link' )
 | |
| 							.parent()
 | |
| 							.html( aiBuilderVars.activated + ' 🎉' );
 | |
| 					}
 | |
| 				} );
 | |
| 			}, 3000 );
 | |
| 		},
 | |
| 
 | |
| 		/**
 | |
| 		 * Install and activate
 | |
| 		 *
 | |
| 		 * @since 1.3.2
 | |
| 		 *
 | |
| 		 * @param {Object} event Current event.
 | |
| 		 */
 | |
| 		_install_and_activate( event ) {
 | |
| 			event.preventDefault();
 | |
| 			const theme_slug = $( this ).data( 'theme-slug' ) || '';
 | |
| 			const btn = $( event.target );
 | |
| 
 | |
| 			if ( btn.hasClass( 'processing' ) ) {
 | |
| 				return;
 | |
| 			}
 | |
| 
 | |
| 			btn.text( aiBuilderVars.installing ).addClass( 'processing' );
 | |
| 
 | |
| 			if (
 | |
| 				wp.updates.shouldRequestFilesystemCredentials &&
 | |
| 				! wp.updates.ajaxLocked
 | |
| 			) {
 | |
| 				wp.updates.requestFilesystemCredentials( event );
 | |
| 			}
 | |
| 
 | |
| 			wp.updates.installTheme( {
 | |
| 				slug: theme_slug,
 | |
| 			} );
 | |
| 		},
 | |
| 	};
 | |
| 
 | |
| 	/**
 | |
| 	 * Initialize
 | |
| 	 */
 | |
| 	$( function () {
 | |
| 		AstraSitesInstallTheme.init();
 | |
| 	} );
 | |
| } )( jQuery );
 |