Class: Decidim::Consultations::ContentBlocks::HighlightedConsultationsCell
- Inherits:
-
ViewModel
- Object
- ViewModel
- Decidim::Consultations::ContentBlocks::HighlightedConsultationsCell
- Defined in:
- app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb
Instance Method Summary collapse
- #decidim_consultations ⇒ Object
- #highlighted_consultations ⇒ Object
- #i18n_scope ⇒ Object
- #max_results ⇒ Object
- #show ⇒ Object
- #voting_ends_text_for(consultation) ⇒ Object
Instance Method Details
#decidim_consultations ⇒ Object
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_consultations ⇒ Object
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_scope ⇒ Object
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_results ⇒ Object
13 14 15 |
# File 'app/cells/decidim/consultations/content_blocks/highlighted_consultations_cell.rb', line 13 def max_results model.settings.max_results end |
#show ⇒ Object
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 |