Class: Decidim::Proposals::ProposalGCell
- Inherits:
-
CardGCell
- Object
- CardGCell
- Decidim::Proposals::ProposalGCell
show all
- Includes:
- LayoutHelper, ApplicationHelper
- Defined in:
- app/cells/decidim/proposals/proposal_g_cell.rb
Overview
This cell renders the proposal card for an instance of a Proposal the default size is the Grid Card (:g)
Instance Method Summary
collapse
#activity_filter_values, #collaborative_draft_state_badge_css_class, #component_name, #filter_origin_values, #filter_proposals_state_values, #filter_sections, #filter_type_values, #humanize_collaborative_draft_state, #humanize_proposal_state, #layout_item_classes, #not_from_collaborative_draft, #not_from_participatory_text, #proposal_limit, #proposal_limit_enabled?, #proposal_state_css_class, #proposal_state_css_style, #render_proposal_body, #safe_content?, #safe_content_admin?, #show_voting_rules?, #templates_available?, #text_editor_for_proposal_body
#item_name
#accept_request_button_label, #collaborative_drafts_filter_sections, #collaborative_drafts_state_class, #filter_collaborative_drafts_state_values, #humanize_collaborative_draft_state, #reject_request_button_label
Methods included from MapHelper
#has_position?, #proposal_preview_data_for_map
#can_accumulate_votes_beyond_threshold?, #current_user_can_vote?, #minimum_votes_per_user_enabled?, #proposal_voted_by_user?, #remaining_minimum_votes_count_for_user, #remaining_votes_count_for_user, #threshold_per_proposal, #threshold_per_proposal_enabled?, #vote_limit_enabled?, #votes_blocked?, #votes_enabled?
Instance Method Details
#has_actions? ⇒ Boolean
31
32
33
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 31
def has_actions?
model.component.current_settings.votes_enabled? && !model.draft? && !model.withdrawn? && !model.rejected?
end
|
23
24
25
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 23
def metadata_cell
"decidim/proposals/proposal_metadata"
end
|
39
40
41
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 39
def metadata_cell_instance
@metadata_cell_instance ||= cell("decidim/proposals/proposal_metadata", model)
end
|
#proposal_vote_cell ⇒ Object
27
28
29
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 27
def proposal_vote_cell
"decidim/proposals/proposal_vote"
end
|
#proposal_votes_count ⇒ Object
35
36
37
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 35
def proposal_votes_count
model.proposal_votes_count || 0
end
|
#resource_image_path ⇒ Object
43
44
45
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 43
def resource_image_path
model.photo&.url
end
|
#show ⇒ Object
15
16
17
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 15
def show
render
end
|
#title ⇒ Object
19
20
21
|
# File 'app/cells/decidim/proposals/proposal_g_cell.rb', line 19
def title
present(model).title(html_escape: true)
end
|