12

好吧,我有两个与多对多关联相关的模型。

#models/outline.rb
    class Outline < ActiveRecord::Base
      has_many :documents
    end

#models/document.rb
    class Document < ActiveRecord::Base
      belongs_to :outline
    end

#admin/outlines.rb
    ActiveAdmin.register Outline do
      form do |f|
        f.inputs "Details" do
          f.input :name, :required => true
          f.input :pages, :required => true
          ...
          f.buttons
        end
        f.inputs "Document Versions" do 
          f.has_many :documents, :name => "Document Versions"  do |d|
            d.input :file, :as => :file
            d.buttons do
              d.commit_button :title => "Add new Document Version"
            end
          end
        end
      end
    end

正如您在 admin/outlines.rb 中看到的那样,我已经尝试在 has_many :documents 中设置 :name 以及在 commit_button 中设置 :title,但这些选项都不起作用,我也尝试使用 :legend, :标题和 :label,而不是 .has_many 中的 :name。不工作。

这是该代码的结果: 屏幕截图

我要显示的是“文档版本”而不是“文档”,以及“添加新文档版本”而不是“添加新文档”

如果有人可以有解决方案,那就太好了

4

6 回答 6

18

要设置has_many标题,您可以使用

f.has_many :images, heading: 'My images' do |i|
  i.input :src, label: false
end

这里

于 2013-09-06T11:18:30.003 回答
6

查看ActiveAdmin 测试(“应该在标题中翻译关联名称”),可能还有另一种方法。使用您的翻译文件。

如果您查看ActiveAdmin has_many 方法(糟糕!!!46 行顺序代码),它使用ActiveModel 的人工方法

尝试将此添加到您的翻译文件中

en:
  activerecord:
    models:
      document:
        one: Document Version
        other: Document Versions
于 2012-11-22T11:16:27.483 回答
4

一个快速的技巧是您可以通过其样式隐藏 h3 标签。

资产/样式表/active_admin.css.scss

    .has_many {
      h3 {
        display: none;
      }}

这将隐藏 has_many 类下的任何 h3 标签。

于 2012-03-08T15:10:19.260 回答
3

new_record您可以使用 上的设置自定义“添加...”按钮的标签has_many。对于标题标签,您可以使用heading

f.has_many :documents,
           heading: "Document Versions",
           new_record: "Add new Document Version" do |d|
  d.input :file, :as => :file
end
于 2018-01-04T14:06:01.080 回答
2

Sjors 的回答实际上是解决问题的完美开端。我在 config/initializers/active_admin.rb 中使用以下内容对 Active Admin 进行了猴子补丁:

module ActiveAdmin
 class FormBuilder < ::Formtastic::FormBuilder
  def titled_has_many(association, options = {}, &block)
   options = { :for => association }.merge(options)
   options[:class] ||= ""
   options[:class] << "inputs has_many_fields"

   # Set the Header
   header = options[:header] || association.to_s

   # Add Delete Links
   form_block = proc do |has_many_form|
     block.call(has_many_form) + if has_many_form.object.new_record?
                                  template.content_tag :li do
                                    template.link_to I18n.t('active_admin.has_many_delete'), "#", :onclick => "$(this).closest('.has_many_fields').remove(); return false;", :class => "button"
                                  end
                                else
                                end
  end

  content = with_new_form_buffer do
    template.content_tag :div, :class => "has_many #{association}" do
      form_buffers.last << template.content_tag(:h3, header.titlecase) #using header
      inputs options, &form_block

      # Capture the ADD JS
      js = with_new_form_buffer do
        inputs_for_nested_attributes  :for => [association, object.class.reflect_on_association(association).klass.new],
                                      :class => "inputs has_many_fields",
                                      :for_options => {
                                        :child_index => "NEW_RECORD"
                                      }, &form_block
      end

      js = template.escape_javascript(js)
      js = template.link_to I18n.t('active_admin.has_many_new', :model => association.to_s.singularize.titlecase), "#", :onclick => "$(this).before('#{js}'.replace(/NEW_RECORD/g, new Date().getTime())); return false;", :class => "button"

      form_buffers.last << js.html_safe
    end
  end
  form_buffers.last << content.html_safe
  end
 end
end

现在在我的管理文件中,我像 has_many 一样调用 titled_has_many,但我传入 :header 以覆盖使用 Association 作为 h3 标签。

f.titled_has_many :association, header: "Display this as the H3" do |app_f|
  #stuff here
end
于 2012-07-31T16:07:53.853 回答
0

不值得奖励,但你可以把它放在 config/initializers/active_admin.rb 中。它将允许您使用 config/locales/your_file.yml 调整所需的标题(您应该自己创建 custom_translations 条目)。不要忘记重新启动服务器。并在表单构建器中使用 f.hacked_has_many。

module ActiveAdmin
  class FormBuilder < ::Formtastic::FormBuilder
    def hacked_has_many(association, options = {}, &block)
      options = { :for => association }.merge(options)
      options[:class] ||= ""
      options[:class] << "inputs has_many_fields"
      # Add Delete Links
      form_block = proc do |has_many_form|
        block.call(has_many_form) + if has_many_form.object.new_record?
                                      template.content_tag :li do
                                        template.link_to I18n.t('active_admin.has_many_delete'), "#", :onclick => "$(this).closest('.has_many_fields').remove(); return false;", :class => "button"
                                      end
                                    else
                                    end
      end
      content = with_new_form_buffer do
        template.content_tag :div, :class => "has_many #{association}" do         

          # form_buffers.last << template.content_tag(:h3, association.to_s.titlecase)
          # CHANGED INTO
          form_buffers.last << template.content_tag(:h3, I18n.t('custom_translations.'+association.to_s))

          inputs options, &form_block

          # Capture the ADD JS
          js = with_new_form_buffer do
            inputs_for_nested_attributes  :for => [association, object.class.reflect_on_association(association).klass.new],
                                          :class => "inputs has_many_fields",
                                          :for_options => {
                                            :child_index => "NEW_RECORD"
                                          }, &form_block
          end
          js = template.escape_javascript(js)
          _model = 'activerecord.models.' + association.to_s.singularize
          _translated_model = I18n.t(_model)
          js = template.link_to I18n.t('active_admin.has_many_new', :model => _translated_model), "#", :onclick => "$(this).before('#{js}'.replace(/NEW_RECORD/g, new Date().getTime())); return false;", :class => "button"

          form_buffers.last << js.html_safe
        end
      end
      form_buffers.last << content.html_safe
    end
  end
end

如果您在暂存/生产模式下无法很好地加载语言环境文件,将其添加到您的 application.rb 可能会有所帮助(用 :nl 替换正确的语言环境)

config.before_configuration do
  I18n.load_path += Dir[Rails.root.join('config','locales','*.{rb,yml}').to_s]
  I18n.locale = :nl
  I18n.default_locale = :nl
  config.i18n.load_path += Dir[Rails.root.join('config','locales','*.{rb,yml}').to_s]
  config.i18n.locale = :nl
  config.i18n.default_locale = :nl
  I18n.reload!
  config.i18n.reload!
end
config.i18n.locale = :nl
config.i18n.default_locale = :nl 
于 2012-04-19T15:45:20.670 回答