[#3477] Clarify what the previous code of eager_load_displayed_fields does
This commit is contained in:
parent
f0d83b1de8
commit
cf3f2409dd
1 changed files with 24 additions and 21 deletions
|
@ -138,29 +138,32 @@ class ProcedurePresentation < ApplicationRecord
|
|||
end
|
||||
|
||||
def eager_load_displayed_fields(dossiers)
|
||||
displayed_fields
|
||||
.reject { |field| field['table'] == 'self' }
|
||||
.group_by do |field|
|
||||
case field['table']
|
||||
when 'type_de_champ', 'type_de_champ_private'
|
||||
'type_de_champ_group'
|
||||
fields_to_eager_load = displayed_fields.reject { |field| field['table'] == 'self' }
|
||||
|
||||
relations_to_include = fields_to_eager_load
|
||||
.pluck('table')
|
||||
.map do |table|
|
||||
case table
|
||||
when 'type_de_champ'
|
||||
:champs
|
||||
when 'type_de_champ_private'
|
||||
:champs_private
|
||||
else
|
||||
field['table']
|
||||
table
|
||||
end
|
||||
end.reduce(dossiers) do |dossiers, (group_key, fields)|
|
||||
if group_key != 'type_de_champ_group'
|
||||
dossiers.includes(fields.first['table'])
|
||||
else
|
||||
if fields.any? { |field| field['table'] == 'type_de_champ' }
|
||||
dossiers = dossiers.includes(:champs).references(:champs)
|
||||
end
|
||||
.uniq
|
||||
|
||||
champ_fields = fields_to_eager_load.select do |field|
|
||||
['type_de_champ', 'type_de_champ_private'].include?(field['table'])
|
||||
end
|
||||
|
||||
if fields.any? { |field| field['table'] == 'type_de_champ_private' }
|
||||
dossiers = dossiers.includes(:champs_private).references(:champs_private)
|
||||
end
|
||||
|
||||
dossiers.where(champs: { type_de_champ_id: fields.pluck('column') })
|
||||
end
|
||||
if champ_fields.present?
|
||||
dossiers
|
||||
.includes(relations_to_include)
|
||||
.where(champs: { type_de_champ_id: champ_fields.pluck('column') })
|
||||
else
|
||||
dossiers.includes(relations_to_include)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue