mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
23 lines
1,004 B
Ruby
23 lines
1,004 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawResultComments
|
|
def draw_result_comments(result)
|
|
comments = result.result_comments.order(created_at: :desc)
|
|
return if comments.blank?
|
|
|
|
@docx.p
|
|
@docx.p I18n.t('projects.reports.elements.result_comments.name', result: result.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.result_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)
|
|
Reports::HtmlToWordConverter.new(@docx, { scinote_url: @scinote_url,
|
|
link_style: @link_style }).html_to_word_converter(html)
|
|
@docx.p
|
|
end
|
|
end
|
|
end
|