LivePersonInc/chronosjs

View on GitHub
src/courier/PostMessageChannel.js

Summary

Maintainability
F
4 days
Test Coverage

Function prototype has 434 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    PostMessageChannel.prototype = (function () {
        /**
         * Method for initialization
         * @param {Object} options the configuration options for the instance
         * @param {Object} options.target - the target iframe or iframe configuration
Severity: Major
Found in src/courier/PostMessageChannel.js - About 2 days to fix

    File PostMessageChannel.js has 468 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    ;(function (root, chronosRoot, factory) {
        "use strict";
    
        /* istanbul ignore if  */
        //<amd>
    Severity: Minor
    Found in src/courier/PostMessageChannel.js - About 7 hrs to fix

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

              function _createIFrame(options, container) {
                  var frame = document.createElement("IFRAME");
                  var name = PostMessageUtilities.createUniqueSequence(IFRAME_PREFIX + PostMessageUtilities.SEQUENCE_FORMAT);
                  var delay = options.delayLoad;
                  var defaultAttributes = {
      Severity: Minor
      Found in src/courier/PostMessageChannel.js - About 1 hr to fix

        Function _getHandleMessage has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                function _getHandleMessage(handler) {
                    return function(event) {
                        var handshake;
                        var previous;
        
        
        Severity: Minor
        Found in src/courier/PostMessageChannel.js - About 1 hr to fix

          Function _handshake has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  function _handshake(retry) {
                      // Remove load handler if needed
                      _removeTimer.call(this, true);
          
                      if (!this.disposed && !this.ready) {
          Severity: Minor
          Found in src/courier/PostMessageChannel.js - About 1 hr to fix

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

                    function _kickStartHandshake(handler, handleMessage) {
                        var initiated;
                        try {
                            initiated = _handshake.call(this);
                        }
            Severity: Minor
            Found in src/courier/PostMessageChannel.js - About 1 hr to fix

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

                      function initialize(options, onmessage) {
                          var handleMessage;
                          var handler;
              
                          if (!this.initialized) {
              Severity: Minor
              Found in src/courier/PostMessageChannel.js - About 1 hr to fix

                Function dispose has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        function dispose() {
                            if (!this.disposed) {
                                if (this.removeListener) {
                                    this.removeListener.call(this);
                                    this.removeListener = void 0;
                Severity: Minor
                Found in src/courier/PostMessageChannel.js - About 1 hr to fix

                  Function _onReady has 26 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          function _onReady() {
                              if (!this.disposed && !this.ready) {
                                  this.ready = true;
                  
                                  // Handshake was successful, Channel is ready for messages
                  Severity: Minor
                  Found in src/courier/PostMessageChannel.js - About 1 hr to fix

                    Consider simplifying this complex logical expression.
                    Open

                                        if (_isHandshake.call(this, message) && !this.disposed && !this.hosted && !this.ready) {
                                            _onReady.call(this);
                                        }
                                        else {
                                            try {
                    Severity: Major
                    Found in src/courier/PostMessageChannel.js - About 40 mins to fix

                      Consider simplifying this complex logical expression.
                      Open

                                  if (!options.target || (options.target !== root || options.target === root.top) && "undefined" !== typeof Window && options.target instanceof Window) {
                                      this.hosted = true;
                                      this.target = options.target || root.top;
                                  }
                                  else if (options.target.contentWindow) { // We've got a reference to an "external" iframe
                      Severity: Major
                      Found in src/courier/PostMessageChannel.js - About 40 mins to fix

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

                            function PostMessageChannel(options, onmessage) {
                                /* istanbul ignore if  */
                                // For forcing new keyword
                                if (false === (this instanceof PostMessageChannel)) {
                                    return new PostMessageChannel(options, onmessage);
                        Severity: Minor
                        Found in src/courier/PostMessageChannel.js and 1 other location - About 45 mins to fix
                        src/courier/PostMessageChannelPolyfill.js on lines 37..45

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

                        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