RackHD/on-core

View on GitHub
lib/common/db-renderable-content.js

Summary

Maintainability
D
1 day
Test Coverage

Function dbRenderableContentServiceFactory has 209 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function dbRenderableContentServiceFactory(
    FileLoader, 
    Constants, 
    Promise, 
    _, 
Severity: Major
Found in lib/common/db-renderable-content.js - About 1 day to fix

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

        DbRenderableContentService.prototype.get = function (name, scope) {
            var self = this;
            scope = scope || [ Constants.Scope.Global ];
    
            // The position of the tag defines the scope priority
    Severity: Minor
    Found in lib/common/db-renderable-content.js - About 1 hr to fix

      Function dbRenderableContentServiceFactory has 11 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          FileLoader, 
          Constants, 
          Promise, 
          _, 
          waterline, 
      Severity: Major
      Found in lib/common/db-renderable-content.js - About 1 hr to fix

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

            DbRenderableContentService.prototype.put = function (filename, stream, scope) {
                var self = this;
                var contents = '';
                var resolve;
                var reject;
        Severity: Minor
        Found in lib/common/db-renderable-content.js - About 1 hr to fix

          Function _updateCollection has 26 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              var _updateCollection = function(templateServiceInstance, filepath, content, collectionName, filename, scope, hash){
                  return waterline[collectionName].findOne({name: filename,
                          path: filepath})
                      .then(function(file) {
                          if (file && file.scope !== scope) {
          Severity: Minor
          Found in lib/common/db-renderable-content.js - About 1 hr to fix

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

                DbRenderableContentService.prototype.load = function load() {
                    var self = this;
            
                    return self.loader.getAll(self.directory, true)
                    .then(function(files) {
            Severity: Minor
            Found in lib/common/db-renderable-content.js - About 1 hr to fix

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

                  var _updateCollection = function(templateServiceInstance, filepath, content, collectionName, filename, scope, hash){
              Severity: Major
              Found in lib/common/db-renderable-content.js - About 50 mins to fix

                Function dbRenderableContentServiceFactory has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                function dbRenderableContentServiceFactory(
                    FileLoader, 
                    Constants, 
                    Promise, 
                    _, 
                Severity: Minor
                Found in lib/common/db-renderable-content.js - About 35 mins 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

                There are no issues that match your filters.

                Category
                Status