Sha256: 34b71bfab32b73585f3ccb90329bdb4bf911ef0c9df22d78014af81ea424f3cc

Contents?: true

Size: 1.56 KB

Versions: 3

Compression:

Stored size: 1.56 KB

Contents

# encoding: utf-8
module RailsBestPractices
  module Reviews
    # Review a view file to make sure using simplified syntax for render.
    #
    # See the best practice details here http://rails-bestpractices.com/posts/2010/12/04/simplify-render-in-views/
    #
    # Implementation:
    #
    # Review process:
    #   check all render method commands in view files,
    #   if there is a key 'partial' in the argument, then they should be replaced by simplified syntax.
    class SimplifyRenderInViewsReview < Review
      interesting_nodes :command
      interesting_files VIEW_FILES
      url "http://rails-bestpractices.com/posts/2010/12/04/simplify-render-in-views/"

      VALID_KEYS = %w(object collection locals)

      # check command node in view file,
      # if its message is render and the arguments contain a key partial,
      # then it should be replaced by simplified syntax.
      add_callback :start_command do |node|
        if "render" == node.message.to_s
          hash_node =  node.arguments.all.first
          if hash_node && :bare_assoc_hash == hash_node.sexp_type &&
              include_partial?(hash_node) && valid_hash?(hash_node)
            add_error 'simplify render in views'
          end
        end
      end

      protected

        def include_partial?(hash_node)
          hash_node.hash_keys.include?("partial") && !hash_node.hash_value("partial").to_s.include?('/')
        end

        def valid_hash?(hash_node)
          keys = hash_node.hash_keys
          keys.delete("partial")
          (keys - VALID_KEYS).empty?
        end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails_best_practices-1.18.1 lib/rails_best_practices/reviews/simplify_render_in_views_review.rb
rails_best_practices-1.18.0 lib/rails_best_practices/reviews/simplify_render_in_views_review.rb
rails_best_practices-1.17.0 lib/rails_best_practices/reviews/simplify_render_in_views_review.rb