2024-09-05 22:54:38 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-07-16 20:22:59 +02:00
|
|
|
class Element < ApplicationRecord
|
2024-10-31 23:13:18 +01:00
|
|
|
has_rich_text :description
|
2024-07-16 20:22:59 +02:00
|
|
|
|
2024-10-31 23:13:18 +01:00
|
|
|
belongs_to :page, touch: true
|
2024-07-16 20:22:59 +02:00
|
|
|
has_many :success_criteria, dependent: :destroy
|
2024-07-20 16:52:12 +02:00
|
|
|
|
2024-10-31 23:13:18 +01:00
|
|
|
delegate :report, to: :page
|
2024-07-26 00:59:00 +02:00
|
|
|
|
2024-11-01 03:26:46 +01:00
|
|
|
after_validation :set_position
|
|
|
|
|
|
2024-07-26 00:59:00 +02:00
|
|
|
# Calculate actual conformity level:
|
|
|
|
|
# - if a success_criterion has result :failed -> the confirmity_level
|
|
|
|
|
# of that success_criterion is not reached.
|
|
|
|
|
# - the resulting level is the highest readched level
|
|
|
|
|
# abeying rule above.
|
|
|
|
|
def level
|
|
|
|
|
return nil
|
|
|
|
|
return nil unless success_criteria.all(&:result)
|
|
|
|
|
|
|
|
|
|
min_failed = success_criteria.select(&:failed?).map(&:level).min
|
|
|
|
|
possible_levels = success_criteria.select(&:passed?).map(&:level).uniq
|
|
|
|
|
|
|
|
|
|
return nil if possible_levels.empty?
|
|
|
|
|
|
2024-09-05 22:54:38 +02:00
|
|
|
Rails.logger.debug possible_levels.inspect
|
|
|
|
|
Rails.logger.debug min_failed
|
2024-07-26 00:59:00 +02:00
|
|
|
possible_levels[possible_levels.find_index(min_failed) - 1]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def max_level
|
|
|
|
|
@max_level ||= success_criteria.reject(&:not_applicable?).max(&:level)
|
|
|
|
|
end
|
2024-11-01 03:26:46 +01:00
|
|
|
|
|
|
|
|
def set_position
|
|
|
|
|
Rails.logger.debug("element: position #{position}")
|
|
|
|
|
self.position ||= (page.elements.pluck(:position).max || 0) + 1
|
|
|
|
|
end
|
2024-07-16 20:22:59 +02:00
|
|
|
end
|