2019-03-07 21:53:47 +00:00
|
|
|
- show_results = (user_signed_in? && poll.voted?(current_account)) || poll.expired?
|
2019-09-22 12:15:18 +00:00
|
|
|
- own_votes = user_signed_in? ? poll.own_votes(current_account) : []
|
2019-09-29 20:58:01 +00:00
|
|
|
- total_votes_count = poll.voters_count || poll.votes_count
|
2019-03-04 17:03:12 +00:00
|
|
|
|
|
|
|
.poll
|
|
|
|
%ul
|
2019-09-22 12:15:18 +00:00
|
|
|
- poll.loaded_options.each_with_index do |option, index|
|
2019-03-04 17:03:12 +00:00
|
|
|
%li
|
|
|
|
- if show_results
|
2019-09-29 20:58:01 +00:00
|
|
|
- percent = total_votes_count > 0 ? 100 * option.votes_count / total_votes_count : 0
|
2019-03-04 17:03:12 +00:00
|
|
|
%span.poll__chart{ style: "width: #{percent}%" }
|
2019-03-05 02:51:18 +00:00
|
|
|
|
2019-03-04 17:03:12 +00:00
|
|
|
%label.poll__text><
|
2019-09-22 12:15:18 +00:00
|
|
|
%span.poll__number><
|
|
|
|
- if own_votes.include?(index)
|
|
|
|
%i.poll__vote__mark.fa.fa-check
|
|
|
|
= percent.round
|
2019-03-20 16:29:12 +00:00
|
|
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
2019-03-04 17:03:12 +00:00
|
|
|
- else
|
|
|
|
%label.poll__text><
|
2019-03-05 02:51:18 +00:00
|
|
|
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil}><
|
2019-03-20 16:29:12 +00:00
|
|
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
2019-03-04 17:03:12 +00:00
|
|
|
.poll__footer
|
|
|
|
- unless show_results
|
|
|
|
%button.button.button-secondary{ disabled: true }
|
|
|
|
= t('statuses.poll.vote')
|
2019-03-05 02:51:18 +00:00
|
|
|
|
2019-09-29 20:58:01 +00:00
|
|
|
- if poll.voters_count.nil?
|
|
|
|
%span= t('statuses.poll.total_votes', count: poll.votes_count)
|
|
|
|
- else
|
|
|
|
%span= t('statuses.poll.total_people', count: poll.voters_count)
|
2019-03-05 02:51:18 +00:00
|
|
|
|
|
|
|
- unless poll.expires_at.nil?
|
|
|
|
·
|
|
|
|
%span= l poll.expires_at
|