2019-10-17 16:56:44 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const Vue = require("vue").default;
|
|
|
|
const VueRouter = require("vue-router").default;
|
|
|
|
Vue.use(VueRouter);
|
|
|
|
|
2019-11-02 19:40:59 +00:00
|
|
|
const store = require("./store").default;
|
|
|
|
|
2019-10-17 16:56:44 +00:00
|
|
|
const SignIn = require("../components/Windows/SignIn.vue").default;
|
|
|
|
const Connect = require("../components/Windows/Connect.vue").default;
|
|
|
|
const Settings = require("../components/Windows/Settings.vue").default;
|
|
|
|
const Help = require("../components/Windows/Help.vue").default;
|
|
|
|
const Changelog = require("../components/Windows/Changelog.vue").default;
|
2019-10-28 13:48:13 +00:00
|
|
|
const NetworkEdit = require("../components/Windows/NetworkEdit.vue").default;
|
2019-10-17 16:56:44 +00:00
|
|
|
const RoutedChat = require("../components/RoutedChat.vue").default;
|
|
|
|
|
|
|
|
const router = new VueRouter({
|
|
|
|
routes: [
|
2019-10-20 16:17:21 +00:00
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "SignIn",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/sign-in",
|
|
|
|
component: SignIn,
|
2019-11-07 16:48:45 +00:00
|
|
|
beforeEnter(to, from, next) {
|
|
|
|
// Prevent navigating to sign-in when already signed in
|
|
|
|
if (store.state.appLoaded) {
|
|
|
|
next(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
},
|
2019-10-20 16:17:21 +00:00
|
|
|
},
|
2019-11-03 15:56:41 +00:00
|
|
|
],
|
|
|
|
});
|
|
|
|
|
2019-11-07 16:48:45 +00:00
|
|
|
router.beforeEach((to, from, next) => {
|
2019-11-08 11:58:58 +00:00
|
|
|
// Disallow navigating to non-existing routes
|
|
|
|
if (!to.matched.length) {
|
|
|
|
next(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-08 12:56:18 +00:00
|
|
|
// Disallow navigating to invalid channels
|
|
|
|
if (to.name === "RoutedChat" && !store.getters.findChannel(Number(to.params.pathMatch))) {
|
|
|
|
next(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-07 16:48:45 +00:00
|
|
|
// Handle closing image viewer with the browser back button
|
|
|
|
if (!router.app.$refs.app) {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const imageViewer = router.app.$root.$refs.app.$refs.imageViewer;
|
|
|
|
|
|
|
|
if (imageViewer && imageViewer.link) {
|
|
|
|
imageViewer.closeViewer();
|
|
|
|
next(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
|
2019-11-03 15:56:41 +00:00
|
|
|
router.afterEach((to) => {
|
2019-11-05 19:29:51 +00:00
|
|
|
if (store.state.appLoaded) {
|
2019-11-03 17:09:10 +00:00
|
|
|
router.app.closeSidebarIfNeeded();
|
2019-11-03 15:56:41 +00:00
|
|
|
}
|
|
|
|
|
2019-11-03 17:09:10 +00:00
|
|
|
if (to.name !== "RoutedChat") {
|
2019-11-03 15:56:41 +00:00
|
|
|
// Navigating out of a chat window
|
2019-11-03 17:09:10 +00:00
|
|
|
store.commit("activeWindow", to.name);
|
2019-11-03 15:56:41 +00:00
|
|
|
|
|
|
|
if (store.state.activeChannel && store.state.activeChannel.channel) {
|
|
|
|
router.app.switchOutOfChannel(store.state.activeChannel.channel);
|
|
|
|
}
|
|
|
|
|
|
|
|
store.commit("activeChannel", null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function initialize() {
|
|
|
|
router.addRoutes([
|
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "Connect",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/connect",
|
|
|
|
component: Connect,
|
|
|
|
},
|
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "Settings",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/settings",
|
|
|
|
component: Settings,
|
|
|
|
},
|
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "Help",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/help",
|
|
|
|
component: Help,
|
|
|
|
},
|
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "Changelog",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/changelog",
|
|
|
|
component: Changelog,
|
|
|
|
},
|
2019-10-28 13:48:13 +00:00
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "NetworkEdit",
|
2019-10-28 13:48:13 +00:00
|
|
|
path: "/edit-network/:uuid",
|
|
|
|
component: NetworkEdit,
|
|
|
|
},
|
2019-10-20 16:17:21 +00:00
|
|
|
{
|
2019-11-03 17:09:10 +00:00
|
|
|
name: "RoutedChat",
|
2019-10-20 16:17:21 +00:00
|
|
|
path: "/chan-*",
|
|
|
|
component: RoutedChat,
|
|
|
|
},
|
2019-11-03 15:56:41 +00:00
|
|
|
]);
|
|
|
|
}
|
2019-10-20 16:17:21 +00:00
|
|
|
|
2019-11-03 15:56:41 +00:00
|
|
|
module.exports = {
|
|
|
|
initialize,
|
|
|
|
router,
|
|
|
|
};
|