CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-admin/js/post.dev.js

Summary

Maintainability
F
3 days
Test Coverage

File post.dev.js has 485 lines of code (exceeds 250 allowed). Consider refactoring.
Open

var tagBox, commentsBox, editPermalink, makeSlugeditClickable, WPSetThumbnailHTML, WPSetThumbnailID, WPRemoveThumbnail;

// return an array with any duplicate, whitespace or values removed
function array_unique_noempty(a) {
    var out = [];
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js - About 7 hrs to fix

    Function updateText has 73 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            function updateText() {
                var attemptedDate, originalDate, currentDate, publishOn, postStatus = $('#post_status'),
                    optPublish = $('option[value=publish]', postStatus), aa = $('#aa').val(),
                    mm = $('#mm').val(), jj = $('#jj').val(), hh = $('#hh').val(), mn = $('#mn').val();
    
    
    Severity: Major
    Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js - About 2 hrs to fix

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

          init : function() {
              var t = this, ajaxtag = $('div.ajaxtag');
      
              $('.tagsdiv').each( function() {
                  tagBox.quickClicks(this);
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js - About 1 hr to fix

        Function get has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            get : function(total, num) {
                var st = this.st, data;
                if ( ! num )
                    num = 20;
        
        
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js - About 1 hr to fix

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

                      if ( attemptedDate.getFullYear() != aa || (1 + attemptedDate.getMonth()) != mm || attemptedDate.getDate() != jj || attemptedDate.getMinutes() != mn ) {
                          $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
                          return false;
                      } else {
                          $('.timestamp-wrap', '#timestampdiv').removeClass('form-invalid');
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 3 hrs to fix
          Web.Admin/2014/wordpress/wp-admin/js/comment.dev.js on lines 28..33

          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 106.

          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 2 locations. Consider refactoring.
          Open

                  $('#post-status-select').siblings('a.edit-post-status').click(function() {
                      if ($('#post-status-select').is(":hidden")) {
                          $('#post-status-select').slideDown("normal");
                          $(this).hide();
                      }
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 2 hrs to fix
          Web.Admin/2014/wordpress/wp-admin/js/post.dev.js on lines 467..473

          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 79.

          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 2 locations. Consider refactoring.
          Open

                  $('#timestampdiv').siblings('a.edit-timestamp').click(function() {
                      if ($('#timestampdiv').is(":hidden")) {
                          $('#timestampdiv').slideDown("normal");
                          $(this).hide();
                      }
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 2 hrs to fix
          Web.Admin/2014/wordpress/wp-admin/js/post.dev.js on lines 495..501

          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 79.

          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 2 locations. Consider refactoring.
          Open

                      currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 1 hr to fix
          Web.Admin/2014/wordpress/wp-admin/js/post.dev.js on lines 348..348

          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 74.

          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 2 locations. Consider refactoring.
          Open

                      originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() );
          Severity: Major
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 1 hr to fix
          Web.Admin/2014/wordpress/wp-admin/js/post.dev.js on lines 349..349

          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 74.

          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 2 locations. Consider refactoring.
          Open

                  $('#categorychecklist').children('li.popular-category').add( $('#categorychecklist-pop').children() ).find(':checkbox').live( 'click', function(){
                      var t = $(this), c = t.is(':checked'), id = t.val();
                      $('#in-category-' + id + ', #in-popular-category-' + id).attr( 'checked', c );
                  });
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-admin/js/post.dev.js and 1 other location - About 30 mins to fix
          Web.Admin/2014/wordpress/wp-admin/js/inline-edit-post.dev.js on lines 33..37

          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 45.

          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