2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawMyModuleActivity
|
2021-05-21 22:35:23 +08:00
|
|
|
def draw_my_module_activity(my_module)
|
|
|
|
activities = ActivitiesService.my_module_activities(my_module).order(created_at: :desc)
|
|
|
|
return false if activities.blank?
|
2019-07-01 16:14:16 +08:00
|
|
|
|
2019-07-08 18:51:26 +08:00
|
|
|
color = @color
|
2019-07-01 16:14:16 +08:00
|
|
|
@docx.p
|
2019-07-12 19:48:14 +08:00
|
|
|
@docx.p I18n.t('projects.reports.elements.module_activity.name', my_module: my_module.name),
|
|
|
|
bold: true, size: Constants::REPORT_DOCX_STEP_ELEMENTS_TITLE_SIZE
|
2019-07-01 16:14:16 +08:00
|
|
|
activities.each do |activity|
|
|
|
|
activity_ts = activity.created_at
|
|
|
|
activity_text = if activity.old_activity?
|
|
|
|
sanitize_input(activity.message)
|
|
|
|
else
|
2021-02-25 18:58:15 +08:00
|
|
|
sanitize_input(generate_activity_content(activity, no_links: true))
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
2019-07-08 18:51:26 +08:00
|
|
|
@docx.p I18n.l(activity_ts, format: :full), color: color[:gray]
|
2020-10-13 19:54:16 +08:00
|
|
|
Reports::HtmlToWordConverter.new(@docx).html_to_word_converter(activity_text)
|
2019-07-01 16:14:16 +08:00
|
|
|
@docx.p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|