Sha256: df72b9880cc5be65f278c3069ea648bf35a4af6f4ca9a4b53e924dd9766e6873

Contents?: true

Size: 1.32 KB

Versions: 8

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Style
      # This cop checks for nested ternary op expressions.
      #
      # @example
      #   # bad
      #   a ? (b ? b1 : b2) : a2
      #
      #   # good
      #   if a
      #     b ? b1 : b2
      #   else
      #     a2
      #   end
      class NestedTernaryOperator < Cop
        MSG = 'Ternary operators must not be nested. Prefer `if` or `else` ' \
              'constructs instead.'

        def on_if(node)
          return unless node.ternary?

          node.each_descendant(:if).select(&:ternary?).each do |nested_ternary|
            add_offense(nested_ternary)
          end
        end

        def autocorrect(node)
          if_node = if_node(node)

          lambda do |corrector|
            corrector.replace(if_node, <<~RUBY.chop)
              if #{if_node.condition.source}
                #{remove_parentheses(if_node.if_branch.source)}
              else
                #{if_node.else_branch.source}
              end
            RUBY
          end
        end

        private

        def if_node(node)
          node = node.parent
          return node if node.if_type?

          if_node(node)
        end

        def remove_parentheses(source)
          source.gsub(/\A\(/, '').gsub(/\)\z/, '')
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
rubocop-0.89.1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.89.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.88.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rbhint-0.87.1.rc1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.87.1 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.87.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rubocop-0.86.0 lib/rubocop/cop/style/nested_ternary_operator.rb
rbhint-0.85.1.rc2 lib/rubocop/cop/style/nested_ternary_operator.rb