Class: Decidim::Initiatives::ContentBlocks::HighlightedInitiativesCell
- Inherits:
-
ViewModel
- Object
- Cell::ViewModel
- ViewModel
- Decidim::Initiatives::ContentBlocks::HighlightedInitiativesCell
show all
- Includes:
- SanitizeHelper
- Defined in:
- decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb
Instance Method Summary
collapse
#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_editor, #decidim_sanitize_newsletter, #decidim_url_escape, included
Methods inherited from ViewModel
#call, #current_user
#element_id
#button_to, #submit_tag
#action_authorized_button_to, #action_authorized_link_to, #logged_button_to, #logged_link_to
#has_visible_scopes?, #scope_name_for_picker, #scopes_picker_field, #scopes_picker_filter, #scopes_picker_tag
#default_locale?
#areas_for_select, #base_error_messages, #decidim_form_for, #decidim_form_slug_url, #editor_field_tag, #form_field_has_error?, #form_required_explanation, #name_with_locale, #scopes_picker_field_tag, #tab_element_class_for, #translated_field_tag
#linked_classes_filter_values_for, #linked_classes_for, #linked_resources_for, #resource_locator, #resource_title
Instance Method Details
#decidim_initiatives ⇒ Object
34
35
36
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 34
def decidim_initiatives
Decidim::Initiatives::Engine.routes.url_helpers
end
|
#highlighted_initiatives ⇒ Object
23
24
25
26
27
28
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 23
def highlighted_initiatives
@highlighted_initiatives ||= OrganizationPrioritizedInitiatives
.new(current_organization, order)
.query
.limit(max_results)
end
|
#i18n_scope ⇒ Object
30
31
32
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 30
def i18n_scope
"decidim.initiatives.pages.home.highlighted_initiatives"
end
|
#max_results ⇒ Object
15
16
17
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 15
def max_results
model.settings.max_results
end
|
#order ⇒ Object
19
20
21
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 19
def order
model.settings.order
end
|
#show ⇒ Object
11
12
13
|
# File 'decidim-initiatives/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb', line 11
def show
render if highlighted_initiatives.any?
end
|