Sha256: 66cadf221680f33d508532322b1e3dd77ae41eb4cc49df2cf4864cf641f41565

Contents?: true

Size: 1.08 KB

Versions: 37

Compression:

Stored size: 1.08 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,
          weight: form.weight,
          parent_id: form.parent_id,
          description: form.description
        }
      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/update_category.rb
decidim-admin-0.26.9 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.8 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.7 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.5 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.4 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.3 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.2 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.1 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.0 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.0.rc2 app/commands/decidim/admin/update_category.rb
decidim-admin-0.26.0.rc1 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.2 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.1 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.0 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.0.rc4 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.0.rc3 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.0.rc2 app/commands/decidim/admin/update_category.rb
decidim-admin-0.25.0.rc1 app/commands/decidim/admin/update_category.rb
decidim-admin-0.24.3 app/commands/decidim/admin/update_category.rb