annotate sat_templates/templates/bulma/chat/reactions.html @ 404:66f98ee041d8 default tip

chat: add UI for replies/threads: rel 457
author Goffi <goffi@goffi.org>
date Tue, 06 May 2025 00:37:41 +0200
parents 65c53ec5e777
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
385
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
1 <div class="reactions-container is-flex-wrap-wrap">
390
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
2
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
3 {% if chat_type == "group" %}
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
4 {% set local_jid = own_local_jid %}
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
5 {% else %}
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
6 {% set local_jid = own_local_jid|bare_jid %}
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
7 {% endif %}
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
8
385
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
9 {% for emoji, jids in reactions.items() %}
390
38635d393089 bulma (chat/reactions): use a special style for reactions made by the user.
Goffi <goffi@goffi.org>
parents: 385
diff changeset
10 {% set own_reaction = local_jid in jids %}
385
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
11 <div
403
65c53ec5e777 Bulma: complete redesign:
Goffi <goffi@goffi.org>
parents: 390
diff changeset
12 class="reaction is-inline-flex is-align-items-center {{ 'own-reaction' if own_reaction }}"
385
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
13 data-jids='{{jids|tojson}}'
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
14 >
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
15 <span class="emoji has-text-weight-semibold">{{ emoji }}</span>
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
16 <span class="counter">{{ jids|length }}</span>
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 </div>
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
18 {% endfor %}
941e4006ab6e bulma (message): reactions + fixes:
Goffi <goffi@goffi.org>
parents:
diff changeset
19 </div>