demarches-normaliennes/app/models/champs/region_champ.rb
Sébastien Carceles 49ce255e29
feat(dossier): prefill region champ (#8442)
* make regions champ prefillable

* add possible and example value

* add external_id and value validation
2023-01-24 11:25:17 +00:00

69 lines
1.8 KiB
Ruby

# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# data :jsonb
# fetch_external_data_exceptions :string is an Array
# prefilled :boolean default(FALSE)
# private :boolean default(FALSE), not null
# rebased_at :datetime
# type :string
# value :string
# value_json :jsonb
# created_at :datetime
# updated_at :datetime
# dossier_id :integer
# etablissement_id :integer
# external_id :string
# parent_id :bigint
# row_id :string
# type_de_champ_id :integer
#
class Champs::RegionChamp < Champs::TextChamp
validate :value_in_region_names, unless: -> { value.nil? }
validate :external_id_in_region_codes, unless: -> { external_id.nil? }
def for_export
[name, code]
end
def selected
code
end
def name
value
end
def code
external_id || APIGeoService.region_code(value)
end
def value=(code)
if code&.size == 2
self.external_id = code
super(APIGeoService.region_name(code))
elsif code.blank?
self.external_id = nil
super(nil)
else
self.external_id = APIGeoService.region_code(code)
super(code)
end
end
private
def value_in_region_names
return if value.in?(APIGeoService.regions.pluck(:name))
errors.add(:value, :not_in_region_names)
end
def external_id_in_region_codes
return if external_id.in?(APIGeoService.regions.pluck(:code))
errors.add(:external_id, :not_in_region_codes)
end
end