module ArDocStore::Model::InstanceMethods

Public Instance Methods

assign_json_data() click to toggle source
# File lib/ar_doc_store/model.rb, line 16
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
ensure_json_data_saved() click to toggle source
# File lib/ar_doc_store/model.rb, line 35
def ensure_json_data_saved
  save_json_data unless @json_data_saved
  @json_data_saved = nil
end
mark_embeds_as_persisted() click to toggle source
# File lib/ar_doc_store/model.rb, line 40
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_data() click to toggle source
# File lib/ar_doc_store/model.rb, line 28
def save_json_data
  json_attributes.each do |key, value|
    write_store_attribute(json_column, key, read_attribute(key)) if changes.key?(key)
  end
  @json_data_saved = true
end