CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/js/media-editor.js

Summary

Maintainability
F
4 days
Test Coverage

File media-editor.js has 568 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/* global getUserSetting, tinymce, QTags, wpActiveEditor */

// WordPress, TinyMCE, and Media
// -----------------------------
(function($, _){
Severity: Major
Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 day to fix

    Function collection has 129 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        wp.media.collection = function(attributes) {
            var collections = {};
    
            return _.extend( attributes, {
                coerce : wp.media.coerce,
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 5 hrs to fix

      Function add has 62 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              add: function( id, options ) {
                  var workflow = this.get( id );
      
                  // only add once: if exists return existing
                  if ( workflow ) {
      Severity: Major
      Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 2 hrs to fix

        Function props has 52 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                props: function( props, attachment ) {
                    var link, linkUrl, size, sizes, fallbacks,
                        defaultProps = wp.media.view.settings.defaultProps;
        
                    // Final fallbacks run after all processing has been completed.
        Severity: Major
        Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 2 hrs to fix

          Function image has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  image: function( props, attachment ) {
                      var img = {},
                          options, classes, shortcode, html;
          
                      props = wp.media.string.props( props, attachment );
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

            Function shortcode has 42 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                        shortcode: function( attachments ) {
                            var props = attachments.props.toJSON(),
                                attrs = _.pick( props, 'orderby', 'order' ),
                                shortcode, clone, self = this;
            
            
            Severity: Minor
            Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

              Function attachments has 39 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                          attachments: function( shortcode ) {
                              var shortcodeString = shortcode.string(),
                                  result = collections[ shortcodeString ],
                                  attrs, args, query, others, self = this;
              
              
              Severity: Minor
              Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

                Function attachment has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                            attachment: function( props, attachment ) {
                                var caption = attachment.caption,
                                    options, html;
                
                                // If captions are disabled, clear the caption.
                Severity: Minor
                Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

                  Function edit has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                              edit: function( content ) {
                                  var shortcode = wp.shortcode.next( this.tag, content ),
                                      defaultPostId = this.defaults.id,
                                      attachments, selection, state;
                  
                  
                  Severity: Minor
                  Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

                    Function _audioVideo has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                            _audioVideo: function( type, props, attachment ) {
                                var shortcode, html, extension;
                    
                                props = wp.media.string.props( props, attachment );
                                if ( props.link !== 'embed' )
                    Severity: Minor
                    Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

                      Function insert has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              insert: function( html ) {
                                  var editor,
                                      hasTinymce = ! _.isUndefined( window.tinymce ),
                                      hasQuicktags = ! _.isUndefined( window.QTags ),
                                      wpActiveEditor = window.wpActiveEditor;
                      Severity: Minor
                      Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js - About 1 hr to fix

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                                    workflow.state('gallery-edit').on( 'update', function( selection ) {
                                        /**
                                         * @this wp.media.editor
                                         */
                                        this.insert( wp.media.gallery.shortcode( selection ).string() );
                        Severity: Major
                        Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js and 2 other locations - About 1 hr to fix
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 772..777
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 779..784

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 63.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                                    workflow.state('playlist-edit').on( 'update', function( selection ) {
                                        /**
                                         * @this wp.media.editor
                                         */
                                        this.insert( wp.media.playlist.shortcode( selection ).string() );
                        Severity: Major
                        Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js and 2 other locations - About 1 hr to fix
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 765..770
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 779..784

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 63.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                                    workflow.state('video-playlist-edit').on( 'update', function( selection ) {
                                        /**
                                         * @this wp.media.editor
                                         */
                                        this.insert( wp.media.playlist.shortcode( selection ).string() );
                        Severity: Major
                        Found in Web.Admin/2014/wordpress/wp-includes/js/media-editor.js and 2 other locations - About 1 hr to fix
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 765..770
                        Web.Admin/2014/wordpress/wp-includes/js/media-editor.js on lines 772..777

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 63.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        There are no issues that match your filters.

                        Category
                        Status