2026-02-05 17:08:59 +03:00

89 lines
2.3 KiB
JavaScript

var FusionPageBuilder = FusionPageBuilder || {};
( function() {
jQuery( document ).ready( function() {
// Featured Images Slider Component View.
FusionPageBuilder.fusion_tb_featured_slider = FusionPageBuilder.ElementView.extend( {
onInit: function() {
if ( this.model.attributes.markup && '' === this.model.attributes.markup.output ) {
this.model.attributes.markup.output = this.getComponentPlaceholder();
}
},
/**
* Modify template attributes.
*
* @since 2.2
* @param {Object} atts - The attributes.
* @return {Object}
*/
filterTemplateAtts: function( atts ) {
var attributes = {};
// Any extras that need passed on.
attributes.cid = this.model.get( 'cid' );
attributes.wrapperAttr = this.buildAttr( atts.values );
attributes.output = '';
if ( 'undefined' !== typeof atts.markup && 'undefined' !== typeof atts.markup.output ) {
attributes.output = atts.markup.output;
}
// Use AJAX content if it exists.
if ( 'undefined' !== typeof atts.query_data && 'undefined' !== typeof atts.query_data.output ) {
attributes.output = atts.query_data.output;
}
if ( '' === attributes.output ) {
attributes.output = this.getComponentPlaceholder();
}
return attributes;
},
/**
* Builds attributes.
*
* @since 2.2
* @param {Object} values - The values object.
* @return {Object}
*/
buildAttr: function( values ) {
var attr = _.fusionVisibilityAtts( values.hide_on_mobile, {
class: 'fusion-featured-slider-tb fusion-featured-slider-tb-' + this.model.get( 'cid' ),
style: ''
} );
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 + ';';
}
if ( '' !== values[ 'class' ] ) {
attr[ 'class' ] += ' ' + values[ 'class' ];
}
if ( '' !== values.id ) {
attr.id = values.id;
}
return attr;
}
} );
} );
}( jQuery ) );