2022-12-19 12:32:09 +01:00
|
|
|
class PrefillDescription < SimpleDelegator
|
|
|
|
include Rails.application.routes.url_helpers
|
|
|
|
|
|
|
|
MAX_PREFILL_LINK_LENGTH = 2000
|
|
|
|
|
|
|
|
attr_reader :selected_type_de_champ_ids
|
|
|
|
|
|
|
|
def initialize(procedure)
|
|
|
|
super(procedure)
|
|
|
|
@selected_type_de_champ_ids = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def update(attributes)
|
|
|
|
@selected_type_de_champ_ids = attributes[:selected_type_de_champ_ids].presence || []
|
|
|
|
end
|
|
|
|
|
|
|
|
def types_de_champ
|
2022-12-20 14:37:25 +01:00
|
|
|
active_revision.types_de_champ_public.fillable.partition(&:prefillable?).flatten
|
2022-12-19 12:32:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def include?(type_de_champ_id)
|
|
|
|
selected_type_de_champ_ids.include?(type_de_champ_id.to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def link_too_long?
|
|
|
|
prefill_link.length > MAX_PREFILL_LINK_LENGTH
|
|
|
|
end
|
|
|
|
|
|
|
|
def prefill_link
|
|
|
|
@prefill_link ||= commencer_url({ path: path }.merge(prefilled_champs_for_link))
|
|
|
|
end
|
|
|
|
|
|
|
|
def prefilled_champs
|
2022-12-20 14:37:25 +01:00
|
|
|
@prefilled_champs ||= active_fillable_public_types_de_champ.where(id: selected_type_de_champ_ids)
|
2022-12-19 12:32:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def prefilled_champs_for_link
|
2022-12-20 11:04:42 +01:00
|
|
|
prefilled_champs.map { |type_de_champ| ["champ_#{type_de_champ.to_typed_id}", example_value(type_de_champ)] }.to_h
|
2022-12-19 12:32:09 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def prefilled_champs_for_query
|
2022-12-20 11:04:42 +01:00
|
|
|
prefilled_champs.map { |type_de_champ| "\"champ_#{type_de_champ.to_typed_id}\": \"#{example_value(type_de_champ)}\"" } .join(', ')
|
|
|
|
end
|
|
|
|
|
|
|
|
def example_value(type_de_champ)
|
|
|
|
I18n.t("views.prefill_descriptions.edit.examples.#{type_de_champ.type_champ}")
|
2022-12-19 12:32:09 +01:00
|
|
|
end
|
2022-12-20 14:37:25 +01:00
|
|
|
|
|
|
|
def active_fillable_public_types_de_champ
|
|
|
|
active_revision.types_de_champ_public.fillable
|
|
|
|
end
|
2022-12-19 12:32:09 +01:00
|
|
|
end
|