thelounge/client/js/socket-events/open.js

33 lines
768 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const socket = require("../socket");
const {vueApp, findChannel} = require("../vue");
const store = require("../store").default;
2017-05-18 22:08:54 +02:00
// Sync unread badge and marker when other clients open a channel
2017-05-18 22:08:54 +02:00
socket.on("open", function(id) {
if (id < 1) {
return;
}
// Don't do anything if the channel is active on this client
if (store.state.activeChannel && store.state.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) {
2019-07-17 11:33:59 +02:00
channel.channel.firstUnread =
channel.channel.messages[channel.channel.messages.length - 1].id;
}
}
2019-10-17 18:56:44 +02:00
vueApp.synchronizeNotifiedState();
2017-05-18 22:08:54 +02:00
});