2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawStepComments
|
2020-07-21 20:11:42 +08:00
|
|
|
def draw_step_comments(_subject, step)
|
2019-07-01 16:14:16 +08:00
|
|
|
return unless step
|
|
|
|
|
|
|
|
comments = step.step_comments
|
|
|
|
return if comments.count.zero?
|
|
|
|
|
|
|
|
@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-13 19:54:16 +08:00
|
|
|
Reports::HtmlToWordConverter.new(@docx).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
|