"use strict"; const socket = require("../socket"); const {vueApp, initChannel, findNetwork} = require("../vue"); socket.on("join", function(data) { initChannel(data.chan); const network = findNetwork(data.network); if (!network) { return; } 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)); });