I have an Event model, which has_many Invitation. Invitation belongs to Groups and Users via polymorphic association (invitable_type and invitable_id).
class Event
has_many :invitations
accepts_nested_attributes_for :invitations, :allow_destroy => true
class Invitation
belongs_to :invitable, :polymorphic => true
class User and class Group:
has_many :invitations, :as => :invitable
In new event form (using Formtastic), I allow to add invitation groups to a certain event. When I click submit button, a request is sucessfully generated:
Parameters: {"utf8"=>"✓", "authenticity_token"=>"X", "event"=>{"user_id"=>"1",
"description"=>"", "invitation_ids"=>["", "2", "1"]}, "commit"=>"Create Event"}
Now, in my (Event) create method, if I create @event before creating invitations as:
def create
@event = Event.new(params[:event])
then I have error saying
ActiveRecord::RecordNotFound (Couldn't find all Invitations with IDs (2, 1) (found 0 results, but was looking for 2))
What I hacked is to create an array of invitations from params[:event][:invitation_ids] first (which null event_id, because I don't have @event.id to insert into invitation), then create @event, and finally add invitations to @event.invitations
def create
@user = current_user
params[:event][:invitation_ids].each do |invitation_id|
invite = Invitation.create(:event_id => params[:event][:id], :invitable_type => "Group",
:invitable_id => invitation_id )
invitables = []<<invite
debugger
@event = Event.new(params[:event])
@event.invitations<<invitables
end
Note that because check_box_tag can only return a single value (id) per key, I can't stuff both invitable_type and invitable_id to the request.
Why ActiveRecord would want to "find" child objects before creating parent object in this case? Did I do anything wrong? How can I improve this hack?
Thank you.