backlogs/redmine_backlogs

View on GitHub
assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js

Summary

Maintainability
F
1 wk
Test Coverage

Function createTicks has 293 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    $.jqplot.DateAxisRenderer.prototype.createTicks = function(plot) {
        // we're are operating on an axis here
        var ticks = this._ticks;
        var userTicks = this.ticks;
        var name = this.name;

    File jqplot.dateAxisRenderer.js has 467 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /**
     * jqPlot
     * Pure JavaScript plotting plugin using jQuery
     *
     * Version: 1.0.0

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

          $.jqplot.DateAxisRenderer.prototype.init = function(options){
              // prop: tickRenderer
              // A class of a rendering engine for creating the ticks labels displayed on the plot, 
              // See <$.jqplot.AxisTickRenderer>.
              // this.tickRenderer = $.jqplot.AxisTickRenderer;

        Avoid deeply nested control flow statements.
        Open

                        if (!this.showTicks) {
                            t.showLabel = false;
                            t.showMark = false;
                        }
                        else if (!this.showTickMarks) {

          Avoid deeply nested control flow statements.
          Open

                                  if (this.name === 'xaxis' || this.name === 'x2axis') {
                                      bd[j][0] = new $.jsDate(bd[j][0]).getTime();
                                      if ((bd[j][0] != null && bd[j][0] < db.min) || db.min == null) {
                                          db.min = bd[j][0];
                                      }                       

            Avoid deeply nested control flow statements.
            Open

                                    if (stats.frequencies.hasOwnProperty(intv)) {
                                        stats.frequencies[intv] += 1;
                                    }
                                    else {
                                        stats.frequencies[intv] = 1;

              Avoid deeply nested control flow statements.
              Open

                          else if (this.tickInterval) {
                              titarget = this.tickInterval;
                          }
              
                          // if numberTicks specified, try to honor it.

                Avoid deeply nested control flow statements.
                Open

                                if (Number(this.tickInterval)) {
                                    this.daTickInterval = [Number(this.tickInterval), 'seconds'];
                                }
                                // else, parse out something we can build from.
                                else if (typeof this.tickInterval == "string") {

                  Avoid deeply nested control flow statements.
                  Open

                                          if (this.name === 'xaxis' || this.name === 'x2axis') {
                                              bd[j][0] = new $.jsDate(bd[j][0]).getTime();
                                              if ((bd[j][0] != null && bd[j][0] > db.max) || db.max == null) {
                                                  db.max = bd[j][0];
                                              }                        

                    Avoid deeply nested control flow statements.
                    Open

                                    if (this.tickRenderer === $.jqplot.CanvasAxisTickRenderer && this.tickOptions.angle) {
                                        spacingFactor = 115 - 40 * Math.abs(Math.sin(this.tickOptions.angle/180*Math.PI));
                                    }

                      Avoid deeply nested control flow statements.
                      Open

                                              if (stats.frequencies.hasOwnProperty(intv)) {
                                                  stats.frequencies[intv] += 1;
                                              }
                                              else {
                                                  stats.frequencies[intv] = 1;

                        Avoid deeply nested control flow statements.
                        Open

                                        if (this.daTickInterval != null) {
                                            var nc = new $.jsDate(this.max).diff(this.min, this.daTickInterval[1], true);
                                            this.numberTicks = Math.ceil(nc/this.daTickInterval[0]) +1;
                                            // this.max = new $.jsDate(this.min).add(this.numberTicks-1, this.daTickInterval[1]).getTime();
                                            this.max = new $.jsDate(this.min).add((this.numberTicks-1) * this.daTickInterval[0], this.daTickInterval[1]).getTime();

                          Avoid deeply nested control flow statements.
                          Open

                                      else if (titarget <= 9 * month) {
                          
                                          this._autoFormatString = '%v';
                          
                                          // how many months in an interval?

                            Avoid deeply nested control flow statements.
                            Open

                                            if (this.max < max) {
                                                this.max += tempti;
                                                nttarget += 1;
                                            }

                              Avoid deeply nested control flow statements.
                              Open

                                              for (var i=0; i<nttarget; i++) {
                                                  opts.value = this.min + i * tempti;
                                                  t = new this.tickRenderer(opts);
                                                  
                                                  if (this._overrideFormatString && this._autoFormatString != '') {

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

                                                if (s.renderer.bands.hiData.length) {
                                                    var bd = s.renderer.bands.hiData;
                                                    for (var j=0, l=bd.length; j < l; j++) {
                                                        if (this.name === 'xaxis' || this.name === 'x2axis') {
                                                            bd[j][0] = new $.jsDate(bd[j][0]).getTime();
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 270..286

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

                                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

                                                if (s.renderer.bands.lowData.length) {
                                                    var bd = s.renderer.bands.lowData;
                                                    for (var j=0, l=bd.length; j < l; j++) {
                                                        if (this.name === 'xaxis' || this.name === 'x2axis') {
                                                            bd[j][0] = new $.jsDate(bd[j][0]).getTime();
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 253..269

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

                                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

                                                for (var i=0; i<nttarget; i++) {
                                                    if (i === 0) {
                                                        opts.value = mstart.getTime();
                                                    }
                                                    else {
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 552..572

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

                                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

                                                for (var i=0; i<nttarget; i++) {
                                                    if (i === 0) {
                                                        opts.value = mstart.getTime();
                                                    }
                                                    else {
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 600..620

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

                                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

                                                for (var i=0; i<nttarget; i++) {
                                                    opts.value = this.min + i * tempti;
                                                    t = new this.tickRenderer(opts);
                                                    
                                                    if (this._overrideFormatString && this._autoFormatString != '') {
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.logAxisRenderer.js on lines 325..340

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

                                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

                                                    if (j>0) {
                                                        intv = Math.abs(d[j][0] - d[j-1][0]);
                                                        stats.intervals.push(intv);
                                                        if (stats.frequencies.hasOwnProperty(intv)) {
                                                            stats.frequencies[intv] += 1;
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 238..247

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

                                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

                                                    if (j>0) {
                                                        intv = Math.abs(d[j][1] - d[j-1][1]);
                                                        stats.intervals.push(intv);
                                                        if (stats.frequencies.hasOwnProperty(intv)) {
                                                            stats.frequencies[intv] += 1;
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 215..224

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

                                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

                                            rmin = (this.min != null) ? new $.jsDate(this.min).getTime() : min - range/2*(this.padMin - 1);
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 678..678

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

                                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

                                            rmax = (this.max != null) ? new $.jsDate(this.max).getTime() : max + range/2*(this.padMax - 1);
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.dateAxisRenderer.js on lines 677..677

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

                                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

                                Identical blocks of code found in 3 locations. Consider refactoring.
                                Open

                                            if (name == 'xaxis' || name == 'x2axis') {
                                                dim = this._plotDimensions.width;
                                            }
                                            else {
                                                dim = this._plotDimensions.height;
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.categoryAxisRenderer.js on lines 170..175
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.mekkoAxisRenderer.js on lines 271..276

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

                                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

                                                if (this.daTickInterval != null) {
                                                    var nc = new $.jsDate(this.max).diff(this.min, this.daTickInterval[1], true);
                                                    this.numberTicks = Math.ceil(nc/this.daTickInterval[0]) +1;
                                                    // this.max = new $.jsDate(this.min).add(this.numberTicks-1, this.daTickInterval[1]).getTime();
                                                    this.max = new $.jsDate(this.min).add((this.numberTicks-1) * this.daTickInterval[0], this.daTickInterval[1]).getTime();
                                assets/javascripts/jquery/jquery.jqplot/jquery.jqplot.js on lines 6529..6537

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

                                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

                                            if (this.min != null && this.max != null && this.numberTicks != null) {
                                                this.tickInterval = null;
                                            }
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.categoryAxisRenderer.js on lines 178..180

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

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

                                        var dim = (this.name.charAt(0) === 'x') ? this._plotDimensions.width : this._plotDimensions.height;
                                assets/javascripts/jquery/jquery.jqplot/jquery.jqplot.js on lines 6176..6176
                                assets/javascripts/jquery/jquery.jqplot/plugins/jqplot.logAxisRenderer.js on lines 95..95

                                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