engine/lib/locomotive/liquid/drops/asset_collections.rb

55 lines
1.3 KiB
Ruby
Raw Normal View History

module Locomotive
module Liquid
module Drops
class AssetCollections < ::Liquid::Drop
def before_method(meth)
collection = @context.registers[:site].asset_collections.where(:slug => meth.to_s)
AssetCollection.new(collection)
end
end
class AssetCollection < ::Liquid::Drop
def initialize(collection)
@collection = collection
end
def first
@collection.assets.first
end
def last
@collection.assets.last
end
def each(&block)
@collection.assets.each(&block)
end
def paginate(options = {})
paginated_collection = @collection.assets.paginate(options)
{
:collection => paginated_collection,
:current_page => paginated_collection.current_page,
:previous_page => paginated_collection.previous_page,
:next_page => paginated_collection.next_page,
:total_entries => paginated_collection.total_entries,
:total_pages => paginated_collection.total_pages,
:per_page => paginated_collection.per_page
}
end
def before_method(meth)
return '' if @collection.nil?
@collection.send(meth)
end
end
end
end
end