scinote-web/app/views/reports/elements/_my_module_element.html.erb

113 lines
4.7 KiB
Plaintext
Raw Normal View History

2021-06-10 16:59:34 +08:00
<% my_module ||= report_element.my_module %>
2016-02-12 23:52:43 +08:00
<% timestamp = my_module.created_at %>
<% export_all = defined?(export_all) && export_all %>
2021-06-10 16:59:34 +08:00
<div class="report-element report-module-element">
2016-02-12 23:52:43 +08:00
<div class="report-element-header">
<div class="row">
<div class="pull-left user-time">
2021-06-10 16:59:34 +08:00
<%= t('projects.reports.elements.module.user_time', timestamp: l(timestamp, format: :full)) %>
2020-11-17 20:54:13 +08:00
<b><%= link_to t('projects.reports.elements.all.scinote_link'), protocols_my_module_url(my_module), target: :_blank %></b>
2016-02-12 23:52:43 +08:00
</div>
</div>
</div>
<div class="report-element-body">
<div class="row">
<div class="pull-left module-name">
<h4>
<span class="fas fa-credit-card"></span>
2021-06-10 16:59:34 +08:00
<%= my_module.name %>
<% if my_module.archived? %>
2021-06-10 16:59:34 +08:00
<span class="label label-warning"><%= t('search.index.archived') %></span>
<% end %>
</h4>
2016-02-12 23:52:43 +08:00
</div>
</div>
2020-07-23 20:24:30 +08:00
<p class="module-start-date">
<% if my_module.started_on.present? %>
<%= t('projects.reports.elements.module.started_on', started_on: l(my_module.started_on, format: :full)) %>
<% else %>
2021-06-10 16:59:34 +08:00
<em><%= t('projects.reports.elements.module.no_start_date') %></em>
2020-07-23 20:24:30 +08:00
<% end %>
</p>
<p class="module-due-date">
<% if my_module.due_date.present? %>
2021-06-10 16:59:34 +08:00
<%= t('projects.reports.elements.module.due_date', due_date: l(my_module.due_date, format: :full)) %>
2020-07-23 20:24:30 +08:00
<% else %>
2021-06-10 16:59:34 +08:00
<em><%= t('projects.reports.elements.module.no_due_date') %></em>
2020-07-23 20:24:30 +08:00
<% end %>
</p>
<p class="module-status">
<% status = my_module.my_module_status %>
2021-06-10 16:59:34 +08:00
<%= t('projects.reports.elements.module.status') %>
<span class="status-block" style="background: <%= status.color %>">
<%= status.name %>
</span>
2020-09-09 16:46:21 +08:00
<% if my_module.completed? %>
<span style="margin-left: 10px;">
2021-06-10 16:59:34 +08:00
<%= t('my_modules.states.completed') %>
2020-09-09 16:46:21 +08:00
<%= l(my_module.completed_on, format: :full) %>
</span>
<% end %>
2020-07-23 20:24:30 +08:00
</p>
2016-02-12 23:52:43 +08:00
<div class="row module-tags">
<div class="pull-left">
2021-06-10 16:59:34 +08:00
<%= t('projects.reports.elements.module.tags_header') %>
2016-02-12 23:52:43 +08:00
</div>
2021-06-10 16:59:34 +08:00
<% if my_module.tags.present? %>
2016-02-12 23:52:43 +08:00
<% my_module.tags.each do |tag| %>
<div class="pull-left module-tag" style="background-color: <%= tag.color %>;">
<%= tag.name %>
</div>
<% end %>
<% else %>
<div class="pull-left module-no-tag">
2021-06-10 16:59:34 +08:00
<em><%= t('projects.reports.elements.module.no_tags') %></em>
2016-02-12 23:52:43 +08:00
</div>
<% end %>
</div>
2020-07-23 20:24:30 +08:00
<div class="row">
<div class="col-xs-12">
<% if my_module.description.present? %>
<%= custom_auto_link(my_module.prepare_for_report(:description, export_all),
2020-07-23 20:24:30 +08:00
team: current_team,
simple_format: false,
base64_encoded_imgs: export_all) %>
2020-07-23 20:24:30 +08:00
<% else %>
2021-06-10 16:59:34 +08:00
<em><%= t('projects.reports.elements.module.no_description') %></em>
2020-07-23 20:24:30 +08:00
<% end %>
</div>
</div>
2016-02-12 23:52:43 +08:00
</div>
<div class="report-element-children">
<% if @settings.dig('task', 'protocol', 'description') %>
<%= render partial: 'reports/elements/my_module_protocol_element.html.erb', locals: { protocol: my_module.protocol } %>
<% end %>
<% filter_steps_for_report(my_module.protocol.steps, @settings).order(:position).each do |step| %>
<%= render partial: 'reports/elements/my_module_step_element.html.erb', locals: { step: step, export_all: export_all } %>
<% end %>
<% order_results_for_report(my_module.results, @settings.dig('task', 'result_order')).each do |result| %>
<% if result.is_asset && @settings.dig('task', 'file_results') %>
<%= render partial: 'reports/elements/my_module_result_asset_element.html.erb', locals: { result: result, report: report, export_all: export_all } %>
<% elsif result.is_table && @settings.dig('task', 'table_results') %>
<%= render partial: 'reports/elements/my_module_result_table_element.html.erb', locals: { result: result, export_all: export_all } %>
<% elsif result.is_text && @settings.dig('task', 'text_results') %>
<%= render partial: 'reports/elements/my_module_result_text_element.html.erb', locals: { result: result, export_all: export_all } %>
<% end %>
<% end %>
</div>
<% if defined?(children) %>
<div class="report-element-children">
<%= children %>
</div>
<% end %>
<% if @settings.dig('task', 'activities') %>
<div class="report-element-children">
<%= render partial: 'reports/elements/my_module_activity_element.html.erb', locals: { my_module: my_module, export_all: export_all } %>
</div>
<% end %>
</div>