3scale/porta

View on GitHub
app/helpers/column_sorting_helper.rb

Summary

Maintainability
A
2 hrs
Test Coverage

Method th_sortable has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def th_sortable(column, title = nil, path = :url_for, opts: {})
    title ||= column.titleize

    is_current_column = column.to_s == sort_column.to_s

Severity: Minor
Found in app/helpers/column_sorting_helper.rb - About 1 hr to fix

    ColumnSortingHelper#sortable has approx 15 statements
    Open

      def sortable(column, title = nil, path = :url_for)
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    A method with Too Many Statements is any method that has a large number of lines.

    Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

    So the following method would score +6 in Reek's statement-counting algorithm:

    def parse(arg, argv, &error)
      if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
        return nil, block, nil                                         # +1
      end
      opt = (val = parse_arg(val, &error))[1]                          # +2
      val = conv_arg(*val)                                             # +3
      if opt and !arg
        argv.shift                                                     # +4
      else
        val[0] = nil                                                   # +5
      end
      val                                                              # +6
    end

    (You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

    ColumnSortingHelper#th_sortable has 4 parameters
    Wontfix

      def th_sortable(column, title = nil, path = :url_for, opts: {})
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    A Long Parameter List occurs when a method has a lot of parameters.

    Example

    Given

    class Dummy
      def long_list(foo,bar,baz,fling,flung)
        puts foo,bar,baz,fling,flung
      end
    end

    Reek would report the following warning:

    test.rb -- 1 warning:
      [2]:Dummy#long_list has 5 parameters (LongParameterList)

    A common solution to this problem would be the introduction of parameter objects.

    ColumnSortingHelper#th_sortable has approx 22 statements
    Open

      def th_sortable(column, title = nil, path = :url_for, opts: {})
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    A method with Too Many Statements is any method that has a large number of lines.

    Too Many Statements warns about any method that has more than 5 statements. Reek's smell detector for Too Many Statements counts +1 for every simple statement in a method and +1 for every statement within a control structure (if, else, case, when, for, while, until, begin, rescue) but it doesn't count the control structure itself.

    So the following method would score +6 in Reek's statement-counting algorithm:

    def parse(arg, argv, &error)
      if !(val = arg) and (argv.empty? or /\A-/ =~ (val = argv[0]))
        return nil, block, nil                                         # +1
      end
      opt = (val = parse_arg(val, &error))[1]                          # +2
      val = conv_arg(*val)                                             # +3
      if opt and !arg
        argv.shift                                                     # +4
      else
        val[0] = nil                                                   # +5
      end
      val                                                              # +6
    end

    (You might argue that the two assigments within the first @if@ should count as statements, and that perhaps the nested assignment should count as +2.)

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

      def th_sortable(column, title = nil, path = :url_for, opts: {})
        title ||= column.titleize
    
        is_current_column = column.to_s == sort_column.to_s
    
    
    Severity: Minor
    Found in app/helpers/column_sorting_helper.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 sortable has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def sortable(column, title = nil, path = :url_for)
        title ||= column.titleize
        is_column = column.to_s == sort_column.to_s
        css_class = is_column ? "current #{sort_direction}" : nil
    
    
    Severity: Minor
    Found in app/helpers/column_sorting_helper.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

    ColumnSortingHelper#th_sortable manually dispatches method call
    Open

        to_hash_method = hash_methods.find { |method| sort_params.respond_to?(method) }
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    Reek reports a Manual Dispatch smell if it finds source code that manually checks whether an object responds to a method before that method is called. Manual dispatch is a type of Simulated Polymorphism which leads to code that is harder to reason about, debug, and refactor.

    Example

    class MyManualDispatcher
      attr_reader :foo
    
      def initialize(foo)
        @foo = foo
      end
    
      def call
        foo.bar if foo.respond_to?(:bar)
      end
    end

    Reek would emit the following warning:

    test.rb -- 1 warning:
      [9]: MyManualDispatcher manually dispatches method call (ManualDispatch)

    ColumnSortingHelper#sort_link calls 'params[:d]' 2 times
    Open

        sort_dir = params[:d] == 'up' ? 'down' : 'up'
        css_class = params[:d] if column.to_s == params[:c]
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.

    Reek implements a check for Duplicate Method Call.

    Example

    Here's a very much simplified and contrived example. The following method will report a warning:

    def double_thing()
      @other.thing + @other.thing
    end

    One quick approach to silence Reek would be to refactor the code thus:

    def double_thing()
      thing = @other.thing
      thing + thing
    end

    A slightly different approach would be to replace all calls of double_thing by calls to @other.double_thing:

    class Other
      def double_thing()
        thing + thing
      end
    end

    The approach you take will depend on balancing other factors in your code.

    ColumnSortingHelper#sortable manually dispatches method call
    Open

        to_hash_method = hash_methods.find { |method| sort_params.respond_to?(method) }
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    Reek reports a Manual Dispatch smell if it finds source code that manually checks whether an object responds to a method before that method is called. Manual dispatch is a type of Simulated Polymorphism which leads to code that is harder to reason about, debug, and refactor.

    Example

    class MyManualDispatcher
      attr_reader :foo
    
      def initialize(foo)
        @foo = foo
      end
    
      def call
        foo.bar if foo.respond_to?(:bar)
      end
    end

    Reek would emit the following warning:

    test.rb -- 1 warning:
      [9]: MyManualDispatcher manually dispatches method call (ManualDispatch)

    ColumnSortingHelper takes parameters ['column', 'title'] to 3 methods
    Open

      def sort_link(title, column, options = {})
        condition = options[:unless] if options.has_key?(:unless)
        sort_dir = params[:d] == 'up' ? 'down' : 'up'
        css_class = params[:d] if column.to_s == params[:c]
        link_to_unless condition, title_with_order_indicator(title, css_class), request.parameters.merge( {:c => column, :d => sort_dir} ), :class => css_class
    Severity: Minor
    Found in app/helpers/column_sorting_helper.rb by reek

    In general, a Data Clump occurs when the same two or three items frequently appear together in classes and parameter lists, or when a group of instance variable names start or end with similar substrings.

    The recurrence of the items often means there is duplicate code spread around to handle them. There may be an abstraction missing from the code, making the system harder to understand.

    Example

    Given

    class Dummy
      def x(y1,y2); end
      def y(y1,y2); end
      def z(y1,y2); end
    end

    Reek would emit the following warning:

    test.rb -- 1 warning:
      [2, 3, 4]:Dummy takes parameters [y1, y2] to 3 methods (DataClump)

    A possible way to fix this problem (quoting from Martin Fowler):

    The first step is to replace data clumps with objects and use the objects whenever you see them. An immediate benefit is that you'll shrink some parameter lists. The interesting stuff happens as you begin to look for behavior to move into the new objects.

    There are no issues that match your filters.

    Category
    Status