sebastian-software/core

View on GitHub

Showing 406 of 406 total issues

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

            reset : function(property)
            {
                if (typeof property == "string")
                {
                    var method = resetters[property];
Severity: Minor
Found in source/class/core/property/MGeneric.js - About 1 hr to fix

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

            load : function(uri, callback, context, nocache)
            {
                if (jasy.Env.isSet("debug"))
                {
                    core.Assert.isType(uri, "String");
    Severity: Minor
    Found in source/class/core/io/Image.js - About 1 hr to fix

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

            if (jasy.Env.isSet("debug"))
            {
              core.Assert.isType(container, "Node");
      
              if (options != null) {
      Severity: Major
      Found in source/class/core/component/Scroller.js and 3 other locations - About 1 hr to fix
      source/class/core/Function.js on lines 230..237
      source/class/core/event/Flow.js on lines 267..274
      source/class/core/event/Flow.js on lines 323..330

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

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

            if (jasy.Env.isSet("debug"))
            {
              core.Assert.isType(tasks, "Array");
      
              if (context != null) {
      Severity: Major
      Found in source/class/core/event/Flow.js and 3 other locations - About 1 hr to fix
      source/class/core/Function.js on lines 230..237
      source/class/core/component/Scroller.js on lines 40..47
      source/class/core/event/Flow.js on lines 323..330

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

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

            if (jasy.Env.isSet("debug"))
            {
              core.Assert.isType(tasks, "Array");
      
              if (context != null) {
      Severity: Major
      Found in source/class/core/event/Flow.js and 3 other locations - About 1 hr to fix
      source/class/core/Function.js on lines 230..237
      source/class/core/component/Scroller.js on lines 40..47
      source/class/core/event/Flow.js on lines 267..274

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

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

            if (jasy.Env.isSet("debug"))
            {
              core.Assert.isType(func, "Function");
      
              if (context != null) {
      Severity: Major
      Found in source/class/core/Function.js and 3 other locations - About 1 hr to fix
      source/class/core/component/Scroller.js on lines 40..47
      source/class/core/event/Flow.js on lines 267..274
      source/class/core/event/Flow.js on lines 323..330

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

      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 navigate has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

            navigate : function(fragment, relation)
            {
              if (relation == "parent")
              {
                var destination = this.clone();
      Severity: Minor
      Found in source/class/core/util/HashPath.js - About 1 hr to fix

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

                    members.reset = function()
                    {
                        var context, data, old, value;
                        context = this;
        
        
        Severity: Minor
        Found in source/class/core/property/Simple.js - About 1 hr to fix

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

            run : function()
            {
              if (this.__isRunning) {
                return;
              }
          Severity: Minor
          Found in source/class/core/testrunner/Controller.js - About 1 hr to fix

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

                testFinished : function(test)
                {
                  console.info("- " + test.getSummary());
            
                  if (!test.wasSuccessful())
            Severity: Minor
            Found in source/class/core/testrunner/reporter/Console.js - About 1 hr to fix

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

                  getModel : function(name)
                  {
                    if (jasy.Env.isSet("debug")) {
                      core.Assert.isType(name, "String", "Invalid model name!");
                    }
              Severity: Major
              Found in source/class/core/presenter/Abstract.js and 1 other location - About 1 hr to fix
              source/class/core/presenter/Abstract.js on lines 453..460

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

              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

                  getChild : function(name)
                  {
                    if (jasy.Env.isSet("debug")) {
                      core.Assert.isType(name, "String", "Invalid child name!");
                    }
              Severity: Major
              Found in source/class/core/presenter/Abstract.js and 1 other location - About 1 hr to fix
              source/class/core/presenter/Abstract.js on lines 82..89

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

              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 buildTree has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  function buildTree(tokens, stack)
                  {
                      var instructions = [];
                      var opener = null;
                      var token = null;
              Severity: Minor
              Found in source/class/core/template/Parser.js - About 1 hr to fix

                Function add has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    add : function(target, type, callback, context, capture)
                    {
                      // Hard-wire context to function, re-use existing bound functions
                      if (context) {
                        callback = core.Function.bind(callback, context);
                Severity: Minor
                Found in source/class/core/bom/TapEvent.js - About 1 hr to fix

                  Function __scheduleActivity has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                              __scheduleActivity : function(action, key, data) {
                                  var tracker = this.__tracker;
                                  var queue = this.__queue;
                                  var promise = new core.event.Promise(function(resolve, reject) {
                                      queue.push({
                  Severity: Minor
                  Found in source/class/core/store/Abstract.js - About 1 hr to fix

                    Function getLabel has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                        getLabel : function(item, root)
                        {
                            if (!root) {
                                root = document.body;
                            }
                    Severity: Minor
                    Found in source/class/core/bom/FormItem.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 loadStyleSheet has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                        loadStyleSheet : function(assetId)
                        {
                          return new core.event.Promise(function(resolve, reject) {
                            core.io.StyleSheet.load(jasy.Asset.toUri(assetId), function(uri, errornous, data)
                            {
                    Severity: Minor
                    Found in source/class/core/view/Dom.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 set has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                                set : function(property, value)
                                {
                                    if (arguments.length == 2)
                                    {
                                        if (jasy.Env.isSet("debug")) {
                    Severity: Minor
                    Found in source/class/core/property/MGeneric.js - About 1 hr to fix

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

                          execute : function(nodes, context)
                          {
                            if (context == null) {
                              context = document;
                            }
                      Severity: Minor
                      Found in source/class/core/bom/Fragment.js - About 1 hr to fix

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

                          loadHtml : function(html, parent, secure)
                          {
                            if (!parent) {
                              parent = document.body;
                            }
                        Severity: Minor
                        Found in source/class/core/bom/Iframe.js - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language