ryansobol/mango

View on GitHub

Showing 20 of 26 total issues

Function FireworkParticle has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

function FireworkParticle(oC,isRandom,type,baseX,baseY,obeyBoundaries) {
  var self = this;
  this.oC = oC;
  this.oID = 'fp'+(fc.gOID++); // may be unneeded
  this.o = fc.oFP.cloneNode(true);
Severity: Minor
Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 1 day 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

File fireworks.js has 453 lines of code (exceeds 250 allowed). Consider refactoring.
Open

function FireworksController() {
  var self = this;
  this.intervalRate = 20; // rate (ms) to run animation at, general best default = 20
  this.DEBUG = true; // debug mode disabled by default
  this.oFW = null;
Severity: Minor
Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 6 hrs to fix

    Function Firework has 119 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function Firework(oC,startX,startY,burstX,burstY,burstType,nRadius,nParticles,nCircles,allowRandom,obeyBoundaries) {
      var self = this;
      this.oID = 'fp'+(fc.gOID++); // may be unneeded
      var p = '';
      for (var i=0; i<arguments.length-1; i++) {
    Severity: Major
    Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 4 hrs to fix

      Function FireworkParticle has 117 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function FireworkParticle(oC,isRandom,type,baseX,baseY,obeyBoundaries) {
        var self = this;
        this.oC = oC;
        this.oID = 'fp'+(fc.gOID++); // may be unneeded
        this.o = fc.oFP.cloneNode(true);
      Severity: Major
      Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 4 hrs to fix

        Function Firework has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
        Open

        function Firework(oC,startX,startY,burstX,burstY,burstType,nRadius,nParticles,nCircles,allowRandom,obeyBoundaries) {
          var self = this;
          this.oID = 'fp'+(fc.gOID++); // may be unneeded
          var p = '';
          for (var i=0; i<arguments.length-1; i++) {
        Severity: Minor
        Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 3 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 FireworksController has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

        function FireworksController() {
          var self = this;
          this.intervalRate = 20; // rate (ms) to run animation at, general best default = 20
          this.DEBUG = true; // debug mode disabled by default
          this.oFW = null;
        Severity: Minor
        Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 3 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 Animator has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

        function Animator() {
          var self = this;
          writeDebug('Animator()');
          this.tweens = [];
          this.tweens['default'] = [1,2,3,4,5,6,7,8,9,10,9,8,7,6,5,4,3,2,1];
        Severity: Minor
        Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 3 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 createFirework has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
        Open

        function createFirework(nRadius,nParticles,nCircles,nBurstType,startX,startY,burstX,burstY,allowRandom,obeyBoundaries) {
          // check all arguments, supply random defaults if needed
          var tmp = '';
          for (var i in arguments) {
            tmp += i+',';
        Severity: Minor
        Found in lib/mango/templates/themes/default/public/javascripts/fireworks.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 Animator has 68 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function Animator() {
          var self = this;
          writeDebug('Animator()');
          this.tweens = [];
          this.tweens['default'] = [1,2,3,4,5,6,7,8,9,10,9,8,7,6,5,4,3,2,1];
        Severity: Major
        Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 2 hrs to fix

          Function FireworksController has 64 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function FireworksController() {
            var self = this;
            this.intervalRate = 20; // rate (ms) to run animation at, general best default = 20
            this.DEBUG = true; // debug mode disabled by default
            this.oFW = null;
          Severity: Major
          Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 2 hrs to fix

            Function createFirework has 51 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function createFirework(nRadius,nParticles,nCircles,nBurstType,startX,startY,burstX,burstY,allowRandom,obeyBoundaries) {
              // check all arguments, supply random defaults if needed
              var tmp = '';
              for (var i in arguments) {
                tmp += i+',';
            Severity: Major
            Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 2 hrs to fix

              Function Firework has 11 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              function Firework(oC,startX,startY,burstX,burstY,burstType,nRadius,nParticles,nCircles,allowRandom,obeyBoundaries) {
              Severity: Major
              Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 1 hr to fix

                Method initialize has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                    def initialize(options = {})
                      data   = options[:data]   || ""
                      engine = options[:engine] || DEFAULT_ATTRIBUTES["engine"]
                
                      unless TEMPLATE_ENGINES.include?(engine)
                Severity: Minor
                Found in lib/mango/content_page.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 createFirework has 10 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                function createFirework(nRadius,nParticles,nCircles,nBurstType,startX,startY,burstX,burstY,allowRandom,obeyBoundaries) {
                Severity: Major
                Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 1 hr to fix

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

                    this.slideTo = function(x1,y1) {
                      // writeDebug('slideTo (x/y): '+x1+','+y1);
                      if (self.isRandom) {
                        // randomize a bit
                        x1 += (x1*0.2*(Math.random()>0.5?1:-1));
                  Severity: Minor
                  Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 1 hr to fix

                    Function FireworkParticle has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                    function FireworkParticle(oC,isRandom,type,baseX,baseY,obeyBoundaries) {
                    Severity: Minor
                    Found in lib/mango/templates/themes/default/public/javascripts/fireworks.js - About 45 mins to fix

                      Method render_stylesheet_template! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def render_stylesheet_template!(uri_path)
                            stylesheet_match = File.join(settings.stylesheets, "*")
                            stylesheet_path  = File.expand_path(uri_path, settings.stylesheets)
                      
                            return unless File.fnmatch(stylesheet_match, stylesheet_path)
                      Severity: Minor
                      Found in lib/mango/application.rb - About 35 mins 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

                      Method render_javascript_template! has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def render_javascript_template!(uri_path)
                            javascript_match = File.join(settings.javascripts, "*")
                            javascript_path  = File.expand_path(uri_path, settings.javascripts)
                      
                            return unless File.fnmatch(javascript_match, javascript_path)
                      Severity: Minor
                      Found in lib/mango/application.rb - About 35 mins 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

                      Method render_index_file! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def render_index_file!(uri_path)
                            return unless URI.directory?(uri_path)
                      
                            index_match     = File.join(settings.public_dir, "*")
                            index_file_path = File.expand_path(uri_path + "index.html", settings.public_dir)
                      Severity: Minor
                      Found in lib/mango/application.rb - About 25 mins 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

                      Method render_content_page! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def render_content_page!(uri_path)
                            uri_path += "index" if URI.directory?(uri_path)
                      
                            content_match     = File.join(settings.content, "*")
                            content_page_path = File.expand_path(uri_path, settings.content)
                      Severity: Minor
                      Found in lib/mango/application.rb - About 25 mins 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

                      Severity
                      Category
                      Status
                      Source
                      Language