Your IP : 216.73.216.138


Current Path : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/assets/js/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/bbpowerpack/assets/js/header-layout.js

(function($){

	/**
	 * Helper class for header layout logic.
	 *
	 * @since 2.7.1
	 * @class PPHeaderLayout
	 */
	PPHeaderLayout = {

		/**
		 * A reference to the window object for this page.
		 *
		 * @since 2.7.1
		 * @property {Object} win
		 */
		win : null,

		/**
		 * A reference to the body object for this page.
		 *
		 * @since 2.7.1
		 * @property {Object} body
		 */
		body : null,

		/**
		 * A reference to the header object for this page.
		 *
		 * @since 2.7.1
		 * @property {Object} header
		 */
		header : null,

		/**
		 * Whether this header overlays the content or not.
		 *
		 * @since 2.7.1
		 * @property {Boolean} overlay
		 */
		overlay : false,

		/**
		 * Whether the page has the WP admin bar or not.
		 *
		 * @since 2.7.1
		 * @property {Boolean} hasAdminBar
		 */
		hasAdminBar : false,

		/**
		 * Initializes header layout logic.
		 *
		 * @since 2.7.1
		 * @method init
		 */
		init: function()
		{
			var editing = $( 'html.fl-builder-edit' ).length,
				header  = $( '.fl-builder-content[data-type=header]' );

			if ( ! editing && header.length ) {

				header.imagesLoaded( function() {

					this.win    	 = $( window );
					this.body   	 = $( 'body' );
					this.header 	 = header.eq( 0 );
					this.overlay     = !! Number( header.attr( 'data-overlay' ) );
					this.hasAdminBar = !! $( 'body.admin-bar' ).length;

					if ( Number( header.attr( 'data-sticky' ) ) ) {

						this.header.data( 'original-top', this.header.offset().top );
						this.win.on( 'resize', $.throttle( 500, this._initSticky.bind( this ) ) );
						this._initSticky();

						if ( Number( header.attr( 'data-shrink' ) ) ) {
							this.header.data( 'original-height', this.header.outerHeight() );
							this.win.on( 'resize', $.throttle( 500, this._initShrink.bind( this ) ) );
							this._initShrink();
						}
					}

				}.bind( this ) );
			}
		},

		/**
		 * Initializes sticky logic for a header.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _initSticky
		 */
		_initSticky: function()
		{
			var devices = this.header.data( 'sticky-devices' ),
				breakpoints = FLBuilderLayoutConfig.breakpoints,
				matches = this.win.width() >= breakpoints.medium;

			if ( 'undefined' !== typeof devices ) {
				devices = devices.split( ',' );
				if ( -1 !== $.inArray( 'tablet', devices ) && -1 !== $.inArray( 'mobile', devices ) ) {
					matches = true;
				} else if ( -1 !== $.inArray( 'tablet', devices ) ) {
					matches = this.win.width() > breakpoints.small;
				} else if ( -1 !== $.inArray( 'mobile', devices ) ) {
					matches = this.win.width() <= breakpoints.small || this.win.width() > breakpoints.medium;
				}
			}

			if ( matches ) {
				this.win.on( 'scroll.bb-powerpack-header-sticky', this._doSticky.bind( this ) );
				this._doSticky();
			} else {
				this.win.off( 'scroll.bb-powerpack-header-sticky' );
				this.header.removeClass( 'bb-powerpack-header-sticky' );
				this.body.css( 'padding-top', '0' );
			}
		},

		/**
		 * Sticks the header when the page is scrolled.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _doSticky
		 */
		_doSticky: function()
		{
			var winTop    		  = this.win.scrollTop(),
				headerTop 		  = this.header.data( 'original-top' ),
				hasStickyClass    = this.header.hasClass( 'bb-powerpack-header-sticky' ),
				hasScrolledClass  = this.header.hasClass( 'bb-powerpack-header-scrolled' );

			if ( this.hasAdminBar ) {
				winTop += 32;
			}

			if ( winTop >= headerTop ) {
				if ( ! hasStickyClass ) {
					this.header.addClass( 'bb-powerpack-header-sticky' );
					if ( ! this.overlay ) {
						this.body.css( 'padding-top', this.header.outerHeight() + 'px' );
					}
				}
			}
			// else if ( hasStickyClass ) {
			// 	this.header.removeClass( 'bb-powerpack-header-sticky' );
			// 	this.body.css( 'padding-top', '0' );
			// }

			if ( winTop > headerTop ) {
				if ( ! hasScrolledClass ) {
					this.header.addClass( 'bb-powerpack-header-scrolled' );
				}
			} else if ( hasScrolledClass ) {
				this.header.removeClass( 'bb-powerpack-header-scrolled' );
			}
		},

		/**
		 * Initializes shrink logic for a header.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _initShrink
		 */
		_initShrink: function()
		{
			var devices = this.header.data( 'sticky-devices' ),
				breakpoints = FLBuilderLayoutConfig.breakpoints,
				matches = this.win.width() >= breakpoints.medium;

			if ( 'undefined' !== typeof devices ) {
				devices = devices.split( ',' );
				if ( $.inArray( 'tablet', devices ) && $.inArray( 'mobile', devices ) ) {
					matches = true;
				} else if ( $.inArray( 'tablet', devices ) ) {
					matches = this.win.width() > breakpoints.small;
				} else if ( $.inArray( 'mobile', devices ) ) {
					matches = this.win.width() <= breakpoints.small || this.win.width() > breakpoints.medium;
				}
			}

			if ( matches ) {
				this.win.on( 'scroll.bb-powerpack-header-shrink', this._doShrink.bind( this ) );
				this._setImageMaxHeight();

				if ( this.win.scrollTop() > 0 ) {
					this._doShrink();
				}
			} else {
				this.body.css( 'padding-top', '0' );
				this.win.off( 'scroll.bb-powerpack-header-shrink' );
				this._removeShrink();
				this._removeImageMaxHeight();
			}
		},

		/**
		 * Shrinks the header when the page is scrolled.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _doShrink
		 */
		_doShrink: function()
		{
			var winTop 	  	 = this.win.scrollTop(),
				headerTop 	 = this.header.data( 'original-top' ),
				headerHeight = this.header.data( 'original-height' ),
				hasClass     = this.header.hasClass( 'bb-powerpack-header-shrink' );

			if ( this.hasAdminBar ) {
				winTop += 32;
			}

			if ( winTop >  headerHeight ) {

				if ( ! hasClass ) {

					this.header.addClass( 'bb-powerpack-header-shrink' );

					this.header.find( '.fl-row-content-wrap' ).each( function() {

						var row = $( this );

						if ( parseInt( row.css( 'padding-bottom' ) ) > 5 ) {
							row.addClass( 'bb-powerpack-header-shrink-row-bottom' );
						}

						if ( parseInt( row.css( 'padding-top' ) ) > 5 ) {
							row.addClass( 'bb-powerpack-header-shrink-row-top' );
						}
					} );

					this.header.find( '.fl-module-content' ).each( function() {

						var module = $( this );

						if ( parseInt( module.css( 'margin-bottom' ) ) > 5 ) {
							module.addClass( 'bb-powerpack-header-shrink-module-bottom' );
						}

						if ( parseInt( module.css( 'margin-top' ) ) > 5 ) {
							module.addClass( 'bb-powerpack-header-shrink-module-top' );
						}
					} );
				}
			} else if ( hasClass ) {
				this._removeShrink();
			}
		},

		/**
		 * Removes the header shrink effect.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _removeShrink
		 */
		_removeShrink: function()
		{
			var rows    = this.header.find( '.fl-row-content-wrap' ),
				modules = this.header.find( '.fl-module-content' );

			rows.removeClass( 'bb-powerpack-header-shrink-row-bottom' );
			rows.removeClass( 'bb-powerpack-header-shrink-row-top' );
			modules.removeClass( 'bb-powerpack-header-shrink-module-bottom' );
			modules.removeClass( 'bb-powerpack-header-shrink-module-top' );
			this.header.removeClass( 'bb-powerpack-header-shrink' );
		},

		/**
		 * Adds max height to images in modules for smooth scrolling.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _setImageMaxHeight
		 */
		_setImageMaxHeight: function()
		{
			var head = $( 'head' ),
				stylesId = 'fl-header-styles-' + this.header.data( 'post-id' ),
				styles = '',
				images = this.header.find( '.fl-module-content img' );

			if ( $( '#' + stylesId ).length ) {
				return;
			}

			images.each( function( i ) {
				var image = $( this ),
					height = image.height(),
					node = image.closest( '.fl-module' ).data( 'node' ),
					className = 'fl-node-' + node + '-img-' + i;

				image.addClass( className );
				image.attr( 'data-no-lazy', 1 );
				styles += '.' + className + ' { max-height: ' + height + 'px }';
			} );

			if ( '' !== styles ) {
				head.append( '<style id="' + stylesId + '">' + styles + '</style>' );
			}
		},

		/**
		 * Removes max height on images in modules for smooth scrolling.
		 *
		 * @since 2.7.1
		 * @access private
		 * @method _removeImageMaxHeight
		 */
		_removeImageMaxHeight: function()
		{
			$( '#fl-header-styles-' + this.header.data( 'post-id' ) ).remove();
		},
	};

	$( function() { PPHeaderLayout.init(); } );

})(jQuery);