activescaffold/active_scaffold

View on GitHub
lib/active_scaffold/data_structures/sorting.rb

Summary

Maintainability
C
7 hrs
Test Coverage
A
95%

Class Sorting has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Sorting
    include Enumerable
    include ActiveScaffold::OrmChecks

    attr_accessor :constraint_columns
Severity: Minor
Found in lib/active_scaffold/data_structures/sorting.rb - About 3 hrs to fix

    Method clause has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

        def clause(grouped_columns_calculations = nil)
          return nil if sorts_by_method? || default_sorting?
    
          # unless the sorting is by method, create the sql string
          order = []
    Severity: Minor
    Found in lib/active_scaffold/data_structures/sorting.rb - About 2 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 set_sorting_from_order_clause has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def set_sorting_from_order_clause(order_clause, model_table_name = nil)
          clear
          order_clause.to_s.split(',').each do |criterion|
            if criterion.present?
              order_parts = extract_order_parts(criterion)
    Severity: Minor
    Found in lib/active_scaffold/data_structures/sorting.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

    Method add has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def add(column_name, direction = nil)
          direction ||= 'ASC'
          direction = direction.to_s.upcase
          column = get_column(column_name)
          raise ArgumentError, "Could not find column #{column_name}" if column.nil?
    Severity: Minor
    Found in lib/active_scaffold/data_structures/sorting.rb - About 25 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 set has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def set(*args)
          # TODO: add deprecation unless args.size == 1 && args[0].is_a? Hash
          # when deprecation is removed:
          # * change list#sorting= to sorting.set(val)
          clear
    Severity: Minor
    Found in lib/active_scaffold/data_structures/sorting.rb - About 25 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