Sha256: ae1cd0748d81c912500186383241654ab0a1e0a9cde19636106f9a26a432b0ef

Contents?: true

Size: 1.13 KB

Versions: 37

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic to create a new category in the
    # system.
    class CreateCategory < Rectify::Command
      # Public: Initializes the command.
      #
      # form - A form object with the params.
      # participatory_space - The participatory space that will hold the
      #   category
      def initialize(form, participatory_space)
        @form = form
        @participatory_space = participatory_space
      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?

        create_category
        broadcast(:ok)
      end

      private

      attr_reader :form

      def create_category
        Category.create!(
          name: form.name,
          weight: form.weight,
          description: form.description,
          parent_id: form.parent_id,
          participatory_space: @participatory_space
        )
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
decidim-admin-0.26.10 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.9 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.8 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.7 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.5 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.4 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.3 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.0.rc2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.26.0.rc1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.0.rc4 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.0.rc3 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.0.rc2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.25.0.rc1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.24.3 app/commands/decidim/admin/create_category.rb