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

24 lines
630 B
TypeScript
Raw Normal View History

2019-11-16 12:24:03 -05:00
import socket from "../socket";
import {store} from "../store";
2019-11-16 12:24:03 -05:00
import {switchToChannel} from "../router";
2017-05-18 16:08:54 -04:00
socket.on("part", async function (data) {
2017-05-18 16:08:54 -04:00
// When parting from the active channel/query, jump to the network's lobby
if (store.state.activeChannel && store.state.activeChannel.channel.id === data.chan) {
2019-11-11 14:18:55 -05:00
switchToChannel(store.state.activeChannel.network.channels[0]);
2017-05-18 16:08:54 -04:00
}
const channel = store.getters.findChannel(data.chan);
if (!channel) {
return;
}
channel.network.channels.splice(
channel.network.channels.findIndex((c) => c.id === data.chan),
1
);
await store.dispatch("partChannel", channel);
2017-05-18 16:08:54 -04:00
});