thelounge/client/js/socket-events/open.js
2019-11-25 20:12:48 +02:00

32 lines
715 B
JavaScript

"use strict";
const socket = require("../socket");
const {vueApp, findChannel} = require("../vue");
// Sync unread badge and marker when other clients open a channel
socket.on("open", function(id) {
if (id < 1) {
return;
}
// Don't do anything if the channel is active on this client
if (vueApp.activeChannel && vueApp.activeChannel.channel.id === id) {
return;
}
// Clear the unread badge
const channel = findChannel(id);
if (channel) {
channel.channel.highlight = 0;
channel.channel.unread = 0;
if (channel.channel.messages.length > 0) {
channel.channel.firstUnread =
channel.channel.messages[channel.channel.messages.length - 1].id;
}
}
vueApp.synchronizeNotifiedState();
});