insideout10/wordlift-plugin-js

View on GitHub
app/admin_files/heartbeat.js

Summary

Maintainability
F
3 days
Test Coverage

Function Heartbeat has 366 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    var Heartbeat = function() {
        var $document = $(document),
            settings = {
                // Suspend/resume
                suspend: false,
Severity: Major
Found in app/admin_files/heartbeat.js - About 1 day to fix

    File heartbeat.js has 372 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /**
     * Heartbeat API
     *
     * Note: this API is "experimental" meaning it will likely change a lot
     * in the next few releases based on feedback from 3.6.0. If you intend
    Severity: Minor
    Found in app/admin_files/heartbeat.js - About 4 hrs to fix

      Function connect has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              function connect() {
                  var ajaxData, heartbeatData;
      
                  // If the connection to the server is slower than the interval,
                  // heartbeat connects as soon as the previous connection's response is received.
      Severity: Minor
      Found in app/admin_files/heartbeat.js - About 1 hr to fix

        Function initialize has 45 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                function initialize() {
                    if ( typeof window.pagenow === 'string' ) {
                        settings.screenId = window.pagenow;
                    }
        
        
        Severity: Minor
        Found in app/admin_files/heartbeat.js - About 1 hr to fix

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

                  function interval( speed, ticks ) {
                      var newInterval,
                          oldInterval = settings.tempInterval ? settings.tempInterval : settings.mainInterval;
          
                      if ( speed ) {
          Severity: Minor
          Found in app/admin_files/heartbeat.js - About 1 hr to fix

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

                    function setErrorState( error, status ) {
                        var trigger;
            
                        if ( error ) {
                            switch ( error ) {
            Severity: Minor
            Found in app/admin_files/heartbeat.js - About 1 hr to fix

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

                              $( frame.contentWindow ).on( 'focus.wp-heartbeat-focus', function() {
                                  focused();
                              }).on('blur.wp-heartbeat-focus', function() {
                                  setFrameFocusEvents();
                                  // We don't know why 'blur' was fired. Either the user clicked in the main window or outside the browser.
              Severity: Minor
              Found in app/admin_files/heartbeat.js and 1 other location - About 50 mins to fix
              app/admin_files/heartbeat.js on lines 145..150

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

              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

                          $(window).on( 'blur.wp-heartbeat-focus', function() {
                              setFrameFocusEvents();
                              // We don't know why the 'blur' was fired. Either the user clicked in an iframe or outside the browser.
                              // Running blurred() after some timeout lets us cancel it if the user clicked in an iframe.
                              settings.winBlurTimer = window.setTimeout( function(){ blurred(); }, 500 );
              Severity: Minor
              Found in app/admin_files/heartbeat.js and 1 other location - About 50 mins to fix
              app/admin_files/heartbeat.js on lines 448..455

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

              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