2019-07-01 16:14:16 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 16:50:01 +08:00
|
|
|
module Reports::Docx::DrawStepAsset
|
2020-07-21 20:11:42 +08:00
|
|
|
def draw_step_asset(subject, step)
|
|
|
|
asset = step.assets.find_by(id: subject['id']['asset_id'])
|
2019-07-01 16:14:16 +08:00
|
|
|
return unless asset
|
|
|
|
|
|
|
|
timestamp = asset.created_at
|
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 ' '
|
|
|
|
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
|