Skip to content

Commit

Permalink
Merge pull request #10728 from demarches-simplifiees/revert-10711-ref…
Browse files Browse the repository at this point in the history
…actor-champ-related-cleanups

Revert "Champ related cleanups and refactoring"
  • Loading branch information
colinux authored Aug 30, 2024
2 parents 7693d21 + e7443c2 commit fb184ce
Show file tree
Hide file tree
Showing 30 changed files with 173 additions and 158 deletions.
1 change: 0 additions & 1 deletion app/controllers/api/v1/dossiers_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def index

def show
dossier = @dossiers.for_api.find(params[:id])
DossierPreloader.load_one(dossier)

render json: { dossier: DossierSerializer.new(dossier).as_json }
rescue ActiveRecord::RecordNotFound
Expand Down
6 changes: 1 addition & 5 deletions app/controllers/champs/champ_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ class Champs::ChampController < ApplicationController
def find_champ
dossier = policy_scope(Dossier).includes(:champs, revision: [:types_de_champ]).find(params[:dossier_id])
type_de_champ = dossier.find_type_de_champ_by_stable_id(params[:stable_id])
if type_de_champ.repetition?
dossier.project_champ(type_de_champ, nil)
else
dossier.champ_for_update(type_de_champ, params_row_id, updated_by: current_user.email)
end
dossier.champ_for_update(type_de_champ, params_row_id, updated_by: current_user.email)
end

def params_row_id
Expand Down
8 changes: 4 additions & 4 deletions app/models/attestation_template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ def attestation_for(dossier)
end

def unspecified_champs_for_dossier(dossier)
types_de_champ_by_tag_id = dossier.revision.types_de_champ.index_by { "tdc#{_1.stable_id}" }
champs_by_stable_id = dossier.champs_for_revision(root: true).index_by { "tdc#{_1.stable_id}" }

used_tags.filter_map do |used_tag|
corresponding_type_de_champ = types_de_champ_by_tag_id[used_tag]
corresponding_champ = champs_by_stable_id[used_tag]

if corresponding_type_de_champ && dossier.project_champ(corresponding_type_de_champ, nil).blank?
corresponding_type_de_champ
if corresponding_champ && corresponding_champ.blank?
corresponding_champ
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion app/models/champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def public?
end

def child?
row_id.present?
parent_id.present?
end

# used for the `required` html attribute
Expand Down
2 changes: 1 addition & 1 deletion app/models/champs/repetition_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def focusable_input_id
end

def blank?
row_ids.empty?
champs.empty?
end

def search_terms
Expand Down
8 changes: 2 additions & 6 deletions app/models/concerns/champs_validate_concern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def valid_champ_value?
def validate_champ_value?
case validation_context
when :champs_public_value
public? && in_dossier_revision? && visible?
public? && visible?
when :champs_private_value
private? && in_dossier_revision? && visible?
private? && visible?
else
false
end
Expand All @@ -27,9 +27,5 @@ def validate_champ_value?
def validate_champ_value_or_prefill?
validate_champ_value? || validation_context == :prefill
end

def in_dossier_revision?
dossier.revision.types_de_champ.any? { _1.stable_id = stable_id }
end
end
end
2 changes: 1 addition & 1 deletion app/models/concerns/dossier_champs_concern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def champs_for_prefill(stable_ids)
.types_de_champ
.filter { _1.stable_id.in?(stable_ids) }
.filter { !revision.child?(_1) }
.map { _1.repetition? ? project_champ(_1, nil) : champ_for_update(_1, nil, updated_by: nil) }
.map { champ_for_update(_1, nil, updated_by: nil) }
end

def champ_for_update(type_de_champ, row_id, updated_by:)
Expand Down
40 changes: 30 additions & 10 deletions app/models/dossier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ class Dossier < ApplicationRecord
has_many :champs_to_destroy, -> { order(:parent_id) }, class_name: 'Champ', inverse_of: false, dependent: :destroy
has_many :champs_public, -> { root.public_only }, class_name: 'Champ', inverse_of: false
has_many :champs_private, -> { root.private_only }, class_name: 'Champ', inverse_of: false
has_many :prefilled_champs_public, -> { root.public_only.prefilled }, class_name: 'Champ', inverse_of: false

has_many :commentaires, inverse_of: :dossier, dependent: :destroy
has_many :preloaded_commentaires, -> { includes(:dossier_correction, piece_jointe_attachments: :blob) }, class_name: 'Commentaire', inverse_of: :dossier
Expand Down Expand Up @@ -269,16 +270,33 @@ def classer_sans_suite(motivation: nil, instructeur: nil, processed_at: Time.zon
scope :en_cours, -> { not_archived.state_en_construction_ou_instruction }
scope :without_followers, -> { where.missing(:follows) }
scope :with_followers, -> { left_outer_joins(:follows).where.not(follows: { id: nil }) }
scope :with_champs, -> {
includes(champs_public: [
:geo_areas,
piece_justificative_file_attachments: :blob,
champs: [piece_justificative_file_attachments: :blob]
])
}

scope :brouillons_recently_updated, -> { updated_since(2.days.ago).state_brouillon.order_by_updated_at }
scope :with_annotations, -> {
includes(champs_private: [
:geo_areas,
piece_justificative_file_attachments: :blob,
champs: [piece_justificative_file_attachments: :blob]
])
}
scope :for_api, -> {
includes(commentaires: { piece_jointe_attachments: :blob },
justificatif_motivation_attachment: :blob,
attestation: [],
avis: { piece_justificative_file_attachment: :blob },
traitement: [],
etablissement: [],
individual: [],
user: [])
with_champs
.with_annotations
.includes(commentaires: { piece_jointe_attachments: :blob },
justificatif_motivation_attachment: :blob,
attestation: [],
avis: { piece_justificative_file_attachment: :blob },
traitement: [],
etablissement: [],
individual: [],
user: [])
}

scope :with_notifiable_procedure, -> (opts = { notify_on_closed: false }) do
Expand Down Expand Up @@ -423,6 +441,8 @@ def classer_sans_suite(motivation: nil, instructeur: nil, processed_at: Time.zon
validates :mandataire_last_name, presence: true, if: :for_tiers?
validates :for_tiers, inclusion: { in: [true, false] }, if: -> { revision&.procedure&.for_individual? }

validates_associated :prefilled_champs_public, on: :champs_public_value

def types_de_champ_public
types_de_champ
end
Expand Down Expand Up @@ -929,7 +949,7 @@ def previously_termine?
end

def remove_titres_identite!
champs.filter(&:titre_identite?).map(&:piece_justificative_file).each(&:purge_later)
champs_public.filter(&:titre_identite?).map(&:piece_justificative_file).each(&:purge_later)
end

def remove_piece_justificative_file_not_visible!
Expand Down Expand Up @@ -1144,7 +1164,7 @@ def user_from_france_connect?
end

def has_annotations?
revision.types_de_champ_private.present?
revision.revision_types_de_champ_private.present?
end

def hide_info_with_accuse_lecture?
Expand Down
74 changes: 51 additions & 23 deletions app/models/dossier_preloader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,18 @@ def self.load_one(dossier, pj_template: false)

private

def revisions(pj_template: false)
def revisions
@revisions ||= ProcedureRevision.where(id: @dossiers.pluck(:revision_id).uniq)
.includes(types_de_champ: pj_template ? { piece_justificative_template_attachment: :blob } : [])
.includes(types_de_champ: { piece_justificative_template_attachment: :blob })
.index_by(&:id)
end

# returns: { revision_id : { stable_id : position } }
def positions
@positions ||= revisions
.transform_values { |revision| revision.revision_types_de_champ.map { [_1.stable_id, _1.position] }.to_h }
end

def load_dossiers(dossiers, pj_template: false)
to_include = @includes_for_champ.dup
to_include << [piece_justificative_file_attachments: :blob]
Expand All @@ -52,10 +58,16 @@ def load_dossiers(dossiers, pj_template: false)
.where(dossier_id: dossiers)
.to_a

champs_by_dossier = all_champs.group_by(&:dossier_id)
children_champs, root_champs = all_champs.partition(&:child?)
champs_by_dossier = root_champs.group_by(&:dossier_id)
champs_by_dossier_by_parent = children_champs
.group_by(&:dossier_id)
.transform_values do |champs|
champs.group_by(&:parent_id)
end

dossiers.each do |dossier|
load_dossier(dossier, champs_by_dossier[dossier.id] || [], pj_template:)
load_dossier(dossier, champs_by_dossier[dossier.id] || [], champs_by_dossier_by_parent[dossier.id] || {})
end

load_etablissements(all_champs)
Expand All @@ -74,30 +86,17 @@ def load_etablissements(champs)
end
end

def load_dossier(dossier, champs, pj_template: false)
revision = revisions(pj_template:)[dossier.revision_id]
def load_dossier(dossier, champs, children_by_parent = {})
revision = revisions[dossier.revision_id]
if revision.present?
dossier.association(:revision).target = revision
end
dossier.association(:champs).target = champs
dossier.association(:champs_public).target = dossier.champs_for_revision(scope: :public, root: true)
dossier.association(:champs_private).target = dossier.champs_for_revision(scope: :private, root: true)

# remove once parent_id is deprecated
champs_by_parent_id = champs.group_by(&:parent_id)
champs_public, champs_private = champs.partition(&:public?)

champs.each do |champ|
champ.association(:dossier).target = dossier

# remove once parent_id is deprecated
if champ.repetition?
children = champs_by_parent_id.fetch(champ.id, [])
children.each do |child|
child.association(:parent).target = champ
end
champ.association(:champs).target = children
end
end
dossier.association(:champs).target = []
load_champs(dossier, :champs_public, champs_public, dossier, children_by_parent)
load_champs(dossier, :champs_private, champs_private, dossier, children_by_parent)

# We need to do this because of the check on `Etablissement#champ` in
# `Etablissement#libelle_for_export`. By assigning `nil` to `target` we mark association
Expand All @@ -106,4 +105,33 @@ def load_dossier(dossier, champs, pj_template: false)
dossier.etablissement.association(:champ).target = nil
end
end

def load_champs(parent, name, champs, dossier, children_by_parent)
if champs.empty?
parent.association(name).target = [] # tells to Rails association has been loaded
return
end

champs.each do |champ|
champ.association(:dossier).target = dossier

if parent.is_a?(Champ)
champ.association(:parent).target = parent
end
end

dossier.association(:champs).target += champs

parent.association(name).target = champs
.filter { positions[dossier.revision_id][_1.stable_id].present? }
.sort_by { [_1.row_id, positions[dossier.revision_id][_1.stable_id]] }

# Load children champs
champs.filter(&:block?).each do |parent_champ|
champs = children_by_parent[parent_champ.id] || []
parent_champ.association(:dossier).target = dossier

load_champs(parent_champ, :champs, champs, dossier, children_by_parent)
end
end
end
14 changes: 14 additions & 0 deletions app/models/procedure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,20 @@ def revisions_with_pending_dossiers
includes(:draft_revision, :published_revision, administrateurs: :user)
}

scope :for_download, -> {
includes(
:groupe_instructeurs,
dossiers: {
champs_public: [
piece_justificative_file_attachments: :blob,
champs: [
piece_justificative_file_attachments: :blob
]
]
}
)
}

validates :libelle, presence: true, allow_blank: false, allow_nil: false
validates :description, presence: true, allow_blank: false, allow_nil: false
validates :administrateurs, presence: true
Expand Down
4 changes: 2 additions & 2 deletions app/models/procedure_revision_type_de_champ.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def empty?
end

def siblings
if child?
revision.revision_types_de_champ.where(parent_id:).ordered
if parent_id.present?
revision.revision_types_de_champ.where(parent_id: parent_id).ordered
elsif private?
revision.revision_types_de_champ_private
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- if unspecified_attestation_champs.present?
.warning
Attention, les valeurs suivantes n’ont pas été renseignées mais sont nécessaires pour pouvoir envoyer une attestation valide :
- unspecified_annotations_privees, unspecified_champs = unspecified_attestation_champs.partition(&:private?)
- unspecified_annotations_privees, unspecified_champs = unspecified_attestation_champs.partition(&:private)

- if unspecified_champs.present?
%h4 Champs de la demande
Expand Down
2 changes: 1 addition & 1 deletion spec/controllers/champs/repetition_controller_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
it 'removes repetition' do
rows, repetitions = dossier.champs.partition(&:child?)
repetition = repetitions.first
expect { delete :remove, params: { dossier_id: dossier, stable_id: repetition.stable_id, row_id: rows.first.row_id }, format: :turbo_stream }
expect { delete :remove, params: { dossier_id: repetition.dossier, stable_id: repetition.stable_id, row_id: rows.first.row_id }, format: :turbo_stream }
.to change { dossier.reload.champs.size }.from(3).to(1)
end
end
Expand Down
Loading

0 comments on commit fb184ce

Please sign in to comment.