2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-13 18:18:20 +01:00
|
|
|
class Champs::TextareaChamp < Champs::TextChamp
|
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
|