Class: Decidim::Elections::Admin::CreateElection

Inherits:
Command
  • Object
show all
Includes:
GalleryMethods
Defined in:
decidim-elections/app/commands/decidim/elections/admin/create_election.rb

Overview

This command is executed when the user creates an Election from the admin panel.

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(form) ⇒ CreateElection

Returns a new instance of CreateElection.



11
12
13
# File 'decidim-elections/app/commands/decidim/elections/admin/create_election.rb', line 11

def initialize(form)
  @form = form
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Creates the election if valid.

Broadcasts :ok if successful, :invalid otherwise.



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'decidim-elections/app/commands/decidim/elections/admin/create_election.rb', line 18

def call
  return broadcast(:invalid) if form.invalid?

  if process_gallery?
    build_gallery
    return broadcast(:invalid) if gallery_invalid?
  end

  transaction do
    create_election!
    create_gallery if process_gallery?
  end

  broadcast(:ok, election)
end