( function ( $ ) { var LIP, lightboxHooks; /** * @class * @constructor */ function LightboxInterface() { lightboxHooks = window.lightboxHooks; function handleFullscreenChange() { // If we're no longer in fullscreen mode, make sure if ( !lbinterface.fullscreenButtonJustPressed && !document.fullscreenElement && !document.mozFullScreenElement && !document.webkitFullScreenElement && !document.msFullScreenElement) { lightboxHooks.callAll( 'defullscreen' ); lbinterface.$main.removeClass( 'mlb-fullscreened' ); } else if ( lbinterface.fullscreenButtonJustPressed ) { lbinterface.fullscreenButtonJustPressed = false; } } var result, addToPre = [], addToPost = [], lbinterface = this; // Staging area for image resizes this.$staging = $( '
' ) .addClass( 'mlb-staging-area' ); $( document.body ).append( this.$staging ); this.$overlay = $( '
' ) .addClass( 'mlb-overlay' ); this.$wrapper = $( '
' ) .addClass( 'mlb-wrapper' ); this.$main = $( '
' ) .addClass( 'mlb-main' ); this.$imageDiv = $( '
' ) .addClass( 'mlb-image' ); // I blame CSS for this this.$innerWrapper = $( '
' ) .addClass( 'mlb-image-inner-wrapper' ) .append( this.$imageDiv ); this.$imageWrapper = $( '
' ) .addClass( 'mlb-image-wrapper' ) .append( this.$innerWrapper ); this.$preDiv = $( '
' ) .addClass( 'mlb-pre-image' ); result = lightboxHooks.callAll( 'addToPreDiv', this, addToPre ); this.setupPreDiv( result, addToPre ); this.$postDiv = $( '
' ) .addClass( 'mlb-post-image' ); result = lightboxHooks.callAll( 'addToPostDiv', this, addToPost ); this.setupPostDiv( result, addToPost ); this.$main.append( this.$preDiv, this.$imageWrapper, this.$postDiv ); this.$wrapper.append( this.$main ); lightboxHooks.callAll( 'modifyInterface', this ); window.addEventListener( 'keyup', function ( e ) { if ( e.keyCode === 27 ) { // Escape button pressed lbinterface.unattach(); } } ); window.addEventListener( 'fullscreenchange', handleFullscreenChange ); window.addEventListener( 'mozfullscreenchange', handleFullscreenChange ); window.addEventListener( 'webkitfullscreenchange', handleFullscreenChange ); window.addEventListener( 'msfullscreenchange', handleFullscreenChange ); } LIP = LightboxInterface.prototype; LIP.empty = function () { this.$imageDiv.empty(); lightboxHooks.callAll( 'clearInterface', this ); if ( this.resizeListener ) { window.removeEventListener( 'resize', this.resizeListener ); } }; LIP.attach = function () { $( document.body ) .append( this.$wrapper, this.$overlay ); }; LIP.unattach = function () { lightboxHooks.callAll( 'closeInterface', this ); this.$wrapper.detach(); this.$overlay.detach(); }; LIP.fullscreen = function () { var fullscreen; if ( document.fullscreenElement || document.mozFullScreenElement || document.webkitFullScreenElement || document.msFullScreenElement ) { if ( document.cancelFullScreen ) { document.cancelFullScreen(); } else if ( document.mozCancelFullScreen ) { document.mozCancelFullScreen(); } else if ( document.webkitCancelFullScreen ) { document.webkitCancelFullScreen(); } else if ( document.msCancelFullScreen ) { document.msCancelFullScreen(); } this.$main.removeClass( 'mlb-fullscreened' ); lightboxHooks.callAll( 'defullscreen', this ); } else { fullscreen = this.$main.get( 0 ); if ( fullscreen.requestFullScreen ) { fullscreen.requestFullScreen(); } else if ( fullscreen.mozRequestFullScreen ) { fullscreen.mozRequestFullScreen(); } else if ( fullscreen.webkitRequestFullScreen ) { fullscreen.webkitRequestFullScreen(); } else if ( fullscreen.msRequestFullscreen ) { fullscreen.msRequestFullscreen(); } this.$main.addClass( 'mlb-fullscreened' ); lightboxHooks.callAll( 'fullscreen', this ); } }; /** * @protected */ LIP.resizeCallback = function() { // TODO: This is called even when the Lightbox is not attached ! var result = lightboxHooks.callAll( 'imageResize', this ); if ( result !== false ) { this.autoResizeImage(); } }; /** * @protected */ LIP.loadCallback = function ( image, ele ) { var iface = this; image.globalMaxWidth = ele.width; image.globalMaxHeight = ele.height; this.$image = $( ele ); this.autoResizeImage(); // Capture listener so we can remove it later, otherwise // we are going to leak listeners ! this.resizeListener = function () { iface.resizeCallback(); }; window.addEventListener( 'resize', this.resizeListener ); lightboxHooks.callAll( 'imageLoaded', this ); }; LIP.load = function ( image ) { var ele = image.getImageElement( function () { iface.loadCallback( image, ele ); } ), iface = this; this.currentImage = image; }; LIP.autoResizeImage = function () { this.$staging.append( this.$image ); this.currentImage.autoResize( this.$image.get( 0 ), this.$imageDiv ); this.$imageDiv.append( this.$image ); }; LIP.replaceImageWith = function ( imageEle ) { var $image = $( imageEle ); this.currentImage.src = imageEle.src; this.$image.replaceWith( $image ); this.$image = $image; this.currentImage.globalMaxWidth = this.$image.width(); this.currentImage.globalMaxHeight = this.$image.height(); this.currentImage.autoResize( imageEle ); }; LIP.setupPreDiv = function ( buildDefaults, toAdd ) { var lbinterface = this; if ( buildDefaults ) { this.$controlBar = $( '
' ) .addClass( 'mlb-controls' ); this.$closeButton = $( '
' ) .text( ' ' ) .addClass( 'mlb-close' ) .click( function () { lbinterface.unattach(); } ); this.$fullscreenButton = $( '
' ) .text( ' ' ) .addClass( 'mlb-fullscreen' ) .click( function () { lbinterface.fullscreenButtonJustPressed = true; lbinterface.fullscreen(); } ); this.$controlBar.append( this.$closeButton, this.$fullscreenButton ); this.$preDiv.append( this.$controlBar ); lightboxHooks.callAll( 'modifyDefaultPreDiv', this ); } this.addElementsToDiv( this.$preDiv, toAdd ); }; LIP.setupPostDiv = function ( buildDefaults, toAdd ) { if ( buildDefaults ) { lightboxHooks.callAll( 'modifyDefaultPostDiv', this ); } this.addElementsToDiv( this.$postDiv, toAdd ); }; LIP.addElementsToDiv = function ( $div, toAdd ) { var i; for ( i = 0; i < toAdd.length; i++ ) { $div.append( toAdd[i] ); } }; window.LightboxInterface = LightboxInterface; }( jQuery ) );