# 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 include CollaborativeDraftHelper # 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 state of a proposal in a way a human can understand. # # state - The String state of the proposal. # # Returns a String. def humanize_collaborative_draft_state(state) I18n.t("decidim.proposals.collaborative_drafts.states.#{state}", default: :open) end # Public: The css class applied based on the collaborative draft state. # # state - The String state of the collaborative draft. # # Returns a String. def collaborative_draft_state_badge_css_class(state) case state when "open" "success" when "withdrawn" "alert" when "published" "secondary" end end def proposal_limit_enabled? proposal_limit.present? end def proposal_limit return if component_settings.proposal_limit.zero? component_settings.proposal_limit end def current_user_proposals Proposal.where(component: current_component, author: current_user) end def follow_button_for(model) if current_user render partial: "decidim/shared/follow_button.html", locals: { followable: model } else content_tag(:p, class: "mt-s mb-none") do t("decidim.proposals.proposals.show.sign_in_or_up", in: link_to(t("decidim.proposals.proposals.show.sign_in"), decidim.new_user_session_path), up: link_to(t("decidim.proposals.proposals.show.sign_up"), decidim.new_user_registration_path)).html_safe end end end def endorsers_for(proposal) proposal.endorsements.for_listing.map { |identity| present(identity.normalized_author) } end def form_has_address? @form.address.present? || @form.has_address end def authors_for(collaborative_draft) collaborative_draft.identities.map { |identity| present(identity) } end end end end