Class: NinjaModel::Associations::HasOneAssociation

Inherits:
SingularAssociation show all
Defined in:
lib/ninja_model/associations/has_one_association.rb

Instance Attribute Summary

Attributes inherited from Association

#owner, #reflection, #target

Instance Method Summary collapse

Methods inherited from SingularAssociation

#build, #create, #create!, #reader, #writer

Methods inherited from Association

#association_scope, #initialize, #klass, #load_target, #loaded!, #loaded?, #reload, #reset, #reset_scope, #scoped, #set_inverse_instance, #stale_target?, #target_scope

Constructor Details

This class inherits a constructor from NinjaModel::Associations::Association

Instance Method Details

#delete(method = options[:dependent]) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/ninja_model/associations/has_one_association.rb', line 28

def delete(method = options[:dependent])
  if load_target
    case method
    when :delete
      target.delete
    when :destroy
      target.destroy
    when :nullify
      target.update_attribute(reflection.foreign_key, nil)
    end
  end
end

#replace(record, save = true) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/ninja_model/associations/has_one_association.rb', line 5

def replace(record, save = true)
  raise_on_type_mismatch(record) if record
  load_target

  if target && target != record
    remove_target!(options[:dependent]) unless target.destroyed?
  end

  if record
    set_owner_attributes(record)
    set_inverse_instance(record)

    if owner.persisted? && save && !record.save
      nullify_owner_attributes(record)
      set_owner_attributes(target) if target
      raise RecordNotSaved, "Failed to save the new associated #{reflection.name}."
    end
  end

  self.target = record

end