Sha256: 8cea5888363ef43ccab93090934413dbf9c97a5302c8b3911e99e6b661b68d9f

Contents?: true

Size: 1.05 KB

Versions: 28

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A command with all the business logic when updating a category in the
    # system.
    class UpdateCategory < Rectify::Command
      attr_reader :category

      # Public: Initializes the command.
      #
      # category - the Category to update
      # form - A form object with the params.
      def initialize(category, form)
        @category = category
        @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?

        update_category
        broadcast(:ok)
      end

      private

      attr_reader :form

      def update_category
        category.update!(attributes)
      end

      def attributes
        {
          name: form.name,
          parent_id: form.parent_id,
          description: form.description
        }
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

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