2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawStepComments
|
2021-05-21 22:35:23 +08:00
|
|
|
def draw_step_comments(step)
|
|
|
|
comments = step.step_comments.order(created_at: :desc)
|
|
|
|
return if comments.blank?
|
2019-07-01 16:14:16 +08:00
|
|
|
|
|
|
|
@docx.p
|
2019-07-12 19:48:14 +08:00
|
|
|
@docx.p I18n.t('projects.reports.elements.step_comments.name', step: step.name),
|
|
|
|
bold: true, size: Constants::REPORT_DOCX_STEP_ELEMENTS_TITLE_SIZE
|
|
|
|
comments.each do |comment|
|
|
|
|
comment_ts = comment.created_at
|
|
|
|
@docx.p I18n.t('projects.reports.elements.step_comments.comment_prefix',
|
|
|
|
user: comment.user.full_name,
|
|
|
|
date: I18n.l(comment_ts, format: :full_date),
|
|
|
|
time: I18n.l(comment_ts, format: :time)), italic: true
|
|
|
|
html = custom_auto_link(comment.message, team: @report_team)
|
2020-10-14 22:09:49 +08:00
|
|
|
Reports::HtmlToWordConverter.new(@docx, { scinote_url: @scinote_url,
|
|
|
|
link_style: @link_style }).html_to_word_converter(html)
|
2019-07-12 19:48:14 +08:00
|
|
|
@docx.p
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|