Class: MetadataPresenter::Page
- Inherits:
-
Metadata
show all
- Includes:
- ActiveModel::Validations
- Defined in:
- app/models/metadata_presenter/page.rb
Constant Summary
collapse
- NOT_EDITABLE =
i[
_uuid
_id
_type
add_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
Instance Method Details
#all_components ⇒ Object
25
26
27
|
# File 'app/models/metadata_presenter/page.rb', line 25
def all_components
[components, ].flatten.compact
end
|
#components ⇒ Object
29
30
31
|
# File 'app/models/metadata_presenter/page.rb', line 29
def components
to_components(metadata.components, collection: :components)
end
|
#content_components ⇒ Object
41
42
43
|
# File 'app/models/metadata_presenter/page.rb', line 41
def content_components
all_components.select(&:content?)
end
|
#editable_attributes ⇒ Object
17
18
19
|
# File 'app/models/metadata_presenter/page.rb', line 17
def editable_attributes
to_h.reject { |k, _| k.in?(NOT_EDITABLE) }
end
|
33
34
35
|
# File 'app/models/metadata_presenter/page.rb', line 33
def
to_components(metadata., 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
|
37
38
39
|
# File 'app/models/metadata_presenter/page.rb', line 37
def input_components
all_components.reject(&:content?)
end
|
#question_page? ⇒ Boolean
77
78
79
|
# File 'app/models/metadata_presenter/page.rb', line 77
def question_page?
type.in?(QUESTION_PAGES)
end
|
#standalone? ⇒ 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_components ⇒ Object
65
66
67
|
# File 'app/models/metadata_presenter/page.rb', line 65
def supported_content_components
supported_components(raw_type)[:content]
end
|
61
62
63
|
# File 'app/models/metadata_presenter/page.rb', line 61
def supported_input_components
supported_components(raw_type)[:input]
end
|
#template ⇒ Object
57
58
59
|
# File 'app/models/metadata_presenter/page.rb', line 57
def template
"metadata_presenter/#{type.gsub('.', '/')}"
end
|
#title ⇒ Object
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_path ⇒ Object
53
54
55
|
# File 'app/models/metadata_presenter/page.rb', line 53
def to_partial_path
type.gsub('.', '/')
end
|
#upload_components ⇒ Object
69
70
71
|
# File 'app/models/metadata_presenter/page.rb', line 69
def upload_components
components.select(&:upload?)
end
|