Sha256: f32e662072c9577e4c49fb60c24e382b2cc4b093ec6631774607c27c13efa80e

Contents?: true

Size: 1.38 KB

Versions: 29

Compression:

Stored size: 1.38 KB

Contents

# frozen_string_literal: true

require "rubocop"

module RuboCop
  module Cop
    module GitHub
      class RailsControllerRenderShorthand < Cop
        MSG = "Prefer `render` template shorthand"

        def_node_matcher :render_with_options?, <<-PATTERN
          (send nil? :render (hash $...))
        PATTERN

        def_node_matcher :action_key?, <<-PATTERN
          (pair (sym {:action :template}) $({str sym} _))
        PATTERN

        def_node_matcher :str, <<-PATTERN
          ({str sym} $_)
        PATTERN

        def investigate(*)
          @autocorrect = {}
        end

        def autocorrect(node)
          @autocorrect[node]
        end

        def on_send(node)
          if option_pairs = render_with_options?(node)
            option_pairs.each do |pair|
              if value_node = action_key?(pair)
                comma = option_pairs.length > 1 ? ", " : ""
                corrected_source = node.source
                  .sub(/#{pair.source}(,\s*)?/, "")
                  .sub("render ", "render \"#{str(value_node)}\"#{comma}")

                @autocorrect[node] = lambda do |corrector|
                  corrector.replace(node.source_range, corrected_source)
                end
                add_offense(node, location: :expression, message: "Use `#{corrected_source}` instead")
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
rubocop-springest-0.7.5 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.7.4 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.7.3 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.7.2 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.16.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.15.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.7.1 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.14.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.7.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.9 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.8 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.13.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.7 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.6 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.5 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.4 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.3 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.12.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-github-0.11.0 lib/rubocop/cop/github/rails_controller_render_shorthand.rb
rubocop-springest-0.6.2 lib/rubocop/cop/github/rails_controller_render_shorthand.rb