scinote-web/app/services/reports/docx/draw_result_comments.rb
aignatov-bio 4bae87e3f7
Styling changes in DOCX report [SCI-3633] (#1899)
* Styling changes in DOCX report

* Update result comments in docx report

* Fix markup
2019-07-12 13:48:14 +02:00

26 lines
952 B
Ruby

# frozen_string_literal: true
module DrawResultComments
def draw_result_comments(subject)
result = Result.find_by_id(subject['id']['result_id'])
return unless result
comments = result.result_comments.order(created_at: subject['sort_order'])
return if comments.count.zero?
@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)
html_to_word_converter(html)
@docx.p
end
end
end