codeformunich/Muenchen-Transparent

View on GitHub
docs/solr-core/conf/velocity/jquery.autocomplete.js

Summary

Maintainability
F
4 days
Test Coverage

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

/*
 * Autocomplete - jQuery plugin 1.1pre
 *
 * Copyright (c) 2007 Dylan Verheul, Dan G. Switzer, Anjesh Tuladhar, Jörn Zaefferer
 *
Severity: Major
Found in docs/solr-core/conf/velocity/jquery.autocomplete.js - About 1 day to fix

    Function Autocompleter has 272 lines of code (exceeds 30 allowed). Consider refactoring.
    Open

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

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

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

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

        $.Autocompleter.Cache = function(options) {
        
            var data = {};
            var length = 0;
            
        Severity: Major
        Found in docs/solr-core/conf/velocity/jquery.autocomplete.js - About 3 hrs to fix

          Function load has 34 lines of code (exceeds 30 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 docs/solr-core/conf/velocity/jquery.autocomplete.js - About 1 hr to fix

            Function request has 32 lines of code (exceeds 30 allowed). Consider refactoring.
            Open

                function request(term, success, failure) {
                    if (!options.matchCase)
                        term = term.toLowerCase();
                    var data = cache.load(term);
                    data = null; // Avoid buggy cache and go to Solr every time 
            Severity: Minor
            Found in docs/solr-core/conf/velocity/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 docs/solr-core/conf/velocity/jquery.autocomplete.js - About 45 mins to fix

                Avoid too many return statements within this function.
                Open

                            return null;
                Severity: Major
                Found in docs/solr-core/conf/velocity/jquery.autocomplete.js - About 30 mins to fix

                  TODO found
                  Open

                          // TODO why not just specifying both arguments?

                  TODO found
                  Open

                              // TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus

                  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 docs/solr-core/conf/velocity/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 97..104
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 115..122

                  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 docs/solr-core/conf/velocity/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 97..104
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 106..113

                  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 docs/solr-core/conf/velocity/jquery.autocomplete.js and 2 other locations - About 1 hr to fix
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 106..113
                  docs/solr-core/conf/velocity/jquery.autocomplete.js on lines 115..122

                  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