GuilhermeStracini/TCC-SENAC

View on GitHub

Showing 605 of 605 total issues

Function setup has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  setup: function(){
    function parseColor(color){
      if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
      color = color.parseColor();
      return $R(0,2).map(function(i){
Severity: Minor
Found in Src/scripts/effects.js - About 1 hr to fix

    Function getPageSize has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        getPageSize: function() {
                
             var xScroll, yScroll;
            
            if (window.innerHeight && window.scrollMaxY) {    
    Severity: Minor
    Found in Src/scripts/lightbox.js - About 1 hr to fix

      Function loadData has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      Spry.Data.HTTPSourceDataSet.LoadManager.loadData = function(reqInfo, ds, useCache)
      {
          if (!reqInfo)
              return null;
      
      
      Severity: Minor
      Found in Src/scripts/sprydata.js - About 1 hr to fix

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

            try
            {
                var testAttrValue = Spry.Utils.getAttribute(ele, piName);
                if (testAttrValue)
                    jsExpr = Spry.Utils.encodeEntities(testAttrValue);
        Severity: Major
        Found in Src/scripts/sprydata.js and 1 other location - About 1 hr to fix
        Src/scripts/sprydata.js on lines 4318..4324

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

        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

            try
            {
                var contentAttrValue = Spry.Utils.getAttribute(ele, piName);
                if (contentAttrValue)
                    dataRefStr = Spry.Utils.encodeEntities(contentAttrValue);
        Severity: Major
        Found in Src/scripts/sprydata.js and 1 other location - About 1 hr to fix
        Src/scripts/sprydata.js on lines 4258..4264

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

        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

        Function validation has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                validation: function(value, options) {
                    var regExp = null;
                    options.format = options.format || 'ALL';
                    switch (options.format.toUpperCase()) {
                        case 'ALL': regExp = /^[3-6]{1}[0-9]{12,18}$/; break;
        Severity: Minor
        Found in Src/scripts/spryvalidationtextfield.js - About 1 hr to fix

          Function getCharacterFromEvent has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          Spry.Widget.Utils.getCharacterFromEvent = function(e){
              var keyDown = e.type == "keydown";
          
              var code = null;
              var character = null;
          Severity: Minor
          Found in Src/scripts/spryvalidationtextfield.js - About 1 hr to fix

            Function node has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              node: function(elementName) {
                elementName = elementName.toUpperCase();
            
                // try innerHTML approach
                var parentTag = this.NODEMAP[elementName] || 'div';
            Severity: Minor
            Found in Src/scripts/builder.js - About 1 hr to fix

              Function start has 36 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                start: function(options) {
                  if (options && options.transition === false) options.transition = Effect.Transitions.linear;
                  this.options      = Object.extend(Object.extend({ },Effect.DefaultOptions), options || { });
                  this.currentFrame = 0;
                  this.state        = 'idle';
              Severity: Minor
              Found in Src/scripts/effects.js - About 1 hr to fix

                Function ProcessingContext has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                Spry.Data.Region.ProcessingContext = function(region)
                {
                    this.region = region;
                    this.dataSetContexts = [];
                
                
                Severity: Minor
                Found in Src/scripts/sprydata.js - About 1 hr to fix

                  Function getStyle has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                      function(proceed, element, style) {
                        switch (style) {
                          case 'height': case 'width':
                            if (!Element.visible(element)) return null;
                  
                  
                  Severity: Minor
                  Found in Src/scripts/prototype.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 validation has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                          validation: function(value, options) {
                              var regExp = null;
                              options.format = options.format || 'ALL';
                              switch (options.format.toUpperCase()) {
                                  case 'ALL': regExp = /^[3-6]{1}[0-9]{12,18}$/; break;
                  Severity: Minor
                  Found in Src/scripts/spryvalidationtextfield.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 compilePattern has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Widget.ValidationTextField.prototype.compilePattern = function() {
                      if (!this.pattern) {
                          return;
                      }
                      var compiled = [];
                  Severity: Minor
                  Found in Src/scripts/spryvalidationtextfield.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 destroy has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Widget.ValidationTextField.prototype.destroy = function() {
                      if (this.event_handlers)
                          for (var i=0; i<this.event_handlers.length; i++) {
                              Spry.Widget.Utils.removeEventListener(this.event_handlers[i][0], this.event_handlers[i][1], this.event_handlers[i][2], false);
                          }
                  Severity: Minor
                  Found in Src/scripts/spryvalidationtextfield.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 onChange has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Widget.ValidationTextField.prototype.onChange = function(e)
                  {
                      if (Spry.is.opera && this.flags.operaRevertOnKeyUp) {
                          return true;
                      }
                  Severity: Minor
                  Found in Src/scripts/spryvalidationtextfield.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 sort has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Data.DataSet.prototype.sort = function(columnNames, sortOrder)
                  {
                      // columnNames can be either the name of a column to
                      // sort on, or an array of column names, but it can't be
                      // null/undefined.
                  Severity: Minor
                  Found in Src/scripts/sprydata.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 notifyObservers has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Utils.Notifier.prototype.notifyObservers = function(methodName, data)
                  {
                      if (!methodName)
                          return;
                  
                  
                  Severity: Minor
                  Found in Src/scripts/sprydata.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 setState has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Data.Region.prototype.setState = function(stateName, suppressNotfications)
                  {
                      var stateObj = { state: stateName, mappedState: this.getMappedState(stateName) };
                      if (!suppressNotfications)
                          Spry.Data.Region.notifyObservers("onPreStateChange", this, stateObj);
                  Severity: Minor
                  Found in Src/scripts/sprydata.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 processContentPI has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                  Spry.Data.Region.processContentPI = function(inStr)
                  {
                      var outStr = "";
                      var regexp = /<!--\s*<\/?spry:content\s*[^>]*>\s*-->/mg;
                      var searchStartIndex = 0;
                  Severity: Minor
                  Found in Src/scripts/sprydata.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 attach has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                      attach: function(rgn, node, value)
                      {
                          if (!value)
                              return;
                  
                  
                  Severity: Minor
                  Found in Src/scripts/sprydata.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

                  Severity
                  Category
                  Status
                  Source
                  Language