How to dry code?

109 Views Asked by At

I am working with has many through association in Application. I access email from employee table in INDEX action of InventoryController like below code:

<% @inventories.each do |inventory| %>
    <% inventory.employee_inventories.each do |e| %>
            <%if e[:status]== 'ALLOTED'%>
                  <%= e.employee.email%>
             <% end %>
    <% end %>
<% end %>

Please help me How to DRY this code in view? Thanks in advance

2

There are 2 best solutions below

0
On
@alloted_emails = @inventories.flat_map(&:employee_inventories).select do |i|
  i[:status] == 'ALLOTED'
end.map do |i|
  i.employee.email
end

Unless you want to create a scope as suggested by @Pavan, just introduce this var and use it.

0
On

If you are using the same code in different views then you can create a helper.

Otherwise write down this code like-

<% @inventories.each do |inventory| %>
  <% inventory.employee_inventories.each do |e| %>
      <%= e.employee.email if e[:status]== 'ALLOTED' %>     
  <% end %>
<% end %>

The main problem in your code is n+1 query problem. If you are using eager loading then there is no issue otherwise use eager loading using includes keyword in your query.