| Current Path : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-reviews/includes/ |
| Current File : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-reviews/includes/frontend.js.php |
var carousel_<?php echo $id; ?> = '';
(function($) {
<?php
$slides_to_scroll = $slides_to_scroll_large = $slides_to_scroll_tablet = $slides_to_scroll_mobile = 1;
if ( isset( $settings->slides_to_scroll ) && ! empty( $settings->slides_to_scroll ) ) {
$slides_to_scroll = absint( $settings->slides_to_scroll );
}
if ( isset( $settings->slides_to_scroll_large ) && ! empty( $settings->slides_to_scroll_large ) ) {
$slides_to_scroll_large = absint( $settings->slides_to_scroll_large );
} else {
$slides_to_scroll_large = $slides_to_scroll;
}
if ( isset( $settings->slides_to_scroll_medium ) && ! empty( $settings->slides_to_scroll_medium ) ) {
$slides_to_scroll_tablet = absint( $settings->slides_to_scroll_medium );
} else {
$slides_to_scroll_tablet = $slides_to_scroll_large;
}
if ( isset( $settings->slides_to_scroll_responsive ) && ! empty( $settings->slides_to_scroll_responsive ) ) {
$slides_to_scroll_mobile = absint( $settings->slides_to_scroll_responsive );
} else {
$slides_to_scroll_mobile = $slides_to_scroll_tablet;
}
$columns = $columns_large = $columns_tablet = $columns_mobile = 1;
if ( 'slide' === $settings->effect ) {
if ( isset( $settings->columns ) && ! empty( $settings->columns ) ) {
$columns = absint( $settings->columns );
}
if ( isset( $settings->columns_large ) && ! empty( $settings->columns_large ) ) {
$columns_large = absint( $settings->columns_large );
} else {
$columns_large = $columns;
}
if ( isset( $settings->columns_medium ) && ! empty( $settings->columns_medium ) ) {
$columns_tablet = absint( $settings->columns_medium );
} else {
$columns_tablet = $columns_large;
}
if ( isset( $settings->columns_responsive ) && ! empty( $settings->columns_responsive ) ) {
$columns_mobile = absint( $settings->columns_responsive );
} else {
$columns_mobile = $columns_tablet;
}
}
?>
var settings = {
id: '<?php echo $id; ?>',
type: '<?php echo $settings->carousel_type; ?>',
initialSlide: 0,
slidesPerView: {
desktop: <?php echo $columns; ?>,
large: <?php echo $columns_large; ?>,
tablet: <?php echo $columns_tablet; ?>,
mobile: <?php echo $columns_mobile; ?>,
},
slidesToScroll: {
desktop: <?php echo $slides_to_scroll; ?>,
large: <?php echo $slides_to_scroll_large; ?>,
tablet: <?php echo $slides_to_scroll_tablet; ?>,
mobile: <?php echo $slides_to_scroll_mobile; ?>,
},
spaceBetween: {
desktop: '<?php echo $settings->spacing; ?>',
large: '<?php echo isset( $settings->spacing_large ) ? $settings->spacing_large : $settings->spacing; ?>',
tablet: '<?php echo $settings->spacing_medium; ?>',
mobile: '<?php echo $settings->spacing_responsive; ?>',
},
isBuilderActive: <?php echo FLBuilderModel::is_builder_active() ? 'true' : 'false'; ?>,
pagination: '<?php echo $settings->pagination_type; ?>',
autoplay_speed: <?php echo 'yes' === $settings->autoplay ? $settings->autoplay_speed : 'false'; ?>,
pause_on_interaction: <?php echo 'yes' === $settings->pause_on_interaction ? 'true' : 'false'; ?>,
loop: <?php echo ! isset( $settings->loop ) || 'yes' === $settings->loop ? 'true' : 'false'; ?>,
effect: '<?php echo $settings->effect; ?>',
speed: <?php echo $settings->transition_speed; ?>,
breakpoint: {
large: <?php echo isset( $global_settings->large_breakpoint ) ? $global_settings->large_breakpoint : 1200; ?>,
medium: <?php echo $global_settings->medium_breakpoint; ?>,
responsive: <?php echo $global_settings->responsive_breakpoint; ?>
},
};
carousel_<?php echo $id; ?> = new PPReviewsCarousel(settings);
function updateCarousel() {
setTimeout(function() {
if ( 'number' !== typeof carousel_<?php echo $id; ?>.swipers.main.length ) {
carousel_<?php echo $id; ?>.swipers.main.update();
} else {
carousel_<?php echo $id; ?>.swipers.main.forEach(function(item) {
if ( 'undefined' !== typeof item ) {
item.update();
}
});
}
}, 10);
}
// Modal Box fix
$(document).on('pp_modal_box_rendered', function(e, selector) {
if ( selector.find('.fl-node-<?php echo $id; ?>').length > 0 ) {
updateCarousel();
}
});
$(document).on('fl-builder.pp-accordion-toggle-complete', function(e) {
if ( $(e.target).find('.fl-node-<?php echo $id; ?>').length > 0 ) {
updateCarousel();
}
});
$(document).on('pp-tabs-switched', function(e, selector) {
if ( selector.find('.fl-node-<?php echo $id; ?>').length > 0 ) {
updateCarousel();
}
});
// Beaver Builder Tabs module.
$('.fl-tabs').find('.fl-tabs-label').on('click', function() {
var index = $(this).data('index');
var panel = $(this).parents('.fl-tabs').find('.fl-tabs-panel-content[data-index="' + index + '"]');
if ( panel.find('.fl-node-<?php echo $id; ?>').length > 0 ) {
updateCarousel();
}
});
// expandable row fix.
var state = 0;
$(document).on('pp_expandable_row_toggle', function(e, selector) {
if ( selector.is('.pp-er-open') && state === 0 && selector.parent().find( '.fl-node-<?php echo $id; ?>' ).length > 0 ) {
updateCarousel();
state = 1;
}
});
})(jQuery);