Class: Decidim::Admin::ContentBlocks::ReorderContentBlocks

Inherits:
Command
  • Object
show all
Defined in:
app/commands/decidim/admin/content_blocks/reorder_content_blocks.rb

Overview

A command that reorders a collection of content blocks the ones that might be missing.

Instance Method Summary collapse

Constructor Details

#initialize(organization, scope, order, scoped_resource_id = nil) ⇒ ReorderContentBlocks

Public: Initializes the command.

organization - the Organization where the content blocks reside scope - the scope applied to the content blocks order - an Array holding the order of IDs of published content blocks. scoped_resource_id - (optional) The id of the resource the content blocks belongs to.



15
16
17
18
19
20
# File 'app/commands/decidim/admin/content_blocks/reorder_content_blocks.rb', line 15

def initialize(organization, scope, order, scoped_resource_id = nil)
  @organization = organization
  @scope = scope
  @order = order
  @scoped_resource_id = scoped_resource_id
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the data was not valid and we could not proceed.

Returns nothing.



28
29
30
31
32
33
# File 'app/commands/decidim/admin/content_blocks/reorder_content_blocks.rb', line 28

def call
  return broadcast(:invalid) if order.blank?

  reorder_steps
  broadcast(:ok)
end