21 lines
626 B
Ruby
21 lines
626 B
Ruby
module ProposalsHelper
|
|
|
|
def progress_bar_percentage(proposal)
|
|
case proposal.cached_votes_up
|
|
when 0 then 0
|
|
when 1..Proposal.votes_needed_for_success then (proposal.cached_votes_up.to_f * 100 / Proposal.votes_needed_for_success).floor
|
|
else 100
|
|
end
|
|
end
|
|
|
|
def supports_percentage(proposal)
|
|
percentage = (proposal.cached_votes_up.to_f * 100 / Proposal.votes_needed_for_success)
|
|
case percentage
|
|
when 0 then "0%"
|
|
when 0..(0.1) then "0.1%"
|
|
when (0.1)..100 then number_to_percentage(percentage, strip_insignificant_zeros: true, precision: 1)
|
|
else "100%"
|
|
end
|
|
end
|
|
|
|
end |