forked from rubocop/rubocop-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluck.rb
56 lines (46 loc) · 1.71 KB
/
pluck.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
module RuboCop
module Cop
module Rails
# This cop enforces the use of `pluck` over `map`.
#
# `pluck` can be used instead of `map` to extract a single key from each
# element in an enumerable. When called on an Active Record relation, it
# results in a more efficient query that only selects the necessary key.
#
# @example
# # bad
# Post.published.map { |post| post[:title] }
# [{ a: :b, c: :d }].collect { |el| el[:a] }
#
# # good
# Post.published.pluck(:title)
# [{ a: :b, c: :d }].pluck(:a)
class Pluck < Base
extend AutoCorrector
extend TargetRailsVersion
MSG = 'Prefer `pluck(:%<value>s)` over `%<method>s { |%<argument>s| %<element>s[:%<value>s] }`.'
minimum_target_rails_version 5.0
def_node_matcher :pluck_candidate?, <<~PATTERN
(block (send _ ${:map :collect}) (args (arg $_argument)) (send (lvar $_element) :[] (sym $_value)))
PATTERN
def on_block(node)
pluck_candidate?(node) do |method, argument, element, value|
next unless argument == element
message = message(method, argument, element, value)
add_offense(offense_range(node), message: message) do |corrector|
corrector.replace(offense_range(node), "pluck(:#{value})")
end
end
end
private
def offense_range(node)
node.send_node.loc.selector.join(node.loc.end)
end
def message(method, argument, element, value)
format(MSG, method: method, argument: argument, element: element, value: value)
end
end
end
end
end