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
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
socket.on("join", function (data) {
|
2019-11-12 15:51:40 +00:00
|
|
|
store.getters.initChannel(data.chan);
|
2018-07-18 18:40:09 +00:00
|
|
|
|
2019-11-03 14:59:43 +00:00
|
|
|
const network = store.getters.findNetwork(data.network);
|
2019-11-02 19:40:59 +00:00
|
|
|
|
|
|
|
if (!network) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
network.channels.splice(data.index || -1, 0, data.chan);
|
2018-07-06 18:15:15 +00:00
|
|
|
|
2017-05-18 20:08:54 +00:00
|
|
|
// Queries do not automatically focus, unless the user did a whois
|
|
|
|
if (data.chan.type === "query" && !data.shouldOpen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-19 00:25:21 +00:00
|
|
|
const chan = store.getters.findChannel(data.chan.id);
|
|
|
|
|
|
|
|
if (chan) {
|
|
|
|
switchToChannel(chan.channel);
|
|
|
|
} else {
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.error("Could not find channel", data.chan.id);
|
|
|
|
}
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|