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

128 lines
3.2 KiB
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const $ = require("jquery");
2017-08-28 22:06:28 +02:00
const escape = require("css.escape");
2017-05-18 22:08:54 +02:00
const socket = require("../socket");
2017-07-10 21:47:03 +02:00
const webpush = require("../webpush");
const slideoutMenu = require("../slideout");
2017-05-18 22:08:54 +02:00
const sidebar = $("#sidebar");
const storage = require("../localStorage");
2017-08-28 17:03:27 +02:00
const utils = require("../utils");
2018-07-08 15:42:54 +02:00
const {vueApp} = require("../vue");
2017-05-18 22:08:54 +02:00
socket.on("init", function(data) {
2017-08-28 17:03:27 +02:00
$("#loading-page-message, #connection-error").text("Rendering…");
const lastMessageId = utils.lastMessageId;
2017-08-28 22:06:28 +02:00
let previousActive = 0;
2017-08-28 17:03:27 +02:00
if (lastMessageId > -1) {
2017-08-28 22:06:28 +02:00
previousActive = sidebar.find(".active").data("id");
2017-08-28 17:03:27 +02:00
}
2017-05-18 22:08:54 +02:00
2018-07-08 22:08:08 +02:00
const networks = new Set(JSON.parse(storage.get("thelounge.networks.collapsed")));
for (const network of data.networks) {
2018-07-12 21:06:17 +02:00
network.isJoinChannelShown = false;
2018-07-08 22:08:08 +02:00
network.isCollapsed = networks.has(network.uuid);
2018-07-12 20:33:52 +02:00
for (const channel of network.channels) {
if (channel.type === "channel") {
channel.usersOutdated = true;
}
}
2018-07-08 22:08:08 +02:00
}
vueApp.networks = data.networks;
2018-07-12 20:33:52 +02:00
vueApp.connected = true;
2017-05-18 22:08:54 +02:00
$("#connection-error").removeClass("shown");
2018-07-08 19:53:23 +02:00
if (lastMessageId < 0) {
2017-08-28 17:03:27 +02:00
if (data.token) {
storage.set("token", data.token);
}
2017-05-18 22:08:54 +02:00
2017-08-28 17:03:27 +02:00
webpush.configurePushNotifications(data.pushSubscription, data.applicationServerKey);
2017-07-10 21:47:03 +02:00
slideoutMenu.enable();
const viewport = $("#viewport");
const viewportWidth = $(window).outerWidth();
let isUserlistOpen = storage.get("thelounge.state.userlist");
if (viewportWidth > utils.mobileViewportPixels) {
slideoutMenu.toggle(storage.get("thelounge.state.sidebar") !== "false");
}
// If The Lounge is opened on a small screen (less than 1024px), and we don't have stored
// user list state, close it by default
if (viewportWidth >= 1024 && isUserlistOpen !== "true" && isUserlistOpen !== "false") {
isUserlistOpen = "true";
}
viewport.toggleClass("userlist-open", isUserlistOpen === "true");
$(document.body).removeClass("signed-out");
2017-08-28 17:03:27 +02:00
$("#loading").remove();
$("#sign-in").remove();
2017-12-01 19:04:50 +01:00
if (window.g_LoungeErrorHandler) {
window.removeEventListener("error", window.g_LoungeErrorHandler);
window.g_LoungeErrorHandler = null;
}
2017-08-28 17:03:27 +02:00
}
2017-05-18 22:08:54 +02:00
2018-07-08 15:42:54 +02:00
vueApp.$nextTick(() => openCorrectChannel(previousActive, data.active));
2018-07-12 20:33:52 +02:00
utils.confirmExit();
for (const network of vueApp.networks) {
for (const channel of network.channels) {
if (channel.highlight > 0) {
utils.updateTitle();
utils.toggleNotificationMarkers(true);
return;
}
}
}
2017-05-18 22:08:54 +02:00
});
2017-08-28 22:06:28 +02:00
function openCorrectChannel(clientActive, serverActive) {
let target = $();
2017-08-28 22:06:28 +02:00
// Open last active channel
if (clientActive > 0) {
target = sidebar.find(`.chan[data-id="${clientActive}"]`);
2017-08-28 22:06:28 +02:00
}
// Open window provided in location.hash
if (target.length === 0 && window.location.hash) {
2017-12-25 01:17:26 +01:00
target = $(`[data-target="${escape(window.location.hash)}"]`).first();
2017-08-28 22:06:28 +02:00
}
// Open last active channel according to the server
if (serverActive > 0 && target.length === 0) {
target = sidebar.find(`.chan[data-id="${serverActive}"]`);
2017-08-28 22:06:28 +02:00
}
// Open first available channel
if (target.length === 0) {
target = sidebar.find(".chan").first();
}
2017-08-28 22:06:28 +02:00
// If target channel is found, open it
if (target.length > 0) {
2017-08-28 22:06:28 +02:00
target.trigger("click", {
replaceHistory: true,
2017-08-28 22:06:28 +02:00
});
return;
}
// Open the connect window
$("#footer .connect").trigger("click", {
pushState: false,
2017-08-28 22:06:28 +02:00
});
}