hugoruscitti/pilas

View on GitHub
data/asistente/js/angular-animate.js

Summary

Maintainability
F
4 days
Test Coverage

File angular-animate.js has 765 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/**
 * @license AngularJS v1.2.10-build.2178+sha.40dc806
 * (c) 2010-2014 Google, Inc. http://angularjs.org
 * License: MIT
 */
Severity: Major
Found in data/asistente/js/angular-animate.js - About 1 day to fix

    Function performAnimation has 178 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          function performAnimation(animationEvent, className, element, parentElement, afterElement, domOperation, doneCallback) {
            var currentClassName, classes, node = extractElementNode(element);
            if(node) {
              currentClassName = node.className;
              classes = currentClassName + ' ' + className;
    Severity: Major
    Found in data/asistente/js/angular-animate.js - About 7 hrs to fix

      Function animateRun has 66 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            function animateRun(element, className, activeAnimationComplete) {
              var elementData = element.data(NG_ANIMATE_CSS_DATA_KEY);
              var node = extractElementNode(element);
              if(node.className.indexOf(className) == -1 || !elementData) {
                activeAnimationComplete();
      Severity: Major
      Found in data/asistente/js/angular-animate.js - About 2 hrs to fix

        Function getElementAnimationDetails has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

              function getElementAnimationDetails(element, cacheKey) {
                var data = cacheKey ? lookupCache[cacheKey] : null;
                if(!data) {
                  var transitionDuration = 0;
                  var transitionDelay = 0;
        Severity: Minor
        Found in data/asistente/js/angular-animate.js - About 1 hr to fix

          Function animateSetup has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                function animateSetup(element, className, calculationDecorator) {
                  var cacheKey = getCacheKey(element);
                  var eventCacheKey = cacheKey + ' ' + className;
                  var stagger = {};
                  var itemIndex = lookupCache[eventCacheKey] ? ++lookupCache[eventCacheKey].total : 0;
          Severity: Minor
          Found in data/asistente/js/angular-animate.js - About 1 hr to fix

            Function afterReflow has 33 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                  function afterReflow(element, callback) {
                    if(cancelAnimationReflow) {
                      cancelAnimationReflow();
                    }
            
            
            Severity: Minor
            Found in data/asistente/js/angular-animate.js - About 1 hr to fix

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

                      function invokeRegisteredAnimationFns(animations, phase, allAnimationFnsComplete) {
                        phase == 'after' ?
                          fireAfterCallbackAsync() :
                          fireBeforeCallbackAsync();
              
              
              Severity: Minor
              Found in data/asistente/js/angular-animate.js - About 1 hr to fix

                Function performAnimation has 7 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                      function performAnimation(animationEvent, className, element, parentElement, afterElement, domOperation, doneCallback) {
                Severity: Major
                Found in data/asistente/js/angular-animate.js - About 50 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return true;
                  Severity: Major
                  Found in data/asistente/js/angular-animate.js - About 30 mins to fix

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

                            if(node.style[prop] && node.style[prop].length > 0) {
                              node.style[prop] = '';
                            }
                    Severity: Minor
                    Found in data/asistente/js/angular-animate.js and 1 other location - About 45 mins to fix
                    data/asistente/js/angular-animate.js on lines 1201..1203

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

                    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(node.style[prop] && node.style[prop].length > 0) {
                              node.style[prop] = '';
                            }
                    Severity: Minor
                    Found in data/asistente/js/angular-animate.js and 1 other location - About 45 mins to fix
                    data/asistente/js/angular-animate.js on lines 1209..1211

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

                    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

                            removeClass : function(element, className, doneCallback) {
                              performAnimation('removeClass', className, element, null, null, function() {
                                $delegate.removeClass(element, className);
                              }, doneCallback);
                            },
                    Severity: Minor
                    Found in data/asistente/js/angular-animate.js and 1 other location - About 30 mins to fix
                    data/asistente/js/angular-animate.js on lines 521..525

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

                    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

                            addClass : function(element, className, doneCallback) {
                              performAnimation('addClass', className, element, null, null, function() {
                                $delegate.addClass(element, className);
                              }, doneCallback);
                            },
                    Severity: Minor
                    Found in data/asistente/js/angular-animate.js and 1 other location - About 30 mins to fix
                    data/asistente/js/angular-animate.js on lines 557..561

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

                    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