Class: Decidim::Elections::Admin::SetupForm

Inherits:
Form
  • Object
show all
Defined in:
app/forms/decidim/elections/admin/setup_form.rb

Overview

This class holds a form to setup elections from Decidim’s admin panel.

Instance Method Summary collapse

Instance Method Details

#bulletin_boardObject



79
80
81
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 79

def bulletin_board
  @bulletin_board ||= context[:bulletin_board] || Decidim::Elections.bulletin_board
end

#censusObject



97
98
99
100
101
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 97

def census
  return unless needs_census?

  @census ||= election.component.participatory_space.dataset
end

#census_codes_generated?Boolean

Returns:

  • (Boolean)


91
92
93
94
95
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 91

def census_codes_generated?
  return unless needs_census?

  census&.codes_generated? || census&.exporting_codes? || census&.freeze?
end

#census_messagesObject



65
66
67
68
69
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 65

def census_messages
  @census_messages ||= census_validations.to_h do |message, t_args, _valid|
    [message, I18n.t("steps.create_election.requirements.#{message}", **t_args, scope: "decidim.elections.admin")]
  end
end

#census_validationsObject



49
50
51
52
53
54
55
56
57
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 49

def census_validations
  return [] unless needs_census?

  @census_validations ||= [
    [:census_uploaded, {}, census.present? && census.data.exists?],
    [:census_codes_generated, {}, census_codes_generated?],
    [:census_frozen, {}, census&.freeze?]
  ].freeze
end

#current_stepObject



24
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 24

def current_step; end

#electionObject



75
76
77
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 75

def election
  @election ||= context[:election]
end

#main_button?Boolean

Returns:

  • (Boolean)


103
104
105
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 103

def main_button?
  true
end

#messagesObject



59
60
61
62
63
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 59

def messages
  @messages ||= validations.to_h do |message, t_args, _valid|
    [message, I18n.t("steps.create_election.requirements.#{message}", **t_args, scope: "decidim.elections.admin")]
  end
end

#needs_census?Boolean

Returns:

  • (Boolean)


83
84
85
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 83

def needs_census?
  vote_flow.is_a?(Decidim::Votings::CensusVoteFlow)
end

#participatory_space_trusteesObject



71
72
73
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 71

def participatory_space_trustees
  @participatory_space_trustees ||= Decidim::Elections::Trustees::ByParticipatorySpace.new(election.component.participatory_space).to_a
end

#pending_actionObject



26
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 26

def pending_action; end

#trustee_idsObject



28
29
30
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 28

def trustee_ids
  choose_random_trustees
end

#trusteesObject



32
33
34
35
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 32

def trustees
  ids = trustee_ids
  @trustees ||= Decidim::Elections::Trustees::ByParticipatorySpaceTrusteeIds.new(ids).to_a.sort_by(&:id)
end

#validationsObject



37
38
39
40
41
42
43
44
45
46
47
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 37

def validations
  @validations ||= [
    [:minimum_questions, {}, election.questions.any?],
    [:minimum_answers, {}, election.minimum_answers?],
    [:max_selections, {}, election.valid_questions?],
    [:published, {}, election.published_at.present?],
    [:component_published, {}, election.component.published?],
    [:time_before, { hours: Decidim::Elections.setup_minimum_hours_before_start }, election.minimum_hours_before_start?],
    [:trustees_number, { number: bulletin_board.number_of_trustees }, participatory_space_trustees_with_public_key.size >= bulletin_board.number_of_trustees]
  ].freeze
end

#vote_flowObject



87
88
89
# File 'app/forms/decidim/elections/admin/setup_form.rb', line 87

def vote_flow
  @vote_flow ||= election.participatory_space.try(:vote_flow_for, election)
end