mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 15:23:47 +08:00
aaf47c02bc
- 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.
27 lines
1.0 KiB
Plaintext
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>
|