ActiveAdminで二重にnestしたフォームを書く


ActiveAdminでhas_oneのassociationに対するnestしたフォームを作る
に続き、ActiveAdminネタ。二重にネストしたフォームは普通にActiveAdminでも書けます。

親モデルParent、子モデルChild、孫モデルGrandChildが以下のように定義されているときに、

class Parent < ActiveRecord::Base
  has_many :childs # childの複数形はchildrenだけど、無視
  accepts_nested_attributes_for :childs, allow_destroy: true
end

class Child < ActiveRecord::Base
  belongs_to :parent
  has_many :grand_childs
  accepts_nested_attributes_for :grand_childs, allow_destroy: true
end

class GlandChild < ActiveRecord::Base
  belongs_to :child  
end

二重にネストしたフォームは以下のように書けます。ただし、当然ながら、 accepts_nested_attributes_forが正しく設定されていないと、内部的に呼ばれるnew_record?のところでnilが起因するエラーが出ます。

/admin/models/parent.rb
ActiveAdmin.register Parent do
  form do |f|
    f.inputs "子モデルの編集"
     f.has_many :childs do |child|       
       child.input :hoge

       child.has_many :grand_childs do |grand_child|
         grand_child.input :moge
       end
     end
    end
  end

end