2017-12-05 10:02:41 +00:00
|
|
|
<template>
|
2018-04-10 21:20:42 +00:00
|
|
|
<div class="chat-panel" v-if="!this.collapsed">
|
2018-03-31 18:14:36 +00:00
|
|
|
<div class="panel panel-default">
|
2018-04-10 21:17:05 +00:00
|
|
|
<div class="panel-heading timeline-heading chat-heading" @click.stop.prevent="togglePanel">
|
2018-01-26 14:11:34 +00:00
|
|
|
<div class="title">
|
|
|
|
{{$t('chat.title')}}
|
2018-04-10 21:17:05 +00:00
|
|
|
<i class="icon-cancel" style="float: right;"></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-06 01:05:35 +00:00
|
|
|
<router-link class="chat-name" :to="{ name: 'user-profile', params: { name: message.author.username } }">
|
2018-04-10 21:17:05 +00:00
|
|
|
{{message.author.username}}
|
|
|
|
</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-04-10 21:17:05 +00:00
|
|
|
.chat-heading {
|
|
|
|
cursor: pointer;
|
2018-04-14 07:19:09 +00:00
|
|
|
.icon-comment-empty {
|
|
|
|
color: $fallback--fg;
|
|
|
|
color: var(--fg, $fallback--fg);
|
|
|
|
}
|
2018-04-10 21:17:05 +00:00
|
|
|
}
|
2018-04-01 19:07:25 +00:00
|
|
|
|
|
|
|
.chat-window {
|
2018-04-14 07:19:09 +00:00
|
|
|
width: 345px;
|
|
|
|
max-height: 40vh;
|
2018-04-07 16:30:27 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
2018-04-01 19:07:25 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 21:17:05 +00:00
|
|
|
.chat-name {
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2017-12-05 10:02:41 +00:00
|
|
|
</style>
|