2018-07-06 18:15:15 +00:00
|
|
|
"use strict";
|
|
|
|
|
2019-11-16 17:24:03 +00:00
|
|
|
import Vue from "vue";
|
|
|
|
import store from "./store";
|
|
|
|
import App from "../components/App.vue";
|
|
|
|
import localetime from "./helpers/localetime";
|
|
|
|
import storage from "./localStorage";
|
|
|
|
import {router, navigate} from "./router";
|
|
|
|
import constants from "./constants";
|
|
|
|
import socket from "./socket";
|
2018-07-06 18:15:15 +00:00
|
|
|
|
2018-07-08 10:50:11 +00:00
|
|
|
Vue.filter("localetime", localetime);
|
2018-07-06 18:15:15 +00:00
|
|
|
|
2019-11-16 17:24:03 +00:00
|
|
|
import "./socket-events";
|
|
|
|
import "./webpush";
|
|
|
|
import "./keybinds";
|
2019-11-12 15:51:40 +00:00
|
|
|
|
2019-11-08 00:03:41 +00:00
|
|
|
const favicon = document.getElementById("favicon");
|
|
|
|
const faviconNormal = favicon.getAttribute("href");
|
|
|
|
const faviconAlerted = favicon.dataset.other;
|
|
|
|
|
2018-07-06 18:15:15 +00:00
|
|
|
const vueApp = new Vue({
|
|
|
|
el: "#viewport",
|
2019-10-17 16:56:44 +00:00
|
|
|
router,
|
2018-07-10 09:40:55 +00:00
|
|
|
mounted() {
|
2019-11-12 15:51:40 +00:00
|
|
|
socket.open();
|
2018-07-10 09:40:55 +00:00
|
|
|
},
|
2019-04-13 20:44:04 +00:00
|
|
|
methods: {
|
2019-10-25 21:37:40 +00:00
|
|
|
switchToChannel(channel) {
|
2019-11-11 19:18:55 +00:00
|
|
|
navigate("RoutedChat", {id: channel.id});
|
2019-10-17 16:56:44 +00:00
|
|
|
},
|
2019-04-13 20:44:04 +00:00
|
|
|
},
|
2018-07-06 18:15:15 +00:00
|
|
|
render(createElement) {
|
|
|
|
return createElement(App, {
|
2019-02-18 09:18:32 +00:00
|
|
|
ref: "app",
|
2018-07-06 18:15:15 +00:00
|
|
|
props: this,
|
|
|
|
});
|
|
|
|
},
|
2019-02-26 20:23:41 +00:00
|
|
|
store,
|
2018-07-06 18:15:15 +00:00
|
|
|
});
|
|
|
|
|
2019-11-07 23:47:45 +00:00
|
|
|
store.watch(
|
|
|
|
(state) => state.sidebarOpen,
|
|
|
|
(sidebarOpen) => {
|
|
|
|
if (window.outerWidth > constants.mobileViewportPixels) {
|
|
|
|
storage.set("thelounge.state.sidebar", sidebarOpen);
|
|
|
|
}
|
|
|
|
|
|
|
|
vueApp.$emit("resize");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-11-07 23:50:51 +00:00
|
|
|
store.watch(
|
|
|
|
(state) => state.userlistOpen,
|
|
|
|
(userlistOpen) => {
|
|
|
|
storage.set("thelounge.state.userlist", userlistOpen);
|
|
|
|
vueApp.$emit("resize");
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-11-07 23:53:04 +00:00
|
|
|
store.watch(
|
|
|
|
(_, getters) => getters.title,
|
|
|
|
(title) => {
|
|
|
|
document.title = title;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-11-08 00:03:41 +00:00
|
|
|
// Toggles the favicon to red when there are unread notifications
|
|
|
|
store.watch(
|
|
|
|
(_, getters) => getters.highlightCount,
|
|
|
|
(highlightCount) => {
|
|
|
|
favicon.setAttribute("href", highlightCount > 0 ? faviconAlerted : faviconNormal);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2018-09-14 15:44:26 +00:00
|
|
|
Vue.config.errorHandler = function(e) {
|
2019-11-02 19:40:59 +00:00
|
|
|
store.commit("currentUserVisibleError", `Vue error: ${e.message}`);
|
2018-09-14 15:44:26 +00:00
|
|
|
console.error(e); // eslint-disable-line
|
|
|
|
};
|