28 lines
687 B
JavaScript
28 lines
687 B
JavaScript
"use strict";
|
|
|
|
const $ = require("jquery");
|
|
const socket = require("../socket");
|
|
const utils = require("../utils");
|
|
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) {
|
|
$("#sidebar .chan[data-id='" + data.chan + "']")
|
|
.closest(".network")
|
|
.find(".lobby")
|
|
.trigger("click");
|
|
}
|
|
|
|
const channel = findChannel(data.chan);
|
|
|
|
if (channel) {
|
|
channel.network.channels.splice(
|
|
channel.network.channels.findIndex((c) => c.id === data.chan),
|
|
1
|
|
);
|
|
}
|
|
|
|
utils.synchronizeNotifiedState();
|
|
});
|