17 lines
714 B
Handlebars
17 lines
714 B
Handlebars
<LinkTo @route="chat.channel" @models={{array this.channel.id (or this.channel.slug "-")}} class={{this.rowClassNames}} id={{concat "chat-channel-row-" this.channel.id}} tabindex="0" data-chat-channel-id={{this.channel.id}}>
|
|
<ChatChannelTitle @channel={{this.channel}} />
|
|
<ChatChannelMetadata @channel={{this.channel}} @unreadIndicator={{true}} />
|
|
|
|
{{#if (and this.options.leaveButton this.channel.isFollowing (not this.site.mobileView))}}
|
|
<ToggleChannelMembershipButton
|
|
@channel={{this.channel}}
|
|
@options={{hash
|
|
leaveClass="btn-flat chat-channel-leave-btn"
|
|
labelType="none"
|
|
leaveIcon="times"
|
|
leaveTitle=this.leaveChatTitle
|
|
}}
|
|
/>
|
|
{{/if}}
|
|
</LinkTo>
|