Sha256: f11006e2ef9aeeebb9d95b5efab91992e8a9d286199f58c9e84312abbb7d53ae
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # Custom helpers, scoped to the proposals engine. # module ApplicationHelper include Decidim::Comments::CommentsHelper include PaginateHelper include ProposalVotesHelper include ProposalEndorsementsHelper include Decidim::MapHelper include Decidim::Proposals::MapHelper # Public: The state of a proposal in a way a human can understand. # # state - The String state of the proposal. # # Returns a String. def humanize_proposal_state(state) I18n.t(state, scope: "decidim.proposals.answers", default: :not_answered) end # Public: The css class applied based on the proposal state. # # state - The String state of the proposal. # # Returns a String. def proposal_state_css_class(state) case state when "accepted" "text-success" when "rejected" "text-alert" when "evaluating" "text-info" else "text-warning" end end # Public: The css class applied based on the proposal state to # the proposal badge. # # state - The String state of the proposal. # # Returns a String. def proposal_state_badge_css_class(state) case state when "accepted" "success" when "rejected" "warning" when "evaluating" "secondary" when "withdrawn" "alert" end end def proposal_limit_enabled? proposal_limit.present? end def proposal_limit return if feature_settings.proposal_limit.zero? feature_settings.proposal_limit end def current_user_proposals Proposal.where(feature: current_feature, author: current_user) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decidim-proposals-0.10.1 | app/helpers/decidim/proposals/application_helper.rb |
decidim-proposals-0.10.0 | app/helpers/decidim/proposals/application_helper.rb |