Sha256: b96439e6716c7c5c3c52f6f1fd1ab39c39ba4bfb57cd462ea8904334793047c5

Contents?: true

Size: 1.75 KB

Versions: 4

Compression:

Stored size: 1.75 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
    belongs_to :participatory_process, foreign_key: "decidim_participatory_process_id", class_name: Decidim::ParticipatoryProcess
    has_one :organization, through: :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

    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

4 entries across 4 versions & 1 rubygems

Version Path
decidim-core-0.1.0 app/models/decidim/participatory_process_step.rb
decidim-core-0.0.8.1 app/models/decidim/participatory_process_step.rb
decidim-core-0.0.7 app/models/decidim/participatory_process_step.rb
decidim-core-0.0.6 app/models/decidim/participatory_process_step.rb