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

23 lines
564 B
JavaScript

"use strict";
const socket = require("../socket");
const {vueApp, findChannel} = require("../vue");
socket.on("part", function(data) {
// When parting from the active channel/query, jump to the network's lobby
if (vueApp.activeChannel && vueApp.activeChannel.channel.id === data.chan) {
vueApp.switchToChannel(vueApp.activeChannel.network);
}
const channel = findChannel(data.chan);
if (channel) {
channel.network.channels.splice(
channel.network.channels.findIndex((c) => c.id === data.chan),
1
);
}
vueApp.synchronizeNotifiedState();
});