23 lines
672 B
Handlebars
23 lines
672 B
Handlebars
<div
|
|
class={{concat-class
|
|
"chat-channel-preview-card"
|
|
(unless this.hasDescription "-no-description")
|
|
(unless (and this.isOpen this.canJoin) "-no-button")
|
|
}}
|
|
>
|
|
<ChatChannelTitle @channel={{this.channel}} />
|
|
{{#if this.hasDescription}}
|
|
<p class="chat-channel-preview-card__description">
|
|
{{this.channel.description}}
|
|
</p>
|
|
{{/if}}
|
|
{{#if (and this.isOpen this.canJoin)}}
|
|
<ToggleChannelMembershipButton
|
|
@channel={{this.channel}}
|
|
@options={{hash joinClass="btn-primary"}}
|
|
/>
|
|
{{/if}}
|
|
<LinkTo @route="chat.browse" class="chat-channel-preview-card__browse-all">
|
|
{{i18n "chat.browse_all_channels"}}
|
|
</LinkTo>
|
|
</div> |