gopheracademy/gcon

View on GitHub
assets/admin/global/plugins/highstock/js/modules/drilldown.src.js

Summary

Maintainability
F
1 mo
Test Coverage

File drilldown.src.js has 544 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * Highcharts Drilldown plugin
 * 
 * Author: Torstein Honsi
 * License: MIT License
Severity: Major
Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 day to fix

    Function drillUp has 69 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        Chart.prototype.drillUp = function () {
            var chart = this,
                drilldownLevels = chart.drilldownLevels,
                levelNumber = drilldownLevels[drilldownLevels.length - 1].levelNumber,
                i = drilldownLevels.length,
    Severity: Major
    Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 2 hrs to fix

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

          Chart.prototype.addSingleSeriesAsDrilldown = function (point, ddOptions) {
              var oldSeries = point.series,
                  xAxis = oldSeries.xAxis,
                  yAxis = oldSeries.yAxis,
                  newSeries,
      Severity: Major
      Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 2 hrs to fix

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

            ColumnSeries.prototype.animateDrillupTo = function (init) {
                if (!init) {
                    var newSeries = this,
                        level = newSeries.drilldownLevel;
        
        Severity: Minor
        Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 hr to fix

          Function showDrillUpButton has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              Chart.prototype.showDrillUpButton = function () {
                  var chart = this,
                      backText = this.getDrilldownBackText(),
                      buttonOptions = chart.options.drilldown.drillUpButton,
                      attr,
          Severity: Minor
          Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 hr to fix

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

                ColumnSeries.prototype.animateDrillupFrom = function (level) {
                    var animationOptions = this.chart.options.drilldown.animation,
                        group = this.group,
                        series = this;
            
            Severity: Minor
            Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 hr to fix

              Function animateDrilldown has 28 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  ColumnSeries.prototype.animateDrilldown = function (init) {
                      var series = this,
                          drilldownLevels = this.chart.drilldownLevels,
                          animateFrom,
                          animationOptions = this.chart.options.drilldown.animation,
              Severity: Minor
              Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 hr to fix

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

                    H.Point.prototype.doDrilldown = function (_holdRedraw, category) {
                        var series = this.series,
                            chart = series.chart,
                            drilldown = chart.options.drilldown,
                            i = (drilldown.series || []).length,
                Severity: Minor
                Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 1 hr to fix

                  Avoid deeply nested control flow statements.
                  Open

                                          if (chartSeries[seriesI].options.id === level.lowerSeriesOptions.id && 
                                                  chartSeries[seriesI].options._levelNumber === levelNumber + 1) { // #3867
                                              oldSeries = chartSeries[seriesI];
                                              break;
                                          }
                  Severity: Major
                  Found in assets/admin/global/plugins/highstock/js/modules/drilldown.src.js - About 45 mins to fix

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

                    (function (H) {
                    
                        "use strict";
                    
                        var noop = function () {},
                    assets/admin/global/plugins/highcharts/js/modules/drilldown.src.js on lines 11..713
                    assets/admin/global/plugins/highmaps/js/modules/drilldown.src.js on lines 11..713

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

                    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