Module: StoreModel::Model

Defined in:
lib/store_model/model.rb

Overview

When included into class configures it to handle JSON column

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#parentObject

Returns the value of attribute parent.



24
25
26
# File 'lib/store_model/model.rb', line 24

def parent
  @parent
end

Class Method Details

.included(base) ⇒ Object

:nodoc:



11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/store_model/model.rb', line 11

def self.included(base) # :nodoc:
  base.include ActiveModel::Model
  base.include ActiveModel::Attributes
  base.include ActiveRecord::AttributeMethods::BeforeTypeCast
  base.include ActiveModel::AttributeMethods
  base.include StoreModel::NestedAttributes

  base.extend StoreModel::Enum
  base.extend StoreModel::TypeBuilders

  base.attribute_method_suffix "?"
end

Instance Method Details

#==(other) ⇒ Boolean Also known as: eql?

Compares two StoreModel::Model instances

Parameters:

Returns:

  • (Boolean)


51
52
53
54
55
# File 'lib/store_model/model.rb', line 51

def ==(other)
  return super unless other.is_a?(self.class)

  attributes.all? { |name, value| value == other.attributes[name] }
end

#[](attr_name) ⇒ Object

Accessing attribute using brackets

Returns:

  • (Object)


61
62
63
# File 'lib/store_model/model.rb', line 61

def [](attr_name)
  @attributes.fetch_value(attr_name.to_s)
end

#[]=(attr_name, value) ⇒ Object

Setting attribute using brackets

Parameters:

  • name (String, Symbol)
  • value (Object)

Returns:

  • (Object)


71
72
73
# File 'lib/store_model/model.rb', line 71

def []=(attr_name, value)
  @attributes.write_from_user(attr_name.to_s, value)
end

#_has_attribute?(attr_name) ⇒ Boolean

Legacy implementation of #has_attribute?

Parameters:

  • attr_name (String)

    name of the attribute

Returns:

  • (Boolean)


139
140
141
# File 'lib/store_model/model.rb', line 139

def _has_attribute?(attr_name)
  attribute_types.key?(attr_name)
end

#as_json(options = {}) ⇒ Hash

Returns a hash representing the model. Some configuration can be passed through options.

Parameters:

  • options (Hash) (defaults to: {})

Returns:

  • (Hash)


34
35
36
37
38
39
40
41
42
43
44
# File 'lib/store_model/model.rb', line 34

def as_json(options = {})
  serialize_unknown_attributes = if options.key?(:serialize_unknown_attributes)
                                   options[:serialize_unknown_attributes]
                                 else
                                   StoreModel.config.serialize_unknown_attributes
                                 end

  result = attributes.with_indifferent_access
  result.merge!(unknown_attributes) if serialize_unknown_attributes
  result.as_json(options)
end

#blank?Boolean

Allows to call :presence validation on the association itself.

Returns:

  • (Boolean)


85
86
87
# File 'lib/store_model/model.rb', line 85

def blank?
  attributes.values.all?(&:blank?)
end

#has_attribute?(attr_name) ⇒ Boolean

Checks if the attribute with a given name is defined

rubocop:disable Naming/PredicateName

Examples:

class Person
  include StoreModel::Model
  attribute :name, :string
  alias_attribute :new_name, :name
end

Person.has_attribute?('name')     # => true
Person.has_attribute?('new_name') # => true
Person.has_attribute?(:age)       # => true
Person.has_attribute?(:nothing)   # => false

Parameters:

  • attr_name (String)

    name of the attribute

Returns:

  • (Boolean)


128
129
130
131
132
# File 'lib/store_model/model.rb', line 128

def has_attribute?(attr_name)
  attr_name = attr_name.to_s
  attr_name = self.class.attribute_aliases[attr_name] || attr_name
  attribute_types.key?(attr_name)
end

#hashInteger

Returns hash for a StoreModel::Model instance based on attributes hash

Returns:

  • (Integer)


78
79
80
# File 'lib/store_model/model.rb', line 78

def hash
  attributes.hash
end

#inspectString

String representation of the object.

Returns:

  • (String)


92
93
94
95
96
# File 'lib/store_model/model.rb', line 92

def inspect
  attribute_string = attributes.map { |name, value| "#{name}: #{value.nil? ? 'nil' : value}" }
                               .join(", ")
  "#<#{self.class.name} #{attribute_string}>"
end

#type_for_attribute(attr_name) ⇒ ActiveModel::Type::Value

Returns the type of the attribute with the given name

Parameters:

  • attr_name (String)

    name of the attribute

Returns:

  • (ActiveModel::Type::Value)


105
106
107
108
# File 'lib/store_model/model.rb', line 105

def type_for_attribute(attr_name)
  attr_name = attr_name.to_s
  attribute_types[attr_name]
end

#unknown_attributesHash

Contains a hash of attributes which are not defined but exist in the underlying JSON data

Returns:

  • (Hash)


149
150
151
# File 'lib/store_model/model.rb', line 149

def unknown_attributes
  @unknown_attributes ||= {}
end