khiav223577/deep_pluck

View on GitHub

Showing 6 of 7 total issues

Method make_data_hash has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

      def make_data_hash(collection, parent, primary_key, column_name, reverse)
        hash = {}

        parent.each do |model_hash|
          key = model_hash[primary_key]
Severity: Minor
Found in lib/deep_pluck/data_combiner.rb - 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

Method get_foreign_key has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def get_foreign_key(reflect, reverse: false, with_table_name: false)
      reflect = reflect.chain.last
      if reverse and (table_name = get_join_table(reflect)) # reverse = parent
        key = reflect.chain.last.foreign_key
      else
Severity: Minor
Found in lib/deep_pluck/model.rb - 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

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

      def assign_values_to_parent(collection, parent, children_hash, column_name, foreign_key, reverse: false)
        parent.each do |data|
          id = data[foreign_key]

          left = reverse ? children_hash[id] : data
Severity: Minor
Found in lib/deep_pluck/data_combiner.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 combine_data has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

      def combine_data(parent, children, primary_key, column_name, foreign_key, reverse, collection)
Severity: Major
Found in lib/deep_pluck/data_combiner.rb - About 50 mins to fix

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

          def assign_values_to_parent(collection, parent, children_hash, column_name, foreign_key, reverse: false)
    Severity: Minor
    Found in lib/deep_pluck/data_combiner.rb - About 35 mins to fix

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

            def make_data_hash(collection, parent, primary_key, column_name, reverse)
      Severity: Minor
      Found in lib/deep_pluck/data_combiner.rb - About 35 mins to fix
        Severity
        Category
        Status
        Source
        Language