Sha256: 59ac4d083289154458c40b2078cba58174178e689bb3198e651e4a2f2349d8c0

Contents?: true

Size: 1.09 KB

Versions: 13

Compression:

Stored size: 1.09 KB

Contents

require 'active_support'

class LHS::Collection < LHS::Proxy

  module InternalCollection
    extend ActiveSupport::Concern

    # The internal collection class that includes enumerable
    # and insures to return LHS::Items in case of iterating items
    class Collection
      include Enumerable

      attr_accessor :raw
      delegate :length, :size, :first, :last, :sample, :[], :present?, :blank?, :empty?,
               :<<, :push, :compact, to: :raw

      def initialize(raw, parent, record)
        self.raw = raw
        @parent = parent
        @record = record
      end

      def to_ary
        map { |item| item }
      end

      def each(&_block)
        raw.each do |item|
          if item.is_a? Hash
            yield cast_item(item)
          else
            yield item
          end
        end
      end

      private

      def cast_item(item)
        record_by_href = LHS::Record.for_url(item[:href]) if item[:href]
        data = LHS::Data.new(item, @parent, @record)
        return (record_by_href || @record).new(data) if record_by_href || @record
        data
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
lhs-16.1.5 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.1.4 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.1.3 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.1.2 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.1.1 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.1.0 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.0.1 lib/lhs/concerns/collection/internal_collection.rb
lhs-16.0.0 lib/lhs/concerns/collection/internal_collection.rb
lhs-15.7.0 lib/lhs/concerns/collection/internal_collection.rb
lhs-15.6.1 lib/lhs/concerns/collection/internal_collection.rb
lhs-15.6.0 lib/lhs/concerns/collection/internal_collection.rb
lhs-15.5.1 lib/lhs/concerns/collection/internal_collection.rb
lhs-15.5.0 lib/lhs/concerns/collection/internal_collection.rb