This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/assets/javascripts/discourse/components/chat-channel-about-view.hbs

66 lines
2.3 KiB
Handlebars

{{#if this.channel.isCategoryChannel}}
<div class="chat-form__section">
<div class="chat-form__field">
<label class="chat-form__label">
{{i18n "chat.about_view.associated_category"}}
</label>
<div class="chat-form__control">
{{category-badge this.channel.chatable link=true allowUncategorized=true}}
</div>
</div>
</div>
{{/if}}
<div class="chat-form__section">
<div class="chat-form__field">
<label class="chat-form__label">
<span>{{i18n "chat.about_view.title"}}</span>
{{#if (chat-guardian "can-edit-chat-channel")}}
<div class="chat-form__label-actions">
<DButton @class="edit-title-btn btn-flat" @label="chat.channel_settings.edit" @action={{if this.onEditChatChannelTitle this.onEditChatChannelTitle}} />
</div>
{{/if}}
</label>
<div class="chat-form__control">
<div class="channel-info-about-view__title">
{{replace-emoji this.channel.escapedTitle}}
</div>
</div>
</div>
</div>
{{#if (or (chat-guardian "can-edit-chat-channel") this.channel.description.length)}}
<div class="chat-form__section">
<div class="chat-form__field">
<label class="chat-form__label">
<span>{{i18n "chat.about_view.description"}}</span>
{{#if (chat-guardian "can-edit-chat-channel")}}
<div class="chat-form__label-actions">
<DButton @class="edit-description-btn btn-flat" @label={{if this.channel.description.length "chat.channel_settings.edit" "chat.channel_settings.add"}} @action={{if this.onEditChatChannelDescription this.onEditChatChannelDescription}} />
</div>
{{/if}}
</label>
<div class="chat-form__control">
<div class="channel-info-about-view__description">
{{#if this.channel.description.length}}
{{this.channel.description}}
{{else}}
<div class="channel-info-about-view__description__helper-text">
{{i18n "chat.channel_edit_description_modal.description"}}
</div>
{{/if}}
</div>
</div>
</div>
</div>
{{/if}}
<div class="chat-form__section">
<ToggleChannelMembershipButton
@channel={{this.channel}}
@onToggle={{action "afterMembershipToggle"}}
@options={{hash joinClass="btn-primary" leaveClass="btn-flat" joinIcon="sign-in-alt" leaveIcon="sign-out-alt"}}
/>
</div>