2017-05-18 20:08:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const $ = require("jquery");
|
|
|
|
const socket = require("../socket");
|
2018-07-06 18:15:15 +00:00
|
|
|
const {vueApp} = require("../vue");
|
2017-05-18 20:08:54 +00:00
|
|
|
|
|
|
|
socket.on("part", function(data) {
|
|
|
|
// When parting from the active channel/query, jump to the network's lobby
|
2018-07-06 18:15:15 +00:00
|
|
|
if (vueApp.activeChannel && vueApp.activeChannel.channel.id === data.chan) {
|
|
|
|
$("#sidebar .chan[data-id='" + data.chan + "']")
|
|
|
|
.closest(".network")
|
2018-01-30 09:38:33 +00:00
|
|
|
.find(".lobby")
|
|
|
|
.trigger("click");
|
2017-05-18 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
2018-07-06 18:15:15 +00:00
|
|
|
const network = vueApp.networks.find((n) => n.uuid === data.network);
|
|
|
|
network.channels.splice(network.channels.findIndex((c) => c.id === data.chan), 1);
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|