2017-05-18 20:08:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const $ = require("jquery");
|
|
|
|
const socket = require("../socket");
|
|
|
|
const render = require("../render");
|
|
|
|
const chat = $("#chat");
|
|
|
|
const templates = require("../../views");
|
|
|
|
const sidebar = $("#sidebar");
|
|
|
|
|
|
|
|
socket.on("join", function(data) {
|
|
|
|
const id = data.network;
|
2018-03-04 18:28:37 +00:00
|
|
|
const network = sidebar.find(`#network-${id}`);
|
2018-03-12 12:42:59 +00:00
|
|
|
const channels = network.children();
|
|
|
|
const position = $(channels[data.index || channels.length - 1]); // Put channel in correct position, or the end if we don't have one
|
|
|
|
const sidebarEntry = templates.chan({
|
|
|
|
channels: [data.chan],
|
|
|
|
});
|
|
|
|
$(sidebarEntry).insertAfter(position);
|
2017-05-18 20:08:54 +00:00
|
|
|
chat.append(
|
|
|
|
templates.chat({
|
2017-11-15 06:35:15 +00:00
|
|
|
channels: [data.chan],
|
2017-05-18 20:08:54 +00:00
|
|
|
})
|
|
|
|
);
|
|
|
|
render.renderChannel(data.chan);
|
|
|
|
|
|
|
|
// Queries do not automatically focus, unless the user did a whois
|
|
|
|
if (data.chan.type === "query" && !data.shouldOpen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sidebar.find(".chan")
|
|
|
|
.sort(function(a, b) {
|
|
|
|
return $(a).data("id") - $(b).data("id");
|
|
|
|
})
|
|
|
|
.last()
|
2018-01-30 09:38:33 +00:00
|
|
|
.trigger("click");
|
2017-05-18 20:08:54 +00:00
|
|
|
});
|