Sha256: 3cc5e94777ee00106ae3a62eb9a782abc3ec033df0a0ccb2b01ffa8894f8fe8e

Contents?: true

Size: 1.17 KB

Versions: 12

Compression:

Stored size: 1.17 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 < Decidim::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, user)
        @form = form
        @participatory_space = participatory_space
        @user = user
      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
        Decidim.traceability.create!(
          Category,
          @user,
          name: form.name,
          weight: form.weight,
          parent_id: form.parent_id,
          participatory_space: @participatory_space
        )
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-admin-0.27.9 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.8 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.7 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.6 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.5 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.4 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.3 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.1 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.0 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.0.rc2 app/commands/decidim/admin/create_category.rb
decidim-admin-0.27.0.rc1 app/commands/decidim/admin/create_category.rb