Sha256: 01e17ea028208480091cbb51b98f110413faeccb1e8397d2750e563d853c0ef5

Contents?: true

Size: 1.06 KB

Versions: 17

Compression:

Stored size: 1.06 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!(attributes)
      end

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

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
decidim-admin-0.1.0 app/commands/decidim/admin/update_category.rb
decidim-0.1.0 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.8.1 app/commands/decidim/admin/update_category.rb
decidim-0.0.8.1 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.7 app/commands/decidim/admin/update_category.rb
decidim-0.0.7 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.6 app/commands/decidim/admin/update_category.rb
decidim-0.0.6 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.5 app/commands/decidim/admin/update_category.rb
decidim-0.0.5 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-0.0.4 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.3 app/commands/decidim/admin/update_category.rb
decidim-0.0.3 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.2 app/commands/decidim/admin/update_category.rb
decidim-0.0.2 decidim-admin/app/commands/decidim/admin/update_category.rb
decidim-admin-0.0.1 app/commands/decidim/admin/update_category.rb
decidim-0.0.1 decidim-admin/app/commands/decidim/admin/update_category.rb