Sha256: 13a07b016a1de70d0ec9363a67457ede0b5f77e0cf9154658f7b1849af1f49e4

Contents?: true

Size: 1.08 KB

Versions: 91

Compression:

Stored size: 1.08 KB

Contents

# encoding: utf-8
module Mongoid
  module Relations
    module Builders
      module Embedded
        class Many < Builder

          # Builds the document out of the attributes using the provided
          # metadata on the relation. 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 [ String ] type Not used in this context.
          #
          # @return [ Array<Document ] The documents.
          def build(type = 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))
              else
                docs.push(Factory.build(klass, attrs))
              end
            end
            docs
          end
        end
      end
    end
  end
end

Version data entries

91 entries across 86 versions & 7 rubygems

Version Path
mongoid-6.4.8 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.7 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.5 lib/mongoid/relations/builders/embedded/many.rb
mongoid-5.4.1 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.4 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.2 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.1 lib/mongoid/relations/builders/embedded/many.rb
mongoid-5.4.0 lib/mongoid/relations/builders/embedded/many.rb
tdiary-5.0.8 vendor/bundle/gems/mongoid-6.4.0/lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.4.0 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.3.0 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.2.1 lib/mongoid/relations/builders/embedded/many.rb
tdiary-5.0.5 vendor/bundle/gems/mongoid-6.2.0/lib/mongoid/relations/builders/embedded/many.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/mongoid-6.1.0/lib/mongoid/relations/builders/embedded/many.rb
tdiary-5.0.5 vendor/bundle/gems/mongoid-6.1.0/lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.2.0 lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.1.1 lib/mongoid/relations/builders/embedded/many.rb
mongoid-5.2.1 lib/mongoid/relations/builders/embedded/many.rb
tdiary-5.0.4 vendor/bundle/gems/mongoid-6.1.0/lib/mongoid/relations/builders/embedded/many.rb
mongoid-6.1.0 lib/mongoid/relations/builders/embedded/many.rb