HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/dfwparty/members.bizcoach.biz/wp-content/plugins/buddyboss-platform/bp-core/admin/js/hello.js
/* global BP_HELLO */
/**
 * Loads for Hello BuddyBoss/App in wp-admin for query string `hello=buddyboss` and `hello=buddyboss-app`.
 *
 * @since BuddyPress 3.0.0
 */
(function() {
	/**
	 * Open the Hello BuddyBoss modal.
	 */
	var bp_hello_open_modal = function( event ) {
		var backdrop = document.querySelector('#bp-hello-backdrop, #bb-hello-backdrop');
		var modal = document.querySelector('#bp-hello-container.bb-onload-modal, #bb-hello-container.bb-onload-modal');

		if ( null === backdrop ) {
			return;
		}
		
		if (
			modal &&
			modal.classList.contains( 'bb-update-modal' ) &&
			'undefined' !== typeof BP_HELLO &&
			'1' !== BP_HELLO.bb_display_auto_popup &&
			'click' !== event.type
		) {
			return;
		}

		if (
			modal &&
			modal.classList.contains( 'bb-onload-modal' )
		) {
			document.body.classList.add( 'bp-disable-scroll' );

			// Show modal and overlay.
			backdrop.style.display = '';
			modal.style.display    = '';

			// Focus the "X" so bp_hello_handle_keyboard_events() works.
			var focus_target = modal.querySelectorAll( 'a[href], button' );
			focus_target     = Array.prototype.slice.call( focus_target );
			focus_target[0].focus();
			
			if ( modal.classList.contains( 'bb-update-modal' ) ) {
				// Open popup - click on changelog and close popup - Again open popup then changelog tab will active, at that time stop video.
				var iframeSelector = document.querySelector( '.bb-hello-tabs_content iframe' );
				var getHref = document.querySelector( '.bb-hello-tabs .bb-hello-tabs_anchor.is_active' );
				if ( getHref ) {
					var getHrefWithoutHash = getHref.getAttribute( 'data-action' );
					bbIframeActions( iframeSelector, getHrefWithoutHash );
				}
			}
		}

		// Events.
		if ( modal ) {
			modal.addEventListener( 'keydown', bp_hello_handle_keyboard_events );
		}
		backdrop.addEventListener( 'click', bp_hello_close_modal );
	};

	/**
	 * Close modal if "X" or background is touched.
	 *
	 * @param {Event} event - A click event.
	 */
	document.addEventListener(
		'click',
		function( event ) {
			var backdrop = document.querySelector('#bp-hello-backdrop, #bb-hello-backdrop');
			if ( !backdrop || ( !document.getElementById( 'bp-hello-container' ) && !document.getElementById( 'bb-hello-container' ) ) ) {
				return;
			}

			var backdrop_click = backdrop.contains( event.target ),
			modal_close_click  = event.target.classList.contains( 'close-modal' );

			if ( ! modal_close_click && ! backdrop_click ) {
				return;
			}

			bp_hello_close_modal();
		},
		false
	);

	/**
	 * Close the Hello modal.
	 */
	var bp_hello_close_modal = function() {

		var containers = document.querySelectorAll( '#bp-hello-container, #bb-hello-container' );
		containers.forEach( function( container ) {
			container.setAttribute( 'style', 'display:none' );
		} );
		var backdrops = document.querySelectorAll( '#bp-hello-backdrop, #bb-hello-backdrop' );
		backdrops.forEach( function( backdrop ) {
			backdrop.setAttribute( 'style', 'display:none' );
		} );
		document.body.className = document.body.className.replace('bp-disable-scroll','');
		// Close model then video should also stop.
		var iframeSelector = document.querySelector( '.bb-hello-tabs_content iframe' );
		var getHref = document.querySelector( '.bb-hello-tabs .bb-hello-tabs_anchor.is_active' );
		if ( getHref ) {
			var getHrefWithoutHash = getHref.getAttribute( 'data-action' );
			bbIframeActions( iframeSelector, getHrefWithoutHash );
		}
	};

	/**
	 * Restrict keyboard focus to elements within the Hello BuddyBoss modal.
	 *
	 * @param {Event} event - A keyboard focus event.
	 */
	var bp_hello_handle_keyboard_events = function( event ) {
		var modal = document.querySelector( '#bp-hello-container, #bb-hello-container' );
		var	focus_targets  = Array.prototype.slice.call(
				modal.querySelectorAll( 'a[href], button' )
			),
			first_tab_stop = focus_targets[0],
			last_tab_stop  = focus_targets[ focus_targets.length - 1 ];

		// Check for TAB key press.
		if ( event.keyCode !== 9 ) {
			return;
		}

		// When SHIFT+TAB on first tab stop, go to last tab stop in modal.
		if ( event.shiftKey && document.activeElement === first_tab_stop ) {
			event.preventDefault();
			last_tab_stop.focus();

			// When TAB reaches last tab stop, go to first tab stop in modal.
		} else if ( document.activeElement === last_tab_stop ) {
			event.preventDefault();
			first_tab_stop.focus();
		}
	};

	/**
	 * Close modal if escape key is presssed.
	 *
	 * @param {Event} event - A keyboard focus event.
	 */
	document.addEventListener(
		'keyup',
		function( event ) {
			if ( event.keyCode === 27 ) {
				if (
					( !document.getElementById( 'bp-hello-backdrop' ) && !document.getElementById( 'bb-hello-backdrop' ) ) ||
					( !document.getElementById( 'bp-hello-container' ) && !document.getElementById( 'bb-hello-container' ) )
				) {
					return;
				}

				bp_hello_close_modal();
			}
		},
		false
	);

	// Init modal after the screen's loaded.
	if ( document.attachEvent ? document.readyState === 'complete' : document.readyState !== 'loading' ) {
		bp_hello_open_modal();
	} else {
		document.addEventListener( 'DOMContentLoaded', bp_hello_open_modal );
	}
	var link = document.getElementById( 'bb-plugin-release-link' );
	if( link ) {
		link.addEventListener( 'click', bp_hello_open_modal );
	}
	
	// Load tab for release content.
	var tab = document.querySelectorAll( '.bb-hello-tabs_anchor' );
	if ( tab ) {
		for ( var i = 0; i < tab.length; i++ ) {
			tab[i].addEventListener( 'click', bbOnTabClick, false );
		}
	}
	
	function bbOnTabClick ( event ) {
		event.preventDefault();
		// deactivate existing active tabs and tabContent
		for ( var i = 0; i < tab.length; i++ ) {
			tab[i].classList.remove( 'is_active' );
		}
		var tabContent = document.querySelectorAll( '.bb-hello-tabs_content' );
		
		if ( tabContent ) {
			for ( var j = 0; j < tabContent.length; j++ ) {
				tabContent[j].classList.remove( 'is_active' );
			}
		}
		
		// activate new tabs and tabContent
		event.target.classList.add( 'is_active' );
		var getHrefWithoutHash = event.target.getAttribute( 'data-action' );
		// If tab change from overview to changelog then also stop video in overview tab content.
		var iframeSelector = document.querySelector( '.bb-hello-tabs_content iframe' );
		bbIframeActions ( iframeSelector, getHrefWithoutHash );
		document.getElementById( getHrefWithoutHash ).classList.add( 'is_active' );
	}
	
	function bbIframeActions ( iframeSelector, getHrefWithoutHash ) {
		if ( 'bb-release-overview' !== getHrefWithoutHash ) { // If not overview tab then stop video.
			if ( iframeSelector && iframeSelector.src ) {
				var iframeSelectorData = iframeSelector.src;
				iframeSelector.src = '';
				iframeSelector.src = iframeSelectorData;
			}
		} else {
			if ( iframeSelector ) { // If overview tab then autoplay video.
				iframeSelector.src = iframeSelector.src;
			}
		}
	}
}());