intale/ruby-blog

View on GitHub
app/assets/javascripts/jquery.autocomplete.js

Summary

Maintainability
F
5 days
Test Coverage

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

/*
 * jQuery Autocomplete plugin 1.1
 *
 * Copyright (c) 2009 Jörn Zaefferer
 *
Severity: Major
Found in app/assets/javascripts/jquery.autocomplete.js - About 1 day to fix

    Function Autocompleter has 289 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    $.Autocompleter = function(input, options) {
    
        var KEY = {
            UP: 38,
            DOWN: 40,
    Severity: Major
    Found in app/assets/javascripts/jquery.autocomplete.js - About 1 day to fix

      Function Select has 169 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      $.Autocompleter.Select = function (options, input, select, config) {
          var CLASSES = {
              ACTIVE: "ac_over"
          };
          
      Severity: Major
      Found in app/assets/javascripts/jquery.autocomplete.js - About 6 hrs to fix

        Function Cache has 97 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        $.Autocompleter.Cache = function(options) {
        
            var data = {};
            var length = 0;
            
        Severity: Major
        Found in app/assets/javascripts/jquery.autocomplete.js - About 3 hrs to fix

          Function selection has 41 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          $.fn.selection = function(start, end) {
              if (start !== undefined) {
                  return this.each(function() {
                      if( this.createTextRange ){
                          var selRange = this.createTextRange();
          Severity: Minor
          Found in app/assets/javascripts/jquery.autocomplete.js - About 1 hr to fix

            Function load has 34 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    load: function(q) {
                        if (!options.cacheLength || !length)
                            return null;
                        /* 
                         * if dealing w/local data and matchContains than we must make sure
            Severity: Minor
            Found in app/assets/javascripts/jquery.autocomplete.js - About 1 hr to fix

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

                  function request(term, success, failure) {
                      if (!options.matchCase)
                          term = term.toLowerCase();
                      var data = cache.load(term);
                      // recieve the cached data
              Severity: Minor
              Found in app/assets/javascripts/jquery.autocomplete.js - About 1 hr to fix

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

                    function selectCurrent() {
                        var selected = select.selected();
                        if( !selected )
                            return false;
                        
                Severity: Minor
                Found in app/assets/javascripts/jquery.autocomplete.js - About 1 hr to fix

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

                      function populate(){
                          if( !options.data ) return false;
                          // track the matches
                          var stMatchSets = {},
                              nullData = 0;
                  Severity: Minor
                  Found in app/assets/javascripts/jquery.autocomplete.js - About 1 hr to fix

                    Avoid deeply nested control flow statements.
                    Open

                                                if (matchSubset(x.value, q)) {
                                                    csub[csub.length] = x;
                                                }
                    Severity: Major
                    Found in app/assets/javascripts/jquery.autocomplete.js - About 45 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                  return null;
                      Severity: Major
                      Found in app/assets/javascripts/jquery.autocomplete.js - About 30 mins to fix

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

                                    case KEY.DOWN:
                                        event.preventDefault();
                                        if ( select.visible() ) {
                                            select.next();
                                        } else {
                        Severity: Major
                        Found in app/assets/javascripts/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                        app/assets/javascripts/jquery.autocomplete.js on lines 99..106
                        app/assets/javascripts/jquery.autocomplete.js on lines 117..124

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

                                    case KEY.PAGEUP:
                                        event.preventDefault();
                                        if ( select.visible() ) {
                                            select.pageUp();
                                        } else {
                        Severity: Major
                        Found in app/assets/javascripts/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                        app/assets/javascripts/jquery.autocomplete.js on lines 99..106
                        app/assets/javascripts/jquery.autocomplete.js on lines 108..115

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

                                    case KEY.UP:
                                        event.preventDefault();
                                        if ( select.visible() ) {
                                            select.prev();
                                        } else {
                        Severity: Major
                        Found in app/assets/javascripts/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                        app/assets/javascripts/jquery.autocomplete.js on lines 108..115
                        app/assets/javascripts/jquery.autocomplete.js on lines 117..124

                        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

                        There are no issues that match your filters.

                        Category
                        Status