Class: Hyrax::WorkShowPresenter
Instance Attribute Summary collapse
Instance Method Summary
collapse
#attribute_to_html, #display_microdata?, #microdata_type_to_html, #permission_badge, #permission_badge_class
Methods included from ModelProxy
#persisted?, #to_model
Constructor Details
#initialize(solr_document, current_ability, request = nil) ⇒ WorkShowPresenter
Returns a new instance of WorkShowPresenter.
29
30
31
32
33
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 29
def initialize(solr_document, current_ability, request = nil)
@solr_document = Hyrax::SolrDocument::OrderedMembers.decorate(solr_document)
@current_ability = current_ability
@request = request
end
|
Instance Attribute Details
#current_ability ⇒ Object
Returns the value of attribute current_ability.
11
12
13
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 11
def current_ability
@current_ability
end
|
#member_presenter_factory=(value) ⇒ Object
Sets the attribute member_presenter_factory
10
11
12
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 10
def member_presenter_factory=(value)
@member_presenter_factory = value
end
|
#request ⇒ Object
Returns the value of attribute request.
11
12
13
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 11
def request
@request
end
|
#solr_document ⇒ Object
Returns the value of attribute solr_document.
11
12
13
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 11
def solr_document
@solr_document
end
|
Instance Method Details
#date_modified ⇒ Object
111
112
113
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 111
def date_modified
solr_document.date_modified.try(:to_formatted_s, :standard)
end
|
#date_uploaded ⇒ Object
115
116
117
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 115
def date_uploaded
solr_document.date_uploaded.try(:to_formatted_s, :standard)
end
|
#display_feature_link? ⇒ Boolean
161
162
163
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 161
def display_feature_link?
work_featurable? && FeaturedWork.can_create_another? && !featured?
end
|
#display_unfeature_link? ⇒ Boolean
165
166
167
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 165
def display_unfeature_link?
work_featurable? && featured?
end
|
#download_url ⇒ String
Returns a download URL, if work has representative media, or a blank string.
58
59
60
61
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 58
def download_url
return '' if representative_presenter.nil?
Hyrax::Engine.routes.url_helpers.download_url(representative_presenter, host: request.host)
end
|
#editor? ⇒ Boolean
135
136
137
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 135
def editor?
current_ability.can?(:edit, solr_document)
end
|
#export_as_jsonld ⇒ Object
127
128
129
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 127
def export_as_jsonld
graph.dump(:jsonld, standard_prefixes: true)
end
|
#export_as_nt ⇒ Object
123
124
125
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 123
def export_as_nt
graph.dump(:ntriples)
end
|
#export_as_ttl ⇒ Object
131
132
133
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 131
def export_as_ttl
graph.dump(:ttl)
end
|
#grouped_presenters(filtered_by: nil, except: nil) ⇒ Array
Returns presenters grouped by model name, used to show the parents of this object.
148
149
150
151
152
153
154
155
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 148
def grouped_presenters(filtered_by: nil, except: nil)
grouped = member_of_collection_presenters.group_by(&:model_name).transform_keys { |key| key.to_s.underscore }
grouped.select! { |obj| obj.downcase == filtered_by } unless filtered_by.nil?
grouped.except!(*except) unless except.nil?
grouped
end
|
#iiif_viewer ⇒ Symbol
Returns the name of the IIIF viewer partial to render.
88
89
90
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 88
def iiif_viewer
:universal_viewer
end
|
#iiif_viewer? ⇒ Boolean
Also known as:
universal_viewer?
Returns render a IIIF viewer.
64
65
66
67
68
69
70
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 64
def iiif_viewer?
representative_id.present? &&
representative_presenter.present? &&
representative_presenter.image? &&
Hyrax.config.iiif_image_server? &&
members_include_viewable_image?
end
|
#inspect_work ⇒ Object
53
54
55
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 53
def inspect_work
@inspect_workflow ||= InspectWorkPresenter.new(solr_document, current_ability)
end
|
#link_name ⇒ Object
119
120
121
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 119
def link_name
current_ability.can?(:read, id) ? to_s : 'Private'
end
|
#list_of_item_ids_to_display ⇒ Array
Returns list to display with Kaminari pagination.
180
181
182
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 180
def list_of_item_ids_to_display
paginated_item_list(page_array: authorized_item_ids)
end
|
IIIF metadata for inclusion in the manifest
Called by the `iiif_manifest` gem to add metadata
213
214
215
216
217
218
219
220
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 213
def manifest_metadata
Hyrax.config.iiif_metadata_fields.each_with_object([]) do |field, metadata|
metadata << {
'label' => I18n.t("simple_form.labels.defaults.#{field}"),
'value' => Array.wrap(send(field).map { |f| Loofah.fragment(f.to_s).scrub!(:whitewash).to_s })
}
end
end
|
#manifest_url ⇒ Object
195
196
197
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 195
def manifest_url
manifest_helper.polymorphic_url([:manifest, self])
end
|
#member_of_collection_presenters ⇒ Array<CollectionPresenter>
Get presenters for the collections this work is a member of via the member_of_collections association.
105
106
107
108
109
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 105
def member_of_collection_presenters
PresenterFactory.build_for(ids: member_of_authorized_parent_collections,
presenter_class: collection_presenter_class,
presenter_args: presenter_factory_arguments)
end
|
#member_presenters_for(an_array_of_ids) ⇒ Array<presenter_class>
Returns presenters for the array of ids (not filtered by class).
186
187
188
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 186
def member_presenters_for(an_array_of_ids)
member_presenters(an_array_of_ids)
end
|
#model ⇒ Object
173
174
175
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 173
def model
solr_document.to_model
end
|
#page_title ⇒ Object
35
36
37
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 35
def page_title
"#{human_readable_type} | #{title.first} | ID: #{id} | #{I18n.t('hyrax.product_name')}"
end
|
#presenter_types ⇒ Object
#representative_presenter ⇒ Object
Returns FileSetPresenter presenter for the representative FileSets.
93
94
95
96
97
98
99
100
101
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 93
def representative_presenter
return nil if representative_id.blank?
@representative_presenter ||=
begin
result = member_presenters_for([representative_id]).first
return nil if result.try(:id) == id
result.try(:representative_presenter) || result
end
end
|
#sequence_rendering ⇒ Array
IIIF rendering linking property for inclusion in the manifest
Called by the `iiif_manifest` gem to add a 'rendering' (eg. a link a download for the resource)
203
204
205
206
207
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 203
def sequence_rendering
solr_document.rendering_ids.each_with_object([]) do |file_set_id, renderings|
renderings << manifest_helper.build_rendering(file_set_id)
end.flatten
end
|
#show_deposit_for?(collections:) ⇒ Boolean
determine if the user can add this work to a collection
225
226
227
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 225
def show_deposit_for?(collections:)
collections.present? || current_ability.can?(:create_any, ::Collection)
end
|
#stats_path ⇒ Object
169
170
171
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 169
def stats_path
Hyrax::Engine.routes.url_helpers.stats_work_path(self, locale: I18n.locale)
end
|
#total_pages ⇒ Integer
Returns total number of pages of viewable items.
191
192
193
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 191
def total_pages
(total_items.to_f / rows_from_params.to_f).ceil
end
|
#valid_child_concerns ⇒ Array<Class>
231
232
233
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 231
def valid_child_concerns
Hyrax::ChildTypes.for(parent: solr_document.hydra_model).to_a
end
|
#work_featurable? ⇒ Boolean
157
158
159
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 157
def work_featurable?
user_can_feature_works? && solr_document.public?
end
|
#workflow ⇒ Object
49
50
51
|
# File 'app/presenters/hyrax/work_show_presenter.rb', line 49
def workflow
@workflow ||= WorkflowPresenter.new(solr_document, current_ability)
end
|