web-dev-qa-db-ja.com

has_manyをアソシエーションを使用してモデルでActiveAdminを使用する方法

プロジェクトで ActiveAdmin gemを使用しています。

Has_many through associationを使用した2つのモデルがあります。データベーススキーマは、RailsGuideの例とまったく同じに見えます。 http://guides.rubyonrails.org/association_basics.html#the-has_many-through-associationhas_many through association
(ソース: rubyonrails.org

ActiveAdminを使用してどうすれば...

  1. 医師のページに各患者の予約日を表示しますか?
  2. 医師ページで各患者の予約日を編集しますか?

皆さんありがとう。 :)

50
Victor Lam

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

2)

form do |f|
  f.inputs "Details" do # physician's fields
    f.input :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
77
PeterWong

Tomblomfieldの回答では、コメントで質問をフォローアップします。

AA ActiveAdmin.register Model doブロックで次を試してください。

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

これにより、各インデックスページのすべての関連付けが個別のクエリで遅延ロードされます。

HTH

14
Nazar

N + 1クエリの問題を解決するはずです。

show do
  panel "Patients" do
    patients = physician.patients.includes(:appointments)
    table_for patients do
      column :name
      column :appointment_date { |patient|    patient.appointments.first.appointment_date }
    end
  end
end
1
Manikandan

それは私のために働いています(選ばれた)

permit_params category_ids: []

form do |f|
   inputs 'Shop' do
     input :category_ids, collection: Category.all.collect {|x| [x.name, x.id]}, as: :select, multiple: true, input_html: { class: "chosen-input",  style: "width: 700px;"}
    end
   f.actions
end
1
Evan Ross

@monfresh @tomblomfieldあなたができる

has_many :appointments, ->{ includes(:patients) }, :through => :patients

医師モデルで

...または、formtasticで使用できるかどうかはわかりませんが、次のようにスコープをオプションにすることができます

has_many :appointments :through => :patients do
  def with_patients
    includes(:patients)
  end
end

およびappointment.patientもうn + 1しません

0
thrice801

パネル行に複数のフィールドを表示する場合は、次のビューを使用できます。

show do |phy|
   panel "Details" do
        attributes_table do
          ... # Other fields come here
          row :appointment_dates do
            apps=""
            phy.appointments.all.each do |app|
              apps += app.patient.name + ":" + app.appoinment_date + ", "
            end
            apps.chomp(", ")
          end
        end      
   end
end

再配置フォームにそれを配置するには、最初にアポイントメントIDを許可リストに入れます。

permit_params: appointment_ids:[]

追加には、フォームとの多くの関係があります

form do |f|
   f.has_many :appointments do |app|
     app.inputs "Appointments" do
       app.input :patients, :as => :select, :label => "Assigned Patients"
       app.input :appointment_date
     end  
   end
end

コーディングエラーがなければ機能します。

0
Tahsin Turkoz