2016-07-21 19:11:15 +08:00
|
|
|
<% @asset_results.each do |asset| %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<h5>
|
|
|
|
<% if asset.is_image? %>
|
|
|
|
<span class="glyphicon glyphicon-picture"></span>
|
|
|
|
<% else %>
|
2016-10-05 01:04:08 +08:00
|
|
|
<% if wopi_file?(asset) %>
|
|
|
|
<%= file_extension_icon(asset) %>
|
|
|
|
<% else %>
|
|
|
|
<span class="glyphicon glyphicon-file"></span>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= render partial: "search/results/partials/asset_text.html.erb", locals: { asset: asset, query: search_query } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</h5>
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
<!-- Display asset contents if it exists -->
|
|
|
|
<% if asset.headline.present? && !asset.headline.empty? && asset.headline.include?("<mark>") %>
|
|
|
|
<blockquote class="blockquote-search">
|
2017-05-05 22:41:23 +08:00
|
|
|
<p><%= highlight(sanitize_input(asset.headline), search_query.strip.split(/\s+/)) %></p>
|
2016-07-21 19:11:15 +08:00
|
|
|
</blockquote>
|
|
|
|
<% end %>
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_at" %>
|
|
|
|
<%=l asset.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if asset.step %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.step" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/step_text.html.erb",
|
|
|
|
locals: { step: asset.step, target: nil } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<% if asset.step.protocol.in_module? %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.module" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
|
|
locals: { my_module: asset.step.protocol.my_module } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
2016-09-13 23:13:58 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.experiment" %>
|
|
|
|
<%= render partial: "search/results/partials/experiment_text.html.erb",
|
|
|
|
locals: { experiment: asset.step.protocol.my_module.experiment } %>
|
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-21 19:11:15 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
2016-09-05 17:40:49 +08:00
|
|
|
locals: { project: asset.step.protocol.my_module.experiment.project, link_to_page: :show } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% else %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.protocol" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/protocol_text.html.erb",
|
|
|
|
locals: { protocol: asset.step.protocol, query: search_query } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% end %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<br>
|
|
|
|
<span>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%=t "search.index.team" %>
|
|
|
|
<%= render partial: "search/results/partials/team_text.html.erb",
|
|
|
|
locals: { team: asset.step.protocol.team } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% elsif asset.result %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.result" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/result_text.html.erb",
|
|
|
|
locals: { result: asset.result, target: nil } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.module" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
|
|
locals: { my_module: asset.result.my_module } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-26 18:12:43 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.experiment" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/experiment_text.html.erb",
|
|
|
|
locals: { experiment: asset.result.my_module.experiment } %>
|
2016-07-26 18:12:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
2016-02-12 23:52:43 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
2016-09-13 23:13:58 +08:00
|
|
|
locals: { project: asset.result.my_module.experiment.project, link_to_page: :show } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%=t "search.index.team" %>
|
|
|
|
<%= render partial: "search/results/partials/team_text.html.erb",
|
|
|
|
locals: { team: asset.result.my_module.experiment.project.team } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<% end %>
|