✏️ 正在编辑: view-image-select.js
路径:
/home/lssfapb/www/wp-content/plugins/fusion-builder/front-end/views/form/view-image-select.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
/* global FusionApp, fusionBuilderText */ var FusionPageBuilder = FusionPageBuilder || {}; ( function() { jQuery( document ).ready( function() { // Fusion Form Select Image View. FusionPageBuilder.fusion_form_image_select = FusionPageBuilder.ParentElementView.extend( { onInit: function() { this.formData = FusionApp.data.postMeta; this.listenTo( window.FusionEvents, 'fusion-rerender-form-inputs', this.reRender ); }, /** * Modify template attributes. * * @since 3.1 * @param {Object} atts - The attributes object. * @return {Object} */ filterTemplateAtts: function( atts ) { var attributes = {}, elementData = this.elementData( atts.values ); this.elementDataValues = elementData; if ( '' !== atts.values.tooltip ) { elementData.label += this.getFieldTooltip( atts.values ); } attributes.outerWrapper = this.outerWrapper( atts.values ); attributes.labelPosition = 'undefined' !== typeof this.formData._fusion.label_position ? this.formData._fusion.label_position : 'above'; attributes.elementLabel = elementData.label; attributes.styles = this.buildStyles( atts.values ); return attributes; }, getFieldTooltip: function( values ) { var html = ''; if ( '' !== values.tooltip ) { html = '<div class="fusion-form-tooltip">'; html += '<i class="awb-icon-question-circle"></i>'; html += '<span class="fusion-form-tooltip-content">' + values.tooltip + '</span>'; html += '</div>'; } return html; }, outerWrapper: function( values ) { var html, labelPosition = 'above', params = this.model.get( 'params' ); if ( 'undefined' !== typeof this.formData._fusion.label_position ) { labelPosition = this.formData._fusion.label_position; } html = '<div '; // Add custom ID if it's there. if ( 'undefined' !== typeof params.id && '' !== params.id ) { html += 'id="' + params.id + '" '; } // Start building class. html += 'class="fusion-form-field fusion-form-field-' + this.model.get( 'element_type' ).replace( /_/g, '-' ) + this.model.get( 'cid' ) + ' fusion-form-field-' + this.model.get( 'element_type' ) + ' fusion-form-label-' + labelPosition; // Add inline class if needed. if ( 'floated' === values.form_field_layout ) { html += ' option-inline'; } // Add custom class if it's there. if ( 'undefined' !== typeof params[ 'class' ] && '' !== params[ 'class' ] ) { html += ' ' + params[ 'class' ]; } // Close class quotes. html += '"'; html += ' data-form-id="' + FusionApp.data.postDetails.post_id + '">'; return html; }, elementData: function( values ) { var data = {}; data.checked = ''; data.required = ''; data.required_label = ''; data.required_placeholder = ''; data[ 'class' ] = ''; data.id = ''; data.placeholder = ''; data.label = ''; data.label_class = ''; data.holds_private_data = 'no'; data.upload_size = ''; if ( 'undefined' === typeof values ) { return data; } if ( 'fusion_form_checkbox' === this.model.get( 'element_type' ) && 'undefined' !== typeof values.checked && values.checked ) { data.checked = ' checked="checked"'; } if ( 'fusion_form_upload' === this.model.get( 'element_type' ) && 'undefined' !== typeof values.upload_size && values.upload_size ) { data.upload_size = ' data-size="' + values.upload_size + '"'; } if ( 'undefined' !== typeof values.required && 'yes' === values.required ) { data.required = ' required="true" aria-required="true"'; data.required_label = ' <abbr class="fusion-form-element-required" title="' + fusionBuilderText.required + '">*</abbr>'; data.required_placeholder = '*'; } data[ 'class' ] = ' class="fusion-form-input"'; if ( 'undefined' !== typeof values.placeholder && '' !== values.placeholder ) { if ( 'fusion_form_dropdown' === this.model.get( 'element_type' ) ) { data.placeholder = values.placeholder + data.required_placeholder; } else { data.placeholder = ' placeholder="' + values.placeholder + data.required_placeholder + '"'; } } if ( 'fusion_form_checkbox' === this.model.get( 'element_type' ) ) { data.label_class = ' class="fusion-form-checkbox-label"'; } if ( 'undefined' !== typeof values.label && '' !== values.label ) { data.label = '<label for="' + values.name + '"' + data.label_class + '>' + values.label + data.required_label + '</label>'; } data.holds_private_data = ' data-holds-private-data="false"'; if ( 'undefined' !== typeof values.holds_private_data && '' !== values.holds_private_data ) { data.holds_private_data = ' data-holds-private-data="true"'; } return data; }, /** * Builds styles. * * @since 3.1 * @param {Object} values - The values object. * @return {Object} */ buildStyles: function( values ) { var styles = '', paddingStyles = '', base_selector = '.fusion-form-form-wrapper.fusion-form .fusion-form-field.fusion-form-field-fusion-form-image-select' + this.model.get( 'cid' ); if ( '' !== values.width ) { styles += base_selector + ' .fusion-form-image-select label .fusion-form-image-wrapper{width:' + _.fusionGetValueWithUnit( values.width ) + ';}'; } if ( '' !== values.height ) { styles += base_selector + ' .fusion-form-image-select label .fusion-form-image-wrapper{height:' + _.fusionGetValueWithUnit( values.height ) + ';}'; } if ( '' !== values.border_size_top ) { styles += base_selector + ' .fusion-form-image-select label{border-top-width:' + _.fusionGetValueWithUnit( values.border_size_top ) + ';}'; } if ( '' !== values.border_size_right ) { styles += base_selector + ' .fusion-form-image-select label{border-right-width:' + _.fusionGetValueWithUnit( values.border_size_right ) + ';}'; } if ( '' !== values.border_size_bottom ) { styles += base_selector + ' .fusion-form-image-select label{border-bottom-width:' + _.fusionGetValueWithUnit( values.border_size_bottom ) + ';}'; } if ( '' !== values.border_size_left ) { styles += base_selector + ' .fusion-form-image-select label{border-left-width:' + _.fusionGetValueWithUnit( values.border_size_left ) + ';}'; } if ( '' !== values.border_radius ) { styles += base_selector + ' .fusion-form-image-select label{border-radius:' + _.fusionGetValueWithUnit( values.border_radius ) + ';}'; } if ( '' !== values.inactive_color ) { styles += base_selector + ' .fusion-form-image-select label{border-color:' + _.fusionGetValueWithUnit( values.inactive_color ) + ';}'; } if ( '' !== values.active_color ) { styles += base_selector + ' .fusion-form-image-select .fusion-form-input:checked + label{border-color:' + values.active_color + ';}'; styles += base_selector + ' .fusion-form-image-select .fusion-form-input:hover:not(:checked) + label{border-color:' + jQuery.AWB_Color( values.active_color ).alpha( 0.5 ).toRgbaString() + ';}'; } // Padding. jQuery.each( [ 'top', 'right', 'bottom', 'left' ], function( index, padding ) { var paddingName = 'padding_' + padding; if ( '' !== values[ paddingName ] ) { paddingStyles += 'padding-' + padding + ':' + _.fusionGetValueWithUnit( values[ paddingName ] ) + ';'; } } ); if ( '' !== paddingStyles ) { styles += base_selector + ' label{' + paddingStyles + ';}'; } if ( '' !== styles ) { styles = '<style type="text/css">' + styles + '</style>'; } return styles; } } ); } ); }( jQuery ) );
💾 保存文件
← 返回文件管理器