2019-11-16 17:24:03 +00:00
|
|
|
import socket from "../socket";
|
2022-06-19 00:25:21 +00:00
|
|
|
import {store} from "../store";
|
2019-11-16 17:24:03 +00:00
|
|
|
import {switchToChannel} from "../router";
|
2017-05-18 20:08:54 +00:00
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
socket.on("part", async function (data) {
|
2017-05-18 20:08:54 +00:00
|
|
|
// 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-11 19:18:55 +00:00
|
|
|
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
|
|
|
|
2021-12-29 15:31:44 +00:00
|
|
|
if (!channel) {
|
|
|
|
return;
|
2018-07-08 17:35:46 +00:00
|
|
|
}
|
2021-12-29 15:31:44 +00:00
|
|
|
|
|
|
|
channel.network.channels.splice(
|
|
|
|
channel.network.channels.findIndex((c) => c.id === data.chan),
|
|
|
|
1
|
|
|
|
);
|
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
await store.dispatch("partChannel", channel);
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|