mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
31 lines
1.3 KiB
Text
31 lines
1.3 KiB
Text
<% if can_view_or_download_result_assets(result.my_module) %>
|
|
<% if result.asset.file.processing? %>
|
|
<span data-status='asset-loading'
|
|
data-present-url='<%= file_present_asset_path(result.asset) %>'>
|
|
<%= image_tag 'medium/processing.gif' %>
|
|
</span>
|
|
<% else %>
|
|
<% if result.asset.is_image? %>
|
|
<%= link_to download_asset_path(result.asset),
|
|
class: 'image-preview-link',
|
|
id: "modal_link#{result.asset.id}",
|
|
data: {no_turbolink: true,
|
|
description: "#{truncate(result.name, length: Constants::FILENAME_TRUNCATION_LENGTH)}"} do %>
|
|
<%= image_tag result.asset.url(:medium), data: {'preview-url': large_image_url_asset_path(result.asset)} %>
|
|
<p><%= truncate(result.asset.file_file_name,
|
|
length: Constants::FILENAME_TRUNCATION_LENGTH) %></p>
|
|
<% end %>
|
|
<% else %>
|
|
<%= link_to download_asset_path(result.asset), data: {no_turbolink: true} do %>
|
|
<% if wopi_file?(result.asset) %>
|
|
<%= wopi_asset_file_name(result.asset) %>
|
|
<% else %>
|
|
<p><%= truncate(result.asset.file_file_name,
|
|
length: Constants::FILENAME_TRUNCATION_LENGTH) %></p>
|
|
<% end %>
|
|
<% end %>
|
|
<%= wopi_result_view_file_button(result) %>
|
|
<%= wopi_result_edit_file_button(result) %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|