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-draft-channel-screen.hbs

29 lines
757 B
Handlebars

<div class="chat-draft">
{{#if this.site.mobileView}}
<header class="chat-draft-header">
<FlatButton
@class="chat-draft-header__btn btn"
@icon="chevron-left"
@title="chat.draft_channel_screen.cancel"
@action={{action "onCancelChatDraft"}}
/>
<h2 class="chat-draft-header__title">
{{d-icon "comment"}}
{{i18n "chat.draft_channel_screen.header"}}
</h2>
</header>
{{/if}}
<DirectMessageCreator
@onChangeSelectedUsers={{action "onChangeSelectedUsers"}}
/>
{{#if this.previewedChannel}}
<ChatLivePane
@chatChannel={{this.previewedChannel}}
@includeHeader={{false}}
@onSwitchChannel={{action "onSwitchFromDraftChannel"}}
/>
{{/if}}
</div>