I'm trying to do fields_for of a subset of objects and struggling some. Here are some details:
class Club < ActiveRecord::Base
has_many :shifts
...
<%= form_for club, :url => shift_builders_url do |f| %>
...
<% these_shifts = Shift.where(:club_id => club.id, :date => date) %>
<%= f.fields_for :shifts, these_shifts do |s| %>
<td><%= render "shift_fields", :f => s %></td>
<% end %>
...
So that code works basically as expected, though clearly it's awful to be making those calls in the view. To clean up the code, I added the following controller code:
...
@shifts_by_club_and_date = sort_shifts_by_club_and_date(@shifts)
...
private
def sort_shifts_by_club_and_date(shifts)
return_hash = Hash.new
shifts.each do |s|
return_hash["#{s.club_id}-#{s.date}"] ? return_hash["#{s.club_id}-#{s.date}"] << s : return_hash["#{s.club_id}-#{s.date}"] = [s]
end
return return_hash
end
Then when I do:
<%= form_for club, :url => shift_builders_url do |f| %>
...
<% these_shifts = @shifts_by_club_and_date["#{club.id}-#{date}"] %>
<%= f.fields_for :shifts, these_shifts do |s| %>
<td><%= render "shift_fields", :f => s %></td>
<% end %>
...
Instead of taking that array in, it does something like:
Shift Load (7.3ms) SELECT `shifts`.* FROM `shifts` WHERE (`shifts`.club_id = 2)
And then draws the fields for every single shift object for that club... Passing in an Arel object seems to work fine, but an array does not, it seems. What is the best way to have a fields_for draw just a subset of objects?
I've looked at this similar question, but I don't think I can do the association like has_many :shifts_on_day(date)....
Edit to add: I'm running Rails 3.0.7 on REE with MySQL