Class: Decidim::Consultations::ContentBlocks::HighlightedConsultationsCell

Inherits:
ViewModel
  • Object
show all
Defined in:
app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb

Instance Method Summary collapse

Instance Method Details

#decidim_consultationsObject



28
29
30
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 28

def decidim_consultations
  Decidim::Consultations::Engine.routes.url_helpers
end

#highlighted_consultationsObject



17
18
19
20
21
22
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 17

def highlighted_consultations
  @highlighted_consultations ||= OrganizationActiveConsultations
                                 .new(current_organization)
                                 .query
                                 .limit(max_results)
end

#i18n_scopeObject



24
25
26
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 24

def i18n_scope
  "decidim.consultations.pages.home.highlighted_consultations"
end

#max_resultsObject



13
14
15
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 13

def max_results
  model.settings.max_results
end

#showObject



9
10
11
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 9

def show
  render if highlighted_consultations.any?
end

#voting_ends_text_for(consultation) ⇒ Object



32
33
34
35
36
37
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 32

def voting_ends_text_for(consultation)
  remaining_days = (consultation.end_voting_date - Time.zone.today).to_i
  return I18n.t("voting_ends_today", scope: i18n_scope) if remaining_days.zero?

  I18n.t("voting_ends_in", scope: i18n_scope, count: remaining_days)
end