Class: Locomotive::Steam::ContentType
- Inherits:
-
Object
- Object
- Locomotive::Steam::ContentType
show all
- Extended by:
- Forwardable
- Includes:
- Models::Entity
- Defined in:
- lib/locomotive/steam/entities/content_type.rb
Instance Attribute Summary
#associations, #attributes, #base_url, #localized_attributes
Instance Method Summary
collapse
#[], #[]=, #_id, #change, #method_missing, #respond_to?, #serialize
#as_json, #to_hash, #to_json
#errors, #valid?
Constructor Details
#initialize(attributes = {}) ⇒ ContentType
Returns a new instance of ContentType.
13
14
15
16
17
18
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 13
def initialize(attributes = {})
super({
order_by: '_position',
order_direction: 'asc'
}.merge(attributes))
end
|
Instance Method Details
#fields ⇒ Object
20
21
22
23
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 20
def fields
self.entries_custom_fields
end
|
#fields_by_name ⇒ Object
25
26
27
28
29
30
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 25
def fields_by_name
@fields_by_name ||= (fields.all.inject({}) do |memo, field|
memo[field.name] = field
memo
end).with_indifferent_access
end
|
#label_field_name ⇒ Object
50
51
52
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 50
def label_field_name
(self[:label_field_name] || fields.first.name).to_sym
end
|
#localized? ⇒ Boolean
37
38
39
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 37
def localized?
!fields.localized_names.blank?
end
|
#localized_names ⇒ Object
32
33
34
35
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 32
def localized_names
fields.localized_names + select_fields.map(&:name)
end
|
#order_by ⇒ Object
54
55
56
57
58
59
60
61
62
63
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 54
def order_by
name = self[:order_by] == 'manually' ? '_position' : self[:order_by]
if field = fields.find(name)
name = field.name
end
{ name.to_sym => self.order_direction.to_s }
end
|
#persisted_field_names ⇒ Object
41
42
43
44
45
46
47
48
|
# File 'lib/locomotive/steam/entities/content_type.rb', line 41
def persisted_field_names
[].tap do |names|
fields_by_name.each do |name, field|
_name = field.persisted_name
names << _name if _name
end
end
end
|