mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
2793777463
* Initial setup for docx report * Add render for project, experiment, my_module * Implement converter for RTE fields * Add all report elements * fix markup * Change headers, remove empty blocks, refactored repository draw * Add smart annotations support * Fix justify fields * Prepare for addons integration * Fix markup * Add comments to GemFile * Fix TinyMCE error * Change UI for new report download selector * Fix file error in inventory cell for docx * Fix i18n object for header
30 lines
977 B
Ruby
30 lines
977 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
|
|
team = @report_team
|
|
user = @user
|
|
@docx.ol do
|
|
comments.each do |comment|
|
|
comment_ts = comment.created_at
|
|
li do
|
|
text 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
|
|
br
|
|
text SmartAnnotations::TagToText.new(user, team, comment.message).text
|
|
br
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|