mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
80 lines
2.6 KiB
Ruby
80 lines
2.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawMyModule
|
|
def draw_my_module(subject, experiment)
|
|
color = @color
|
|
link_style = @link_style
|
|
scinote_url = @scinote_url
|
|
my_module = experiment.my_modules.find_by(id: subject.my_module_id)
|
|
tags = my_module.tags
|
|
return unless my_module
|
|
|
|
@docx.h3 my_module.name, italic: false, size: Constants::REPORT_DOCX_MY_MODULE_TITLE_SIZE
|
|
@docx.p do
|
|
text I18n.t('projects.reports.elements.module.user_time',
|
|
timestamp: I18n.l(my_module.created_at, format: :full)), color: color[:gray]
|
|
if my_module.archived?
|
|
text ' | '
|
|
text I18n.t('search.index.archived'), color: color[:gray]
|
|
end
|
|
text ' | '
|
|
link I18n.t('projects.reports.elements.all.scinote_link'),
|
|
scinote_url + Rails.application.routes.url_helpers.protocols_my_module_path(my_module),
|
|
link_style
|
|
end
|
|
|
|
@docx.p do
|
|
if my_module.started_on.present?
|
|
text I18n.t('projects.reports.elements.module.started_on',
|
|
started_on: I18n.l(my_module.started_on, format: :full))
|
|
else
|
|
text I18n.t('projects.reports.elements.module.no_due_date')
|
|
end
|
|
end
|
|
|
|
@docx.p do
|
|
if my_module.due_date.present?
|
|
text I18n.t('projects.reports.elements.module.due_date',
|
|
due_date: I18n.l(my_module.due_date, format: :full))
|
|
else
|
|
text I18n.t('projects.reports.elements.module.no_due_date')
|
|
end
|
|
end
|
|
|
|
status = my_module.my_module_status
|
|
@docx.p do
|
|
text I18n.t('projects.reports.elements.module.status')
|
|
text ' '
|
|
text "[#{status.name}]", color: status.color.delete('#')
|
|
if my_module.completed?
|
|
text " #{I18n.t('my_modules.states.completed')} #{I18n.l(my_module.completed_on, format: :full)}"
|
|
end
|
|
end
|
|
|
|
@docx.p do
|
|
text I18n.t('projects.reports.elements.module.tags_header')
|
|
if tags.any?
|
|
my_module.tags.each do |tag|
|
|
text ' '
|
|
text "[#{tag.name}]", color: tag.color.delete('#')
|
|
end
|
|
else
|
|
text ' '
|
|
text I18n.t('projects.reports.elements.module.no_tags')
|
|
end
|
|
end
|
|
|
|
if my_module.description.present?
|
|
html = custom_auto_link(my_module.description, team: @report_team)
|
|
Reports::HtmlToWordConverter.new(@docx, { scinote_url: scinote_url,
|
|
link_style: link_style }).html_to_word_converter(html)
|
|
else
|
|
@docx.p I18n.t('projects.reports.elements.module.no_description')
|
|
end
|
|
|
|
@docx.p
|
|
subject.children.each do |child|
|
|
public_send("draw_#{child.type_of}", child, my_module)
|
|
end
|
|
end
|
|
end
|