| Server IP : 104.21.74.147 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/envira-gallery/assets/js/ |
Upload File : |
import enviraLazy from './lib/enviraLazy.js';
import bnbOverlay from './lib/layout-modes/bnbOverlay.js';
class Envira {
/**
* Constructor function for Envira.
*
* @since 1.7.1
*/
constructor(id, data, images, lightbox) {
const self = this;
//Setup our Vars
self.data = data;
self.images = images;
self.id = id;
self.envirabox_config = lightbox;
self.initImage = false;
//Log if ENVIRA_DEBUG enabled
self.log(self.id);
//self init
self.init();
}
/**
* Initizlize the proper scripts based on settings.
*
* @since 1.7.1
*/
init() {
const self = this;
const isLazyLoadingOn = self.get_config('lazy_loading');
const layout = self.get_config('layout');
switch (layout) {
case 'automatic':
self.justified();
$(document).trigger('envira_gallery_api_justified', self.data);
if (isLazyLoadingOn) {
self.load_images();
// Pagination specific lazy loading.
$(document).on('envira_pagination_ajax_load_completed', () =>
$('#envira-gallery-' + self.id).on('jg.complete', event => {
event.preventDefault();
self.load_images();
})
);
}
break;
case 'bnb':
bnbOverlay.init();
break;
case 'mason':
setTimeout(() => {
self.enviratopes();
}, 100);
if (isLazyLoadingOn) {
self.load_images();
self.enviratopes();
$(window).scroll(function (e) {
self.enviratopes();
});
}
break;
default:
if (isLazyLoadingOn) {
self.load_images();
}
}
//Lightbox setup
if (self.get_config('lightbox_enabled') || self.get_config('lightbox')) {
self.lightbox();
}
if ((self.get_config('tags') ?? 0) && 'undefined' !== typeof EnviraTags) {
// Pending enhancement. Call this function on envira_gallery_api_init event from enviraTags file.
EnviraTags.init();
}
$(document).trigger('envira_gallery_api_init', self);
}
/**
* LazyLoading and nothing more.
*
* Avoid adding other features here.
*
* @since 1.7.1
*/
load_images() {
const self = this;
enviraLazy.run('#envira-gallery-' + self.id);
}
/**
* Outputs the gallery init script in the footer.
*
* @since 1.7.1
*/
justified() {
const self = this;
const settings = {
rowHeight: self.is_mobile()
? this.get_config('mobile_justified_row_height')
: this.get_config('justified_row_height'),
maxRowHeight: -1,
waitThumbnailsLoad: true,
selector: '> div > div',
lastRow: this.get_config('justified_last_row'),
border: 0,
margins: this.get_config('justified_margins')
};
if (self.get_config('animations_load')) {
settings.cssAnimation = true;
}
$('#envira-gallery-' + self.id).enviraJustifiedGallery(settings);
$(document).trigger('envira_gallery_api_start_justified', self);
}
justified_norewind() {
$('#envira-gallery-' + self.id).enviraJustifiedGallery('norewind');
}
/**
* Outputs the gallery init script in the footer.
*
* @since 1.7.1
*/
enviratopes() {
var self = this;
var envira_isotopes_config = {
itemSelector: '.envira-gallery-item',
masonry: {
columnWidth: '.envira-gallery-item'
}
};
$(document).trigger('envira_gallery_api_enviratope_config', [self]);
// Initialize Isotope
$('#envira-gallery-' + self.id).enviratope(envira_isotopes_config);
// Re-layout Isotope when each image loads
$('#envira-gallery-' + self.id)
.enviraImagesLoaded()
.always(function () {
$('#envira-gallery-' + self.id).enviratope('layout');
});
$(document).trigger('envira_gallery_api_enviratope', [self]);
}
/**
* Outputs the gallery init script in the footer.
*
* @since 1.7.1
*/
lightbox() {
var self = this,
touch_general = self.get_config('mobile_touchwipe_close')
? {vertical: true, momentum: true}
: {vertical: false, momentum: false},
thumbs_hide_on_open = self.get_config('thumbnails_hide')
? self.get_config('thumbnails_hide')
: true,
thumbs_rowHeight = self.is_mobile()
? this.get_config('mobile_thumbnails_height')
: this.get_config('thumbnails_height'),
thumbs = self.get_config('thumbnails')
? {
autoStart: thumbs_hide_on_open,
hideOnClose: true,
position: self.get_lightbox_config('thumbs_position'),
rowHeight:
'side' === self.get_lightbox_config('thumbs_position') ? false : thumbs_rowHeight
}
: false,
slideshow = self.get_config('slideshow')
? {
autoStart: self.get_config('autoplay'),
speed: self.get_config('ss_speed')
}
: false,
fullscreen =
self.get_config('fullscreen') && self.get_config('open_fullscreen')
? {autoStart: true}
: true,
animationEffect =
self.get_config('lightbox_open_close_effect') === 'zomm-in-out'
? 'zoom-in-out'
: self.get_config('lightbox_open_close_effect'),
transitionEffect =
self.get_config('effect') === 'zomm-in-out' ? 'zoom' : self.get_config('effect'),
lightbox_images = [],
overlay_divs = '',
no_cap_title_show_lightbox_themes = [
'classical_dark',
'classical_light',
'infinity_dark',
'infinity_light'
];
self.lightbox_options = {
selector: '[data-envirabox="' + self.id + '"]',
loop: self.get_config('loop'), // Enable infinite gallery navigation
margin: self.get_lightbox_config('margins'), // Space around image, ignored if zoomed-in or viewport width is smaller than 800px
gutter: self.get_lightbox_config('gutter'), // Horizontal space between slides
keyboard: self.get_config('keyboard'), // Enable keyboard navigation
arrows: self.get_lightbox_config('arrows'), // Should display navigation arrows at the screen edges
arrow_position: self.get_lightbox_config('arrow_position'),
infobar: self.get_lightbox_config('infobar'), // Should display infobar (counter and arrows at the top)
toolbar: self.get_lightbox_config('toolbar'), // Should display toolbar (buttons at the top)
idleTime: self.get_lightbox_config('idle_time')
? self.get_lightbox_config('idle_time')
: false, // by default there shouldn't be any, otherwise value is in seconds
smallBtn: self.get_lightbox_config('show_smallbtn'),
protect: false, // Disable right-click and use simple image protection for images
image: {preload: false},
animationEffect: animationEffect,
animationDuration: self.get_lightbox_config('animation_duration')
? self.get_lightbox_config('animation_duration')
: 300, // Duration in ms for open/close animation
btnTpl: {
smallBtn: self.get_lightbox_config('small_btn_template')
},
zoomOpacity: 'auto',
transitionEffect: transitionEffect, // Transition effect between slides
transitionDuration: self.get_lightbox_config('transition_duration')
? self.get_lightbox_config('transition_duration')
: 200, // Duration in ms for transition animation
baseTpl: self.get_lightbox_config('base_template'), // Base template for layout
spinnerTpl: '<div class="envirabox-loading"></div>', // Loading indicator template
errorTpl: self.get_lightbox_config('error_template'), // Error message template
fullScreen: self.get_config('fullscreen') ? fullscreen : false,
touch: touch_general, // Set `touch: false` to disable dragging/swiping
hash: false,
insideCap: self.get_lightbox_config('inner_caption'),
capPosition: self.get_lightbox_config('caption_position'),
capTitleShow:
self.get_config('lightbox_title_caption') &&
self.get_config('lightbox_title_caption') !== 'none' &&
self.get_config('lightbox_title_caption') !== '0' &&
false === no_cap_title_show_lightbox_themes.includes(self.get_config('lightbox_theme'))
? self.get_config('lightbox_title_caption')
: false,
media: {
youtube: {
params: {
autoplay: 0
}
}
},
wheel: this.get_config('mousewheel') !== false,
slideShow: slideshow,
thumbs: thumbs,
lightbox_theme: self.get_config('lightbox_theme'),
mobile: {
clickContent: function (current, event) {
return self.get_lightbox_config('click_content')
? self.get_lightbox_config('click_content')
: 'toggleControls';
},
clickSlide: function (current, event) {
return self.get_lightbox_config('click_slide')
? self.get_lightbox_config('click_slide')
: 'close'; // clicked on the slide
},
dblclickContent: false,
dblclickSlide: false
},
// Clicked on the content
clickContent: function (current, event) {
return current.type === 'image' &&
(self.get_config('disable_zoom') === 'undefined' ||
self.get_config('disable_zoom') !== '1') &&
(self.get_config('zoom_hover') !== '1' ||
typeof envira_zoom === 'undefined' ||
typeof envira_zoom.enviraZoomActive === 'undefined')
? 'zoom'
: false;
}, // clicked on the image itself
clickSlide: self.get_lightbox_config('click_slide')
? self.get_lightbox_config('click_slide')
: 'close', // clicked on the slide
clickOutside: self.get_lightbox_config('click_outside')
? self.get_lightbox_config('click_outside')
: 'toggleControls', // clicked on the background (backdrop) element
// Same as previous two, but for double click
dblclickContent: false,
dblclickSlide: false,
dblclickOutside: false,
// Video settings
videoPlayPause: !!self.get_config('videos_playpause'),
videoProgressBar: !!self.get_config('videos_progress'),
videoPlaybackTime: !!self.get_config('videos_current'),
videoVideoLength: !!self.get_config('videos_duration'),
videoVolumeControls: !!self.get_config('videos_volume'),
videoControlBar: !!self.get_config('videos_controls'),
videoFullscreen: !!self.get_config('videos_fullscreen'),
videoDownload: !!self.get_config('videos_download'),
videoPlayIcon: !!self.get_config('videos_play_icon_thumbnails'),
videoAutoPlay: !!self.get_config('videos_autoplay'),
// Callbacks
//==========
onInit: function (instance, current) {
self.initImage = true;
$(document).trigger('envirabox_api_on_init', [self, instance, current]);
},
beforeLoad: function (instance, current) {
$(document).trigger('envirabox_api_before_load', [self, instance, current]);
},
afterLoad: function (instance, current) {
$(document).trigger('envirabox_api_after_load', [self, instance, current]);
},
beforeShow: function (instance, current) {
if (
self.data.lightbox_theme === 'base' &&
overlay_divs === '' &&
$('.envirabox-position-overlay').length > 0
) {
overlay_divs = $('.envirabox-position-overlay');
}
self.initImage = false;
if (self.get_config('loop') === 0 && instance.currIndex === 0) {
// hide the back navigation arrow
$('.envirabox-slide--current a.envirabox-prev').hide();
} else {
$('.envirabox-slide--current a.envirabox-prev').show();
}
if (
self.get_config('loop') === 0 &&
instance.currIndex === Object.keys(instance.group).length - 1
) {
// hide the next navigation arrow
$('.envirabox-slide--current a.envirabox-next').hide();
} else {
$('.envirabox-slide--current a.envirabox-next').show();
}
$(document).trigger('envirabox_api_before_show', [self, instance, current]);
},
afterShow: function (instance, current) {
/* this changes the classes for a visible box */
$('.envirabox-thumbs ul').find('li').removeClass('focused');
$('.envirabox-thumbs ul').find('li.envirabox-thumbs-active').focus().addClass('focused');
if (prepend === undefined || prepend_cap === undefined) {
var prepend = false,
prepend_cap = false;
}
if (prepend !== true) {
$('.envirabox-position-overlay').each(function () {
$(this).prependTo(current.$content);
});
prepend = true;
}
if (self.get_config('loop') === 0 && instance.currIndex === 0) {
// hide the back navigation arrow
$('.envirabox-outer a.envirabox-prev').hide();
} else {
$('.envirabox-outer a.envirabox-prev').show();
}
if (
self.get_config('loop') === 0 &&
instance.currIndex === Object.keys(instance.group).length - 1
) {
// hide the next navigation arrow
$('.envirabox-outer a.envirabox-next').hide();
} else {
$('.envirabox-outer a.envirabox-next').show();
}
/* support older galleries or if someone overrides the keyboard configuration via a filter, etc. */
if (self.get_config('keyboard') !== undefined && self.get_config('keyboard') === 0) {
$(window).keypress(function (event) {
if ([32, 37, 38, 39, 40].indexOf(event.keyCode) > -1) {
event.preventDefault();
}
});
}
/* legacy theme we hide certain elements initially to prevent user seeing them for a second in the upper left until the CSS fully loads */
$('.envirabox-slide--current .envirabox-title').css('visibility', 'visible');
if (
$('.envirabox-slide--current .envirabox-caption').length > 0 &&
$('.envirabox-slide--current .envirabox-caption').html().length > 0
) {
$('.envirabox-slide--current .envirabox-caption').css('visibility', 'visible');
$('.envirabox-slide--current .envirabox-caption-wrap').css('visibility', 'visible');
} else {
$('.envirabox-slide--current .envirabox-caption').css('visibility', 'hidden');
$('.envirabox-slide--current .envirabox-caption-wrap').css('visibility', 'hidden');
}
$('.envirabox-navigation').show();
$('.envirabox-navigation-inside').show();
/* if there's overlay divs to show, show them (applies again only to legacy) */
if (
overlay_divs !== undefined &&
overlay_divs !== '' &&
$('.envirabox-slide--current .envirabox-image-wrap').length > 0
) {
$('.envirabox-image-wrap').prepend(overlay_divs);
} else if (
overlay_divs !== undefined &&
overlay_divs !== '' &&
$('.envirabox-slide--current .envirabox-content').length > 0
) {
$('.envirabox-content').prepend(overlay_divs);
}
$(document).trigger('envirabox_api_after_show', [self, instance, current]);
/* double check caption */
if (
instance.opts.capTitleShow !== undefined &&
(instance.opts.capTitleShow === 'caption' ||
instance.opts.capTitleShow === 'title_caption') &&
current.caption === ''
) {
$('.envirabox-caption-wrap .envirabox-caption').css('visibility', 'hidden');
} else {
$('.envirabox-caption-wrap .envirabox-caption').css('visibility', 'visible');
}
},
beforeClose: function (instance, current) {
$(document).trigger('envirabox_api_before_close', [self, instance, current]);
},
afterClose: function (instance, current) {
$(document).trigger('envirabox_api_after_close', [self, instance, current]);
},
onActivate: function (instance, current) {
$(document).trigger('envirabox_api_on_activate', [self, instance, current]);
},
onDeactivate: function (instance, current) {
$(document).trigger('envirabox_api_on_deactivate', [self, instance, current]);
}
};
// Mobile Overrides
if (self.is_mobile()) {
if (self.get_config('mobile_thumbnails') !== 1) {
self.lightbox_options.thumbs = false;
}
}
// Load from json object if load all images is ture
if (self.get_lightbox_config('load_all')) {
var the_images = self.images;
if (typeof the_images !== 'object') {
// this will cause a JS error
return;
}
$.each(the_images, function (i) {
if (this.video !== undefined && this.video.embed_url !== undefined) {
// if this is a video, then the lightbox needs the embed url and not an image
this.src = this.video.embed_url;
}
lightbox_images.push(this);
});
} else {
var newIndex = 0;
let $images = $('.envira-gallery-' + self.id);
$.each($images, function (i) {
lightbox_images.push(this);
});
}
$('#envira-gallery-wrap-' + self.id + ' .envira-gallery-link').on('click', function (e) {
e.preventDefault();
e.stopImmediatePropagation();
var index = $(this).find('img').data('envira-index'),
src = $(this).find('img').attr('src'),
found = false;
// Override index if sorting is random or pagination is on
if (
(parseInt(self.get_config('pagination')) === 1 && parseInt(index) === 0) ||
self.get_config('sort_order') === '1'
) {
Object.entries(lightbox_images).forEach(entry => {
const [key, value] = entry;
// src might need encodeURI for foreign characters? related: #3487
if (
$(value).prop('data-envira-item-src') === src ||
$(value).find('img').prop('src') === src
) {
index = key;
found = true;
}
});
if (found !== true) {
Object.entries(lightbox_images).forEach(entry => {
const [key, value] = entry;
if (
value === $(this).attr('href') ||
value.src === $(this).find('img').data('envira-item-src')
) {
index = key;
found = true;
}
});
}
}
$.envirabox.open(lightbox_images, self.lightbox_options, index);
});
$(document).trigger('envirabox_lightbox_api', self);
}
/**
* Get a config option based off of a key.
*
* @since 1.7.1
*/
get_config(key) {
return this.data[key];
}
/**
* Helper method to get config by key.
*
* @since 1.7.1
*/
get_lightbox_config(key) {
return this.envirabox_config[key];
}
/**
* Helper method to get image from id
*
* @since 1.7.1
*/
get_image(id) {
return this.images[id];
}
is_mobile() {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(
navigator.userAgent
);
}
/**
* Helper method for logging if ENVIRA_DEBUG is true.
*
* @since 1.7.1
*/
log(log = '') {
if (!(envira_gallery?.debug ?? false)) {
return;
}
console.trace(log);
}
}
export default Envira;