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
26
# File 'lib/ar_doc_store/model.rb', line 15

def assign_json_data
  json_data = respond_to?(json_column) && self[json_column]
  return if json_data.blank?

  json_attributes.keys.each do |key|
    next unless json_data.key?(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



36
37
38
39
40
41
42
43
# File 'lib/ar_doc_store/model.rb', line 36

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



28
29
30
31
32
33
34
# File 'lib/ar_doc_store/model.rb', line 28

def save_json_data
  json_attributes.each do |key, value|
    next unless changes.key?(key)

    write_store_attribute json_column, key, read_attribute(key)
  end
end