discourse/plugins/chat/lib/onebox/templates/discourse_chat_channel.mustache
Jan Cernik aaf47c02bc
DEV: Refactor chat oneboxes (#23031)
- moves the onebox logic away from `plugin.rb` to a new `onebox_handler` lib
- splits the `discourse_chat_message` template into two: one for channels, and one for messages
- refactors the logic code slightly to send only the necessary arguments to each template

This commit shouldn't change end-user behavior.
2023-09-04 16:55:02 +02:00

27 lines
1.0 KiB
Plaintext

<aside class="onebox chat-onebox">
<article class="onebox-body chat-onebox-body">
<h3 class="chat-onebox-title">
<a href="{{url}}">
{{#is_category}}
<span class="category-chat-badge" style="color: #{{color}}">
<svg class="fa d-icon d-icon-d-chat svg-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use href="#d-chat"></use></svg>
</span>
{{/is_category}}
<span class="clear-badge">{{{channel_name}}}</span>
</a>
</h3>
{{#description}}
<div class="chat-onebox-description">{{description}}</div>
{{/description}}
<div class="chat-onebox-members-count">{{user_count_str}}</div>
<div class="chat-onebox-members">
{{#users}}
<a class="trigger-user-card" data-user-card="{{username}}" aria-hidden="true" tabindex="-1">
<img loading="lazy" alt="{{username}}" width="30" height="30" src="{{avatar_url}}" class="avatar">
</a>
{{/users}}
{{remaining_user_count_str}}
</div>
</article>
</aside>