Sha256: 8f802827f55ef0eef29a3d36440f97809a207bf4d6f855b8b1580b1cd923b654

Contents?: true

Size: 951 Bytes

Versions: 2

Compression:

Stored size: 951 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Consultations
    module Admin
      # A command with all the business logic when creating a new response
      class CreateResponse < Rectify::Command
        # Public: Initializes the command.
        #
        # form - A form object with the params.
        def initialize(form)
          @form = form
        end

        # Executes the command. Broadcasts 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?

          broadcast(:ok, create_response)
        end

        private

        attr_reader :form

        def create_response
          Response.create(
            question: form.context.current_question,
            title: form.title
          )
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-consultations-0.19.1 app/commands/decidim/consultations/admin/create_response.rb
decidim-consultations-0.19.0 app/commands/decidim/consultations/admin/create_response.rb