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

27 lines
653 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const $ = require("jquery");
const socket = require("../socket");
const {vueApp, findChannel} = require("../vue");
2017-05-18 22:08:54 +02:00
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");
2017-05-18 22:08:54 +02:00
}
const channel = findChannel(data.chan);
if (channel) {
2019-07-17 11:33:59 +02:00
channel.network.channels.splice(
channel.network.channels.findIndex((c) => c.id === data.chan),
1
);
}
2019-10-17 18:56:44 +02:00
vueApp.synchronizeNotifiedState();
2017-05-18 22:08:54 +02:00
});