thelounge/client/components/MessageList.vue

133 lines
3.1 KiB
Vue
Raw Normal View History

<template>
<div
class="messages"
role="log"
aria-live="polite"
aria-relevant="additions"
2018-07-09 20:37:52 +02:00
@copy="onCopy"
>
2018-07-11 11:27:44 +02:00
<template v-for="(message, id) in condensedMessages">
<div
2018-07-11 11:27:44 +02:00
v-if="shouldDisplayDateMarker(message, id)"
:key="message.id + '-date'"
:data-time="message.time"
:aria-label="message.time | localedate"
class="date-marker-container tooltipped tooltipped-s"
>
<div class="date-marker">
<span
:data-label="message.time | friendlydate"
class="date-marker-text"/>
</div>
</div>
<div
2018-07-11 11:27:44 +02:00
v-if="shouldDisplayUnreadMarker(id)"
:key="message.id + '-unread'"
class="unread-marker"
>
<span class="unread-marker-text"/>
</div>
2018-07-09 14:14:44 +02:00
<MessageCondensed
v-if="message.type === 'condensed'"
:key="message.id"
:messages="message.messages"/>
<Message
2018-07-09 14:14:44 +02:00
v-else
:message="message"
2018-07-12 10:26:12 +02:00
:key="message.id"
@linkPreviewToggle="onLinkPreviewToggle"/>
</template>
</div>
</template>
<script>
2018-07-09 14:14:44 +02:00
const constants = require("../js/constants");
2018-07-09 20:37:52 +02:00
const clipboard = require("../js/clipboard");
import socket from "../js/socket";
import Message from "./Message.vue";
2018-07-09 14:14:44 +02:00
import MessageCondensed from "./MessageCondensed.vue";
export default {
name: "MessageList",
components: {
Message,
2018-07-09 14:14:44 +02:00
MessageCondensed,
},
props: {
channel: Object,
},
2018-07-09 14:14:44 +02:00
computed: {
2018-07-11 11:27:44 +02:00
condensedMessages() {
2018-07-09 14:14:44 +02:00
if (this.channel.type !== "channel") {
return this.channel.messages;
}
const condensed = [];
let lastCondensedContainer = null;
for (const message of this.channel.messages) {
// If this message is not condensable, or its an action affecting our user,
// then just append the message to container and be done with it
if (message.self || message.highlight || !constants.condensedTypes.includes(message.type)) {
lastCondensedContainer = null;
condensed.push(message);
continue;
}
if (lastCondensedContainer === null) {
lastCondensedContainer = {
id: message.id, // Use id of first message in the condensed container
2018-07-11 11:27:44 +02:00
time: message.time,
2018-07-09 14:14:44 +02:00
type: "condensed",
messages: [],
};
condensed.push(lastCondensedContainer);
}
lastCondensedContainer.messages.push(message);
}
return condensed;
},
},
methods: {
2018-07-11 11:27:44 +02:00
shouldDisplayDateMarker(message, id) {
const previousMessage = this.condensedMessages[id - 1];
2018-07-11 11:27:44 +02:00
if (!previousMessage) {
return true;
}
2018-07-11 11:27:44 +02:00
return (new Date(previousMessage.time)).getDay() !== (new Date(message.time)).getDay();
},
2018-07-11 11:27:44 +02:00
shouldDisplayUnreadMarker(id) {
const previousMessage = this.condensedMessages[id - 1];
if (!previousMessage) {
return false;
}
return this.channel.firstUnread === previousMessage.id;
},
2018-07-09 20:37:52 +02:00
onCopy() {
clipboard(this.$el);
},
onLinkPreviewToggle(preview, message) {
// Tell the server we're toggling so it remembers at page reload
// TODO Avoid sending many single events when using `/collapse` or `/expand`
// See https://github.com/thelounge/thelounge/issues/1377
socket.emit("msg:preview:toggle", {
target: this.channel.id,
msgId: message.id,
link: preview.link,
shown: preview.shown,
});
},
},
};
</script>