2017-05-18 20:08:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
2019-11-16 17:24:03 +00:00
|
|
|
import socket from "../socket";
|
|
|
|
import store from "../store";
|
2017-05-18 20:08:54 +00:00
|
|
|
|
2017-10-01 08:52:34 +00:00
|
|
|
// Sync unread badge and marker when other clients open a channel
|
2017-05-18 20:08:54 +00:00
|
|
|
socket.on("open", function(id) {
|
2017-10-01 08:52:34 +00:00
|
|
|
if (id < 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't do anything if the channel is active on this client
|
2019-11-02 19:40:59 +00:00
|
|
|
if (store.state.activeChannel && store.state.activeChannel.channel.id === id) {
|
2017-10-01 08:52:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the unread badge
|
2019-11-03 14:59:43 +00:00
|
|
|
const channel = store.getters.findChannel(id);
|
2018-07-06 18:15:15 +00:00
|
|
|
|
|
|
|
if (channel) {
|
|
|
|
channel.channel.highlight = 0;
|
|
|
|
channel.channel.unread = 0;
|
2018-07-17 08:41:12 +00:00
|
|
|
|
|
|
|
if (channel.channel.messages.length > 0) {
|
2019-07-17 09:33:59 +00:00
|
|
|
channel.channel.firstUnread =
|
|
|
|
channel.channel.messages[channel.channel.messages.length - 1].id;
|
2018-07-17 08:41:12 +00:00
|
|
|
}
|
2018-07-06 18:15:15 +00:00
|
|
|
}
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|