demarches-normaliennes/app/models/concerns/columns_concern.rb

99 lines
3.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2024-08-19 14:34:36 +02:00
module ColumnsConcern
extend ActiveSupport::Concern
included do
def find_column(h_id: nil, label: nil)
return columns.find { _1.h_id == h_id } if h_id.present?
return columns.find { _1.label == label } if label.present?
end
2024-08-19 14:34:36 +02:00
def columns
Current.procedure_columns ||= {}
Current.procedure_columns[id] ||= begin
columns = dossier_columns
columns.concat(standard_columns)
columns.concat(individual_columns) if for_individual
columns.concat(moral_columns) if !for_individual
columns.concat(types_de_champ_columns)
end
2024-08-19 14:34:36 +02:00
end
def dossier_id_column
2024-10-07 21:46:59 +02:00
Column.new(procedure_id: id, table: 'self', column: 'id', classname: 'number-col', type: :number)
end
def notifications_column
2024-10-07 21:46:59 +02:00
Column.new(procedure_id: id, table: 'notifications', column: 'notifications', label: "notifications", filterable: false)
end
2024-08-19 14:34:36 +02:00
def dossier_columns
common = [dossier_id_column, notifications_column]
2024-08-19 14:34:36 +02:00
dates = ['created_at', 'updated_at', 'depose_at', 'en_construction_at', 'en_instruction_at', 'processed_at']
2024-10-07 21:46:59 +02:00
.map { |column| Column.new(procedure_id: id, table: 'self', column:, type: :date) }
2024-08-19 14:34:36 +02:00
non_displayable_dates = ['updated_since', 'depose_since', 'en_construction_since', 'en_instruction_since', 'processed_since']
2024-10-07 21:46:59 +02:00
.map { |column| Column.new(procedure_id: id, table: 'self', column:, type: :date, displayable: false) }
2024-08-19 14:34:36 +02:00
2024-10-07 21:46:59 +02:00
states = [Column.new(procedure_id: id, table: 'self', column: 'state', type: :enum, scope: 'instructeurs.dossiers.filterable_state', displayable: false)]
2024-08-19 14:34:36 +02:00
[common, dates, sva_svr_columns(for_filters: true), non_displayable_dates, states].flatten.compact
2024-08-19 14:34:36 +02:00
end
def sva_svr_columns(for_filters: false)
return if !sva_svr_enabled?
scope = [:activerecord, :attributes, :procedure_presentation, :fields, :self]
columns = [
2024-10-07 21:46:59 +02:00
Column.new(procedure_id: id, table: 'self', column: 'sva_svr_decision_on', type: :date,
2024-08-19 14:34:36 +02:00
label: I18n.t("#{sva_svr_decision}_decision_on", scope:), classname: for_filters ? '' : 'sva-col')
]
if for_filters
2024-10-07 21:46:59 +02:00
columns << Column.new(procedure_id: id, table: 'self', column: 'sva_svr_decision_before', type: :date, displayable: false,
2024-08-19 14:34:36 +02:00
label: I18n.t("#{sva_svr_decision}_decision_before", scope:))
end
columns
end
2024-09-25 17:37:11 +02:00
def default_sorted_column
SortedColumn.new(column: notifications_column, order: 'desc')
end
2024-08-19 14:34:36 +02:00
private
def standard_columns
[
2024-10-07 21:46:59 +02:00
Column.new(procedure_id: id, table: 'user', column: 'email'),
Column.new(procedure_id: id, table: 'followers_instructeurs', column: 'email'),
Column.new(procedure_id: id, table: 'groupe_instructeur', column: 'id', type: :enum),
Column.new(procedure_id: id, table: 'avis', column: 'question_answer', filterable: false) # not filterable ?
2024-08-19 14:34:36 +02:00
]
end
def individual_columns
2024-10-07 21:46:59 +02:00
['nom', 'prenom', 'gender'].map { |column| Column.new(procedure_id: id, table: 'individual', column:) }
2024-08-19 14:34:36 +02:00
end
def moral_columns
etablissements = ['entreprise_siren', 'entreprise_forme_juridique', 'entreprise_nom_commercial', 'entreprise_raison_sociale', 'entreprise_siret_siege_social']
2024-10-07 21:46:59 +02:00
.map { |column| Column.new(procedure_id: id, table: 'etablissement', column:) }
2024-08-19 14:34:36 +02:00
2024-10-07 21:46:59 +02:00
etablissement_dates = ['entreprise_date_creation'].map { |column| Column.new(procedure_id: id, table: 'etablissement', column:, type: :date) }
2024-08-19 14:34:36 +02:00
2024-10-07 21:46:59 +02:00
other = ['siret', 'libelle_naf', 'code_postal'].map { |column| Column.new(procedure_id: id, table: 'etablissement', column:) }
2024-08-19 14:34:36 +02:00
[etablissements, etablissement_dates, other].flatten
end
def types_de_champ_columns
2024-10-07 21:46:59 +02:00
all_revisions_types_de_champ.flat_map { _1.columns(procedure_id: id) }
2024-08-19 14:34:36 +02:00
end
end
end