2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawStepAsset
|
2021-05-21 22:35:23 +08:00
|
|
|
def draw_step_asset(asset)
|
2019-07-01 16:14:16 +08:00
|
|
|
timestamp = asset.created_at
|
2020-11-11 22:48:00 +08:00
|
|
|
asset_url = Rails.application.routes.url_helpers.asset_download_url(asset)
|
2019-07-08 18:51:26 +08:00
|
|
|
color = @color
|
2019-07-01 16:14:16 +08:00
|
|
|
@docx.p
|
|
|
|
@docx.p do
|
2019-08-09 20:56:00 +08:00
|
|
|
text (I18n.t 'projects.reports.elements.step_asset.file_name', file: asset.file_name), italic: true
|
2019-07-01 16:14:16 +08:00
|
|
|
text ' '
|
2020-11-11 22:48:00 +08:00
|
|
|
link I18n.t('projects.reports.elements.download'), asset_url do
|
|
|
|
italic true
|
|
|
|
end
|
|
|
|
text ' '
|
2019-07-01 16:14:16 +08:00
|
|
|
text I18n.t('projects.reports.elements.step_asset.user_time',
|
2019-07-08 18:51:26 +08:00
|
|
|
timestamp: I18n.l(timestamp, format: :full)), color: color[:gray]
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
|
2020-10-28 23:32:22 +08:00
|
|
|
Reports::DocxRenderer.render_asset_image(@docx, asset) if asset.previewable? && !asset.list?
|
2019-07-01 16:14:16 +08:00
|
|
|
end
|
|
|
|
end
|