demarches-normaliennes/app/models/logic/include_operator.rb
simon lehericey cd2b08e39b options
2022-09-28 10:06:31 +02:00

29 lines
695 B
Ruby

class Logic::IncludeOperator < Logic::BinaryOperator
def operation = :include?
def errors(type_de_champs = [])
result = []
if left_not_a_list?(type_de_champs)
result << { type: :required_list }
elsif right_value_not_in_list?(type_de_champs)
result << {
type: :not_included,
stable_id: @left.stable_id,
right: @right
}
end
result + @left.errors(type_de_champs) + @right.errors(type_de_champs)
end
private
def left_not_a_list?(type_de_champs)
@left.type(type_de_champs) != :enums
end
def right_value_not_in_list?(type_de_champs)
!@left.options(type_de_champs).map(&:second).include?(@right.value)
end
end