2017-05-18 21:08:54 +01:00
|
|
|
"use strict";
|
|
|
|
|
2019-11-16 19:24:03 +02:00
|
|
|
import socket from "../socket";
|
|
|
|
import store from "../store";
|
|
|
|
import {switchToChannel} from "../router";
|
2017-05-18 21:08:54 +01:00
|
|
|
|
2020-03-21 22:55:36 +02:00
|
|
|
socket.on("join", function (data) {
|
2019-11-12 17:51:40 +02:00
|
|
|
store.getters.initChannel(data.chan);
|
2018-07-18 21:40:09 +03:00
|
|
|
|
2019-11-03 16:59:43 +02:00
|
|
|
const network = store.getters.findNetwork(data.network);
|
2019-11-02 21:40:59 +02:00
|
|
|
|
|
|
|
if (!network) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
network.channels.splice(data.index || -1, 0, data.chan);
|
2018-07-06 21:15:15 +03:00
|
|
|
|
2017-05-18 21:08:54 +01:00
|
|
|
// Queries do not automatically focus, unless the user did a whois
|
|
|
|
if (data.chan.type === "query" && !data.shouldOpen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-11 21:18:55 +02:00
|
|
|
switchToChannel(store.getters.findChannel(data.chan.id).channel);
|
2017-05-18 21:08:54 +01:00
|
|
|
});
|