redmine/redmine

View on GitHub
app/assets/javascripts/jstoolbar/jstoolbar.js

Summary

Maintainability
F
3 days
Test Coverage

File jstoolbar.js has 465 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * This file is part of DotClear.
 * Copyright (c) 2005 Nicolas Martin & Olivier Meunier and contributors. All rights reserved.
 * This code is released under the GNU General Public License.
 *
Severity: Minor
Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 7 hrs to fix

    Function encloseSelection has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

      encloseSelection: function(prefix, suffix, fn) {
        this.textarea.focus();
        prefix = prefix || '';
        suffix = suffix || '';
    
    
    Severity: Minor
    Found in app/assets/javascripts/jstoolbar/jstoolbar.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 jsToolBar has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function jsToolBar(textarea) {
      if (!document.createElement) { return; }
    
      if (!textarea) { return; }
    
    
    Severity: Major
    Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 2 hrs to fix

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

        encloseLineSelection: function(prefix, suffix, fn) {
          this.textarea.focus();
      
          prefix = prefix || '';
          suffix = suffix || '';
      Severity: Minor
      Found in app/assets/javascripts/jstoolbar/jstoolbar.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 encloseSelection has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        encloseSelection: function(prefix, suffix, fn) {
          this.textarea.focus();
          prefix = prefix || '';
          suffix = suffix || '';
      
      
      Severity: Minor
      Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 1 hr to fix

        Function draw has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

          draw: function(mode) {
            this.setMode(mode);
        
            // Empty toolbar
            while (this.toolbar.hasChildNodes()) {
        Severity: Minor
        Found in app/assets/javascripts/jstoolbar/jstoolbar.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 encloseLineSelection has 39 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          encloseLineSelection: function(prefix, suffix, fn) {
            this.textarea.focus();
        
            prefix = prefix || '';
            suffix = suffix || '';
        Severity: Minor
        Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 1 hr to fix

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

          jsToolBar.prototype.tableMenu = function(fn){
            var alphabets = "ABCDEFGHIJ".split('');
            var menu = $("<table class='table-generator'></table>");
          
            for (var r = 1;  r <= 5;  r++) {
          Severity: Minor
          Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 1 hr to fix

            Function jsCombo has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            function jsCombo(title, options, scope, fn, className) {
            Severity: Minor
            Found in app/assets/javascripts/jstoolbar/jstoolbar.js - About 35 mins to fix

              Function draw has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

              jsButton.prototype.draw = function() {
                if (!this.scope) return null;
              
                var button = document.createElement('button');
                button.setAttribute('type','button');
              Severity: Minor
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js - 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

              Function jsToolBar has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              function jsToolBar(textarea) {
                if (!document.createElement) { return; }
              
                if (!textarea) { return; }
              
              
              Severity: Minor
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js - 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

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

                    this.textarea.value = this.textarea.value.substring(0, start) + subst +
                    this.textarea.value.substring(end);
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 405..406

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

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

                    this.textarea.value = this.textarea.value.substring(0, start) + subst +
                    this.textarea.value.substring(end);
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 352..353

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

              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 (typeof(fn) == 'function') {
                    res = (sel) ? fn.call(this,sel) : fn('');
                  } else {
                    res = (sel) ? sel : '';
                  }
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 337..341

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

              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 (typeof(fn) == 'function') {
                    res = (sel) ? fn.call(this,sel) : fn('');
                  } else {
                    res = (sel) ? sel : '';
                  }
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 389..393

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

              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(typeof jsToolBar.strings == 'undefined') {
                    var i18nTitle = title || null;
                  } else {
                    var i18nTitle = jsToolBar.strings[title] || title || null;
                  }
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 91..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 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(typeof jsToolBar.strings == 'undefined') {
                  var tabName = name || null;
                } else {
                  var tabName = jsToolBar.strings[name] || name || null;
                }
              Severity: Major
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 1 hr to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 238..242

              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

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

                  if (sel.match(/ $/)) { // exclude ending space char, if any
                    sel = sel.substring(0, sel.length - 1);
                    suffix = suffix + " ";
                  }
              Severity: Minor
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 50 mins to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 384..387

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

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

                  if (sel.match(/ $/)) { // exclude ending space char, if any
                    sel = sel.substring(0, sel.length - 1);
                    suffix = suffix + " ";
                  }
              Severity: Minor
              Found in app/assets/javascripts/jstoolbar/jstoolbar.js and 1 other location - About 50 mins to fix
              app/assets/javascripts/jstoolbar/jstoolbar.js on lines 332..335

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

              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