I'm having trouble adding children to a given parent. The view has an "Add child" link that passes in the current Person object. From here, I'm stuck. Both the parent and child are Person objects.
Also, the logic is poor - it is currently assumes father.
Model (person.rb):
class Person < ActiveRecord::Base
has_many :children, :class_name => "Person"
belongs_to :father, :class_name => "Person", :foreign_key => 'father_id'
belongs_to :mother, :class_name => "Person", :foreign_key => 'mother_id'
def children
Person.find(:all, :conditions => ['father_id=? or mother_id=?', id, id])
end
end
Controller (people_controller.rb):
class PeopleController < ApplicationController
# GET /people/new
# GET /people/new.xml
def new
if (params[:parent_id])
parent = Person.find(params[:parent_id])
@person = Person.new(:lastname => parent.lastname, :telephone => parent.telephone, :email => parent.email)
@person.father.build(:father_id => parent.id)
else
# create new
@person = Person.new
end
respond_to do |format|
format.html # new.html.erb
end
end
# POST /people
# POST /people.xml
def create
@person = Person.new(params[:person])
respond_to do |format|
if @person.save
format.html { redirect_to(@person, :notice => 'Person was successfully created.') }
else
format.html { render :action => "new" }
end
end
end
end
View (people/_form.html.erb):
<%= link_to "Add Child", {:controller => '/people', :action => :new, :parent_id => @person.id} %>