import constants from "./constants"; import "../css/style.css"; import Vue from "vue"; import store from "./store"; import App from "../components/App.vue"; import storage from "./localStorage"; import {router, navigate} from "./router"; import socket from "./socket"; import eventbus from "./eventbus"; import "./socket-events"; import "./webpush"; import "./keybinds"; import {ClientChan} from "./types"; const favicon = document.getElementById("favicon"); const faviconNormal = favicon?.getAttribute("href") || ""; const faviconAlerted = favicon?.dataset.other || ""; type Data = {}; export type Methods = { switchToChannel: (channel: ClientChan) => void; closeChannel: (channel: ClientChan) => void; }; type Computed = {}; type Props = {}; new Vue({ el: "#viewport", router, mounted() { socket.open(); }, methods: { switchToChannel(channel: ClientChan) { navigate("RoutedChat", {id: channel.id}); }, closeChannel(channel: ClientChan) { if (channel.type === "lobby") { eventbus.emit( "confirm-dialog", { title: "Remove network", text: `Are you sure you want to quit and remove ${channel.name}? This cannot be undone.`, button: "Remove network", }, (result: boolean) => { if (!result) { return; } channel.closed = true; socket.emit("input", { target: Number(channel.id), text: "/quit", }); } ); return; } channel.closed = true; socket.emit("input", { target: Number(channel.id), text: "/close", }); }, }, render(createElement) { return createElement(App, { ref: "app", props: this, }); }, store, }); store.watch( (state) => state.sidebarOpen, (sidebarOpen) => { if (window.innerWidth > constants.mobileViewportPixels) { storage.set("thelounge.state.sidebar", sidebarOpen.toString()); eventbus.emit("resize"); } } ); store.watch( (state) => state.userlistOpen, (userlistOpen) => { storage.set("thelounge.state.userlist", userlistOpen.toString()); eventbus.emit("resize"); } ); store.watch( (_, getters) => getters.title, (title) => { document.title = title; } ); // Toggles the favicon to red when there are unread notifications store.watch( (_, getters) => getters.highlightCount, (highlightCount) => { favicon?.setAttribute("href", highlightCount > 0 ? faviconAlerted : faviconNormal); // TODO: investigate types const nav = navigate as any; if (nav.setAppBadge) { if (highlightCount > 0) { nav.setAppBadge(highlightCount); } else { nav.clearAppBadge(); } } } ); Vue.config.errorHandler = function (e) { store.commit("currentUserVisibleError", `Vue error: ${e.message}`); console.error(e); // eslint-disable-line };