plainblack/Lacuna-Web-Client

View on GitHub
app/js-yui/textboxList.js

Summary

Maintainability
F
3 days
Test Coverage

File textboxList.js has 545 lines of code (exceeds 250 allowed). Consider refactoring.
Open

YAHOO.namespace("lacuna");

//only load this once
if (typeof YAHOO.lacuna.TextboxList == "undefined" || !YAHOO.lacuna.TextboxList) {

Severity: Major
Found in app/js-yui/textboxList.js - About 1 day to fix

    Function TBL has 109 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        var TBL = function(elInput, oDataSource, oConfigs) {
            if(!oConfigs){ oConfigs = {}; }
            oConfigs.useShadow = oConfigs.useShadow || false;
            oConfigs.useIFrame = oConfigs.useIFrame || true;
            oConfigs.animVert = oConfigs.animVert || false;
    Severity: Major
    Found in app/js-yui/textboxList.js - About 4 hrs to fix

      Function _populateList has 81 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              _populateList : function(sQuery, oResponse, oPayload) {
                  // Clear previous timeout
                  if(this._nTypeAheadDelayID != -1) {
                      clearTimeout(this._nTypeAheadDelayID);
                  }
      Severity: Major
      Found in app/js-yui/textboxList.js - About 3 hrs to fix

        Consider simplifying this complex logical expression.
        Open

        if (typeof YAHOO.lacuna.TextboxList == "undefined" || !YAHOO.lacuna.TextboxList) {
        
        // enclose everything in an anonymous function ...
        (function () {
            // ... so that variables that you declare inside are local to the function and invisible outside
        Severity: Critical
        Found in app/js-yui/textboxList.js - About 2 hrs to fix

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

                  _updateDirty : function() {
                      //only update dirty if it's not a select
                      if(!this._singleRequest) {
                          var isDirty;
                          if(this.multiSelect){
          Severity: Minor
          Found in app/js-yui/textboxList.js - About 1 hr to fix

            Avoid deeply nested control flow statements.
            Open

                                    for(var j = allListItemEls.length-1; j >= nItemsToShow; j--) {
                                        extraListItem = allListItemEls[j];
                                        extraListItem.style.display = "none";
                                    }
            Severity: Major
            Found in app/js-yui/textboxList.js - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                      for(var key in cur) {
                                          //if the key actually has a value count it
                                          if(cur[key]) {
                                              curNum++;
                                          }
              Severity: Major
              Found in app/js-yui/textboxList.js - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if(elListItem._oResultData && queue.indexOf(String(elListItem._oResultData.Id)) >= 0) {
                                            this._selectItem(elListItem);
                                        }
                Severity: Major
                Found in app/js-yui/textboxList.js - About 45 mins to fix

                  Avoid deeply nested control flow statements.
                  Open

                                          if(oSelf.beforeDeleteEvent.fire(target)) {
                                              delete oSelf._oTblSelections[target._value];
                                              oSelf._elTblList.removeChild(target);
                                              oSelf._updateDirty();
                                          }
                  Severity: Major
                  Found in app/js-yui/textboxList.js - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                            if(curNum != orig.length) {
                                                isDirty = true;
                                            }
                    Severity: Major
                    Found in app/js-yui/textboxList.js - About 45 mins to fix

                      Avoid deeply nested control flow statements.
                      Open

                                              if(!cur[orig[s]]) {
                                                  isDirty = true;
                                                  break;
                                              }
                      Severity: Major
                      Found in app/js-yui/textboxList.js - About 45 mins to fix

                        Avoid deeply nested control flow statements.
                        Open

                                                if(this.resultTypeList) {
                                                    // Results need to be converted back to an array
                                                    var aResult = [];
                                                    // Match key is first
                                                    aResult[0] = (YAHOO.lang.isString(oResult)) ? oResult : oResult[sMatchKey] || oResult[this.key];
                        Severity: Major
                        Found in app/js-yui/textboxList.js - About 45 mins to fix

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

                                      for(var bitKey in this._oTblSelections) {
                                          var bit = this._oTblSelections[bitKey];
                                          Dom.removeClass(bit, CSS_PREFIX + "Disabled");
                                      }
                          Severity: Minor
                          Found in app/js-yui/textboxList.js and 1 other location - About 40 mins to fix
                          app/js-yui/textboxList.js on lines 495..498

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

                          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

                                      for(var bitKey in this._oTblSelections) {
                                          var bit = this._oTblSelections[bitKey];
                                          Dom.addClass(bit, CSS_PREFIX + "Disabled");
                                      }
                          Severity: Minor
                          Found in app/js-yui/textboxList.js and 1 other location - About 40 mins to fix
                          app/js-yui/textboxList.js on lines 509..512

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

                          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