Sha256: fc952eaa3fcfc8cbe98968700c323d2e6fa266afd3b0600f353070758a3d41ff
Contents?: true
Size: 1.96 KB
Versions: 2
Compression:
Stored size: 1.96 KB
Contents
# frozen_string_literal: true module Decidim # A ParticipatoryProcess is composed of many steps that hold different # features that will show up in the depending on what step is currently # active. class ParticipatoryProcessStep < ApplicationRecord include Traceable include Loggable belongs_to :participatory_process, foreign_key: "decidim_participatory_process_id", class_name: "Decidim::ParticipatoryProcess" has_one :organization, through: :participatory_process alias participatory_space participatory_process validates :start_date, date: { before: :end_date, allow_blank: true, if: proc { |obj| obj.end_date.present? } } validates :end_date, date: { after: :start_date, allow_blank: true, if: proc { |obj| obj.start_date.present? } } validates :active, uniqueness: { scope: :decidim_participatory_process_id }, if: proc { |step| step.active? } validates :position, numericality: { greater_than_or_equal_to: 0, only_integer: true }, allow_blank: true validates :position, uniqueness: { scope: :decidim_participatory_process_id } before_create :set_position def self.log_presenter_class_for(_log) Decidim::ParticipatoryProcesses::AdminLog::StepPresenter end private # Internal: Sets the position of the step if it is `nil`. That means that # when the step is the first of the process, and no position is set # manually, it will be set to 0, and when it is not the only one it will be # set to the last step's position + 1. # # Note: This allows manual positioning, but there is a validation that # forbids two steps from the same proccess to have the same position. Take # that into account. It would be best if you did not use manual # positioning. def set_position return if position.present? return self.position = 0 if participatory_process.steps.select(&:persisted?).empty? self.position = participatory_process.steps.pluck(:position).last + 1 end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-participatory_processes-0.10.1 | app/models/decidim/participatory_process_step.rb |
decidim-participatory_processes-0.10.0 | app/models/decidim/participatory_process_step.rb |