amiorin/reloadlive

View on GitHub

Showing 37 of 47 total issues

File client.js has 1458 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict';

var Faye = {
  VERSION:          '0.8.9',

Severity: Major
Found in lib/reloadlive/static/client.js - About 3 days to fix

    Method extract_code has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        def extract_code(data)
          data.gsub!(/^([ \t]*)(~~~+) ?([^\r\n]+)?\r?\n(.+?)\r?\n\1(~~~+)[ \t\r]*$/m) do
            m_indent = $1
            m_start  = $2 # ~~~
            m_lang   = $3
    Severity: Minor
    Found in lib/reloadlive/render.rb - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function str has 68 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function str(key, holder) {
    
    // Produce a string from holder[key].
    
            var i,          // The loop counter.
    Severity: Major
    Found in lib/reloadlive/static/client.js - About 2 hrs to fix

      Function parse has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

        parse: function(url, params) {
          if (typeof url !== 'string') return url;
          var uri = new this(), parts;
      
          var consume = function(name, pattern, infer) {
      Severity: Minor
      Found in lib/reloadlive/static/client.js - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function request has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

        request: function(message, timeout) {
          var retry = this.retry(message, timeout),
              path  = Faye.URI.parse(this.endpoint).pathname,
              self  = this,
              xhr   = Faye.ENV.ActiveXObject
      Severity: Minor
      Found in lib/reloadlive/static/client.js - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function request has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        request: function(message, timeout) {
          var retry = this.retry(message, timeout),
              path  = Faye.URI.parse(this.endpoint).pathname,
              self  = this,
              xhr   = Faye.ENV.ActiveXObject
      Severity: Minor
      Found in lib/reloadlive/static/client.js - About 1 hr to fix

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

          parse: function(url, params) {
            if (typeof url !== 'string') return url;
            var uri = new this(), parts;
        
            var consume = function(name, pattern, infer) {
        Severity: Minor
        Found in lib/reloadlive/static/client.js - About 1 hr to fix

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

            request: function(message, timeout) {
              var xhrClass = Faye.ENV.XDomainRequest ? XDomainRequest : XMLHttpRequest,
                  xhr      = new xhrClass(),
                  retry    = this.retry(message, timeout),
                  self     = this;
          Severity: Minor
          Found in lib/reloadlive/static/client.js - About 1 hr to fix

            Method process_code has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

                def process_code(data, encoding = nil)
                  return data if data.nil? || data.size.zero? || @codemap.size.zero?
            
                  blocks    = []
                  @codemap.each do |id, spec|
            Severity: Minor
            Found in lib/reloadlive/render.rb - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function log has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

              log: function(messageArgs, level) {
                if (!Faye.logger) return;
            
                var levels = Faye.Logging.LOG_LEVELS;
                if (levels[Faye.Logging.logLevel] > levels[level]) return;
            Severity: Minor
            Found in lib/reloadlive/static/client.js - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

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

              connect: function() {
                if (Faye.Transport.WebSocket._unloaded) return;
            
                this._state = this._state || this.UNCONNECTED;
                if (this._state !== this.UNCONNECTED) return;
            Severity: Minor
            Found in lib/reloadlive/static/client.js - About 1 hr to fix

              Consider simplifying this complex logical expression.
              Open

                    if ((element    && element    !== register._element)   ||
                        (eventName  && eventName  !== register._type)      ||
                        (callback   && callback   !== register._callback)  ||
                        (context      && context      !== register._context))
                      continue;
              Severity: Critical
              Found in lib/reloadlive/static/client.js - About 1 hr to fix

                Method process_code has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    def process_code(data, encoding = nil)
                      return data if data.nil? || data.size.zero? || @codemap.size.zero?
                
                      blocks    = []
                      @codemap.each do |id, spec|
                Severity: Minor
                Found in lib/reloadlive/render.rb - About 1 hr to fix

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

                          JSON.parse = function (text, reviver) {
                  
                  // The parse method takes a text and an optional reviver function, and returns
                  // a JavaScript value if the text is a valid JSON text.
                  
                  
                  Severity: Minor
                  Found in lib/reloadlive/static/client.js - About 1 hr to fix

                    Function connect has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                      connect: function() {
                        if (Faye.Transport.WebSocket._unloaded) return;
                    
                        this._state = this._state || this.UNCONNECTED;
                        if (this._state !== this.UNCONNECTED) return;
                    Severity: Minor
                    Found in lib/reloadlive/static/client.js - About 1 hr to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function detach has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                      detach: function(element, eventName, callback, context) {
                        var i = this._registry.length, register;
                        while (i--) {
                          register = this._registry[i];
                    
                    
                    Severity: Minor
                    Found in lib/reloadlive/static/client.js - About 1 hr to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function map has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                      map: function(object, callback, context) {
                        if (object.map) return object.map(callback, context);
                        var result = [];
                    
                        if (object instanceof Array) {
                    Severity: Minor
                    Found in lib/reloadlive/static/client.js - About 1 hr to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function subscribe has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                      subscribe: function(channel, callback, context) {
                        if (channel instanceof Array)
                          return Faye.map(channel, function(c) {
                            return this.subscribe(c, callback, context);
                          }, this);
                    Severity: Minor
                    Found in lib/reloadlive/static/client.js - About 1 hr to fix

                      Function request has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        request: function(messages, timeout) {
                          var params       = {message: Faye.toJSON(messages)},
                              head         = document.getElementsByTagName('head')[0],
                              script       = document.createElement('script'),
                              callbackName = Faye.Transport.JSONP.getCallbackName(),
                      Severity: Minor
                      Found in lib/reloadlive/static/client.js - About 1 hr to fix

                        Method extract_code has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            def extract_code(data)
                              data.gsub!(/^([ \t]*)(~~~+) ?([^\r\n]+)?\r?\n(.+?)\r?\n\1(~~~+)[ \t\r]*$/m) do
                                m_indent = $1
                                m_start  = $2 # ~~~
                                m_lang   = $3
                        Severity: Minor
                        Found in lib/reloadlive/render.rb - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language