mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
67dcbb0fa6
* Fix experiment view loading [SCI-7662] * Fix experiment view loading [SCI-7662]
33 lines
1.1 KiB
Ruby
33 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawExperiment
|
|
def draw_experiment(subject)
|
|
color = @color
|
|
link_style = @link_style
|
|
scinote_url = @scinote_url
|
|
experiment = subject.experiment
|
|
return unless can_read_experiment?(@user, experiment)
|
|
|
|
@docx.h2 do
|
|
link experiment.name,
|
|
scinote_url + Rails.application.routes.url_helpers.my_modules_experiment_path(experiment),
|
|
link_style
|
|
end
|
|
|
|
@docx.p do
|
|
text I18n.t('projects.reports.elements.experiment.user_time',
|
|
code: experiment.code, timestamp: I18n.l(experiment.created_at, format: :full)), color: color[:gray]
|
|
if experiment.archived?
|
|
text ' | '
|
|
text I18n.t('search.index.archived'), color: color[:gray]
|
|
end
|
|
end
|
|
html = custom_auto_link(experiment.description, team: @report_team)
|
|
Reports::HtmlToWordConverter.new(@docx, { scinote_url: scinote_url,
|
|
link_style: link_style }).html_to_word_converter(html)
|
|
@docx.p
|
|
subject.children.active.each do |child|
|
|
public_send("draw_#{child.type_of}", child)
|
|
end
|
|
end
|
|
end
|