File: //var/www/mussarq_bak/wp-content/themes/wpnull24/framework/js/elements/popup.js
/**
* UpSolution Element: Modal Popup
*/
! function( $ ) {
"use strict";
$us.WPopup = function( container ) {
this.$container = $( container );
this._events = {
show: this.show.bind( this ),
afterShow: this.afterShow.bind( this ),
hide: this.hide.bind( this ),
preventHide: function( e ) {
e.stopPropagation();
},
afterHide: this.afterHide.bind( this ),
keyup: function( e ) {
if ( e.key == "Escape" ) {
this.hide();
}
}.bind( this )
};
// Event name for triggering CSS transition finish
this.transitionEndEvent = ( navigator.userAgent.search( /webkit/i ) > 0 ) ? 'webkitTransitionEnd' : 'transitionend';
this.isFixed = ! jQuery.isMobile;
this.$trigger = this.$container.find( '.w-popup-trigger' );
this.triggerType = this.$trigger.usMod( 'type' );
if ( this.triggerType == 'load' ) {
var delay = this.$trigger.data( 'delay' ) || 2;
setTimeout( this.show.bind( this ), delay * 1000 );
} else if ( this.triggerType == 'selector' ) {
var selector = this.$trigger.data( 'selector' );
if ( selector ) {
$us.$body.on( 'click', selector, this._events.show );
}
} else {
this.$trigger.on( 'click', this._events.show );
}
this.$wrap = this.$container.find( '.w-popup-wrap' )
.usMod( 'pos', this.isFixed ? 'fixed' : 'absolute' )
.on( 'click', this._events.hide );
this.$box = this.$container.find( '.w-popup-box' );
this.$overlay = this.$container.find( '.w-popup-overlay' )
.usMod( 'pos', this.isFixed ? 'fixed' : 'absolute' )
.on( 'click', this._events.hide );
this.$container.find( '.w-popup-closer' ).on( 'click', this._events.hide );
this.$box.on( 'click', this._events.preventHide );
this.timer = null;
};
$us.WPopup.prototype = {
_hasScrollbar: function() {
return document.documentElement.scrollHeight > document.documentElement.clientHeight;
},
_getScrollbarSize: function() {
if ( $us.scrollbarSize === undefined ) {
var scrollDiv = document.createElement( 'div' );
scrollDiv.style.cssText = 'width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;';
document.body.appendChild( scrollDiv );
$us.scrollbarSize = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild( scrollDiv );
}
return $us.scrollbarSize;
},
show: function() {
clearTimeout( this.timer );
this.$overlay.appendTo( $us.$body ).show();
this.$wrap.appendTo( $us.$body ).css( 'display', 'flex' );
if ( this.isFixed ) {
$us.$html.addClass( 'usoverlay_fixed' );
// Storing the value for the whole popup visibility session
this.windowHasScrollbar = this._hasScrollbar();
if ( this.windowHasScrollbar && this._getScrollbarSize() ) {
$us.$html.css( 'margin-right', this._getScrollbarSize() );
}
} else {
this.$overlay.css( {
height: $us.$document.height()
} );
this.$wrap.css( 'top', $us.$window.scrollTop() );
}
$us.$body.on( 'keyup', this._events.keyup );
this.timer = setTimeout( this._events.afterShow, 25 );
},
afterShow: function() {
clearTimeout( this.timer );
this.$overlay.addClass( 'active' );
this.$box.addClass( 'active' );
if ( window.$us !== undefined && $us.$canvas !== undefined ) {
$us.$canvas.trigger( 'contentChange' );
}
$us.$window.trigger( 'resize' );
},
hide: function() {
clearTimeout( this.timer );
$us.$body.off( 'keyup', this._events.keyup );
this.$box.on( this.transitionEndEvent, this._events.afterHide );
this.$overlay.removeClass( 'active' );
this.$box.removeClass( 'active' );
// Closing it anyway
this.timer = setTimeout( this._events.afterHide, 1000 );
},
afterHide: function() {
clearTimeout( this.timer );
this.$box.off( this.transitionEndEvent, this._events.afterHide );
this.$overlay.appendTo( this.$container ).hide();
this.$wrap.appendTo( this.$container ).hide();
if ( this.isFixed ) {
$us.$html.removeClass( 'usoverlay_fixed' );
if ( this.windowHasScrollbar ) {
$us.$html.css( 'margin-right', '' );
}
$us.$window.trigger( 'resize' );
}
},
};
$.fn.wPopup = function( options ) {
return this.each( function() {
$( this ).data( 'wPopup', new $us.WPopup( this, options ) );
} );
};
$( function() {
$( '.w-popup' ).wPopup();
} );
}( jQuery );