2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawResultText
|
2023-09-14 10:25:38 +08:00
|
|
|
def draw_result_text(element)
|
2023-09-18 21:01:13 +08:00
|
|
|
result_text = element.orderable
|
2023-10-05 19:25:08 +08:00
|
|
|
timestamp = element.created_at
|
2019-07-08 18:51:26 +08:00
|
|
|
color = @color
|
2023-10-05 19:25:08 +08:00
|
|
|
@docx.p do
|
|
|
|
text result_text.name.presence || '', italic: true
|
|
|
|
text ' '
|
|
|
|
text I18n.t('projects.reports.elements.result_text.user_time',
|
|
|
|
timestamp: I18n.l(timestamp, format: :full)), color: color[:gray]
|
|
|
|
end
|
2019-07-01 16:14:16 +08:00
|
|
|
html = custom_auto_link(result_text.text, 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-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
end
|