Class: ActiveAdmin::Views::IndexAsBlog
- Defined in:
- lib/active_admin/views/index_as_blog.rb
Overview
Index as Blog
Render your index page as a set of posts. The post has two main options: title and body.
index :as => :blog do
title :my_title # Calls #my_title on each resource
body :my_body # Calls #my_body on each resource
end
Post Title
The title is the content that will be rendered within a link to the resource. There are two main ways to set the content for the title
First, you can pass in a method to be called on your resource. For example:
index :as => :blog do
title :a_method_to_call
end
This will result in the title of the post being the return value of Resource#a_method_to_call
Second, you can pass a block to the tile option which will then be used as the contents fo the title. The resource being rendered is passed in to the block. For Example:
index :as => :blog do
title do |post|
span post.title, :class => 'title'
span post.created_at, :class => 'created_at'
end
end
Post Body
The body is rendered underneath the title of each post. The same two style of options work as the Post Title above.
Call a method on the resource as the body:
index :as => :blog do
title :my_title
body :my_body # Return value of #my_body will be the body
end
Or, render a block as the body:
index :as => :blog do
title :my_title
body do |post|
div truncate(post.title)
div :class => 'meta' do
span "Post in #{post.categories.join(', ')}"
end
end
end
Instance Method Summary collapse
-
#body(method = nil, &block) ⇒ Object
Setter method for the configuration of the body.
- #build(page_config, collection) ⇒ Object
-
#title(method = nil, &block) ⇒ Object
Setter method for the configuration of the title.
Methods inherited from Component
#default_class_name, #initialize, #tag_name
Constructor Details
This class inherits a constructor from ActiveAdmin::Component
Instance Method Details
#body(method = nil, &block) ⇒ Object
Setter method for the configuration of the body
87 88 89 90 91 92 |
# File 'lib/active_admin/views/index_as_blog.rb', line 87 def body(method = nil, &block) if block_given? || method @body = block_given? ? block : method end @body end |
#build(page_config, collection) ⇒ Object
66 67 68 69 70 71 72 73 74 75 |
# File 'lib/active_admin/views/index_as_blog.rb', line 66 def build(page_config, collection) @page_config = page_config @collection = collection # Call the block passed in. This will set the # title and body methods instance_eval &page_config.block if page_config.block build_posts end |
#title(method = nil, &block) ⇒ Object
Setter method for the configuration of the title
78 79 80 81 82 83 |
# File 'lib/active_admin/views/index_as_blog.rb', line 78 def title(method = nil, &block) if block_given? || method @title = block_given? ? block : method end @title end |