Class: Mongoid::Association::Embedded::EmbeddedIn::Proxy

Inherits:
One
  • Object
show all
Defined in:
build/mongoid-8.1/lib/mongoid/association/embedded/embedded_in/proxy.rb

Instance Attribute Summary

Attributes inherited from Proxy

#_association, #_base, #_target

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from One

#__evolve_object_id__, #clear, #in_memory, #respond_to?

Methods inherited from Proxy

apply_ordering, #extend_proxies, #init, #klass, #reset_unloaded, #substitutable

Methods included from Marshalable

#marshal_dump, #marshal_load

Constructor Details

#initialize(base, target, association) ⇒ In

Instantiate a new embedded_in association.

Examples:

Create the new association.

Association::Embedded::EmbeddedIn.new(person, address, association)

Parameters:

  • base (Document)

    The document the association hangs off of.

  • target (Document)

    The target (parent) of the association.

  • association (Association)

    The association metadata.



20
21
22
23
24
25
# File 'build/mongoid-8.1/lib/mongoid/association/embedded/embedded_in/proxy.rb', line 20

def initialize(base, target, association)
  init(base, target, association) do
    characterize_one(_target)
    bind_one
  end
end

Class Method Details

.embedded?true

Returns true if the association is an embedded one. In this case always true.

Examples:

Is this association embedded?

Association::Embedded::EmbeddedIn.embedded?

Returns:

  • (true)

    true.



92
93
94
# File 'build/mongoid-8.1/lib/mongoid/association/embedded/embedded_in/proxy.rb', line 92

def embedded?
  true
end

.path(document) ⇒ Root

Get the path calculator for the supplied document.

Examples:

Get the path calculator.

Proxy.path(document)

Parameters:

  • document (Document)

    The document to calculate on.

Returns:

  • (Root)

    The root atomic path calculator.



104
105
106
# File 'build/mongoid-8.1/lib/mongoid/association/embedded/embedded_in/proxy.rb', line 104

def path(document)
  Mongoid::Atomic::Paths::Root.new(document)
end

Instance Method Details

#substitute(replacement) ⇒ Document | nil

Substitutes the supplied target documents for the existing document in the association.

Examples:

Substitute the new document.

person.name.substitute(new_name)

Parameters:

  • replacement (Document | Hash)

    A document to replace the target.

Returns:

  • (Document | nil)

    The association or nil.



36
37
38
39
40
41
42
43
44
45
46
47
# File 'build/mongoid-8.1/lib/mongoid/association/embedded/embedded_in/proxy.rb', line 36

def substitute(replacement)
  unbind_one
  unless replacement
    _base.delete if persistable?
    return nil
  end
  _base.new_record = true
  replacement = Factory.build(klass, replacement) if replacement.is_a?(::Hash)
  self._target = replacement
  bind_one
  self
end