scinote-web/app/views/search/results/_protocols.html.erb
2023-06-08 10:33:37 +04:00

129 lines
4.4 KiB
Text

<% results.each do |protocol| %>
<% has_description = protocol.description.present? %>
<% has_authors = protocol.authors.present? %>
<% has_keywords = protocol.in_repository? && protocol.protocol_keywords.count > 0 %>
<h5>
<span class="sn-icon sn-icon-protocols-templates"></span>
<%= render partial: "search/results/partials/protocol_text.html.erb", locals: { protocol: protocol, query: search_query } %>
</h5>
<% if has_description || has_authors || has_keywords %>
<p>
<span>
<%=t 'search.object_id' %>
<%= highlight protocol.code, @search_query.strip.split(/\s+/) %>
</span>
<br>
<% if has_description %>
<span>
<%= t('search.index.description') %>
<%= highlight custom_auto_link(protocol.tinymce_render(:description),
simple_format: false,
tags: %w(img),
team: current_team), search_query.strip.split(/\s+/) %>
</span>
<% if has_authors || has_keywords %>
<br>
<% end %>
<% end %>
<% if has_authors %>
<span>
<%= t('search.index.authors') %>
<%= highlight protocol.authors, search_query.strip.split(/\s+/) %>
</span>
<% if has_keywords %>
<br>
<% end %>
<% end %>
<% if has_keywords %>
<span>
<%= t('search.index.keywords') %>
<% protocol.protocol_keywords.each_with_index do |kw, i| %>
<%= highlight kw.name, search_query.strip.split(/\s+/) %>
<% if i < protocol.protocol_keywords.count - 1 %>
,&nbsp;
<% end %>
<% end %>
</span>
<% end %>
</p>
<% end %>
<p>
<span>
<%= t('search.index.created_at') %>
<%=l protocol.created_at, format: :full %>
</span>
<br>
<% if protocol.in_repository? && protocol.linked_modules.present? %>
<span>
<% if protocol_linked_modules = protocol.linked_modules %>
<%= t('search.index.modules') %>
<% protocol_linked_modules.each_with_index do |mod, i| %>
<%= render partial: "search/results/partials/my_module_text.html.erb",
locals: { my_module: mod } %>
<% if i != (protocol_linked_modules.size - 1) %>
,&nbsp;
<% end %>
<% end %>
<% end %>
</span>
<br>
<span>
<% if protocol_linked_experiments = protocol.linked_experiments(protocol_linked_modules) %>
<%= t('search.index.experiment') %>
<% protocol_linked_experiments.each_with_index do |exp, i| %>
<%= render partial: "search/results/partials/experiment_text.html.erb",
locals: { experiment: exp } %>
<% if i != (protocol_linked_experiments.size - 1) %>
,&nbsp;
<% end %>
<% end %>
<% end %>
</span>
<br>
<span>
<% if protocol_linked_projects = protocol.linked_projects(protocol_linked_experiments) %>
<%= t('search.index.project') %>
<% protocol_linked_projects.each_with_index do |pro, i| %>
<%= render partial: "search/results/partials/project_text.html.erb",
locals: { project: pro, link_to_page: :show } %>
<% if i != (protocol_linked_projects.size - 1) %>
,&nbsp;
<% end %>
<% end %>
<% end %>
</span>
<% end %>
<br>
<% if protocol.in_module? %>
<span>
<%= t('search.index.module') %>
<%= render partial: "search/results/partials/my_module_text.html.erb",
locals: { my_module: protocol.my_module } %>
</span>
<br>
<span>
<%= t('search.index.experiment') %>
<%= render partial: "search/results/partials/experiment_text.html.erb",
locals: { experiment: protocol.my_module.experiment } %>
</span>
<br>
<span>
<%= t('search.index.project') %>
<%= render partial: "search/results/partials/project_text.html.erb",
locals: { project: protocol.my_module.experiment.project, link_to_page: :show } %>
</span>
<br>
<% end %>
<span>
<%= t('search.index.team') %>
<%= render partial: "search/results/partials/team_text.html.erb",
locals: { team: protocol.team } %>
</span>
</p>
<hr>
<% end %>