2020-05-07 13:10:53 +00:00
|
|
|
<template>
|
|
|
|
<div class="chat-view">
|
|
|
|
<div class="chat-view-inner">
|
|
|
|
<div
|
|
|
|
id="nav"
|
|
|
|
ref="inner"
|
|
|
|
class="panel-default panel chat-view-body"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
ref="header"
|
|
|
|
class="panel-heading chat-view-heading mobile-hidden"
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
class="go-back-button"
|
|
|
|
@click="goBack"
|
|
|
|
>
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
size="lg"
|
|
|
|
icon="chevron-left"
|
|
|
|
/>
|
2020-05-07 13:10:53 +00:00
|
|
|
</a>
|
|
|
|
<div class="title text-center">
|
|
|
|
<ChatTitle
|
|
|
|
:user="recipient"
|
|
|
|
:with-avatar="true"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
ref="scrollable"
|
|
|
|
class="scrollable-message-list"
|
|
|
|
:style="{ height: scrollableContainerHeight }"
|
|
|
|
@scroll="handleScroll"
|
|
|
|
>
|
|
|
|
<template v-if="!errorLoadingChat">
|
|
|
|
<ChatMessage
|
|
|
|
v-for="chatViewItem in chatViewItems"
|
|
|
|
:key="chatViewItem.id"
|
|
|
|
:author="recipient"
|
|
|
|
:chat-view-item="chatViewItem"
|
|
|
|
:hovered-message-chain="chatViewItem.messageChainId === hoveredMessageChainId"
|
|
|
|
@hover="onMessageHover"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="chat-loading-error"
|
|
|
|
>
|
|
|
|
<div class="alert error">
|
|
|
|
{{ $t('chats.error_loading_chat') }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
ref="footer"
|
|
|
|
class="panel-body footer"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="jump-to-bottom-button"
|
|
|
|
:class="{ 'visible': jumpToBottomButtonVisible }"
|
|
|
|
@click="scrollDown({ behavior: 'smooth' })"
|
|
|
|
>
|
2020-10-20 18:03:46 +00:00
|
|
|
<span>
|
|
|
|
<FAIcon icon="chevron-down" />
|
2020-05-07 13:10:53 +00:00
|
|
|
<div
|
|
|
|
v-if="newMessageCount"
|
|
|
|
class="badge badge-notification unread-chat-count unread-message-count"
|
|
|
|
>
|
|
|
|
{{ newMessageCount }}
|
|
|
|
</div>
|
2020-10-20 18:03:46 +00:00
|
|
|
</span>
|
2020-05-07 13:10:53 +00:00
|
|
|
</div>
|
|
|
|
<PostStatusForm
|
|
|
|
:disable-subject="true"
|
|
|
|
:disable-scope-selector="true"
|
|
|
|
:disable-notice="true"
|
|
|
|
:disable-lock-warning="true"
|
|
|
|
:disable-polls="true"
|
|
|
|
:disable-sensitivity-checkbox="true"
|
|
|
|
:disable-submit="errorLoadingChat || !currentChat"
|
2020-07-06 13:55:29 +00:00
|
|
|
:disable-preview="true"
|
2020-06-21 14:13:29 +00:00
|
|
|
:post-handler="sendMessage"
|
2020-05-07 13:10:53 +00:00
|
|
|
:submit-on-enter="!mobileLayout"
|
|
|
|
:preserve-focus="!mobileLayout"
|
|
|
|
:auto-focus="!mobileLayout"
|
|
|
|
:placeholder="formPlaceholder"
|
|
|
|
:file-limit="1"
|
|
|
|
max-height="160"
|
|
|
|
emoji-picker-placement="top"
|
|
|
|
@resize="handleResize"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./chat.js"></script>
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
@import './chat.scss';
|
|
|
|
</style>
|