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

36 lines
1 KiB
JavaScript
Raw Normal View History

"use strict";
2019-11-16 18:24:03 +01:00
import socket from "../socket";
import upload from "../upload";
import store from "../store";
socket.once("configuration", function(data) {
store.commit("serverConfiguration", data);
// 'theme' setting depends on serverConfiguration.themes so
// settings cannot be applied before this point
store.dispatch("settings/applyAll");
2019-11-12 12:09:12 +01:00
socket.emit("setting:get");
if (data.fileUpload) {
2019-11-12 12:09:12 +01:00
upload.initialize();
}
// If localStorage contains a theme that does not exist on this server, switch
// back to its default theme.
const currentTheme = data.themes.find((t) => t.name === store.state.settings.theme);
2019-07-22 18:50:04 +02:00
if (currentTheme === undefined) {
store.commit("settings/update", {name: "theme", value: data.defaultTheme, sync: true});
2019-07-22 18:50:04 +02:00
} else if (currentTheme.themeColor) {
document.querySelector('meta[name="theme-color"]').content = currentTheme.themeColor;
}
2019-11-12 12:09:12 +01:00
if (document.body.classList.contains("public")) {
window.addEventListener(
"beforeunload",
() => "Are you sure you want to navigate away from this page?"
);
2018-06-19 17:00:07 +02:00
}
});