thelounge/client/js/vue.js

232 lines
5.7 KiB
JavaScript
Raw Normal View History

"use strict";
const Vue = require("vue").default;
2019-10-17 18:56:44 +02:00
const store = require("./store").default;
const App = require("../components/App.vue").default;
const roundBadgeNumber = require("./libs/handlebars/roundBadgeNumber");
const localetime = require("./libs/handlebars/localetime");
2018-07-10 13:57:11 +02:00
const friendlysize = require("./libs/handlebars/friendlysize");
const colorClass = require("./libs/handlebars/colorClass");
const storage = require("./localStorage");
2019-10-17 18:56:44 +02:00
const router = require("./router").default;
const constants = require("./constants");
Vue.filter("localetime", localetime);
2018-07-10 13:57:11 +02:00
Vue.filter("friendlysize", friendlysize);
Vue.filter("colorClass", colorClass);
Vue.filter("roundBadgeNumber", roundBadgeNumber);
const vueApp = new Vue({
el: "#viewport",
data: {
2018-09-09 15:09:19 +02:00
activeChannel: null,
appName: document.title,
currentUserVisibleError: null,
2018-07-15 22:23:49 +02:00
initialized: false,
isAutoCompleting: false,
2018-09-09 15:09:19 +02:00
isFileUploadEnabled: false,
networks: [],
2019-02-20 10:10:18 +01:00
pushNotificationState: "unsupported",
desktopNotificationState: "unsupported",
serverConfiguration: {},
2018-07-08 16:57:02 +02:00
settings: {
syncSettings: false,
advanced: false,
autocomplete: true,
nickPostfix: "",
coloredNicks: true,
desktopNotifications: false,
2019-01-16 10:23:12 +01:00
highlights: "",
2018-07-08 16:57:02 +02:00
links: true,
motd: true,
notification: true,
notifyAllMessages: false,
showSeconds: false,
statusMessages: "condensed",
theme: document.getElementById("theme").dataset.serverTheme,
media: true,
userStyles: "",
},
},
2019-10-17 18:56:44 +02:00
router,
2018-07-10 11:40:55 +02:00
mounted() {
Vue.nextTick(() => window.vueMounted());
2019-10-17 17:32:59 +02:00
if (navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i)) {
document.body.classList.add("is-apple");
}
2019-10-17 18:56:44 +02:00
document.addEventListener("visibilitychange", this.synchronizeNotifiedState());
document.addEventListener("focus", this.synchronizeNotifiedState());
document.addEventListener("click", this.synchronizeNotifiedState());
2018-07-10 11:40:55 +02:00
},
methods: {
onSocketInit() {
this.initialized = true;
this.$store.commit("isConnected", true);
},
setSidebar(state) {
this.$store.commit("sidebarOpen", state);
2019-10-17 18:56:44 +02:00
if (window.outerWidth > constants.mobileViewportPixels) {
storage.set("thelounge.state.sidebar", state);
}
this.$emit("resize");
},
toggleSidebar() {
this.setSidebar(!this.$store.state.sidebarOpen);
},
2019-10-17 18:56:44 +02:00
closeSidebarIfNeeded() {
if (window.innerWidth <= constants.mobileViewportPixels) {
this.setSidebar(false);
}
},
setUserlist(state) {
storage.set("thelounge.state.userlist", state);
this.$store.commit("userlistOpen", state);
this.$emit("resize");
},
toggleUserlist() {
this.setUserlist(!this.$store.state.userlistOpen);
},
2019-10-17 18:56:44 +02:00
findChannel(id) {
for (const network of this.networks) {
for (const channel of network.channels) {
if (channel.id === id) {
return {network, channel};
}
}
}
return null;
},
findNetwork(uuid) {
for (const network of this.networks) {
if (network.uuid === uuid) {
return network;
}
}
return null;
},
2019-10-25 23:37:40 +02:00
switchToChannel(channel) {
if (this.activeChannel && this.activeChannel.channel.id === channel.id) {
return;
}
this.$router.push("/chan-" + channel.id);
2019-10-25 23:37:40 +02:00
},
2019-10-17 18:56:44 +02:00
switchOutOfChannel(channel) {
// When switching out of a channel, mark everything as read
if (channel.messages.length > 0) {
channel.firstUnread = channel.messages[channel.messages.length - 1].id;
}
if (channel.messages.length > 100) {
channel.messages.splice(0, channel.messages.length - 100);
channel.moreHistoryAvailable = true;
}
},
synchronizeNotifiedState() {
this.updateTitle();
let hasAnyHighlights = false;
for (const network of this.networks) {
for (const chan of network.channels) {
if (chan.highlight > 0) {
hasAnyHighlights = true;
break;
}
}
}
this.toggleNotificationMarkers(hasAnyHighlights);
},
updateTitle() {
let title = this.appName;
if (this.activeChannel) {
title = `${this.activeChannel.channel.name}${title}`;
}
// add highlight count to title
let alertEventCount = 0;
for (const network of this.networks) {
for (const channel of network.channels) {
alertEventCount += channel.highlight;
}
}
if (alertEventCount > 0) {
title = `(${alertEventCount}) ${title}`;
}
document.title = title;
},
toggleNotificationMarkers(newState) {
if (this.$store.state.isNotified !== newState) {
// Toggles a dot on the menu icon when there are unread notifications
this.$store.commit("isNotified", newState);
// Toggles the favicon to red when there are unread notifications
const favicon = document.getElementById("favicon");
const old = favicon.getAttribute("href");
favicon.setAttribute("href", favicon.dataset.other);
favicon.dataset.other = old;
}
},
},
render(createElement) {
return createElement(App, {
2019-02-18 10:18:32 +01:00
ref: "app",
props: this,
});
},
store,
});
2018-09-14 17:44:26 +02:00
Vue.config.errorHandler = function(e) {
console.error(e); // eslint-disable-line
vueApp.currentUserVisibleError = `Vue error: ${e.message}. Please check devtools and report it in #thelounge`;
};
function findChannel(id) {
2019-10-17 18:56:44 +02:00
return vueApp.findChannel(id);
}
2019-11-02 19:45:00 +01:00
function findNetwork(uuid) {
return vueApp.findNetwork(uuid);
}
function initChannel(channel) {
2018-09-09 14:23:12 +02:00
channel.pendingMessage = "";
channel.inputHistoryPosition = 0;
channel.inputHistory = [""];
channel.historyLoading = false;
channel.scrolledToBottom = true;
channel.editTopic = false;
channel.moreHistoryAvailable = channel.totalMessages > channel.messages.length;
delete channel.totalMessages;
if (channel.type === "channel") {
channel.usersOutdated = true;
}
}
2019-02-18 10:18:32 +01:00
function getActiveWindowComponent() {
return vueApp.$refs.app.$refs.window;
}
module.exports = {
vueApp,
findChannel,
2019-11-02 19:45:00 +01:00
findNetwork,
initChannel,
2019-02-18 10:18:32 +01:00
getActiveWindowComponent,
};