Sha256: d2c6b669de681746d9e03105ffc39708f01887208a17a68dfbdc5355fcec8467

Contents?: true

Size: 1.1 KB

Versions: 60

Compression:

Stored size: 1.1 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,
          description: form.description,
          parent_id: form.parent_id,
          participatory_space: @participatory_space
        )
      end
    end
  end
end

Version data entries

60 entries across 60 versions & 2 rubygems

Version Path
decidim-admin-0.19.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.18.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.19.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.17.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.18.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.17.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.16.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.17.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.16.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.15.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.15.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.15.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.14.4 app/commands/decidim/admin/create_category.rb
decidim-admin-0.14.3 app/commands/decidim/admin/create_category.rb
decidim-admin-0.14.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.14.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.13.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.12.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.13.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.12.1 app/commands/decidim/admin/create_category.rb