在Active Admin Rails中创建新项目时的过滤下拉列表

时间:2018-07-19 09:37:08

标签: ruby-on-rails devise activeadmin rolify

我有一个Rails 5应用程序,它使用Devise通过标准User模型进行注册和会话。我也将Rolify与两种类型的角色(学生,教师)集成在一起。

class User < ApplicationRecord
  rolify
  mount_uploader :avatar, AvatarUploader

  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  validates_integrity_of  :avatar
  validates_processing_of :avatar


  include PgSearch
  pg_search_scope :search_by_full_name, against: [:full_name],using: {
    tsearch: {
      prefix: true,
      highlight: {
        start_sel: '<b>',
        stop_sel: '</b>',
      }
    }
   }



  private
    def avatar_size_validation
      errors[:avatar] << "should be less than 500KB" if avatar.size > 0.5.megabytes
    end
end

我想展示一些有特色的老师,所以我有一张桌子,名为Featured_teachers。迁移如下所示。

class CreateFeaturedTeachers < ActiveRecord::Migration[5.2]
  def change
    create_table :featured_teachers, id: :uuid do |t|
      t.references :user, foreign_key: true,type: :uuid

      t.timestamps
    end
  end
end

相关的FeaturedTeacher模型在下面给出

class FeaturedTeacher < ApplicationRecord
  belongs_to :user
end

我想使用Active Admin管理特色教师,因此我创建了以下Active Admin资源。

ActiveAdmin.register FeaturedTeacher do

permit_params :user_id
actions :index,:new, :destroy
index do
    selectable_column
    column :user
    column :created_at
    actions name: "Actions"
end
end

但是正在发生的事情是,当我想添加新的“特色教师”时,在下拉列表中可以获得数据库中“用户”的完整列表。

我想做的是,仅在将新用户添加到Active Admin UI的“特色教师”列表中时,显示角色类型为“老师”的用户,以及尚未添加到“特色教师”表中的用户。

有人可以帮我吗?我对Ruby和Rails有点陌生,希望了解如何完成此工作。我极有可能在其他Active Admin界面中也需要此功能。

谢谢。

1 个答案:

答案 0 :(得分:1)

您需要为特色教师创建表格,请在featured_teachers.rb有效的管理文件中添加以下代码

form do |f|
    f.inputs 'Featured Teacher' do
      # in the select box only load those users which are teacher and not in featured teacher list you need to add query for it
      f.input :user, as: :select, collection: User.where(role: 'teacher').map { |u| [u.name, u.id] }, include_blank: true, allow_blank: false, input_html: { class: 'select2' }
     # please also add other fields of featured teacher model

您可以在有效的管理文档here中查看所有可用选项