Sha256: 4eff3b4959ae48166aa510db263226690943ed7edb92723aa1a527787cab381c

Contents?: true

Size: 1.44 KB

Versions: 3

Compression:

Stored size: 1.44 KB

Contents

module RGallery
  class Page < PhotoConfig
    include Enumerable

    def initialize photo_objs = [], options = {}
      @photo_objs = photo_objs
      super options
    end

    # a source is a hash of the form:
    # 'banner' => [{src: 'banner-HD', sizing: '2x'}, {src: 'banner-phone', sizing: '100w'}]
    # see: add_photo_sources
    def self.from_source sources
      page = self.create sources.keys, options

      @photos ||= sources.map do |key, srclist| 
        photo_class.new key, options.merge(:sources => srclist)
      end
    end

    def << photo_objs
      @photo_objs ||= []
      @photo_objs += [photo_objs].flatten
    end

    def add_photo_sources sources_hash
      sources_hash.each do |source|
        add_photo_w_sources source
      end
    end

    def add_photo_w_sources source
      raise ArgumentError, "Must be a hash, was: #{source}" unless source.kind_of? Hash
      key = source.keys.first
      srclist = source.values.first
      raise ArgumentError, "Hash value must be an Array, was: #{srclist}" unless srclist.kind_of? Array

      self.send :<<, key
      @photos ||= []
      @photos << photo_class.new(key, options.merge(:sources => srclist))
    end

    def photo_objs
      @photo_objs ||= []
    end   

    def photos
      @photos ||= photo_objs.map {|obj| photo_class.new obj, options } 
    end   

    delegate :empty?, to: :photos 

    def each &block
      photos.each {|photo| yield photo }
    end    
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rails-gallery-0.3.3 lib/rails-gallery/rgallery/page.rb
rails-gallery-0.3.2 lib/rails-gallery/rgallery/page.rb
rails-gallery-0.3.1 lib/rails-gallery/rgallery/page.rb