wbotelhos/stepy

View on GitHub
lib/jquery.stepy.js

Summary

Maintainability
D
2 days
Test Coverage

File jquery.stepy.js has 345 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*!
 * jQuery Stepy - A Wizard Plugin
 *
 * The MIT License
 *
Severity: Minor
Found in lib/jquery.stepy.js - About 4 hrs to fix

    Function step has 40 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        step: function(index) {
          var
            max   = index,
            self  = $(this),
            steps = self.find('.' + this.stepyOptions.stepClass);
    Severity: Minor
    Found in lib/jquery.stepy.js - About 1 hr to fix

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

          init: function(settings) {
            return this.each(function() {
              methods.destroy.call(this);
      
              this.stepyOptions = $.extend({}, $.fn.stepy.defaults, settings);
      Severity: Minor
      Found in lib/jquery.stepy.js - About 1 hr to fix

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

            validate: function(index) {
              var self = $(this);
        
              if (!this.tagName === 'FORM') {
                return true;
        Severity: Minor
        Found in lib/jquery.stepy.js - About 1 hr to fix

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

                if (index === 0) {
                  self.find(this.stepyOptions.backButton).removeClass('stepy-active');
                  self.find(this.stepyOptions.finishButton).removeClass('stepy-active');
                  self.find(this.stepyOptions.nextButton).addClass('stepy-active');
                } else if (index === steps.length - 1) {
          Severity: Major
          Found in lib/jquery.stepy.js and 1 other location - About 2 hrs to fix
          lib/jquery.stepy.js on lines 279..287

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

          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

                } else if (index === steps.length - 1) {
                  self.find(this.stepyOptions.backButton).addClass('stepy-active');
                  self.find(this.stepyOptions.finishButton).addClass('stepy-active');
                  self.find(this.stepyOptions.nextButton).removeClass('stepy-active');
                } else {
          Severity: Major
          Found in lib/jquery.stepy.js and 1 other location - About 2 hrs to fix
          lib/jquery.stepy.js on lines 275..287

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

          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

                } else if (clicked < current) {
                  if (this.stepyOptions.back && !methods._execute.call(this, this.stepyOptions.back, clicked)) {
                    return false;
                  }
                }
          Severity: Minor
          Found in lib/jquery.stepy.js and 1 other location - About 45 mins to fix
          lib/jquery.stepy.js on lines 139..147

          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

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

                if (clicked > current) {
                  if (this.stepyOptions.next && !methods._execute.call(this, this.stepyOptions.next, clicked)) {
                    return false;
                  }
                } else if (clicked < current) {
          Severity: Minor
          Found in lib/jquery.stepy.js and 1 other location - About 45 mins to fix
          lib/jquery.stepy.js on lines 143..147

          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

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

                  if (index >= 0 && (!this.stepyOptions.back || methods._execute.call(this, this.stepyOptions.back, index, this.steps.length))) {
          Severity: Minor
          Found in lib/jquery.stepy.js and 1 other location - About 35 mins to fix
          lib/jquery.stepy.js on lines 166..166

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

          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 (index < this.steps.length && (!this.stepyOptions.next || methods._execute.call(this, this.stepyOptions.next, index, this.steps.length))) {
          Severity: Minor
          Found in lib/jquery.stepy.js and 1 other location - About 35 mins to fix
          lib/jquery.stepy.js on lines 80..80

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

          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