2017-12-05 10:02:41 +00:00
|
|
|
<template>
|
2018-12-28 19:39:54 +00:00
|
|
|
<div class="chat-panel" v-if="!this.collapsed || !this.floating">
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="panel panel-default">
|
2018-12-28 19:39:54 +00:00
|
|
|
<div class="panel-heading timeline-heading" :class="{ 'chat-heading': floating }" @click.stop.prevent="togglePanel">
|
2018-01-26 14:11:34 +00:00
|
|
|
<div class="title">
|
2019-02-12 03:35:24 +00:00
|
|
|
<span>{{$t('chat.title')}}</span>
|
|
|
|
<i class="icon-cancel" v-if="floating"></i>
|
2018-01-26 14:11:34 +00:00
|
|
|
</div>
|
2017-12-05 10:02:41 +00:00
|
|
|
</div>
|
2018-01-26 14:11:34 +00:00
|
|
|
<div class="chat-window" v-chat-scroll>
|
2017-12-05 13:20:34 +00:00
|
|
|
<div class="chat-message" v-for="message in messages" :key="message.id">
|
2017-12-05 10:02:41 +00:00
|
|
|
<span class="chat-avatar">
|
|
|
|
<img :src="message.author.avatar" />
|
|
|
|
</span>
|
2018-04-10 21:17:05 +00:00
|
|
|
<div class="chat-content">
|
2018-12-13 16:57:11 +00:00
|
|
|
<router-link
|
|
|
|
class="chat-name"
|
|
|
|
:to="userProfileLink(message.author)">
|
|
|
|
{{message.author.username}}
|
2018-04-10 21:17:05 +00:00
|
|
|
</router-link>
|
|
|
|
<br>
|
|
|
|
<span class="chat-text">
|
|
|
|
{{message.text}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2017-12-05 10:02:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="chat-input">
|
2018-04-10 21:19:28 +00:00
|
|
|
<textarea @keyup.enter="submit(currentMessage)" v-model="currentMessage" class="chat-input-textarea" rows="1"></textarea>
|
2017-12-05 10:02:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-10 21:17:05 +00:00
|
|
|
<div v-else class="chat-panel">
|
|
|
|
<div class="panel panel-default">
|
2018-04-12 16:51:33 +00:00
|
|
|
<div class="panel-heading stub timeline-heading chat-heading" @click.stop.prevent="togglePanel">
|
2018-04-10 21:17:05 +00:00
|
|
|
<div class="title">
|
2018-04-14 07:19:09 +00:00
|
|
|
<i class="icon-comment-empty"></i>
|
2018-04-10 21:17:05 +00:00
|
|
|
{{$t('chat.title')}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-05 10:02:41 +00:00
|
|
|
</template>
|
|
|
|
|
2018-01-26 14:11:34 +00:00
|
|
|
<script src="./chat_panel.js"></script>
|
2017-12-05 10:02:41 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 19:07:25 +00:00
|
|
|
@import '../../_variables.scss';
|
2018-04-14 07:19:09 +00:00
|
|
|
|
|
|
|
.floating-chat {
|
|
|
|
position: fixed;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
z-index: 1000;
|
2018-12-28 19:39:54 +00:00
|
|
|
max-width: 25em;
|
2018-04-14 07:19:09 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 21:17:05 +00:00
|
|
|
.chat-heading {
|
|
|
|
cursor: pointer;
|
2018-04-14 07:19:09 +00:00
|
|
|
.icon-comment-empty {
|
2018-10-07 16:59:22 +00:00
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--text, $fallback--text);
|
2018-04-14 07:19:09 +00:00
|
|
|
}
|
2018-04-10 21:17:05 +00:00
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
|
|
|
.chat-window {
|
2018-04-07 16:30:27 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-12-28 19:39:54 +00:00
|
|
|
max-height: 20em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chat-window-container {
|
|
|
|
height: 100%;
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-message {
|
2018-04-10 21:17:05 +00:00
|
|
|
display: flex;
|
2018-04-07 16:30:27 +00:00
|
|
|
padding: 0.2em 0.5em
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-avatar {
|
2018-04-07 16:30:27 +00:00
|
|
|
img {
|
2018-04-10 21:17:05 +00:00
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
2018-04-07 16:30:27 +00:00
|
|
|
border-radius: $fallback--avatarRadius;
|
|
|
|
border-radius: var(--avatarRadius, $fallback--avatarRadius);
|
|
|
|
margin-right: 0.5em;
|
2018-04-10 21:17:05 +00:00
|
|
|
margin-top: 0.25em;
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-input {
|
2018-04-07 16:30:27 +00:00
|
|
|
display: flex;
|
2018-04-10 21:19:28 +00:00
|
|
|
textarea {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0.6em;
|
|
|
|
min-height: 3.5em;
|
|
|
|
resize: none;
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
2019-02-12 03:35:24 +00:00
|
|
|
|
|
|
|
.chat-panel {
|
|
|
|
.title {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
2017-12-05 10:02:41 +00:00
|
|
|
</style>
|