Sha256: 9587677286e637cb8c1097b52067342a5be42792601a4fdea268a1602db4c5ab

Contents?: true

Size: 773 Bytes

Versions: 2

Compression:

Stored size: 773 Bytes

Contents

require_relative 'association'

module Alba
  # Representing many association
  class Many < Association
    # Recursively converts objects into an Array of Hashes
    #
    # @param target [Object] the object having an association method
    # @param within [Hash] determines what associations to be serialized. If not set, it serializes all associations.
    # @param params [Hash] user-given Hash for arbitrary data
    # @return [Array<Hash>]
    def to_hash(target, within: nil, params: {})
      @object = target.public_send(@name)
      @object = @condition.call(@object, params) if @condition
      return if @object.nil?

      @resource = constantize(@resource)
      @object.map { |o| @resource.new(o, params: params, within: within).to_hash }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
alba-1.2.0 lib/alba/many.rb
alba-1.1.0 lib/alba/many.rb