I am using ActiveAdmin gem in my project.

I have 2 models using has_many through association. The database schema looks exactly the same as the example in RailsGuide. http://guides.rubyonrails.org/association_basics.html#the-has_many-through-association has_many through association

How can I using ActiveAdmin to ....

  1. show appointment date of each patient in physicians page?
  2. edit appointment date of each patient in physicians page?

Thanks all. :)

link|improve this question

78% accept rate
what did you use to create that er diagram? – Daniel D Mar 1 at 4:24
I didn't create that. I get it from Rails Guide website. – siulamvictor Mar 1 at 20:22
What we need to find out is what THEY used to create that diagram! – eml Mar 29 at 19:15
feedback

2 Answers

up vote 9 down vote accepted

For 1)

show do
  panel "Patients" do
    table_for physician.appointments do
      column "name" do |appointment|
        appointment.patient.name
      end
      column :appointment_date
    end
  end
end

For 2)

form do |f|
  f.inputs "Details" do # physician's fields
    f.name
  end

  f.has_many :appointments do |app_f|
    app_f.inputs "Appointments" do
      if !app_f.object.nil?
        # show the destroy checkbox only if it is an existing appointment
        # else, there's already dynamic JS to add / remove new appointments
        app_f.input :_destroy, :as => :boolean, :label => "Destroy?"
      end

      app_f.input :patient # it should automatically generate a drop-down select to choose from your existing patients
      app_f.input :appointment_date
    end
  end
end
link|improve this answer
1  
I'm doing a similar thing, but it ends up with a SQL nightmare. Each call to appointment.patient generates another SQL query.. standard n+1 query problem. Has anyone found a way of doing the equivalent of ActiveRecord's eager loading? Eg .includes(:patient) – tomblomfield Dec 14 '11 at 18:29
I have some trouble with your solution. The _destroy input won't work in my case – Awea Feb 6 at 11:23
there could be many reasons and "won't work" isn't enough for me to know what exactly goes wrong. I am sorry about that. – PeterWong Feb 6 at 11:33
1  
Quick Tip: Make sure to include accepts_nested_attributes_for in the Patients model accepts_nested_attributes_for :appointments – Greg May 23 at 16:31
feedback

In answer tomblomfield follow up question in comments:

Try the following in your AA ActiveAdmin.register Model do block:

  controller do
    def scoped_collection
      YourModel.includes(:add_your_includes_here)
    end
  end

This should lazy load all your associations for each index page in a separate query

HTH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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