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

23 lines
574 B
JavaScript
Raw Normal View History

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