demarches-normaliennes/app/models/prefill_params.rb
Sébastien Carceles 0a10a08c21
feat(demarche): describe procedure prefilling (#8187)
* feat(demarche): description

Show the description of an opendata procedure (published or draft),
with help about how to prefill a dossier for this procedure.

Co-authored-by: Damien Le Thiec <damien.lethiec@gmail.com>
2022-12-19 11:32:09 +00:00

66 lines
1.4 KiB
Ruby

class PrefillParams
def initialize(dossier, params)
@dossier = dossier
@params = params
end
def to_a
build_prefill_values.filter(&:prefillable?).map(&:to_h)
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)
]
attr_reader :champ, :value
def initialize(champ:, value:)
@champ = champ
@value = value
end
def prefillable?
champ.prefillable? && valid?
end
def to_h
{
id: champ.id,
value: value
}
end
private
def valid?
return true unless NEED_VALIDATION_TYPES_DE_CHAMPS.include?(champ.type_champ)
champ.value = value
champ.valid?
end
end
end