Sha256: 9e72da4bb294a953553ca3f3480229231e77d9e590dac35ea28728c74bdbf2e6

Contents?: true

Size: 1.34 KB

Versions: 4

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true
module Decidim
  module Admin
    # A command with all the business logic when creating a new participatory
    # process in the system.
    class UpdateParticipatoryProcessStep < Rectify::Command
      attr_reader :participatory_process_step
      # Public: Initializes the command.
      #
      # participatory_process_step - the ParticipatoryProcessStep to update
      # form - A form object with the params.
      def initialize(participatory_process_step, form)
        @participatory_process_step = participatory_process_step
        @form = form
      end

      # Executes the command. Braodcasts these events:
      #
      # - :ok when everything is valid.
      # - :invalid if the form wasn't valid and we couldn't proceed.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if form.invalid?

        update_participatory_process_step
        broadcast(:ok)
      end

      private

      attr_reader :form

      def update_participatory_process_step
        participatory_process_step.update_attributes!(attributes)
      end

      def attributes
        {
          title: form.title,
          start_date: form.start_date,
          end_date: form.end_date,
          description: form.description,
          short_description: form.short_description
        }
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
decidim-admin-0.0.1.alpha9 app/commands/decidim/admin/update_participatory_process_step.rb
decidim-0.0.1.alpha9 decidim-admin/app/commands/decidim/admin/update_participatory_process_step.rb
decidim-admin-0.0.1.alpha8 app/commands/decidim/admin/update_participatory_process_step.rb
decidim-0.0.1.alpha8 decidim-admin/app/commands/decidim/admin/update_participatory_process_step.rb