Module: ArDocStore::Model::InstanceMethods

Defined in:
lib/ar_doc_store/model.rb

Instance Method Summary collapse

Instance Method Details

#assign_json_dataObject



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/ar_doc_store/model.rb', line 15

def assign_json_data
  json_data = respond_to?(json_column) && self[json_column]
  json_data && json_attributes.keys.each do |key|
    next unless json_data.key?(key)
    self[key] = json_data[key] if respond_to?("#{key}=")
    # send :attribute=, key, json_data[key] if self.respond_to?("#{key}=")
    self[key].parent = self if self[key].respond_to?(:parent=)
    self[key].embedded_as = key if self[key].respond_to?(:embedded_as)
    mutations_from_database.forget_change(key) unless new_record?
  end
end

#mark_embeds_as_persistedObject



33
34
35
36
37
38
39
40
# File 'lib/ar_doc_store/model.rb', line 33

def mark_embeds_as_persisted
  json_attributes.values.each do |value|
    if value.respond_to?(:embedded?) && value.embedded? && respond_to?(value.attribute)
      val = public_send(value.attribute)
      val.persist if val && val.respond_to?(:persist)
    end
  end
end

#save_json_dataObject



27
28
29
30
31
# File 'lib/ar_doc_store/model.rb', line 27

def save_json_data
  json_attributes.each do |key, value|
    write_store_attribute(json_column, key, read_attribute(key)) if changes.key?(key)
  end
end