oivoodoo/mongoid-report

View on GitHub

Showing 6 of 6 total issues

Method compile_queries has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
Open

      def compile_queries
        compiled = Set.new

        queries.each do |query|
          next compiled << query if query.has_key?("$project") || query.has_key?('$group')
Severity: Minor
Found in lib/mongoid/report/scope.rb - About 4 hrs 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

Method initialize_report_module has 43 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def initialize_report_module
        # Lets store settings under created instance.
        @report_module_settings = self.settings.inject({}) do |hash_module, (report_module, module_settings)|
          hash_module.merge!(
            report_module =>
Severity: Minor
Found in lib/mongoid/report.rb - About 1 hr to fix

    Method project_group_fields_query has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

          def project_group_fields_query
            {}.tap do |query|
              if groups == [:_id]
                query[:_id] = '$_id'
              else
    Severity: Minor
    Found in lib/mongoid/report/queries_builder.rb - About 55 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

    Method all has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

          def all
            self.yield unless yielded?
    
            aggregation_queries = compile_queries
    
    
    Severity: Minor
    Found in lib/mongoid/report/scope.rb - About 45 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

    Method initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

          def initialize(context, rows, fields, columns, mapping)
    Severity: Minor
    Found in lib/mongoid/report/collection.rb - About 35 mins to fix

      Method initialize_report_module has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

            def initialize_report_module
              # Lets store settings under created instance.
              @report_module_settings = self.settings.inject({}) do |hash_module, (report_module, module_settings)|
                hash_module.merge!(
                  report_module =>
      Severity: Minor
      Found in lib/mongoid/report.rb - 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

      Severity
      Category
      Status
      Source
      Language