使用ActiveAdmin来编辑一条记录



我有一个需要编辑的模型,该模型与当前名为BillingProfile的用户相关联。如何添加链接到当前用户的BillingProfile的编辑页面的菜单项?我不希望也不需要BillingProfile的索引页,因为用户只能编辑自己的索引页。

class User
  has_one :billing_profile
end

您可以使用Cancan来管理允许用户编辑自己的计费配置文件的能力。

ability.rb

...
cannot :edit_billing_profile, User do |u|
  u.user_id != user.id
end
...
管理/users.rb

ActiveAdmin.register User do
  action_item :only => :show do
    link_to "Edit BP", edit_bp_path(user.id) if can? :edit_billing_profile, user
  end
end

或者你可以尝试这样做:

ActiveAdmin.register User do
  form do |f|
    f.inputs "User" do
      f.input :name
    end
    f.inputs "Billing Profile" do
      f.has_one :billing_profile do |bp|
        w.input :address if can? :edit_billing_profile, bp.user
      end
    end
    f.buttons
  end
end

我没有测试过,但我在一个项目中做过类似的事情。

这可能对你有帮助-

添加自定义链接:

ActiveAdmin.register User, :name_space => :example_namespace do
  controller do
    private
    def current_menu
      item = ActiveAdmin::MenuItem.new :label => "Link Name", :url => 'http://google.com'
      ActiveAdmin.application.namespaces[:example_namespace].menu.add(item)
      ActiveAdmin.application.namespaces[:example_namespace].menu
    end
  end
end

我基本上创建了一个新的ActiveAdmin::MenuItem,并将其添加到当前ActiveAdmin菜单的命名空间example_namespace,并在current_menu方法的末尾返回菜单。注意:current_menu是ActiveAdmin期望的方法,所以不要更改它的名称。您可以添加任意多的项目,这些项目中的每一个都将转换为导航标题上的链接。注意,这适用于ActiveAdmin版本> 0.4.3,所以如果你想为版本<= 0.4.3做这件事,你可能需要自己做挖掘。

我定义了一个LinkHelper,它有以下两个方法:

#This will return an edit link for the specified object instance
def edit_path_for_object_instance(object_instance)
  model_name = object_instance.class.to_s.underscore
  path = send("edit_#{model_name}_path", object_instance)
end
#This will return an show link for the specified object instance
def show_path_for_object_instance(object_instance)
  model_name = object_instance.class.to_s.underscore
  path = send("#{model_name}_path", object_instance)
end

您可以直接从视图调用edit_path_for_object_instance方法并传入用户。billing_profile对象。

这将给你一个直接到实体的链接,结果是一个url,如/billing_profile/ID/edit

另一种方法是使用fields_for。这将允许您为User属性创建表单,并同时更新相关的BillingProfile。它看起来像这样:
<%= form_for @user%>
  <%= fields_for @user.billing_profile do |billing_profile_fields| %>
    <%= billing_profile_fields.text_field :name %>    
  <% end %>
<%end%>

请看这里:http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html

相关内容

  • 没有找到相关文章

最新更新