2017-05-18 20:08:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const socket = require("../socket");
|
2019-11-03 14:59:43 +00:00
|
|
|
const {vueApp} = require("../vue");
|
2019-11-02 19:40:59 +00:00
|
|
|
const store = require("../store").default;
|
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
|
2019-11-02 19:40:59 +00:00
|
|
|
if (store.state.activeChannel && store.state.activeChannel.channel.id === data.chan) {
|
2019-11-03 14:59:43 +00:00
|
|
|
vueApp.switchToChannel(store.state.activeChannel.network.channels[0]);
|
2017-05-18 20:08:54 +00:00
|
|
|
}
|
|
|
|
|
2019-11-03 14:59:43 +00:00
|
|
|
const channel = store.getters.findChannel(data.chan);
|
2018-07-08 17:35:46 +00:00
|
|
|
|
|
|
|
if (channel) {
|
2019-07-17 09:33:59 +00:00
|
|
|
channel.network.channels.splice(
|
|
|
|
channel.network.channels.findIndex((c) => c.id === data.chan),
|
|
|
|
1
|
|
|
|
);
|
2018-07-08 17:35:46 +00:00
|
|
|
}
|
2018-09-05 19:44:19 +00:00
|
|
|
|
2019-10-17 16:56:44 +00:00
|
|
|
vueApp.synchronizeNotifiedState();
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|