Class: Locomotive::Steam::ContentType

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Includes:
Models::Entity
Defined in:
lib/locomotive/steam/entities/content_type.rb

Instance Attribute Summary

Attributes included from Models::Entity

#associations, #attributes, #base_url, #localized_attributes

Instance Method Summary collapse

Methods included from Models::Entity

#[], #[]=, #_id, #change, #method_missing, #respond_to?, #serialize

Methods included from Models::Concerns::ToJson

#as_json, #to_hash, #to_json

Methods included from Models::Concerns::Validation

#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

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Locomotive::Steam::Models::Entity

Instance Method Details

#fieldsObject



20
21
22
23
# File 'lib/locomotive/steam/entities/content_type.rb', line 20

def fields
  # Note: this returns an instance of the ContentTypeFieldRepository class
  self.entries_custom_fields
end

#fields_by_nameObject



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_nameObject



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

Returns:

  • (Boolean)


37
38
39
# File 'lib/locomotive/steam/entities/content_type.rb', line 37

def localized?
  !fields.localized_names.blank?
end

#localized_namesObject



32
33
34
35
# File 'lib/locomotive/steam/entities/content_type.rb', line 32

def localized_names
  # FIXME: select_fields ALWAYS returns I18nField even if the site is not localized
  fields.localized_names + select_fields.map(&:name)
end

#order_byObject



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]

  # check if name is an id of field
  if field = fields.find(name)
    name = field.name
  end

  { name.to_sym => self.order_direction.to_s }
end

#persisted_field_namesObject



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