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

link|improve this question
feedback

2 Answers

<%= form_for club, :url => shift_builders_url do |f| %>
...      
<% these_shifts = club.shifts_for_date(some_date) %>
<%= f.fields_for :shifts, these_shifts do |s| %>
  <td><%= render "shift_fields", :f => s %></td>
<% end %>

Model

class Club < AR::Base
  has_many :shifts
  ...
  def shifts_for_date(date)
    shifts.where(:date => date)
  end
  ...
end
link|improve this answer
This would of course work, but would still generate tons of queries (# clubs*# days) - which I was trying to avoid. – alkaloids May 22 '11 at 22:55
I've gone with this for the time being, but I'll see if anyone has any better ideas... – alkaloids May 23 '11 at 0:46
I see. You can do it manually: just create fields for shift_attributes in each loop. that's all. – fl00r May 23 '11 at 7:53
feedback

try replacing:

<%= f.fields_for :shifts, these_shifts do |s| %>
  <td><%= render "shift_fields", :f => s %></td>
<% end %>

with :

<% for shift in these_shifts do %>
 <td><%= f.field_for :shift %></td>
<% end %>
link|improve this answer
So this drew the right fields, but it was unable to update them correctly, as the form stuff was a little bit malformed. I guess that I can either rewrite controller code to handle the goofy form submission: Parameters: {"club"=>{"shift"=>{"start_time(1i)"=>"2011", "start_time(2i)"=>"5", "start_time(3i)"=>"22", "start_time(4i)"=>"19", "end_time(1i)"=>"2011", "start_time(5i)"=>"20", "end_time(2i)"=>"5", "follow"=>"0", "end_time(3i)"=>"22", "end_time(4i)"=>"17", "_destroy"=>"", "end_time(5i)"=>"20"}, "id"=>"2"}} instead of "club" => "shifts"... – alkaloids May 22 '11 at 22:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.