mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
53 lines
1.8 KiB
Ruby
53 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawStep
|
|
def draw_step(step)
|
|
color = @color
|
|
step_type_str = step.completed ? 'completed' : 'uncompleted'
|
|
user = step.completed? ? step.last_modified_by : step.user
|
|
timestamp = step.completed ? step.completed_on : step.created_at
|
|
@docx.p
|
|
@docx.h5 (I18n.t('projects.reports.elements.step.step_pos', pos: step.position_plus_one) +
|
|
' ' + step.name), size: Constants::REPORT_DOCX_STEP_TITLE_SIZE
|
|
@docx.p do
|
|
if step.completed
|
|
text I18n.t('protocols.steps.completed'), color: color[:green], bold: true
|
|
else
|
|
text I18n.t('protocols.steps.uncompleted'), color: color[:gray], bold: true
|
|
end
|
|
text ' | '
|
|
text I18n.t(
|
|
"projects.reports.elements.step.#{step_type_str}.user_time",
|
|
user: user.full_name,
|
|
timestamp: I18n.l(timestamp, format: :full)
|
|
), color: color[:gray]
|
|
end
|
|
if step.description.present?
|
|
html = custom_auto_link(step.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.step.no_description'
|
|
end
|
|
|
|
if @settings.dig('task', 'protocol', 'step_tables')
|
|
step.tables.each do |table|
|
|
draw_step_table(table)
|
|
end
|
|
end
|
|
if @settings.dig('task', 'protocol', 'step_files')
|
|
step.assets.each do |asset|
|
|
draw_step_asset(asset)
|
|
end
|
|
end
|
|
if @settings.dig('task', 'protocol', 'step_checklists')
|
|
step.checklists.each do |checklist|
|
|
draw_step_checklist(checklist)
|
|
end
|
|
end
|
|
draw_step_comments(step) if @settings.dig('task', 'protocol', 'step_comments')
|
|
|
|
@docx.p
|
|
@docx.p
|
|
end
|
|
end
|