Sha256: b4aa22471af879c282e616ecefc1b57340e8b55ea285e305df790d389cb591c9
Contents?: true
Size: 1.91 KB
Versions: 10
Compression:
Stored size: 1.91 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # Custom helpers, scoped to the proposals engine. # module ProposalCellsHelper include Decidim::Proposals::ApplicationHelper include Decidim::Proposals::Engine.routes.url_helpers include Decidim::LayoutHelper include Decidim::ApplicationHelper include Decidim::TranslationsHelper include Decidim::ResourceReferenceHelper include Decidim::TranslatableAttributes include Decidim::CardHelper delegate :title, :proposal_state, :state, :published_state?, :withdrawn?, :amendable?, :emendation?, to: :model def has_actions? return context[:has_actions] if context[:has_actions].present? proposals_controller? && index_action? && current_settings.votes_enabled? && !model.draft? end def has_footer? return context[:has_footer] if context[:has_footer].present? proposals_controller? && index_action? && current_settings.votes_enabled? && !model.draft? end def proposals_controller? context[:controller].instance_of?(::Decidim::Proposals::ProposalsController) end def index_action? context[:controller].action_name == "index" end def current_settings model.component.current_settings end def component_settings model.component.settings end def current_component model.component end def from_context @options[:from] end def badge_name return humanize_proposal_state(:withdrawn) if withdrawn? humanize_proposal_state state end def state_classes return ["alert"] if withdrawn? case state when "accepted" ["success"] when "rejected" ["alert"] when "evaluating" ["warning"] else ["muted"] end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems