feat: add polls

This commit is contained in:
Ondřej Pešek 2023-03-23 13:21:09 +01:00
parent 5dc3279ac3
commit c1c867a5ff
3 changed files with 135 additions and 0 deletions

View file

@ -148,6 +148,9 @@
<!-- POST BODY -->
<div class="post_body">{{ post.body|safe }}</div>
<div class="post_score" title="{{ post.score.1 }}">{{ post.score.0 }}<span class="label"> Upvotes</span></div>
{% call poll(post) %}
<div class="post_footer">
<ul id="post_links">
<li class="desktop_item"><a href="{{ post.permalink }}">permalink</a></li>
@ -272,6 +275,9 @@
<div class="post_body post_preview">
{{ post.body|safe }}
</div>
{% call poll(post) %}
<div class="post_footer">
<a href="{{ post.permalink }}" class="post_comments" title="{{ post.comments.1 }} {% if post.comments.1 == "1" %}comment{% else %}comments{% endif %}">{{ post.comments.0 }} {% if post.comments.1 == "1" %}comment{% else %}comments{% endif %}</a>
</div>
@ -299,3 +305,28 @@
</div>
</div>
{%- endmacro %}
{% macro poll(post) -%}
{% match post.poll %}
{% when Some with (poll) %}
{% let widest = poll.most_votes() %}
<div class="post_poll">
<span>{{ poll.total_vote_count }} votes</span>
<span>{{ poll.voting_end_timestamp.0 }}</span>
{% for option in poll.poll_options %}
<div class="poll_option">
{# Posts without vote_count (all open polls) will show up as having 0 votes.
This is an issue with Reddit API, it doesn't work on Old Reddit either. #}
{% if option.vote_count == widest %}
<div class="poll_chart most_voted" style="width: 100%"></div>
{% else %}
<div class="poll_chart" style="width: {{ (option.vote_count * 100) / widest }}%"></div>
{% endif %}
<span>{{ option.vote_count }}</span>
<span>{{ option.text }}</span>
</div>
{% endfor %}
</div>
{% when None %}
{% endmatch %}
{%- endmacro %}