✏️ 正在编辑: view-views-counter.js
路径:
/home/lssfapb/www/wp-content/plugins/fusion-builder/front-end/views/elements/view-views-counter.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
var FusionPageBuilder = FusionPageBuilder || {}; ( function() { jQuery( document ).ready( function() { FusionPageBuilder.fusion_views_counter = FusionPageBuilder.ElementView.extend( { /** * Modify template attributes. * * @since 3.5 * @param {Object} atts - The attributes. * @returns {Object} */ filterTemplateAtts: function( atts ) { // Variables we will pass to the template. var templateVariables = {}; templateVariables.cid = this.model.get( 'cid' ); // Attributes for our wrapping element. templateVariables.wrapperAttributes = this.buildWrapperAtts( atts.values ); templateVariables.contentAttributes = this.buildContentAtts( atts.values ); templateVariables.mainContent = this.getViewsText( atts.values, atts.extras ); templateVariables.styleTag = this.getElementStyle( atts.values ); return templateVariables; }, /** * Get the text that is displaying the views. * * @since 3.5 * @param {Object} atts - The values. * @param {Object} extras - The extras variables. * @return {string} */ getViewsText: function( atts, extras ) { var self = this, viewsToDisplay = atts.views_displayed.split( ',' ), text = '', separator = '<span class="awb-views-counter-separator">' + atts.separator + '</span>', isLastItem, totalViews, todayViews, viewsText, label; _.each( viewsToDisplay, function( viewType, index, list ) { isLastItem = ( list.length - 1 === index ? true : false ); if ( isLastItem ) { separator = ''; } if ( 'total_views' === viewType ) { totalViews = extras.total_views; label = _.isEmpty( atts.total_views_label ) ? self.getTranslationText( viewType, atts, extras ) : atts.total_views_label; if ( 'before' === atts.labels ) { viewsText = label + totalViews; } else if ( 'after' === atts.labels ) { viewsText = totalViews + label; } else { viewsText = totalViews; } text += '<span class="awb-views-counter-total-views">' + viewsText + '</span>' + separator; } if ( 'today_views' === viewType ) { todayViews = extras.today_views; label = _.isEmpty( atts.today_views_label ) ? self.getTranslationText( viewType, atts, extras ) : atts.today_views_label; if ( 'before' === atts.labels ) { viewsText = label + todayViews; } else if ( 'after' === atts.labels ) { viewsText = todayViews + label; } else { viewsText = todayViews; } text += '<span class="awb-views-counter-today-views">' + viewsText + '</span>' + separator; } } ); return text; }, /** * Get the correct punctuation for the texts. * * @since 3.5 * @param {Object} values - The values. * @param {string} extras - The extras. * @returns {string} */ getTranslationText: function( viewType, values, extras ) { var translation_text = ''; if ( 'total_views' === viewType ) { if ( 'before' === values.labels ) { translation_text = extras.default_total_views_before_text; } else if ( 'after' === values.labels ) { translation_text = extras.default_total_views_after_text; } } else if ( 'today_views' === viewType ) { if ( 'before' === values.labels ) { translation_text = extras.default_today_views_before_text; } else if ( 'after' === values.labels ) { translation_text = extras.default_today_views_after_text; } } return translation_text; }, /** * Builds attributes. * * @since 3.5 * @param {Object} values - The values. * @returns {Object} */ buildWrapperAtts: function( values ) { var wrapperAttributes = _.fusionVisibilityAtts( values.hide_on_mobile, { class: 'awb-views-counter awb-views-counter-' + this.model.get( 'cid' ), style: '' } ); if ( values[ 'class' ] ) { wrapperAttributes[ 'class' ] += ' ' + values[ 'class' ]; } if ( values.id ) { wrapperAttributes.id = values.id; } wrapperAttributes = _.fusionAnimations( values, wrapperAttributes ); return wrapperAttributes; }, /** * Builds content attributes. * * @since 3.5 * @param {Object} values - The values. * @returns {Object} */ buildContentAtts: function( values ) { var contentAttributes = { 'class': 'awb-views-counter-content' }; if ( 'stacked' === values.layout ) { contentAttributes[ 'class' ] += ' awb-views-counter-content-stacked'; } return contentAttributes; }, /** * Create the element styles. * * @since 3.5 * @param {Object} values - The values. * @returns {string} */ getElementStyle: function( values ) { var style = '', baseClassName = '.awb-views-counter-' + this.model.get( 'cid' ), wrapperSelector = baseClassName + '.awb-views-counter', contentSelector = baseClassName + ' .awb-views-counter-content'; this.dynamic_css = {}; this.values = values; if ( values.color ) { this.addCssProperty( contentSelector, 'color', values.color ); } if ( values.background ) { this.addCssProperty( wrapperSelector, 'background-color', values.background ); } if ( values.alignment_floated && 'floated' === values.layout ) { this.addCssProperty( contentSelector, 'justify-content', values.alignment_floated ); } if ( values.alignment_stacked && 'stacked' === values.layout ) { this.addCssProperty( contentSelector, 'align-items', values.alignment_stacked ); } if ( values.font_size ) { this.addCssProperty( contentSelector, 'font-size', values.font_size ); } if ( values.padding_top ) { this.addCssProperty( wrapperSelector, 'padding-top', values.padding_top ); } if ( values.padding_bottom ) { this.addCssProperty( wrapperSelector, 'padding-bottom', values.padding_bottom ); } if ( values.padding_left ) { this.addCssProperty( wrapperSelector, 'padding-left', values.padding_left ); } if ( values.padding_right ) { this.addCssProperty( wrapperSelector, 'padding-right', values.padding_right ); } if ( values.margin_top ) { this.addCssProperty( wrapperSelector, 'margin-top', values.margin_top ); } if ( values.margin_bottom ) { this.addCssProperty( wrapperSelector, 'margin-bottom', values.margin_bottom ); } if ( values.margin_left ) { this.addCssProperty( wrapperSelector, 'margin-left', values.margin_left ); } if ( values.margin_right ) { this.addCssProperty( wrapperSelector, 'margin-right', values.margin_right ); } if ( values.border_radius_top_left ) { this.addCssProperty( wrapperSelector, 'border-top-left-radius', values.border_radius_top_left ); } if ( values.border_radius_top_right ) { this.addCssProperty( wrapperSelector, 'border-top-right-radius', values.border_radius_top_right ); } if ( values.border_radius_bottom_right ) { this.addCssProperty( wrapperSelector, 'border-bottom-right-radius', values.border_radius_bottom_right ); } if ( values.border_radius_bottom_left ) { this.addCssProperty( wrapperSelector, 'border-bottom-left-radius', values.border_radius_bottom_left ); } if ( 'yes' === values.box_shadow ) { this.addCssProperty( wrapperSelector, 'box-shadow', _.fusionGetBoxShadowStyle( values ).replace( ';', '' ) ); } style = this.parseCSS(); return style ? '<style>' + style + '</style>' : ''; } } ); } ); }( jQuery ) );
💾 保存文件
← 返回文件管理器