mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-19 13:25:58 +08:00
27 lines
868 B
Ruby
27 lines
868 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DrawResultAsset
|
||
|
def draw_result_asset(subject)
|
||
|
result = Result.find_by_id(subject['id']['result_id'])
|
||
|
return unless result
|
||
|
|
||
|
asset = result.asset
|
||
|
is_image = result.asset.is_image?
|
||
|
timestamp = asset.created_at
|
||
|
@docx.p
|
||
|
@docx.p do
|
||
|
text result.name
|
||
|
text ' ' + I18n.t('search.index.archived'), color: 'a0a0a0' if result.archived?
|
||
|
text ' ' + I18n.t('projects.reports.elements.result_asset.file_name', file: asset.file_file_name)
|
||
|
text ' ' + I18n.t('projects.reports.elements.result_asset.user_time',
|
||
|
user: result.user.full_name, timestamp: I18n.l(timestamp, format: :full)), color: 'a0a0a0'
|
||
|
end
|
||
|
|
||
|
asset_image_preparing(asset) if is_image
|
||
|
|
||
|
subject['children'].each do |child|
|
||
|
public_send("draw_#{child['type_of']}", child)
|
||
|
end
|
||
|
end
|
||
|
end
|