mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-01 20:48:23 +08:00
Refactor export all my module generator
This commit is contained in:
parent
b656592124
commit
a7da7b0de3
2 changed files with 52 additions and 34 deletions
|
@ -100,41 +100,9 @@ class Report < ApplicationRecord
|
|||
exp.my_modules.each do |my_module|
|
||||
module_children = []
|
||||
|
||||
module_children += gen_element_content(my_module, nil, 'my_module_protocol', true)
|
||||
my_module.protocol.steps.each do |step|
|
||||
step_children =
|
||||
gen_element_content(step, step.assets, 'step_asset')
|
||||
step_children +=
|
||||
gen_element_content(step, step.tables, 'step_table')
|
||||
step_children +=
|
||||
gen_element_content(step, step.checklists, 'step_checklist')
|
||||
step_children +=
|
||||
gen_element_content(step, nil, 'step_comments', true, 'asc')
|
||||
|
||||
module_children +=
|
||||
gen_element_content(step, nil, 'step', true, nil, step_children)
|
||||
Extends::EXPORT_ALL_MY_MODULE_ELEMENTS.each do |my_module_element|
|
||||
module_children += public_send("generate_my_module_#{my_module_element}_element", my_module, project)
|
||||
end
|
||||
|
||||
my_module.results.each do |result|
|
||||
result_children =
|
||||
gen_element_content(result, nil, 'result_comments', true, 'asc')
|
||||
|
||||
result_type = if result.asset
|
||||
'result_asset'
|
||||
elsif result.table
|
||||
'result_table'
|
||||
elsif result.result_text
|
||||
'result_text'
|
||||
end
|
||||
module_children +=
|
||||
gen_element_content(result, nil, result_type, true, nil,
|
||||
result_children)
|
||||
end
|
||||
|
||||
repositories = project.assigned_repositories_and_snapshots
|
||||
|
||||
module_children += gen_element_content(my_module, nil, 'my_module_activity', true, 'asc')
|
||||
module_children += gen_element_content(my_module, repositories, 'my_module_repository', true, 'asc')
|
||||
modules += gen_element_content(my_module, nil, 'my_module', true, nil, module_children)
|
||||
end
|
||||
|
||||
|
@ -183,6 +151,48 @@ class Report < ApplicationRecord
|
|||
elements
|
||||
end
|
||||
|
||||
def self.generate_my_module_protocol_element(my_module, _project)
|
||||
gen_element_content(my_module, nil, 'my_module_protocol', true)
|
||||
end
|
||||
|
||||
def self.generate_my_module_steps_element(my_module, _project)
|
||||
my_module_steps = []
|
||||
my_module.protocol.steps.each do |step|
|
||||
step_children = gen_element_content(step, step.assets, 'step_asset')
|
||||
step_children += gen_element_content(step, step.tables, 'step_table')
|
||||
step_children += gen_element_content(step, step.checklists, 'step_checklist')
|
||||
step_children += gen_element_content(step, nil, 'step_comments', true, 'asc')
|
||||
|
||||
my_module_steps += gen_element_content(step, nil, 'step', true, nil, step_children)
|
||||
end
|
||||
my_module_steps
|
||||
end
|
||||
|
||||
def self.generate_my_module_results_element(my_module, _project)
|
||||
my_module_results = []
|
||||
my_module.results.each do |result|
|
||||
result_children = gen_element_content(result, nil, 'result_comments', true, 'asc')
|
||||
result_type = if result.asset
|
||||
'result_asset'
|
||||
elsif result.table
|
||||
'result_table'
|
||||
elsif result.result_text
|
||||
'result_text'
|
||||
end
|
||||
my_module_results += gen_element_content(result, nil, result_type, true, nil, result_children)
|
||||
end
|
||||
my_module_results
|
||||
end
|
||||
|
||||
def self.generate_my_module_activities_element(my_module, _project)
|
||||
gen_element_content(my_module, nil, 'my_module_activity', true, 'asc')
|
||||
end
|
||||
|
||||
def self.generate_my_module_repositories_element(my_module, project)
|
||||
repositories = project.assigned_repositories_and_snapshots
|
||||
gen_element_content(my_module, repositories, 'my_module_repository', true, 'asc')
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
# Recursively save a single JSON element
|
||||
|
|
|
@ -41,6 +41,14 @@ class Extends
|
|||
my_module_repository: 17,
|
||||
my_module_protocol: 18 }
|
||||
|
||||
EXPORT_ALL_MY_MODULE_ELEMENTS = [
|
||||
:protocol,
|
||||
:steps,
|
||||
:results,
|
||||
:activities,
|
||||
:repositories
|
||||
]
|
||||
|
||||
# Data type name should match corresponding model's name
|
||||
REPOSITORY_DATA_TYPES = { RepositoryTextValue: 0,
|
||||
RepositoryDateValue: 1,
|
||||
|
|
Loading…
Reference in a new issue