2021-09-12 18:23:51 +01:00
|
|
|
import { createRouter, createWebHistory } from "vue-router";
|
2022-06-05 16:43:25 +01:00
|
|
|
|
2021-09-12 18:23:51 +01:00
|
|
|
import EmptyLayout from "./layouts/EmptyLayout.vue";
|
|
|
|
import Layout from "./layouts/Layout.vue";
|
|
|
|
import Dashboard from "./pages/Dashboard.vue";
|
|
|
|
import DashboardHome from "./pages/DashboardHome.vue";
|
|
|
|
import Details from "./pages/Details.vue";
|
|
|
|
import EditMonitor from "./pages/EditMonitor.vue";
|
|
|
|
import List from "./pages/List.vue";
|
2021-09-29 17:16:15 +01:00
|
|
|
const Settings = () => import("./pages/Settings.vue");
|
2021-09-12 18:23:51 +01:00
|
|
|
import Setup from "./pages/Setup.vue";
|
2022-06-05 16:43:25 +01:00
|
|
|
import StatusPage from "./pages/StatusPage.vue";
|
2021-09-23 06:57:24 +01:00
|
|
|
import Entry from "./pages/Entry.vue";
|
2022-06-05 16:43:25 +01:00
|
|
|
import ManageStatusPage from "./pages/ManageStatusPage.vue";
|
|
|
|
import AddStatusPage from "./pages/AddStatusPage.vue";
|
|
|
|
import NotFound from "./pages/NotFound.vue";
|
2021-09-12 18:23:51 +01:00
|
|
|
|
2022-06-05 16:43:25 +01:00
|
|
|
// Settings - Sub Pages
|
2021-11-03 09:03:40 +00:00
|
|
|
import Appearance from "./components/settings/Appearance.vue";
|
|
|
|
import General from "./components/settings/General.vue";
|
2022-06-05 16:43:25 +01:00
|
|
|
const Notifications = () => import("./components/settings/Notifications.vue");
|
2022-03-29 18:49:45 +01:00
|
|
|
import ReverseProxy from "./components/settings/ReverseProxy.vue";
|
2021-11-03 09:03:40 +00:00
|
|
|
import MonitorHistory from "./components/settings/MonitorHistory.vue";
|
2022-06-05 16:43:25 +01:00
|
|
|
const Security = () => import("./components/settings/Security.vue");
|
2021-10-30 18:37:15 +01:00
|
|
|
import Proxies from "./components/settings/Proxies.vue";
|
2021-11-03 09:03:40 +00:00
|
|
|
import Backup from "./components/settings/Backup.vue";
|
|
|
|
import About from "./components/settings/About.vue";
|
|
|
|
|
2021-09-12 18:23:51 +01:00
|
|
|
const routes = [
|
|
|
|
{
|
|
|
|
path: "/",
|
2021-09-23 06:57:24 +01:00
|
|
|
component: Entry,
|
|
|
|
},
|
|
|
|
{
|
2021-09-24 08:00:52 +01:00
|
|
|
// If it is "/dashboard", the active link is not working
|
|
|
|
// If it is "", it overrides the "/" unexpectedly
|
|
|
|
// Give a random name to solve the problem.
|
|
|
|
path: "/empty",
|
2021-09-12 18:23:51 +01:00
|
|
|
component: Layout,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "",
|
|
|
|
component: Dashboard,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
name: "DashboardHome",
|
2021-09-24 08:00:52 +01:00
|
|
|
path: "/dashboard",
|
2021-09-12 18:23:51 +01:00
|
|
|
component: DashboardHome,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "/dashboard/:id",
|
|
|
|
component: EmptyLayout,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "",
|
|
|
|
component: Details,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/edit/:id",
|
|
|
|
component: EditMonitor,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/add",
|
|
|
|
component: EditMonitor,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-06-14 15:43:44 +01:00
|
|
|
{
|
|
|
|
path: "/list",
|
|
|
|
component: List,
|
|
|
|
},
|
2021-09-12 18:23:51 +01:00
|
|
|
{
|
|
|
|
path: "/settings",
|
|
|
|
component: Settings,
|
2021-11-03 09:03:40 +00:00
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "general",
|
|
|
|
component: General,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "appearance",
|
|
|
|
component: Appearance,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "notifications",
|
|
|
|
component: Notifications,
|
|
|
|
},
|
2022-03-29 18:49:45 +01:00
|
|
|
{
|
|
|
|
path: "reverse-proxy",
|
|
|
|
component: ReverseProxy,
|
|
|
|
},
|
2021-11-03 09:03:40 +00:00
|
|
|
{
|
|
|
|
path: "monitor-history",
|
|
|
|
component: MonitorHistory,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "security",
|
|
|
|
component: Security,
|
|
|
|
},
|
2021-10-30 18:37:15 +01:00
|
|
|
{
|
|
|
|
path: "proxies",
|
|
|
|
component: Proxies,
|
|
|
|
},
|
2021-11-03 09:03:40 +00:00
|
|
|
{
|
|
|
|
path: "backup",
|
|
|
|
component: Backup,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "about",
|
|
|
|
component: About,
|
|
|
|
},
|
|
|
|
]
|
2021-09-12 18:23:51 +01:00
|
|
|
},
|
2022-03-10 13:34:30 +00:00
|
|
|
{
|
|
|
|
path: "/manage-status-page",
|
|
|
|
component: ManageStatusPage,
|
|
|
|
},
|
2022-03-15 04:00:29 +00:00
|
|
|
{
|
|
|
|
path: "/add-status-page",
|
|
|
|
component: AddStatusPage,
|
|
|
|
},
|
2021-09-12 18:23:51 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/setup",
|
|
|
|
component: Setup,
|
|
|
|
},
|
2021-09-14 07:19:23 +01:00
|
|
|
{
|
|
|
|
path: "/status-page",
|
|
|
|
component: StatusPage,
|
|
|
|
},
|
2021-09-25 15:44:29 +01:00
|
|
|
{
|
|
|
|
path: "/status",
|
|
|
|
component: StatusPage,
|
|
|
|
},
|
2022-03-10 13:34:30 +00:00
|
|
|
{
|
|
|
|
path: "/status/:slug",
|
|
|
|
component: StatusPage,
|
|
|
|
},
|
2022-03-25 18:09:12 +00:00
|
|
|
{
|
|
|
|
path: "/:pathMatch(.*)*",
|
|
|
|
component: NotFound,
|
|
|
|
},
|
2021-09-14 07:19:23 +01:00
|
|
|
];
|
2021-09-12 18:23:51 +01:00
|
|
|
|
|
|
|
export const router = createRouter({
|
|
|
|
linkActiveClass: "active",
|
|
|
|
history: createWebHistory(),
|
|
|
|
routes,
|
|
|
|
});
|