74 lines
2 KiB
Ruby
74 lines
2 KiB
Ruby
class PrefillParams
|
|
def initialize(dossier, params)
|
|
@dossier = dossier
|
|
@params = params
|
|
end
|
|
|
|
def to_a
|
|
build_prefill_values.filter(&:prefillable?).map(&:champ_attributes).flatten
|
|
end
|
|
|
|
private
|
|
|
|
def build_prefill_values
|
|
value_by_stable_id = @params
|
|
.map { |prefixed_typed_id, value| [stable_id_from_typed_id(prefixed_typed_id), value] }
|
|
.filter { |stable_id, value| stable_id.present? && value.present? }
|
|
.to_h
|
|
|
|
@dossier
|
|
.find_champs_by_stable_ids(value_by_stable_id.keys)
|
|
.map { |champ| [champ, value_by_stable_id[champ.stable_id]] }
|
|
.map { |champ, value| PrefillValue.new(champ:, value:) }
|
|
end
|
|
|
|
def stable_id_from_typed_id(prefixed_typed_id)
|
|
return nil unless prefixed_typed_id.starts_with?("champ_")
|
|
|
|
Champ.id_from_typed_id(prefixed_typed_id.gsub("champ_", "")).to_i
|
|
rescue
|
|
nil
|
|
end
|
|
|
|
class PrefillValue
|
|
NEED_VALIDATION_TYPES_DE_CHAMPS = [
|
|
TypeDeChamp.type_champs.fetch(:decimal_number),
|
|
TypeDeChamp.type_champs.fetch(:integer_number),
|
|
TypeDeChamp.type_champs.fetch(:date),
|
|
TypeDeChamp.type_champs.fetch(:datetime),
|
|
TypeDeChamp.type_champs.fetch(:civilite),
|
|
TypeDeChamp.type_champs.fetch(:yes_no),
|
|
TypeDeChamp.type_champs.fetch(:checkbox),
|
|
TypeDeChamp.type_champs.fetch(:pays),
|
|
TypeDeChamp.type_champs.fetch(:regions),
|
|
TypeDeChamp.type_champs.fetch(:departements),
|
|
TypeDeChamp.type_champs.fetch(:epci)
|
|
]
|
|
|
|
attr_reader :champ, :value
|
|
|
|
def initialize(champ:, value:)
|
|
@champ = champ
|
|
@value = value
|
|
end
|
|
|
|
def prefillable?
|
|
champ.prefillable? && valid?
|
|
end
|
|
|
|
private
|
|
|
|
def valid?
|
|
return true unless NEED_VALIDATION_TYPES_DE_CHAMPS.include?(champ.type_champ)
|
|
|
|
champ.assign_attributes(champ_attributes)
|
|
champ.valid?(:prefill)
|
|
end
|
|
|
|
def champ_attributes
|
|
TypesDeChamp::PrefillTypeDeChamp
|
|
.build(champ.type_de_champ)
|
|
.to_assignable_attributes(value)
|
|
end
|
|
end
|
|
end
|