UNC-Libraries/hy-c

View on GitHub
app/views/hyrax/file_sets/media_display/_office_document.html.erb

Summary

Maintainability
Test Coverage
<%# [hyc-override] https://github.com/samvera/hyrax/tree/hyrax-v4.0.0/app/views/hyrax/file_sets/media_display/_office_document.html.erb %>
<% if display_media_download_link?(file_set: file_set) %>
    <div>
      <h2 class="sr-only"><%= t('hyrax.file_set.show.downloadable_content.heading') %></h2>
      <%= image_tag thumbnail_url(file_set),
                    class: "representative-media",
                    alt: "",
                    role: "presentation" %>
      <%# [hyc-override] Style download link %>
      <%= link_to t('hyrax.file_set.show.downloadable_content.office_link'),
                  hyrax.download_path(file_set),
                  target: :_blank,
                  id: "file_download",
                  class: "btn btn-info",
                  data: { label: file_set.id, work_id: @presenter.id, collection_ids: @presenter.member_of_collection_ids } %>
    </div>
<%# [hyc-override] No thumbnail when not showing download link %>
<%# else %>
    <%# <div> %>
      <%#= image_tag thumbnail_url(file_set),
                    class: "representative-media",
                    alt: "",
                    role: "presentation" %>
    <%# </div> %>
<% end %>