/* global fusionAppConfig, FusionPageBuilderViewManager, imagesLoaded, fusionBuilderText, fusionAllElements, FusionPageBuilderApp */ /* jshint -W098 */ /* eslint no-unused-vars: 0 */ var FusionPageBuilder = FusionPageBuilder || {}; ( function() { jQuery( document ).ready( function() { // Gallery View. FusionPageBuilder.fusion_gallery = FusionPageBuilder.ParentElementView.extend( { /** * Image map of child element images and thumbs. * * @since 2.0 */ imageMap: { images: {} }, onInit: function() { this.fusionIsotope = new FusionPageBuilder.IsotopeManager( { selector: '.fusion-gallery-layout-grid, .fusion-gallery-layout-masonry', layoutMode: 'packery', itemSelector: '.fusion-gallery-column', isOriginLeft: jQuery( 'body.rtl' ).length ? false : true, resizable: true, initLayout: true, view: this, sortBy: 'number', sortAscending: true } ); }, onRender: function() { var galleryElements = this.$el.find( '.fusion-gallery-column' ), self = this; imagesLoaded( galleryElements, function() { self.setPagination(); self.fusionIsotope.reInit(); self.setOutlineControlsPosition(); } ); }, /** * Sets position of outlines and controls for the child elements to match column spacing. * * @since 2.0 * @return {void} */ setOutlineControlsPosition: function() { var cid = this.model.get( 'cid' ), elementType = this.model.get( 'element_type' ), params = jQuery.extend( true, {}, fusionAllElements[ elementType ].defaults, _.fusionCleanParameters( this.model.get( 'params' ) ) ), halfColumnSpacing = ( parseFloat( params.column_spacing ) / 2 ) + 'px', css = ''; this.$el.children( 'style' ).remove(); css += ''; this.$el.prepend( css ); }, /** * Extendable function for when child elements get generated. * * @since 2.0.0 * @param {Object} modules An object of modules that are not a view yet. * @return {void} */ onGenerateChildElements: function( modules ) { var self = this, i = 1; setTimeout( function() { self.fusionIsotope.init(); }, 50 ); this.addImagesToImageMap( modules, false, false ); // Set child counter. Used for grid layout clearfix. _.each( this.model.children, function( child ) { child.set( 'counter', i ); i++; } ); }, /** * Add images to the view's image map. * * @since 2.0 * @param {Object} childrenData - The children for which images need added to the map. * @param bool async - Determines if the AJAX call should be async. * @param bool async - Determines if the view should be re-rendered. * @return void */ addImagesToImageMap: function( childrenData, async, reRender, forceQuery ) { var view = this, queryData = {}; async = ( 'undefined' === typeof async ) ? true : async; reRender = ( 'undefined' === typeof reRender ) ? true : reRender; _.each( childrenData, function( child ) { var params = ( 'undefined' !== typeof child.get ) ? child.get( 'params' ) : child.params, imageIdIsValid = ( 'undefined' !== typeof params.image_id && null !== params.image_id && '' !== params.image_id ); if ( imageIdIsValid && ( 'undefined' === typeof view.imageMap.images[ params.image_id ] || forceQuery ) ) { queryData[ params.image_id ] = params; } } ); // Send this data with ajax or rest. if ( ! _.isEmpty( queryData ) ) { jQuery.ajax( { async: async, url: fusionAppConfig.ajaxurl, type: 'post', dataType: 'json', data: { action: 'get_fusion_gallery', children: queryData, fusion_load_nonce: fusionAppConfig.fusion_load_nonce, gallery: view.model.get( 'params' ) } } ) .done( function( response ) { view.updateImageMap( response, forceQuery ); view.model.set( 'query_data', response ); if ( reRender ) { view.reRender(); } } ); } }, /** * Update the view's image map. * * @since 2.0 * @param {Object} images - The images object to inject. * @return void */ updateImageMap: function( images, forceUpdate ) { var imageMap = this.imageMap; _.each( images.images, function( image, imageId ) { if ( 'undefined' === typeof imageMap.images[ imageId ] || forceUpdate ) { imageMap.images[ imageId ] = image; } } ); // TODO: needed ? this.imageMap = imageMap; }, /** * Runs after view DOM is patched. * * @since 2.0 * @return {void} */ afterPatch: function() { this.appendChildren( '.fusion-gallery-container' ); this.fusionIsotope.reInit(); this.checkVerticalImages(); this.setOutlineControlsPosition(); this.setPagination(); }, /** * Modify template attributes. * * @since 2.0 * @param {Object} atts - The attributes. * @return {Object} */ filterTemplateAtts: function( atts ) { var attributes = {}; // Validate values. this.validateValues( atts.values ); this.values = atts.values; this.extras = atts.extras; if ( this.isParentHasDynamicContent( atts.values ) ) { attributes.usingDynamicParent = true; atts.values.columns = 1; atts.values.columns_medium = 1; atts.values.columns_small = 1; } attributes.values = atts.values; attributes.query_data = atts.query_data; attributes.paginationHTML = this.buildPaginationHTML( atts.values ); // Create attribute objects. attributes.attr = this.buildAttr( atts.values ); attributes.wrapperAttr = this.buildWrapperAttr( atts.values ); // Whether it has a dynamic data stream. attributes.usingDynamic = 'undefined' !== typeof atts.values.multiple_upload && 'Select Images' !== atts.values.multiple_upload; return attributes; }, checkVerticalImages: function() { var container = this.$el.find( '.fusion-gallery-layout-grid, .fusion-gallery-layout-masonry' ); if ( container.hasClass( 'fusion-gallery-layout-masonry' ) && 0 < container.find( '.fusion-grid-column:not(.fusion-grid-sizer)' ).not( '.fusion-element-landscape' ).length ) { container.addClass( 'fusion-masonry-has-vertical' ); } else { container.removeClass( 'fusion-masonry-has-vertical' ); } }, /** * Sets pagination. * * @since 3.8 * @return {void} */ setPagination: function() { var self = this, counter = 0, current = FusionPageBuilderViewManager.getView( this.model.get( 'cid' ) ), cid, childView; if ( ! this.model.children.length ) { return; } this.model.children.each( function( child ) { cid = child.attributes.cid; childView = FusionPageBuilderViewManager.getView( cid ); if ( 0 < self.values.limit && counter >= self.values.limit ) { childView.$el.addClass( 'awb-gallery-item-hidden' ); } else { childView.$el.removeClass( 'awb-gallery-item-hidden' ); } counter++; } ); current.$el.find( '.awb-gallery-wrapper' ).attr( 'data-page', 1 ); current.$el.find( '.awb-gallery-wrapper' ).attr( 'data-limit', self.values.limit ); }, /** * Modifies the values. * * @since 2.0 * @param {Object} values - The values object. * @return {void} */ validateValues: function( values ) { values.column_spacing = ( parseFloat( values.column_spacing ) / 2 ) + 'px'; values.bordersize = _.fusionValidateAttrValue( values.bordersize, 'px' ); values.border_radius = _.fusionValidateAttrValue( values.border_radius, 'px' ); if ( 'round' === values.border_radius ) { values.border_radius = '50%'; } values.limit = '0' == values.limit ? fusionAppConfig.posts_per_page : values.limit; values.columns = '0' == values.columns ? fusionAllElements.fusion_gallery.defaults.columns : values.columns; values.margin_bottom = _.fusionValidateAttrValue( values.margin_bottom, 'px' ); values.margin_left = _.fusionValidateAttrValue( values.margin_left, 'px' ); values.margin_right = _.fusionValidateAttrValue( values.margin_right, 'px' ); values.margin_top = _.fusionValidateAttrValue( values.margin_top, 'px' ); }, /** * Builds attributes. * * @since 2.0 * @param {Object} values - The values object. * @return {Object} */ buildAttr: function( values ) { var totalNumOfColumns = this.model.children.length, attr = { class: 'fusion-gallery fusion-gallery-container fusion-child-element fusion-grid-' + values.columns + ' fusion-columns-total-' + totalNumOfColumns + ' fusion-gallery-layout-' + values.layout + ' fusion-gallery-' + this.model.get( 'cid' ), style: '' }, margin; if ( values.column_spacing ) { margin = ( -1 ) * parseFloat( values.column_spacing ); attr.style = 'margin:' + margin + 'px;'; } if ( '' !== values.order_by ) { attr[ 'data-order' ] = values.order_by; } attr[ 'data-empty' ] = this.emptyPlaceholderText; if ( '' !== values.aspect_ratio ) { attr[ 'class' ] += ' has-aspect-ratio'; } attr.style += this.getAspectRatioVars( values ); attr.style += this.getStyleVariables( values ); return attr; }, /** * Builds wrapper attributes. * * @since 3.8 * @param {Object} values - The values object. * @return {Object} */ buildWrapperAttr: function( values ) { var attr = _.fusionVisibilityAtts( values.hide_on_mobile, { class: 'awb-gallery-wrapper awb-gallery-wrapper-' + this.model.get( 'cid' ), style: '' } ); if ( '' !== values.limit && 0 < values.limit ) { attr[ 'data-limit' ] = values.limit; attr[ 'data-page' ] = 1; } if ( '' !== values.load_more_btn_span ) { attr[ 'class' ] += ' button-span-' + values.load_more_btn_span; } if ( '' !== values.button_alignment ) { attr.style += '--more-btn-alignment:' + values.button_alignment + ';'; } if ( '' !== values.load_more_btn_color ) { attr.style += '--more-btn-color:' + values.load_more_btn_color + ';'; } if ( '' !== values.load_more_btn_bg_color ) { attr.style += '--more-btn-bg:' + values.load_more_btn_bg_color + ';'; } if ( '' !== values.load_more_btn_hover_color ) { attr.style += '--more-btn-hover-color:' + values.load_more_btn_hover_color + ';'; } if ( '' !== values.load_more_btn_hover_bg_color ) { attr.style += '--more-btn-hover-bg:' + values.load_more_btn_hover_bg_color + ';'; } if ( '' !== values.margin_top ) { attr.style += 'margin-top:' + values.margin_top + ';'; } if ( '' !== values.margin_right ) { attr.style += 'margin-right:' + values.margin_right + ';'; } if ( '' !== values.margin_bottom ) { attr.style += 'margin-bottom:' + values.margin_bottom + ';'; } if ( '' !== values.margin_left ) { attr.style += 'margin-left:' + values.margin_left + ';'; } return attr; }, /** * Builds pagination HTML. * * @since 2.0 * @param {Object} values - The values object. * @return {Object} */ buildPaginationHTML: function( values ) { var html = ''; if ( 0 < values.limit && ( this.model.children.length > values.limit || ( null !== values.element_content.match( /fusion_gallery_image/g ) && values.element_content.match( /fusion_gallery_image/g ).length > values.limit ) ) ) { if ( 'button' === values.pagination_type || 'infinite' === values.pagination_type ) { html += '