thelounge/client/js/socket-events/join.js

23 lines
541 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const $ = require("jquery");
const socket = require("../socket");
const {vueApp, initChannel} = require("../vue");
2017-05-18 22:08:54 +02:00
socket.on("join", function(data) {
initChannel(data.chan);
2019-07-17 11:33:59 +02:00
vueApp.networks
.find((n) => n.uuid === data.network)
.channels.splice(data.index || -1, 0, data.chan);
2017-05-18 22:08:54 +02:00
// Queries do not automatically focus, unless the user did a whois
if (data.chan.type === "query" && !data.shouldOpen) {
return;
}
2018-07-08 15:42:54 +02:00
vueApp.$nextTick(() => {
2018-07-19 12:46:30 +02:00
$(`#sidebar .chan[data-id="${data.chan.id}"]`).trigger("click");
});
2017-05-18 22:08:54 +02:00
});