Class: MetadataPresenter::Page

Inherits:
Metadata
  • Object
show all
Includes:
ActiveModel::Validations
Defined in:
app/models/metadata_presenter/page.rb

Constant Summary collapse

NOT_EDITABLE =
i[
  _uuid
  _id
  _type
  add_component
  add_extra_component
].freeze
QUESTION_PAGES =
%w[page.singlequestion page.multiplequestions].freeze

Instance Attribute Summary

Attributes inherited from Metadata

#metadata

Instance Method Summary collapse

Methods inherited from Metadata

#==, #editor?, #id, #initialize, #method_missing, #respond_to_missing?, #to_json, #type, #uuid

Constructor Details

This class inherits a constructor from MetadataPresenter::Metadata

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class MetadataPresenter::Metadata

Instance Method Details

#all_componentsObject



25
26
27
# File 'app/models/metadata_presenter/page.rb', line 25

def all_components
  [components, extra_components].flatten.compact
end

#componentsObject



29
30
31
# File 'app/models/metadata_presenter/page.rb', line 29

def components
  to_components(.components, collection: :components)
end

#content_componentsObject



41
42
43
# File 'app/models/metadata_presenter/page.rb', line 41

def content_components
  all_components.select(&:content?)
end

#editable_attributesObject



17
18
19
# File 'app/models/metadata_presenter/page.rb', line 17

def editable_attributes
  to_h.reject { |k, _| k.in?(NOT_EDITABLE) }
end

#extra_componentsObject



33
34
35
# File 'app/models/metadata_presenter/page.rb', line 33

def extra_components
  to_components(.extra_components, collection: :extra_components)
end

#find_component_by_uuid(uuid) ⇒ Object



21
22
23
# File 'app/models/metadata_presenter/page.rb', line 21

def find_component_by_uuid(uuid)
  all_components.find { |component| component.uuid == uuid }
end

#input_componentsObject



37
38
39
# File 'app/models/metadata_presenter/page.rb', line 37

def input_components
  all_components.reject(&:content?)
end

#question_page?Boolean

Returns:

  • (Boolean)


77
78
79
# File 'app/models/metadata_presenter/page.rb', line 77

def question_page?
  type.in?(QUESTION_PAGES)
end

#standalone?Boolean

Returns:

  • (Boolean)


73
74
75
# File 'app/models/metadata_presenter/page.rb', line 73

def standalone?
  type == 'page.standalone'
end

#supported_components_by_type(type) ⇒ Object



45
46
47
48
49
50
51
# File 'app/models/metadata_presenter/page.rb', line 45

def supported_components_by_type(type)
  supported = supported_components(raw_type)[type]

  all_components.select do |component|
    supported.include?(component.type)
  end
end

#supported_content_componentsObject



65
66
67
# File 'app/models/metadata_presenter/page.rb', line 65

def supported_content_components
  supported_components(raw_type)[:content]
end

#supported_input_componentsObject



61
62
63
# File 'app/models/metadata_presenter/page.rb', line 61

def supported_input_components
  supported_components(raw_type)[:input]
end

#templateObject



57
58
59
# File 'app/models/metadata_presenter/page.rb', line 57

def template
  "metadata_presenter/#{type.gsub('.', '/')}"
end

#titleObject



81
82
83
84
85
# File 'app/models/metadata_presenter/page.rb', line 81

def title
  return heading if heading?

  components.first.humanised_title
end

#to_partial_pathObject



53
54
55
# File 'app/models/metadata_presenter/page.rb', line 53

def to_partial_path
  type.gsub('.', '/')
end

#upload_componentsObject



69
70
71
# File 'app/models/metadata_presenter/page.rb', line 69

def upload_components
  components.select(&:upload?)
end