2020-08-06 16:35:45 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: champs
|
|
|
|
#
|
2021-02-04 19:23:40 +01:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# data :jsonb
|
|
|
|
# fetch_external_data_exceptions :string is an Array
|
2022-12-01 12:00:21 +01:00
|
|
|
# prefilled :boolean default(FALSE)
|
2021-02-04 19:23:40 +01:00
|
|
|
# private :boolean default(FALSE), not null
|
2021-10-20 17:26:09 +02:00
|
|
|
# rebased_at :datetime
|
2021-02-04 19:23:40 +01:00
|
|
|
# type :string
|
|
|
|
# value :string
|
2021-10-05 15:37:13 +02:00
|
|
|
# value_json :jsonb
|
2021-02-04 19:23:40 +01:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2022-09-21 15:20:42 +02:00
|
|
|
# dossier_id :integer
|
2021-02-04 19:23:40 +01:00
|
|
|
# etablissement_id :integer
|
|
|
|
# external_id :string
|
|
|
|
# parent_id :bigint
|
2022-12-16 12:39:51 +01:00
|
|
|
# row_id :string
|
2022-09-21 15:20:42 +02:00
|
|
|
# type_de_champ_id :integer
|
2020-08-06 16:35:45 +02:00
|
|
|
#
|
2018-02-13 18:18:20 +01:00
|
|
|
class Champs::TextareaChamp < Champs::TextChamp
|
2018-12-28 15:46:38 +01:00
|
|
|
def for_export
|
|
|
|
value.present? ? ActionView::Base.full_sanitizer.sanitize(value) : nil
|
2018-06-15 14:10:25 +02:00
|
|
|
end
|
2023-04-28 18:46:44 +02:00
|
|
|
|
2023-04-28 23:28:13 +02:00
|
|
|
def remaining_characters
|
|
|
|
character_limit_base - character_count if character_count >= character_limit_threshold_75
|
2023-04-28 18:46:44 +02:00
|
|
|
end
|
|
|
|
|
2023-04-28 23:28:13 +02:00
|
|
|
def excess_characters
|
|
|
|
character_count - character_limit_base if character_count > character_limit_base
|
|
|
|
end
|
2023-04-28 18:46:44 +02:00
|
|
|
|
2023-04-28 23:28:13 +02:00
|
|
|
def character_limit_info?
|
|
|
|
analyze_character_count == :info
|
|
|
|
end
|
|
|
|
|
|
|
|
def character_limit_warning?
|
|
|
|
analyze_character_count == :warning
|
|
|
|
end
|
|
|
|
|
2023-05-12 10:03:54 +02:00
|
|
|
def character_limit_base
|
|
|
|
character_limit&.to_i
|
|
|
|
end
|
|
|
|
|
2023-04-28 23:28:13 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def character_count
|
|
|
|
return value&.bytesize
|
|
|
|
end
|
|
|
|
|
|
|
|
def character_limit_threshold_75
|
|
|
|
character_limit_base * 0.75
|
2023-04-28 18:46:44 +02:00
|
|
|
end
|
|
|
|
|
2023-04-28 23:28:13 +02:00
|
|
|
def analyze_character_count
|
|
|
|
if character_limit? && character_count.present?
|
|
|
|
if character_count >= character_limit_base
|
|
|
|
return :warning
|
|
|
|
elsif character_count >= character_limit_threshold_75
|
|
|
|
return :info
|
|
|
|
end
|
|
|
|
end
|
2023-04-28 18:46:44 +02:00
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
end
|