Class: ActionView::CollectionRenderer::PreloadCollectionIterator
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
ActionView::CollectionRenderer::SameCollectionIterator
|
Defined in: | actionview/lib/action_view/renderer/collection_renderer.rb |
Class Method Summary
SameCollectionIterator
- Inherited
CollectionIterator
- Inherited
Instance Attribute Summary
::Enumerable
- Included
#many? | Returns |
Instance Method Summary
SameCollectionIterator
- Inherited
CollectionIterator
- Inherited
::Enumerable
- Included
#compact_blank | Returns a new |
#exclude? | The negative of the |
#excluding | Returns a copy of the enumerable excluding the specified elements. |
#in_order_of | Returns a new |
#including | Returns a new array that includes the passed elements. |
#index_by | Convert an enumerable to a hash, using the block result as the key and the element as the value. |
#index_with | Convert an enumerable to a hash, using the element as the key and the block result as the value. |
#maximum | Calculates the maximum from the extracted elements. |
#minimum | Calculates the minimum from the extracted elements. |
#pick | Extract the given key from the first element in the enumerable. |
#pluck | Extract the given key from each element in the enumerable. |
#sole | Returns the sole item in the enumerable. |
#without | Alias for Enumerable#excluding. |
#as_json |
::ActiveSupport::EnumerableCoreExt::Constants
- Included
Constructor Details
.new(collection, path, variables, relation) ⇒ PreloadCollectionIterator
# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 79
def initialize(collection, path, variables, relation) super(collection, path, variables) relation.skip_preloading! unless relation.loaded? @relation = relation end
Instance Method Details
#each_with_info
[ GitHub ]# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 89
def each_with_info return super unless block_given? preload! super end
#from_collection(collection)
[ GitHub ]# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 85
def from_collection(collection) self.class.new(collection, @path, @variables, @relation) end
#preload!
[ GitHub ]# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 95
def preload! @relation.preload_associations(@collection) end