add: last_online and online indicators
This commit is contained in:
parent
d3d0c41334
commit
e0a6072cc4
12 changed files with 177 additions and 9 deletions
|
@ -111,9 +111,13 @@ show_community=true) -%} {% if community and show_community %}
|
|||
|
||||
<div class="flex flex-col w-full gap-1">
|
||||
<div class="flex flex-wrap gap-2 items-center">
|
||||
<a href="/@{{ owner.username }}"
|
||||
>{{ components::username(user=owner) }}</a
|
||||
>
|
||||
<div class="flex">
|
||||
<a href="/@{{ owner.username }}"
|
||||
>{{ components::username(user=owner) }}</a
|
||||
>
|
||||
|
||||
{{ components::online_indicator(user=owner) }}
|
||||
</div>
|
||||
|
||||
<span class="fade date">{{ post.created }}</span>
|
||||
|
||||
|
@ -274,4 +278,45 @@ show_community=true) -%} {% if community and show_community %}
|
|||
</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
{%- endmacro %}
|
||||
{%- endmacro %} {% macro online_indicator(user) -%} {% if not
|
||||
user.settings.private_last_online or is_helper %}
|
||||
<div
|
||||
class="online_indicator"
|
||||
style="display: contents"
|
||||
hook="online_indicator"
|
||||
hook-arg:last_seen="{{ user.last_seen }}"
|
||||
>
|
||||
<div style="display: none" hook_ui_ident="online" title="Online">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
style="fill: var(--color-green)"
|
||||
>
|
||||
<circle cx="12" cy="12" r="6"></circle>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<div style="display: none" hook_ui_ident="idle" title="Idle">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
style="fill: var(--color-yellow)"
|
||||
>
|
||||
<circle cx="12" cy="12" r="6"></circle>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<div style="display: none" hook_ui_ident="offline" title="Offline">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
style="fill: hsl(0, 0%, 50%)"
|
||||
>
|
||||
<circle cx="12" cy="12" r="6"></circle>
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %} {%- endmacro %}
|
||||
|
|
|
@ -72,6 +72,14 @@
|
|||
<span class="notification chip">Joined</span>
|
||||
<span class="date">{{ profile.created }}</span>
|
||||
</div>
|
||||
|
||||
{% if not profile.settings.private_last_seen or is_self
|
||||
or is_helper %}
|
||||
<div class="w-full flex justify-between items-center">
|
||||
<span class="notification chip">Last seen</span>
|
||||
<span class="date">{{ profile.last_seen }}</span>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -493,6 +493,11 @@
|
|||
"{{ profile.settings.private_communities }}",
|
||||
"checkbox",
|
||||
],
|
||||
[
|
||||
["private_last_seen", "Keep my last seen time private"],
|
||||
"{{ profile.settings.private_last_seen }}",
|
||||
"checkbox",
|
||||
],
|
||||
],
|
||||
settings,
|
||||
);
|
||||
|
|
|
@ -103,6 +103,7 @@
|
|||
atto["hooks::character_counter.init"]();
|
||||
atto["hooks::long_text.init"]();
|
||||
atto["hooks::alt"]();
|
||||
atto["hooks::online_indicator"]();
|
||||
// atto["hooks::ips"]();
|
||||
atto["hooks::check_reactions"]();
|
||||
atto["hooks::tabs"]();
|
||||
|
@ -110,6 +111,14 @@
|
|||
});
|
||||
</script>
|
||||
|
||||
{% if user %}
|
||||
<script data-turbo-permanent="true" id="update-seen-script">
|
||||
document.documentElement.addEventListener("turbo:load", () => {
|
||||
trigger("me::seen");
|
||||
});
|
||||
</script>
|
||||
{% endif %}
|
||||
|
||||
<!-- dialogs -->
|
||||
<dialog id="link_filter">
|
||||
<div class="inner">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue