Sha256: 3f2dddc9deae0a035f19663ccb63fff50a257dd5d23be3881939d690825ff331

Contents?: true

Size: 1.58 KB

Versions: 8

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

module Mongoid
  module Association
    module Embedded
      class EmbedsMany

        # Builder class for embeds_many associations.
        module Buildable
          include Threaded::Lifecycle

          # Builds the document out of the attributes using the provided
          # association metadata. Instantiates through the factory in order
          # to make sure subclasses and allocation are used if fitting. This
          # case will return many documents.
          #
          # @example Build the documents.
          #   Builder.new(meta, attrs).build
          #
          # @param [ Object ] base The base object.
          # @param [ Object ] object The object to use to build the association.
          # @param [ String ] type Not used in this context.
          # @param [ Hash ] selected_fields Fields which were retrieved via
          #   #only. If selected_fields are specified, fields not listed in it
          #   will not be accessible in the built documents.
          #
          # @return [ Array<Document ] The documents.
          def build(base, object, type = nil, selected_fields = nil)
            return [] if object.blank?
            return object if object.first.is_a?(Document)
            docs = []
            object.each do |attrs|
              if _loading? && base.persisted?
                docs.push(Factory.from_db(klass, attrs, nil, selected_fields))
              else
                docs.push(Factory.build(klass, attrs))
              end
            end
            docs
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mongoid-7.5.4 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.5.3 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.5.2 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.5.1 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.4.3 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.5.0 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.4.1 lib/mongoid/association/embedded/embeds_many/buildable.rb
mongoid-7.4.0 lib/mongoid/association/embedded/embeds_many/buildable.rb