thelounge/client/js/socket-events/join.js
2019-11-25 20:12:51 +02:00

20 lines
473 B
JavaScript

"use strict";
const socket = require("../socket");
const {vueApp, initChannel} = require("../vue");
socket.on("join", function(data) {
initChannel(data.chan);
vueApp.networks
.find((n) => n.uuid === data.network)
.channels.splice(data.index || -1, 0, data.chan);
// Queries do not automatically focus, unless the user did a whois
if (data.chan.type === "query" && !data.shouldOpen) {
return;
}
vueApp.switchToChannel(vueApp.findChannel(data.chan.id));
});